html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

/* Carrito moderno y minimalista */
/* Carrito moderno */
.carrito-body {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.carrito-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    border-bottom: 1px solid #eee;
}

    .carrito-item:last-child {
        border-bottom: none;
    }

.carrito-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.carrito-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.carrito-detalles {
    display: flex;
    flex-direction: column;
}

    .carrito-detalles span {
        font-size: 0.9rem;
        color: #555;
    }

.carrito-precio {
    font-weight: bold;
    margin-left: auto;
}

.btn-eliminar {
    background-color: #ff4d4f;
    border: none;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
}

    .btn-eliminar:hover {
        background-color: #ff7875;
    }

.btn-comprar {
    background-color: #52c41a;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
}

    .btn-comprar:hover {
        background-color: #73d13d;
    }

.carrito-total {
    text-align: right;
    font-weight: bold;
    margin-top: 10px;
}

.carousel-item img {
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: contain;
    background: #000; /* opcional: para que se vea elegante si sobra espacio */
}
