:root {
    --aluma-lilac: #b565a7; /* lila principal */
    --aluma-gold: #d4af37; /* dorado elegante */
    --aluma-pink: #f8d7da; /* rosa pastel suave */
    --aluma-white: #ffffff; /* blanco puro */
    --aluma-brown: #5a3a25; /* marrón cálido para texto */
    --aluma-champagne: #f6e2b3; /* champagne claro */
}

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;
    background-color: #fce4ec; /* fucsia pastel */
    color: #5a3e36; /* marrón rosado suave, más cálido que el negro */
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
    text-align: start;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    background-size: 60%, 60%;
    filter: invert(77%) sepia(42%) saturate(900%) hue-rotate(10deg) brightness(95%) contrast(90%);
}

.carousel-control-prev,
.carousel-control-next {
    width: 12%;
}

.social-icons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
}

    .social-icons a {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: #fff; /* Fondo blanco */
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.6rem;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        transition: all 0.3s ease;
    }

        /* Colores de los íconos */
        .social-icons a.whatsapp i {
            color: #25D366;
        }

        .social-icons a.instagram i {
            color: #E4405F;
        }

        .social-icons a.facebook i {
            color: #1877F2;
        }

        .social-icons a.pinterest i {
            color: #E60023;
        }

        .social-icons a.email i {
            color: #6c757d;
        }

        /* Hover elegante */
        /*.social-icons a:hover {
            transform: scale(1.15);
            box-shadow: 0 6px 15px rgba(0,0,0,0.3);
        }*/
        /* Efecto de brillo dorado */
        .social-icons a:hover {
            transform: scale(1.15);
            box-shadow: 0 0 12px #d4af37, 0 0 20px rgba(212, 175, 55, 0.6);
            background: #fff8e1; /* dorado muy suave */
        }

            .social-icons a:hover i {
                color: #d4af37; /* dorado */
            }


html, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

/* Footer siempre al fondo */
footer {
    margin-top: auto;
    width: 100%;
}

.nav-link i {
    transition: transform 0.3s ease, color 0.3s ease;
}

.nav-link:hover i {
    transform: scale(1.2);
    color: #0d6efd; /* azul moderno */
}

.badge {
    font-size: 0.75rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.logo-navbar {
    height: 45px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 50%;
    background-color: white;
}

    .logo-navbar:hover {
        transform: scale(1.05);
        box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
    }

.navbar {
    background: linear-gradient(90deg, #d4af37, #f7e7ce); /* dorado suave con degradado */
    color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

    .navbar .nav-link {
        color: #fff !important;
    }

        .navbar .nav-link:hover {
            color: #fce4ec !important; /* fucsia claro del logo */
        }

.navbar-brand img {
    filter: drop-shadow(0 0 4px rgba(255,255,255,0.6));
}

.navbar-brand span {
    font-family: 'Great Vibes', cursive;
    font-size: 1.4rem;
    letter-spacing: 0.5px;
    color: #fff; /* blanco */
    transition: color 0.3s ease;
}

    .navbar-brand span:hover {
        color: #fce4ec; /* rosado pastel del logo */
    }

.container-global {
    width: 90%;
    max-width: 1600px;
    margin: 0 auto;
}

/*Codigo antes de seccion*/
.seccion-aluma {
    background-color: rgba(253, 246, 249, 0.7); /* fucsia pastel translúcido */
    padding: 0;
    border-radius: 12px;
    width: 95%;
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    overflow: hidden;
}

.aluma-banner-img {
    width: 100%;
    height: auto;
    object-fit: cover; /* llena toda la sección */
    display: block;
    border-radius: 12px;
}

.contenido-aluma {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.col-logo {
    flex: 1 1 300px;
    text-align: left;
}

.logo-section {
    height: 400px; /* más grande */
    width: auto;
    object-fit: contain;
    border-radius: 50%;
    background-color: transparent;
}

.fade-section {
    animation: fadeIn 0.8s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.col-texto {
    flex: 2 1 500px;
    text-align: center;
}

.titulo-aluma {
    font-size: 2.4rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 25px;
}

.texto-aluma {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
    text-align: justify; /* 🔹 Justifica el texto */
    text-justify: inter-word; /* 🔹 Distribuye mejor los espacios */
}

.frase-final {
    font-style: italic;
    font-weight: 600;
    color: #b565a7;
}

/*Codigo despues de seccion*/

/*Paginacion Inicio*/
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
}

    .pagination .page-item .page-link {
        color: #b565a7; /* lila del logo */
        border: 2px solid #d4af37; /* dorado */
        border-radius: 50%; /* forma circular */
        width: 42px;
        height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        background-color: #fff;
        transition: all 0.3s ease;
    }

    /* Botón activo */
    .pagination .page-item.active .page-link {
        background-color: #d4af37; /* dorado */
        color: #fff;
        border-color: #d4af37;
    }

    /* Hover */
    .pagination .page-link:hover {
        background-color: #fce4ec; /* fucsia pastel */
        color: #d4af37;
        box-shadow: 0 0 10px rgba(212,175,55,0.5);
    }

    /* Botones de texto (Anterior / Siguiente) */
    .pagination .page-item .page-link:not(:has(span)):not(:has(i)) {
        border-radius: 20px; /* forma ovalada para texto */
        width: auto;
        padding: 0 16px;
    }
/*Paginacion Final*/

/*Botones de la pagina*/
/* BOTONES PRINCIPALES (Ver detalles) */
.btn-primary,
.btn-outline-primary {
    color: #fff;
    background-color: #b565a7; /* lila */
    border-color: #b565a7;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .btn-primary:hover,
    .btn-outline-primary:hover {
        background-color: #d4af37; /* dorado */
        border-color: #d4af37;
        color: #fff;
        box-shadow: 0 0 12px rgba(212,175,55,0.7), 0 0 20px rgba(212,175,55,0.4);
        transform: translateY(-2px);
    }

/* BOTONES SECUNDARIOS (Agregar al carrito) */
.btn-success,
.btn-outline-success {
    color: #fff;
    background-color: #d4af37; /* dorado */
    border-color: #d4af37;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .btn-success:hover,
    .btn-outline-success:hover {
        background-color: #b565a7; /* lila */
        border-color: #b565a7;
        color: #fff;
        box-shadow: 0 0 12px rgba(181,101,167,0.7), 0 0 20px rgba(181,101,167,0.4);
        transform: translateY(-2px);
    }

/* ANIMACIÓN SUAVE AL HACER CLICK */
.btn:active {
    transform: scale(0.95);
}

/*Botones de la pagina temina codigo*/

/*Icono Carrito*/
.bi-bag-check-fill {
    color: #d4af37 !important; /* dorado */
    transition: color 0.3s ease, transform 0.3s ease;
}

    .bi-bag-check-fill:hover {
        color: #b565a7 !important; /* lila */
        transform: scale(1.15);
    }

/* Precio normal */
.precio-aluma {
    color: #b565a7; /* lila */
    font-weight: 700;
}

/* Precio en oferta */
.precio-oferta {
    color: #d4af37; /* dorado */
    font-weight: 800;
    font-size: 1.3rem;
}

/* Precio tachado */
.precio-anterior {
    color: #8a8a8a;
    text-decoration: line-through;
}

/*Notificacion para agregar al carrito*/
.notificacion {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #d4af37;
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 9999;
}

    .notificacion.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .notificacion.error {
        background-color: #b565a7;
    }


/*Carrito Index*/
.carrito-item {
    background-color: #fff;
    border-radius: 15px;
    transition: all 0.3s ease;
}

    .carrito-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 0 15px rgba(212,175,55,0.3);
    }

.precio-aluma {
    color: #b565a7;
    font-weight: 700;
}

.btn-danger {
    background-color: #b565a7;
    border-color: #b565a7;
}

    .btn-danger:hover {
        background-color: #d4af37;
        border-color: #d4af37;
    }

.card, .form-control, textarea {
    border-radius: 10px;
    border: 1px solid #d4af37;
}

.card {
    background-color: #fff;
    box-shadow: 0 0 10px rgba(212,175,55,0.2);
}

label {
    color: #b565a7;
    font-weight: 600;
}

/* 🔹 Estilo base */
input, textarea, select, input[type="file"] {
    border: 1px solid #b565a7 !important; /* lila suave */
    border-radius: 8px;
    background-color: #fff8f9 !important; /* rosado claro dentro del campo */
    transition: all 0.3s ease;
}

    /* 🔹 Efecto dorado al enfocar */
    input:focus, textarea:focus, select:focus, input[type="file"]:focus {
        border: 2px solid #d4af37 !important; /* dorado */
        box-shadow: 0 0 6px rgba(212, 175, 55, 0.6) !important; /* brillo dorado */
        background-color: #fff0f5 !important; /* rosado más intenso */
        outline: none !important;
    }

/* 🔹 Sobrescribe el estilo azul de Bootstrap */
.form-control:focus {
    border-color: #d4af37 !important;
    box-shadow: 0 0 6px rgba(212, 175, 55, 0.6) !important;
    background-color: #fff0f5 !important;
}

/* 🔹 Opcional: color del texto dentro del campo */
input, textarea, select {
    color: #b565a7 !important; /* texto lila suave */
}

    /* 🔹 Opcional: color del texto en las opciones del select */
    select option {
        background-color: #fff8f9; /* fondo rosado claro */
        color: #b565a7; /* texto lila */
    }

.btn-outline-warning {
    border-color: #d4af37;
    background-color: #d4af37;
    color: #fff; /* blanco para contraste */
    font-weight: bold;
    box-shadow: 0 0 6px rgba(212, 175, 55, 0.6);
}

    .btn-outline-warning:hover {
        background-color: #bfa233;
        color: #fff;
    }

.btn-outline-Filter {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 11px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    background: linear-gradient(135deg, #d4af37, #e6c76a);
    color: #fff !important;
    transition: opacity 0.2s ease, transform 0.15s ease;
}

    .btn-outline-Filter:hover {
        background-color: #bfa233;
        color: #fff !important;
    }


.dropdown-menu {
    background-color: #fff8f9 !important; /* rosado claro */
    border: 2px solid #d4af37 !important; /* borde dorado */
    border-radius: 8px !important;
    box-shadow: 0 4px 8px rgba(212, 175, 55, 0.3) !important;
}

.dropdown-item {
    color: #b565a7 !important; /* lila suave */
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
}

    .dropdown-item:hover {
        background-color: #fdf6f9;
        color: #d4af37; /* dorado al pasar el mouse */
    }

.active-categoria {
    background-color: #d4af37 !important; /* dorado */
    color: #fff !important; /* texto blanco */
    font-weight: 600;
    border-radius: 6px;
}
/* Estilo base del checkbox */
.form-check-input {
    width: 20px;
    height: 20px;
    border: 2px solid #d4af37; /* borde dorado */
    border-radius: 4px;
    background-color: #fff8f9; /* rosado claro */
    cursor: pointer;
    transition: all 0.3s ease;
}

    /* Cuando está marcado */
    .form-check-input:checked {
        background-color: #d4af37 !important; /* dorado */
        border-color: #d4af37 !important;
        box-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
    }

        /* El ícono del check (✔) */
        .form-check-input:checked::before {
            color: #fff;
            font-weight: bold;
            position: relative;
            left: 3px;
            top: -1px;
        }

    /* Efecto al enfocar */
    .form-check-input:focus {
        outline: none;
        box-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
    }

/* Etiqueta del checkbox */
.form-label {
    color: #b565a7; /* lila suave */
    font-weight: 500;
    margin-left: 5px;
}

/* 🔹 Títulos principales */
h1, h4 {
    color: #b565a7 !important; /* lila rosado elegante */
    font-weight: 600;
}

/* 🔹 Subtítulos y etiquetas */
strong, label {
    color: #d4af37 !important; /* dorado */
}

/* 🔹 Texto de descripción y detalles */
.card-text {
    color: #b565a7 !important; /* tono cálido y legible */
}
/* 🔹 Botón volver */
.btn-secondary {
    background-color: #d4af37;
    border: none;
    color: #fff;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

    .btn-secondary:hover {
        background-color: #b565a7; /* lila rosado al pasar el mouse */
        box-shadow: 0 0 12px rgba(181,101,167,0.7), 0 0 20px rgba(181,101,167,0.4);
        transform: translateY(-2px);
    }

/* =============================================
   TABLA PRODUCTOS ALUMA — Reemplaza / agrega
   estas reglas en tu site.css
   ============================================= */

/* 🌸 Wrapper de la tabla */
.aluma-table-card {
    background-color: #fff;
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(212, 175, 55, 0.12);
}

/* 🔍 Barra de herramientas (botón nuevo + búsqueda) */
.aluma-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}

/* Botón Nuevo Producto - pill dorado */
.btn-nuevo-producto {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 22px;
    background: linear-gradient(135deg, #d4af37, #e6c76a);
    color: #4a2c0a !important;
    border: none;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .btn-nuevo-producto:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 16px rgba(212, 175, 55, 0.55);
        color: #4a2c0a !important;
        background: linear-gradient(135deg, #e6c76a, #d4af37);
    }

/* Cuadro de búsqueda pill */
.aluma-search-form {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1.5px solid #d4af37;
    border-radius: 24px;
    padding: 5px 14px;
    max-width: 300px;
    gap: 8px;
    box-shadow: 0 1px 6px rgba(212, 175, 55, 0.15);
}

    .aluma-search-form input[type="text"] {
        border: none !important;
        outline: none !important;
        background: transparent !important;
        box-shadow: none !important;
        font-size: 13px;
        color: #5a3e36 !important;
        flex: 1;
        padding: 0 !important;
    }

        .aluma-search-form input[type="text"]:focus {
            border: none !important;
            box-shadow: none !important;
            background: transparent !important;
        }

    .aluma-search-form .btn-buscar {
        background: linear-gradient(135deg, #d4af37, #e6c76a);
        color: #4a2c0a;
        border: none;
        border-radius: 18px;
        padding: 5px 14px;
        font-size: 13px;
        font-weight: 600;
        cursor: pointer;
        transition: opacity 0.2s;
    }

        .aluma-search-form .btn-buscar:hover {
            opacity: 0.85;
        }

/* 🌼 Tabla Aluma — encabezado */
.table-aluma thead tr {
    background: linear-gradient(90deg, #d4af37 0%, #e6c76a 100%) !important;
}

.table-aluma thead th {
    background: transparent !important;
    color: #4a2c0a !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    letter-spacing: 0.4px !important;
    text-align: center !important;
    border: none !important;
    padding: 13px 12px !important;
}

/* 🩷 Filas */
.table-aluma tbody tr {
    background: #fff !important;
    border-bottom: 1px solid rgba(212, 175, 55, 0.13) !important;
    transition: background 0.15s ease !important;
}

    .table-aluma tbody tr:nth-child(even) {
        background: rgba(252, 228, 236, 0.2) !important;
    }

    .table-aluma tbody tr:hover {
        background: rgba(212, 175, 55, 0.07) !important;
        transform: none !important;
        box-shadow: none !important;
    }

/* Celdas */
.table-aluma th,
.table-aluma td {
    padding: 11px 12px !important;
    border: none !important;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1) !important;
    vertical-align: middle !important;
    text-align: center !important;
    color: #5a3e36 !important;
    font-size: 13px !important;
}

    .table-aluma td:nth-child(2),
    .table-aluma td:nth-child(3) {
        text-align: left !important;
    }

    /* ID con color lila */
    .table-aluma td:first-child {
        color: #b565a7 !important;
        font-weight: 600 !important;
        font-size: 12px !important;
    }

/* Precio en lila */
.table-aluma .precio-cell {
    color: #b565a7 !important;
    font-weight: 600 !important;
}

/* 🏷️ Categoría - tag dorado */
.tag-categoria {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 500;
    background: rgba(212, 175, 55, 0.12);
    color: #7a5800;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/* ✅ Badges mejorados */
.badge-aluma-si {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    background: rgba(76, 175, 80, 0.1);
    color: #2e7d32;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.badge-aluma-no {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    background: rgba(181, 101, 167, 0.1);
    color: #7b3f73;
    border: 1px solid rgba(181, 101, 167, 0.25);
}

.badge-aluma-activo {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    background: rgba(76, 175, 80, 0.1);
    color: #2e7d32;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.badge-aluma-inactivo {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    background: rgba(150, 150, 150, 0.1);
    color: #555;
    border: 1px solid rgba(150, 150, 150, 0.2);
}

/* 🖼️ Miniatura de imagen */
.img-thumb-aluma {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    object-fit: cover;
    border: 2px solid rgba(212, 175, 55, 0.35);
    background: rgba(252, 228, 236, 0.4);
    display: block;
    margin: 0 auto;
}

.img-thumb-placeholder {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    border: 1.5px dashed rgba(212, 175, 55, 0.4);
    background: rgba(252, 228, 236, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: #d4af37;
    font-size: 18px;
}

/* Mini carousel en tabla */
.table-aluma .carousel {
    width: 54px !important;
    margin: 0 auto;
}

.table-aluma .carousel-inner {
    border-radius: 10px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    overflow: hidden;
}

/* 🎛️ Botones de acción mejorados */
.btn-aluma-editar {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 11px;
    border: none;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    background: linear-gradient(135deg, #d4af37, #e6c76a);
    color: #4a2c0a !important;
    transition: opacity 0.2s ease, transform 0.15s ease;
}

    .btn-aluma-editar:hover {
        opacity: 0.85;
        transform: translateY(-1px);
        color: #4a2c0a !important;
    }

.btn-aluma-detalle {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 11px;
    border: none;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    background: linear-gradient(135deg, #b565a7, #ce8ec5);
    color: #fff !important;
    transition: opacity 0.2s ease, transform 0.15s ease;
}

    .btn-aluma-detalle:hover {
        opacity: 0.85;
        transform: translateY(-1px);
        color: #fff !important;
    }

.btn-aluma-eliminar {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 11px;
    border: 1px solid rgba(229, 115, 115, 0.35);
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    background: rgba(229, 115, 115, 0.1);
    color: #c62828 !important;
    transition: opacity 0.2s ease, background 0.2s ease;
}

    .btn-aluma-eliminar:hover {
        background: rgba(229, 115, 115, 0.2);
        color: #c62828 !important;
    }

.btn-aluma-guardar {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 11px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    background: linear-gradient(135deg, #d4af37, #e6c76a);
    color: #4a2c0a !important;
    transition: opacity 0.2s ease, transform 0.15s ease;
}

    .btn-aluma-guardar:hover {
        opacity: 0.85;
        transform: translateY(-1px);
        color: #4a2c0a !important;
    }

.btn-aluma-cancelar {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 11px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    background: linear-gradient(135deg, #b565a7, #ce8ec5);
    color: #fff !important;
    transition: opacity 0.2s ease, transform 0.15s ease;
}

    .btn-aluma-cancelar:hover {
        opacity: 0.85;
        transform: translateY(-1px);
        color: #fff !important;
    }

/* Celda de acciones */
.acciones-cell {
    display: flex;
    gap: 5px;
    justify-content: center;
    flex-wrap: nowrap;
}

/* 📄 Paginación (ya tienes algo parecido, esto lo refina) */
.pagination .page-item .page-link {
    color: #b565a7 !important;
    border: 1.5px solid #d4af37 !important;
    border-radius: 50% !important;
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    background-color: #fff !important;
    transition: all 0.2s ease !important;
    padding: 0 !important;
}

.pagination .page-item.active .page-link {
    background: linear-gradient(135deg, #d4af37, #e6c76a) !important;
    color: #4a2c0a !important;
    border-color: #d4af37 !important;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.4) !important;
}

.pagination .page-link:hover:not(.active, .page-link) {
    background-color: rgba(252, 228, 236, 0.6) !important;
    color: #d4af37 !important;
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.35) !important;
}
/* Botones de texto Anterior/Siguiente */
.pagination .page-item:first-child .page-link,
.pagination .page-item:last-child .page-link {
    border-radius: 20px !important;
    width: auto !important;
    padding: 0 16px !important;
}

/* 🌸 Estilos exclusivos para la página de privacidad */
.privacy-section {
    background-color: #fff5f7;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
    color: #5a3e36;
}

.privacy-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #b565a7;
    border-bottom: 2px solid #d4af37;
    display: inline-block;
    padding-bottom: 6px;
}

.privacy-subtitle {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #d4af37;
}

.privacy-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #5a3e36;
}

.privacy-list {
    list-style-type: disc;
    margin-left: 25px;
    color: #5a3e36;
}

.privacy-link {
    color: #b565a7;
    font-weight: 600;
    text-decoration: none;
}

    .privacy-link:hover {
        color: #d4af37;
        text-decoration: underline;
    }

/* ✨ Banner superior de la página de privacidad */
.privacy-banner {
    background: linear-gradient(90deg, #fff5f7 0%, #fbe3eb 100%);
    padding: 40px 20px;
    border-bottom: 3px solid #d4af37;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

.privacy-logo {
    max-width: 320px;
    filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.4));
}

.privacy-banner-text {
    font-family: 'Great Vibes', cursive;
    font-size: 2rem;
    color: #b565a7;
    margin: 0;
}

/* 📱 Ajustes para pantallas pequeñas */
@media (max-width: 768px) {
    .container-global {
        width: 100%;
        padding: 0 10px;
    }

    .seccion-aluma {
        width: 100%;
        padding: 0;
        box-shadow: none;
    }

    .contenido-aluma {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .logo-section {
        height: 250px;
    }

    .navbar .d-flex {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .aluma-search-form {
        max-width: 100%;
        margin-top: 10px;
    }

    .social-icons {
        right: 10px;
        bottom: 10px;
        gap: 8px;
    }

        .social-icons a {
            width: 40px;
            height: 40px;
            font-size: 1.3rem;
        }
}
/* 📱 Ajuste para tablas grandes en pantallas pequeñas */
@media (max-width: 768px) {
    .aluma-table-card {
        overflow-x: auto;
        overflow-y: auto;
        display: block;
        max-height: 80vh; /* evita que se corte */
        margin-bottom: 20px;
    }

    .table-aluma {
        width: 1000px; /* ancho mínimo para permitir scroll horizontal */
    }

        .table-aluma th,
        .table-aluma td {
            font-size: 12px !important;
            padding: 8px !important;
            white-space: nowrap; /* evita que el texto se parta */
        }

    .pagination {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-aluma .container {
        flex-direction: column;
        gap: 15px;
    }

    .footer-links {
        font-size: 0.9rem;
    }

    .footer-social a {
        font-size: 1.2rem;
    }
}

.aluma-table-card::-webkit-scrollbar {
    height: 8px;
    width: 8px;
}

.aluma-table-card::-webkit-scrollbar-thumb {
    background-color: #d4af37;
    border-radius: 4px;
}

.aluma-table-card::-webkit-scrollbar-track {
    background-color: #fff5f7;
}

/* 🌸 Footer AlumaCandles con degradado */
.footer-aluma {
    background: linear-gradient(90deg, #d4af37, #f7e7ce, #fce4ec);
    color: #4a2c0a;
    border-top: 3px solid #b565a7;
    box-shadow: 0 -4px 12px rgba(181, 101, 167, 0.25);
}

/* Créditos */
.footer-info strong {
   /* font-family: 'Great Vibes', cursive;*/
    font-size: 1rem;
    color: #000 !important; /* negro para mejor contraste */
    text-shadow: 0 0 6px rgba(212, 175, 55, 0.3);
    text-decoration: none;
}
    .footer-info a {
        text-decoration: none;
    }

.footer-slogan {
    font-family: 'Great Vibes', cursive;
    color: #b565a7;
    font-size: 1.2rem;
    margin-top: 8px;
}

/* Bloque de desarrollador */
.footer-dev-title {
    font-weight: 700;
    color: #000; /* negro para destacar sobre el fondo dorado */
    font-size: 1rem;
    margin-bottom: 4px;
}

.footer-dev-name {
    font-weight: 600;
    color: #b565a7; /* mantiene el lila elegante */
    font-size: 1.1rem;
    margin: 0;
}

.footer-dev-role {
    color: #000; /* texto técnico en negro para legibilidad */
    font-size: 0.95rem;
    margin: 0;
}

.footer-dev-phrase {
    font-style: italic;
    color: #b565a7;
    font-size: 0.9rem;
    margin-top: 6px;
}

/* Enlaces */
.footer-links a {
    color: #4a2c0a;
    text-decoration: none;
    margin: 0 6px;
    transition: color 0.3s ease;
    font-weight: 600;
}

    .footer-links a:hover {
        color: #b565a7;
    }

/* Íconos sociales */
.footer-social a {
    color: #d4af37;
    margin: 0 6px;
    font-size: 1.3rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

    .footer-social a:hover {
        transform: scale(1.2);
        color: #b565a7;
    }

/* ✨ Línea separadora y copyright */
.footer-line {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, #b565a7, #d4af37, #f7e7ce);
    width: 100%;
    margin-top: 20px;
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}

.footer-copy {
    font-size: 0.95rem;
    color: #4a2c0a;
    font-weight: 500;
    letter-spacing: 0.3px;
    text-shadow: 0 0 6px rgba(212, 175, 55, 0.3);
}
/* 🌸 Modal con estilo AlumaCandles */
.modal-content {
    background: linear-gradient(90deg, #d4af37, #f7e7ce, #fce4ec);
    color: #4a2c0a;
    border: 2px solid #b565a7;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.modal-header {
    background-color: rgba(212, 175, 55, 0.15);
    border-bottom: 2px solid #b565a7;
}

.modal-title {
    font-weight: 700;
    color: #b565a7;
}

.modal-footer {
    background-color: rgba(252, 228, 236, 0.3);
    border-top: 2px solid #d4af37;
}

.btn-close {
    filter: invert(60%) sepia(20%) saturate(400%) hue-rotate(290deg);
}

/*Estilos del tracking*/
.timeline {
    position: relative;
    margin: 40px auto;
    padding: 20px 0;
    width: 80%;
    border-top: 4px solid #d4af37;
}

.timeline-step {
    position: relative;
    margin-bottom: 40px;
    transition: all 0.5s ease-in-out;
}

    .timeline-step.completed .timeline-icon {
        background-color: #b57edc !important;
        transform: scale(1.1);
        box-shadow: 0 0 10px #b57edc;
    }

    .timeline-step.active .timeline-icon {
        background-color: #d4af37 !important;
        transform: scale(1.2);
        box-shadow: 0 0 15px #d4af37;
    }

    .timeline-step.pending .timeline-icon {
        opacity: 0.4;
    }

.timeline-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.timeline-content {
    margin-left: 10px;
    animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Línea de progreso */
.timeline::before {
    /*content: "";
    position: absolute;
    top: 25px;
    left: 0;
    width: var(--progress-width);
    height: 4px;
    background: linear-gradient(90deg, #d4af37, #b57edc);
    z-index: 0;
    border-radius: 2px;
    transition: width 1s ease-in-out;*/
    content: "";
    position: absolute;
    top: 25px;
    left: 0;
    width: var(--progress-width);
    height: 6px;
    background: linear-gradient(90deg, #d4af37, #b57edc);
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(181, 126, 220, 0.5);
    transition: width 1s ease-in-out;
}


@keyframes progressLine {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

.timeline-step.active .timeline-icon {
    animation: pulseGlow 1.5s infinite alternate;
}

@keyframes pulseGlow {
    from {
        box-shadow: 0 0 10px #d4af37;
        transform: scale(1.1);
    }

    to {
        box-shadow: 0 0 20px #b57edc;
        transform: scale(1.2);
    }
}

/* Texto del estado actual */
.estado-label {
    background: linear-gradient(90deg, #d4af37, #b57edc);
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 30px;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
    animation: glowPulse 1.5s infinite alternate;
}

/* Animación de brillo suave */
@keyframes glowPulse {
    from {
        box-shadow: 0 0 10px #d4af37;
        transform: scale(1);
    }

    to {
        box-shadow: 0 0 20px #b57edc;
        transform: scale(1.05);
    }
}

/* ============================================================
Aluma — CARRITO + SECCIÓN "CÓMO REALIZAR TU PEDIDO"
============================================================ */
/* ── Sección de pasos para pedir ──────────────────────────── */
.aluma-pasos-wrap {
    background-color: rgba(253, 246, 249, 0.7); /* fucsia pastel translúcido */
    padding: 36px 24px;
    border-radius: 16px;
    box-shadow: 0 4px 14px rgba(181, 98, 42, 0.08);
}

.aluma-pasos-title {
    text-align: center;
    font-size: 1.7rem;
    font-weight: 700;
    color: #b565a7; /* lila del logo */
    margin-bottom: 4px;
}

.aluma-pasos-sub {
    text-align: center;
    font-size: 0.95rem;
    color: #d4af37; /* dorado suave */
    margin-bottom: 28px;
}

.aluma-pasos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.aluma-paso-card {
    background: #fff;
    border-radius: 14px;
    padding: 22px 16px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(181, 98, 42, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .aluma-paso-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 16px rgba(181, 98, 42, 0.18);
    }

.aluma-paso-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4af37, #fce4ec); /* dorado con rosa pastel */
    color: #4a4a4a;
    font-weight: 700;
    font-size: 13px;
    margin: 0 auto 12px;
}

.aluma-paso-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fdf6f9; /* fondo rosado muy suave */
    color: #b565a7; /* lila del logo */
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.aluma-paso-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #d4af37; /* dorado */
    margin-bottom: 6px;
}

.aluma-paso-text {
    font-size: 0.82rem;
    color: #4a4a4a;
    line-height: 1.5;
    margin: 0;
}

/* ── Título carrito ────────────────────────────────────────── */
.aluma-carrito-titulo {
    color: #d4af37 !important; /* dorado */
    font-weight: 700;
    margin-bottom: 1.2rem;
}

    .aluma-carrito-titulo i {
        margin-right: 8px;
    }

.alert-aluma {
    background-color: var(--tl-champagne); /* fondo champagne */
    color: var(--tl-copper-dk); /* texto cobre oscuro */
    border: 1px solid var(--tl-copper); /* borde cobre */
}
/*Nuevo codigo*/
/* ── Cards del carrito ────────────────────────────────────────── */
.aluma-carrito-card {
    background: var(--aluma-white);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(181, 98, 42, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
}

    .aluma-carrito-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 6px 16px rgba(181, 98, 42, 0.16);
    }

.aluma-carrito-imgwrap {
    background: var(--aluma-pink);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: pointer;
}

.aluma-carrito-img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.aluma-carrito-imgwrap:hover .aluma-carrito-img {
    transform: scale(1.05);
}

.aluma-carrito-body {
    padding: 16px 18px 20px;
}

.aluma-carrito-nombre {
    color: var(--aluma-brown);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.aluma-carrito-desc {
    color: var(--aluma-brown);
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.aluma-cantidad-control {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 10px 0;
}

.aluma-qty-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1.5px solid var(--aluma-gold);
    background: var(--aluma-white);
    color: var(--aluma-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

    .aluma-qty-btn:hover {
        background: var(--aluma-gold);
        color: var(--aluma-white);
    }

.aluma-qty-num {
    font-weight: 700;
    color: var(--aluma-brown);
    min-width: 20px;
    text-align: center;
}

.aluma-carrito-subtotal {
    color: #2e7d32;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

/* ── Resumen / formulario de pedido ──────────────────────────── */
.aluma-resumen-card {
    background: var(--aluma-white);
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(181, 98, 42, 0.1);
    padding: 28px 30px;
}

.aluma-resumen-total {
    color: var(--aluma-gold);
    font-weight: 800;
    font-size: 1.4rem;
}

.aluma-resumen-nota {
    font-size: 0.85rem;
    color: var(--aluma-brown);
    background: rgba(232, 201, 154, 0.18);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 10px;
    padding: 10px 14px;
    margin: 4px 0 18px;
}

    .aluma-resumen-nota i {
        color: var(--aluma-gold);
        margin-right: 6px;
    }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 992px) {
    .aluma-detalle-imgbox {
        height: 420px;
    }

    .aluma-pasos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container-global {
        width: 100%;
        padding: 0 10px;
    }

    .seccion-aluma {
        width: 100%;
        padding: 0;
        box-shadow: none;
    }

    .contenido-aluma {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .logo-section {
        height: 250px;
    }

    .aluma-banner-img {
        height: 380px;
    }

    .navbar .d-flex {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .aluma-search-form {
        max-width: 100%;
        margin-top: 10px;
    }

    .social-icons {
        right: 10px;
        bottom: 10px;
        gap: 8px;
    }

        .social-icons a {
            width: 40px;
            height: 40px;
            font-size: 1.3rem;
        }

    .aluma-table-card {
        overflow-x: auto;
        overflow-y: auto;
        display: block;
        max-height: 80vh;
        margin-bottom: 20px;
    }

    .table-aluma {
        width: 1000px;
    }

        .table-aluma th,
        .table-aluma td {
            font-size: 12px !important;
            padding: 8px !important;
            white-space: nowrap;
        }

    .pagination {
        flex-wrap: wrap;
        justify-content: center;
    }

    .aluma-card-nombre {
        font-size: 12px;
    }

    .btn-aluma-add, .btn-aluma-agotado {
        font-size: 11px;
        padding: 8px;
    }

    .aluma-detalle-imgbox {
        height: 300px;
    }
}

.btn-aluma-volver {
    border: none;
    border-radius: 8px;
    padding: 9px 10px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    background: linear-gradient(135deg, var(--aluma-gold), var(--aluma-white));
    color: var(--aluma-brown);
    transition: opacity 0.2s ease, transform 0.15s ease;
    text-decoration: none;
}

    .btn-aluma-volver:hover {
        opacity: 0.88;
        transform: translateY(-1px);
    }

@media (max-width: 576px) {
    .aluma-pasos-grid {
        grid-template-columns: 1fr;
    }

    .aluma-resumen-card {
        padding: 20px 18px;
    }
}
/* ── Sección About ─────────────────────────────────────── */
.aluma-about-section {
    background: var(--aluma-pink);
    padding: 60px 0;
}

.aluma-about-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 48px;
}

.aluma-about-text {
    flex: 1;
}

.aluma-about-titulo {
    font-size: 2rem;
    font-weight: 700;
    color: var(--aluma-gold) !important;
    margin-bottom: 16px;
}

.aluma-about-desc {
    color: var(--aluma-brown);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.btn-aluma-about {
    display: inline-block;
    background: var(--aluma-gold);
    color: #fff !important;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}

    .btn-aluma-about:hover {
        background: var(--aluma-gold-dk);
    }

.aluma-about-img-wrap {
    flex: 1;
    text-align: center;
}

.aluma-about-img {
    max-width: 100%;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(43,26,14,0.15);
}

/* ── Botón Ver más ─────────────────────────────────────── */
.btn-aluma-vermás {
    display: inline-block;
    background: transparent;
    border: 2px solid var(--aluma-gold);
    color: var(--aluma-gold) !important;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

    .btn-aluma-vermás:hover {
        background: var(--aluma-gold);
        color: #fff !important;
    }

/* ── Botón outline carrito ─────────────────────────────── */
.btn-aluma-outline {
    display: inline-block;
    background: transparent;
    border: 2px solid var(--aluma-gold);
    color: var(--aluma-gold) !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

    .btn-aluma-outline:hover {
        background: var(--aluma-gold);
        color: #fff !important;
    }

/* ── Checkout ──────────────────────────────────────────── */
.aluma-checkout-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 16px;
}

.aluma-checkout-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 32px;
    align-items: start;
}

.aluma-checkout-titulo {
    color: var(--aluma-gold) !important;
    font-weight: 700;
    margin-bottom: 28px;
}

.aluma-checkout-section {
    background: #fff;
    border-radius: 14px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 2px 12px rgba(43,26,14,0.07);
}

.aluma-checkout-seccion-titulo {
    font-weight: 700;
    color: var(--aluma-brown);
    margin-bottom: 16px;
    font-size: 1rem;
}

.aluma-checkout-label {
    font-weight: 600;
    color: var(--aluma-brown);
    display: block;
    margin-bottom: 6px;
}

.aluma-checkout-input {
    width: 100%;
    border: 1.5px solid var(--aluma-champagne);
    border-radius: 50px;
    padding: 10px 18px;
    font-size: 0.95rem;
    outline: none;
    transition: border 0.2s;
}

    .aluma-checkout-input:focus {
        border-color: var(--aluma-gold);
    }

.aluma-checkout-prefijo {
    background: var(--aluma-pink);
    border: 1.5px solid var(--aluma-champagne);
    border-right: none;
    border-radius: 50px 0 0 50px;
    padding: 10px 14px;
    font-size: 0.9rem;
    white-space: nowrap;
}

    .aluma-checkout-prefijo + .aluma-checkout-input {
        border-radius: 0 50px 50px 0;
    }

/* Envío */
.aluma-envio-opciones {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.aluma-envio-opcion {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1.5px solid var(--aluma-champagne);
    border-radius: 10px;
    padding: 12px 16px;
    cursor: pointer;
    transition: border-color 0.2s;
}

    .aluma-envio-opcion:has(input:checked) {
        border-color: var(--aluma-gold);
        background: var(--aluma-pink);
    }

    .aluma-envio-opcion input {
        accent-color: var(--aluma-gold);
    }

.aluma-envio-detalle {
    display: flex;
    justify-content: space-between;
    flex: 1;
}

.aluma-envio-nombre {
    font-weight: 600;
    color: var(--aluma-brown);
}

.aluma-envio-precio {
    color: var(--aluma-gold);
    font-weight: 600;
}

/* Pago */
.aluma-pago-opciones {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.aluma-pago-opcion {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid var(--aluma-champagne);
    border-radius: 10px;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
}

    .aluma-pago-opcion:has(input:checked) {
        border-color: var(--aluma-gold);
        background: var(--aluma-pink);
    }

    .aluma-pago-opcion input {
        accent-color: var(--aluma-gold);
    }

.aluma-pago-nota {
    color: var(--aluma-brown-md);
    font-size: 0.88rem;
}

/* Resumen */
.aluma-checkout-resumen {
    background: #fff;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(43,26,14,0.07);
    position: sticky;
    top: 90px;
}

.aluma-checkout-resumen-titulo {
    font-weight: 700;
    color: var(--tl-brown);
    margin-bottom: 20px;
}

.aluma-checkout-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.aluma-checkout-item-img {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 8px;
}

.aluma-checkout-item-info {
    flex: 1;
}

.aluma-checkout-item-nombre {
    font-weight: 600;
    font-size: 0.9rem;
    margin: 0;
}

.aluma-checkout-item-qty {
    color: var(--aluma-brown-md);
    font-size: 0.82rem;
    margin: 0;
}

.aluma-checkout-item-precio {
    font-weight: 700;
    color: var(--aluma-gold);
    white-space: nowrap;
}

.aluma-checkout-divider {
    border-color: var(--aluma-champagne);
    margin: 16px 0;
}

.aluma-checkout-total-row {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--aluma-brown);
}

/* Responsive checkout */
@media (max-width: 768px) {
    .aluma-checkout-grid {
        grid-template-columns: 1fr;
    }

    .aluma-about-inner {
        flex-direction: column;
    }

    .aluma-checkout-resumen {
        position: static;
    }
}

.aluma-card-desc {
    font-size: 0.78rem;
    color: var(--aluma-brown-md);
    margin: 2px 0 6px;
    line-height: 1.3;
}

.aluma-product-card {
    position: relative;
}

.aluma-like-btn {
    position: absolute;
    top: 12px;
    right: 14px;
    background: rgba(255,255,255,.85);
    border-radius: 50px;
    padding: 6px 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .9rem;
    color: #d4af37; /* dorado */
    cursor: pointer;
    transition: all .2s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,.15);
    z-index: 10;
}

    .aluma-like-btn:hover {
        background: #f7e7ce; /* champagne */
        color: #c8a2c8; /* lila */
        box-shadow: 0 0 8px rgba(212,175,55,.3);
    }

    .aluma-like-btn.liked i {
        color: #d4af37;
        animation: pop-heart .3s ease;
    }

.btn-tl-review {
    background-color: var(--aluma-lilac);
    color: var(--aluma-champagne);
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s ease;
}

    .btn-tl-review:hover {
        background-color: var(--aluma-gold);
    }

@keyframes pop-heart {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.4);
    }

    100% {
        transform: scale(1);
    }
}


.aluma-banner-img {
    width: 100%;
    height: auto; /* se adapta automáticamente */
    object-fit: contain; /* mantiene proporciones sin recortar */
    display: block;
    border-radius: 12px;
}

/* Para pantallas pequeñas */
/*@media (max-width: 768px) {
    .aluma-banner-img {
        object-fit: cover;*/ /* llena el espacio sin deformarse */
        /*border-radius: 8px;
    }

    .seccion-aluma {
        width: 100%;
        padding: 20px 10px;
        box-shadow: none;
    }
}*/
@media (max-width: 768px) {
    .seccion-aluma {
        width: 100%;
    }

    .aluma-banner-img {
        height: auto;
        object-fit: cover;
    }
}
