html, body {
    overflow-x: hidden;
    max-width: 100%;
}
body {
    font-family: 'Inter', sans-serif;
}
.nav-logo {
    height: 40px;
    width: 40px;
    object-fit: contain;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid rgba(201, 169, 110, 0.4);
    padding: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
}

.logo a:hover .nav-logo {
    border-color: rgba(201, 169, 110, 0.75);
    box-shadow: 0 4px 14px rgba(201, 169, 110, 0.22);
}

.logo a:hover span {
    color: #D4BA85;
}

.hero-logo {
    width: 9rem;
    height: 9rem;
    object-fit: contain;
    border-radius: 50%;
    padding: 1.75rem;
    background: #ffffff;
    border: 3px solid rgba(201, 169, 110, 0.6);
    box-shadow:
        0 0 0 6px rgba(255, 255, 255, 0.12),
        0 0 0 12px rgba(201, 169, 110, 0.08),
        0 0 50px rgba(201, 169, 110, 0.3),
        0 20px 45px -10px rgba(0, 0, 0, 0.45);
    animation: heroLogoFadeIn 1.4s cubic-bezier(0.16, 1, 0.3, 1), heroLogoFloat 6s ease-in-out infinite 1.4s;
    transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.hero-logo:hover {
    transform: scale(1.04);
    box-shadow:
        0 0 0 6px rgba(255, 255, 255, 0.16),
        0 0 0 14px rgba(201, 169, 110, 0.12),
        0 0 70px rgba(201, 169, 110, 0.45),
        0 24px 50px -10px rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
    .hero-logo {
        width: 11rem;
        height: 11rem;
    }
}

@keyframes heroLogoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes heroLogoFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.footer-logo {
    height: 52px;
    width: 52px;
    object-fit: contain;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid rgba(201, 169, 110, 0.35);
    padding: 6px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.footer-logo:hover {
    border-color: rgba(201, 169, 110, 0.65);
    box-shadow: 0 4px 18px rgba(201, 169, 110, 0.2);
}

.admin-login-logo {
    height: 80px;
    width: 80px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid rgba(201, 169, 110, 0.4);
    box-shadow: 0 4px 30px rgba(201, 169, 110, 0.15);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

.font-serif {
    font-family: 'Playfair Display', serif;
}

:root {
    --color-gold: #C9A96E;
    --color-gold-light: #D4BA85;
    --color-gold-dark: #A8884E;
    --color-black: #000000;
    --color-gray-dark: #1F2937;
    --color-white: #FFFFFF;
}

.hero-pattern {
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(201, 169, 110, 0.03) 35px, rgba(201, 169, 110, 0.03) 70px);
}

.hero-ny-scene {
    background:
        radial-gradient(ellipse 70% 45% at 50% 94%, rgba(255, 241, 208, 0.95) 0%, rgba(248, 221, 172, 0.4) 42%, transparent 72%),
        radial-gradient(circle at 84% 20%, rgba(255, 236, 196, 0.35) 0%, transparent 40%),
        linear-gradient(180deg,
            #7e9bbd 0%,
            #a7bdd4 22%,
            #d3d3c6 46%,
            #ecd3a8 72%,
            #f5d99c 100%);
}

/* Evita el scrollbar atrapado dentro del hero: 'clip' recorta lo horizontal
   sin forzar overflow-y a 'auto' (a diferencia de 'hidden'). El scroll lo
   gestiona el body de la página. */
.hero-section {
    overflow-x: clip;
    overflow-y: visible;
    /* Reserva el alto del nav fijo arriba; respiro abajo */
    padding-top: 6rem;
    padding-bottom: 3rem;
}

/* Overlay oscuro del hero: da contraste al texto dorado sin perder la
   calidez del cielo. Se sitúa sobre el skyline (z-index) y bajo el contenido. */
.hero-overlay {
    z-index: 2;
    background: linear-gradient(180deg,
        rgba(4, 7, 16, 0.18) 0%,
        rgba(4, 7, 16, 0.52) 28%,
        rgba(4, 7, 16, 0.66) 48%,
        rgba(3, 5, 12, 0.72) 72%,
        rgba(2, 4, 9, 0.82) 100%);
}

.ny-grid-overlay {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.35;
}

/* ── NYC Skyline SVG container ── */
.ny-skyline {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 55vh;
    min-height: 260px;
    pointer-events: none;
    overflow: hidden;
}

.nyc-skyline-svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Window light animations */
@keyframes winPulse {
    0%, 100% { opacity: 0.92; }
    50%       { opacity: 0.12; }
}
@keyframes winFlicker {
    0%, 88%, 90%, 92%, 100% { opacity: 0.9; }
    89%  { opacity: 0.08; }
    91%  { opacity: 0.65; }
}
@keyframes spireBeacon {
    0%, 100% { opacity: 0.45; }
    50%      { opacity: 1;    }
}
@keyframes streetBreath {
    0%, 100% { opacity: 0.55; }
    50%      { opacity: 0.85; }
}
@keyframes skylineHaze {
    0%, 100% { opacity: 0.18; }
    50%      { opacity: 0.30; }
}

.sky-win   { animation: winPulse   var(--d, 4s) ease-in-out var(--delay, 0s) infinite; }
.sky-win-f { animation: winFlicker var(--d, 7s) linear      var(--delay, 0s) infinite; }
.spire-beacon  { animation: spireBeacon 2.4s ease-in-out infinite; }
.sky-street    { animation: streetBreath 5s ease-in-out infinite; }
.sky-haze      { animation: skylineHaze  6s ease-in-out infinite; }

/* ===========================
   Hero — contenido moderno
   =========================== */
.hero-content {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero-content > .hero-cta {
    width: 100%;
}

/* Eyebrow / badge superior */
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.45rem 1.15rem;
    margin-bottom: 1.2rem;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #f0dcb0;
    border: 1px solid rgba(201, 169, 110, 0.5);
    border-radius: 999px;
    background: rgba(10, 14, 24, 0.4);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}
.hero-eyebrow::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #c9a96e;
    box-shadow: 0 0 8px 2px rgba(201, 169, 110, 0.75);
    animation: spireBeacon 2.4s ease-in-out infinite;
}

/* Halo dorado tras el logo */
.hero-logo-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}
.hero-logo-wrap::after {
    content: "";
    position: absolute;
    inset: -8%;
    z-index: -1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.35) 0%, rgba(201, 169, 110, 0.12) 50%, transparent 72%);
    filter: blur(8px);
}

/* Título en blanco cálido sólido: máxima legibilidad sobre la escena nocturna.
   Una sola sombra limpia (sin doble borde/relieve). El acento dorado lo aporta
   el divider justo debajo. */
.hero-title {
    position: relative;
    font-size: clamp(2.4rem, 6vw, 4.6rem);
    line-height: 1.04;
    font-weight: 700;
    letter-spacing: 0.005em;
    margin-bottom: 0.85rem;
    color: #f6efe1;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}

/* Separador con gema central */
.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    max-width: 260px;
    margin: 0 auto 1rem;
    color: #c9a96e;
}
.hero-divider span {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.7));
}
.hero-divider span:last-child {
    background: linear-gradient(90deg, rgba(201, 169, 110, 0.7), transparent);
}
.hero-divider i {
    font-size: 0.8rem;
    opacity: 0.9;
}

/* Subtítulo */
.hero-subtitle {
    font-size: clamp(1.1rem, 2.4vw, 1.6rem);
    font-weight: 500;
    letter-spacing: 0.01em;
    color: #f1e7d4;
    margin-bottom: 1.8rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5), 0 2px 16px rgba(0, 0, 0, 0.4);
}

/* Botones del hero */
.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    border-radius: 999px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.hero-btn:hover {
    transform: translateY(-2px) scale(1.03);
}
.hero-btn--primary {
    color: #1a120a;
    background: linear-gradient(135deg, #e6c982 0%, #c9a96e 55%, #a9854e 100%);
    box-shadow: 0 12px 30px -8px rgba(201, 169, 110, 0.55);
}
.hero-btn--primary:hover {
    box-shadow: 0 16px 38px -8px rgba(201, 169, 110, 0.7);
}
.hero-btn--ghost {
    color: #f3e6c9;
    border: 1.5px solid #c9a96e;
    background: rgba(10, 14, 24, 0.45);
    box-shadow: 0 8px 22px -10px rgba(0, 0, 0, 0.6);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}
.hero-btn--ghost:hover {
    color: #1a120a;
    background: #c9a96e;
    border-color: #c9a96e;
}

.language-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.7rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #111827;
    border: 1px solid rgba(201, 169, 110, 0.7);
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(242, 226, 196, 0.85));
    transition: all 0.25s ease;
}

.language-toggle:hover {
    border-color: #B89A5D;
    color: #000000;
    box-shadow: 0 8px 18px rgba(184, 154, 93, 0.25);
}

.language-toggle-mobile {
    width: 100%;
    justify-content: center;
}

/* ===========================
   Hero — Stagger entrada + badges + scroll indicator
   =========================== */
.hero-content > * {
    opacity: 0;
    transform: translateY(18px);
    animation: heroStagger 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-content > .hero-eyebrow   { animation-delay: 0.15s; }
.hero-content > .hero-logo-wrap { animation-delay: 0.30s; }
.hero-content > .hero-title     { animation-delay: 0.45s; }
.hero-content > .hero-divider   { animation-delay: 0.60s; }
.hero-content > .hero-subtitle  { animation-delay: 0.75s; }
.hero-content > .hero-cta       { animation-delay: 0.90s; }
.hero-content > .hero-trust     { animation-delay: 1.05s; }

@keyframes heroStagger {
    to { opacity: 1; transform: translateY(0); }
}

/* Trust badges debajo de los botones */
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.6rem 1.6rem;
    margin-top: 1.6rem;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: #ede3d0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}
.hero-trust__item {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    transition: color 0.25s ease, transform 0.25s ease;
}
.hero-trust__item:hover {
    color: #ffffff;
    transform: translateY(-1px);
}
.hero-trust__item i {
    color: #d4ba85;
    font-size: 0.95rem;
}
.hero-trust__sep {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(201, 169, 110, 0.55);
}

@media (max-width: 640px) {
    /* El hero arranca más cerca del nav y respira menos abajo */
    .hero-section { padding-top: 5rem; padding-bottom: 2rem; }

    .hero-content { max-width: 100%; }

    /* Eyebrow: cabe sin desbordar (menos tracking) y puede partir en 2 líneas */
    .hero-eyebrow {
        max-width: 100%;
        white-space: normal;
        text-align: center;
        line-height: 1.5;
        font-size: 0.58rem;
        letter-spacing: 0.14em;
        padding: 0.4rem 0.9rem;
        margin-bottom: 1rem;
    }

    /* Compactar el bloque vertical en móvil, dejando aire bajo el logo
       (su anillo/halo se extiende ~12px más allá del círculo) */
    .hero-logo-wrap { margin-bottom: 1.6rem; }
    .hero-divider   { margin-bottom: 0.85rem; }
    .hero-subtitle  { margin-bottom: 1.3rem; }
    .hero-trust     { font-size: 0.72rem; gap: 0.5rem 1.1rem; margin-top: 1.2rem; }
}

/* Animaciones personalizadas */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 1s ease-out;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.btn-primary {
    position: relative;
    overflow: hidden;
    color: var(--color-white);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

/* Cards de categorias */
.category-card {
    transition: all 0.3s ease;
}

.category-card:hover {
    box-shadow: 0 10px 30px rgba(201, 169, 110, 0.2);
}

/* Cards de productos */
.product-card {
    transition: all 0.3s ease;
}
.product-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.product-card img {
    transition: transform 0.3s ease;
}

.product-card:hover img {
    transform: scale(1.1);
}

/* Input personalizado */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
    transition: all 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="date"]:focus,
textarea:focus,
select:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
}

/* Checkbox personalizado */
input[type="checkbox"] {
    accent-color: var(--color-gold);
    cursor: pointer;
}

input[type="radio"] {
    accent-color: var(--color-gold);
    cursor: pointer;
}

/* Scrollbar personalizado */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #1F2937;
}

::-webkit-scrollbar-thumb {
    background: var(--color-gold);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold-dark);
}

/* Efectos de hover en enlaces */
a {
    transition: color 0.3s ease;
}

a {
    transition: color 0.3s ease;
}

.tab-btn {
    position: relative;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--color-gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.tab-btn.active::after {
    width: 100%;
}

.tab-btn.active {
    color: var(--color-gold);
    background: rgba(201, 169, 110, 0.1);
}

/* Galeria de imagenes */
.image-gallery {
    position: relative;
}

.image-gallery .thumbnail {
    transition: all 0.3s ease;
}

.image-gallery .thumbnail:hover {
    transform: scale(1.05);
    border-color: var(--color-gold);
}

/* Loading spinner */
.spinner {
    border: 3px solid rgba(201, 169, 110, 0.1);
    border-top-color: var(--color-gold);
    border-radius: 50%;
    width: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
}

.gradient-text {
    background: linear-gradient(135deg, #C9A96E 0%, #A8884E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
/* Checkout step indicators */
.checkout-step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(0.7) sepia(0.3) saturate(2) hue-rotate(5deg);
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

input[type="date"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
    filter: invert(0.8) sepia(0.5) saturate(3) hue-rotate(5deg);
}

/* ===== Products List View ===== */
#products-grid.list-view {
    grid-template-columns: 1fr !important;
    gap: 1rem;
}

#products-grid.list-view .product-item,
#products-grid.list-view .product-card {
    display: flex;
    flex-direction: row;
    overflow: hidden;
}

#products-grid.list-view .product-item > .relative,
#products-grid.list-view .product-card > .relative {
    width: 220px;
    min-width: 220px;
    flex-shrink: 0;
}

#products-grid.list-view .product-item > .relative .h-64,
#products-grid.list-view .product-item > .relative .h-72,
#products-grid.list-view .product-card > .relative .h-64,
#products-grid.list-view .product-card > .relative .h-72 {
    height: 100% !important;
}

#products-grid.list-view .product-item > .p-6,
#products-grid.list-view .product-card > .p-6 {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#products-grid.list-view .product-item:hover,
#products-grid.list-view .product-card:hover {
    transform: none !important;
}

@media (max-width: 640px) {
    #products-grid.list-view .product-item,
    #products-grid.list-view .product-card {
        flex-direction: column;
    }
    #products-grid.list-view .product-item > .relative,
    #products-grid.list-view .product-card > .relative {
        width: 100%;
        min-width: unset;
    }
}

input[type="number"] {
    -moz-appearance: textfield;
    appearance: textfield;
}

/* Social share buttons */
.social-share button {
    transition: all 0.3s ease;
}

.social-share button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(201, 169, 110, 0.3);
}

/* Filter sidebar */
.filter-sidebar {
    position: sticky;
    top: 100px;
}

/* Product badge */
.badge-new,
.badge-sale,
.badge-hot {
    animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(201, 169, 110, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(201, 169, 110, 0);
    }
}

/* Testimonial card */
.testimonial-card {
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Newsletter input */
.newsletter-input {
    position: relative;
}

.newsletter-input input {
    padding-right: 120px;
}

.newsletter-input button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
}

/* Progress bar */
.progress-bar {
    height: 8px;
    background: #1F2937;
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-dark));
    border-radius: 10px;
    transition: width 0.3s ease;
}

/* Search bar */
.search-bar {
    position: relative;
}

.search-bar input {
    padding-left: 40px;
}

.search-bar .search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #9CA3AF;
}

/* ===========================
   Testimonials — Luxury Design
   =========================== */
.testi-eyebrow {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: #c9a96e;
    margin-bottom: 0.75rem;
}

.testi-divider {
    width: 44px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #c9a96e, transparent);
    margin: 1rem auto 0;
}

.testi-card {
    background: #ffffff;
    border: 1px solid rgba(201, 169, 110, 0.22);
    border-top: 2px solid #c9a96e;
    border-radius: 3px;
    padding: 2rem 2rem 1.5rem;
    position: relative;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.testi-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(201, 169, 110, 0.35);
    border-color: rgba(201, 169, 110, 0.40);
}

.testi-quote {
    font-family: 'Playfair Display', serif;
    font-size: 5.5rem;
    line-height: 0.9;
    color: rgba(201, 169, 110, 0.18);
    margin-bottom: -0.5rem;
    user-select: none;
    pointer-events: none;
}

.testi-text {
    color: #4b5563;
    font-size: 0.92rem;
    line-height: 1.78;
    margin-bottom: 1.25rem;
    font-style: italic;
    font-weight: 400;
}

.testi-scent {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: rgba(201, 169, 110, 0.08);
    border: 1px solid rgba(201, 169, 110, 0.28);
    color: #a8884e;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.28rem 0.7rem;
    border-radius: 2px;
    margin-bottom: 1.5rem;
}

.testi-footer {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c9a96e 0%, #7a5e30 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 700;
    color: #ffffff;
    flex-shrink: 0;
    letter-spacing: 0.04em;
    box-shadow: 0 0 0 2px rgba(201, 169, 110, 0.3);
}

.testi-name {
    font-family: 'Playfair Display', serif;
    font-size: 0.93rem;
    color: #1f2937;
    font-weight: 500;
    line-height: 1.2;
}

.testi-loc {
    font-size: 0.72rem;
    color: #9ca3af;
    letter-spacing: 0.05em;
    margin-top: 0.15rem;
}

.testi-stars {
    margin-left: auto;
    color: #c9a96e;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    flex-shrink: 0;
}

/* Mobile menu */

#mobile-menu {
    transition: all 0.3s ease;
    overflow: hidden;
}

/* Skeleton loader */
.skeleton {
    background: linear-gradient(
        90deg,
        #1F2937 25%,
        #374151 50%,
        #1F2937 75%
    );
    background-size: 200% 100%;
    animation: loading 1.5s ease-in-out infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Responsive */
@media (max-width: 767px) {
    .hero-logo {
        width: 9rem;
        height: 9rem;
        padding: 1.25rem;
    }
}

/* Print styles */
@media print {
    nav, footer, .modal-backdrop, .modal-overlay,
    #search-modal, #cart-modal, #admin-sidebar,
    [class*="fixed bottom-"][class*="right-"] {
        display: none !important;
    }
    body {
        background-color: #ffffff !important;
        color: #000000 !important;
    }
}

/* Focus visible for keyboard navigation */
*:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 2px;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Notification animation */
@keyframes fadeInUpNotif {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Product item hover */
.product-item {
    transition: all 0.3s ease;
}

.product-item:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.product-item img {
    transition: transform 0.3s ease;
}

.product-item:hover img {
    transform: scale(1.1);
}

/* Disabled button */
button[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Transición base de botones */
button:not([disabled]) {
    transition: all 0.22s ease;
}

button:not([disabled]):active {
    transform: scale(0.96);
}

/* ── Botones ámbar / CTA ── */
button.bg-amber-500:not([disabled]):hover,
a.bg-amber-500:hover,
.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(201, 169, 110, 0.38);
}

/* ── Links de nav: subrayado deslizante ── */
nav ul a {
    position: relative;
    padding-bottom: 2px;
}
nav ul a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    border-radius: 2px;
    transition: width 0.28s ease;
}
nav ul a:hover::after,
nav ul a.text-amber-400::after {
    width: 100%;
}

/* ── Botones de vista (grid/list) ── */
#grid-view,
#list-view {
    transition: all 0.2s ease;
}
#grid-view:not(.bg-amber-500):hover,
#list-view:not(.bg-amber-500):hover {
    color: var(--color-gold);
    border-color: rgba(201, 169, 110, 0.5);
    background: rgba(201, 169, 110, 0.07);
}
#grid-view.bg-amber-500,
#list-view.bg-amber-500 {
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.2);
}

/* ── Tarjetas de categoría: lift dorado ── */
.category-card {
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.category-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 14px 30px rgba(201, 169, 110, 0.18) !important;
    border-color: rgba(201, 169, 110, 0.45) !important;
}

/* ── Tarjetas de producto: lift suave ── */
.product-card,
.product-item {
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease !important;
}
.product-card:hover,
.product-item:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 16px 36px rgba(201, 169, 110, 0.15) !important;
    border-color: rgba(201, 169, 110, 0.5) !important;
}

/* ── Labels del sidebar de filtros ── */
.filter-sidebar label {
    transition: color 0.18s ease;
}
.filter-sidebar label:hover {
    color: var(--color-gold);
}

/* ── Botones de borde ámbar (CTA outline) ── */
a.border-amber-500:hover,
button.border-amber-500:not([disabled]):hover {
    box-shadow: 0 4px 16px rgba(201, 169, 110, 0.28);
}

/* Selection color */
::selection {
    background-color: var(--color-gold);
    color: #000000;
}

/* ===========================
   Tema Claro / Light Theme
   =========================== */

/* Hero — escena nocturna NYC: el fondo lo aporta .hero-ny-scene (degradado)
   + el skyline SVG. Sin imagen de fondo. */

/* Fondos de secciones */
#categorias {
    background: #f9fafb;
    background-image: none;
}

#productos {
    background: #ffffff;
}

#guia {
    background: #f9fafb;
    background-image: none;
}

#beneficios {
    background: #ffffff;
}

#testimonios {
    background: #ffffff;
}

#sobre-nosotros {
    background: #ffffff;
}

#contacto {
    background: #f9fafb;
}

/* Tarjetas de categoría */
.category-card {
    background: #ffffff !important;
    backdrop-filter: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}

.category-card:hover {
    background: #fffbf0 !important;
    box-shadow: 0 8px 24px rgba(201, 169, 110, 0.2);
}

.category-card p {
    color: #6b7280 !important;
}

/* Tarjetas de familias olfativas */
#guia h4 {
    color: #111827;
}

#guia p {
    color: #6b7280;
}

/* Textos en secciones claras */
#categorias .text-gray-400,
#productos .text-gray-400 {
    color: #6b7280;
}

#beneficios .text-gray-400 {
    color: #4b5563;
}

#testimonios .text-gray-300 {
    color: #374151;
}

#testimonios .text-gray-400 {
    color: #6b7280;
}

#sobre-nosotros .text-gray-300 {
    color: #374151;
}

#sobre-nosotros .text-gray-400 {
    color: #6b7280;
}

#contacto .text-gray-300 {
    color: #374151;
}

#contacto .text-gray-400 {
    color: #4b5563;
}

/* Inputs en sección de contacto */
#contacto input,
#contacto textarea {
    background-color: #ffffff !important;
    border-color: #d1d5db !important;
    color: #111827 !important;
}

/* Scrollbar tema claro */
::-webkit-scrollbar-track {
    background: #f1f5f9;
}

/* Tarjetas de productos (generadas por JS) */
.product-card,
.product-item {
    background: #ffffff !important;
    backdrop-filter: none;
    border-color: #e5e7eb !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.product-card:hover,
.product-item:hover {
    box-shadow: 0 12px 30px rgba(201, 169, 110, 0.14) !important;
    border-color: rgba(201, 169, 110, 0.55) !important;
}

.product-card .text-gray-400,
.product-item .text-gray-400 {
    color: #6b7280;
}

/* Skeleton tema claro */
.skeleton {
    background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%) !important;
    background-size: 200% 100% !important;
}

/* Tabs en fondo claro */
.tab-btn {
    color: #374151;
}

.tab-btn:hover {
    background: #f9fafb;
}

.tab-btn.active {
    color: var(--color-gold);
    background: rgba(201, 169, 110, 0.08);
}

/* Contenido dinámico del detalle de producto */
#product-content .text-gray-300 { color: #374151; }
#product-content .text-gray-400 { color: #6b7280; }
#product-content .bg-gray-800   { background-color: #f3f4f6 !important; color: #374151; }
#product-content .border-gray-700,
#product-content .border-gray-800 { border-color: #e5e7eb; }
#product-content .hover\:bg-gray-800:hover { background-color: #f3f4f6 !important; }

/* Tabla de información del producto */
#tab-info-content .border-gray-700 { border-color: #e5e7eb; }
#tab-info-content .text-gray-400   { color: #6b7280; }

/* Texto de descripción del producto */
#tab-description-text { color: #374151; }


/* ===========================================================
   Scroll Reveal � animaciones elegantes al entrar en viewport
   =========================================================== */
[data-reveal] {
    opacity: 0;
    will-change: opacity, transform, filter;
    transition:
        opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
        filter   0.9s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--reveal-delay, 0s);
}

/* Variantes � estado inicial */
[data-reveal="fade-up"]    { transform: translateY(28px); }
[data-reveal="fade-down"]  { transform: translateY(-28px); }
[data-reveal="fade-left"]  { transform: translateX(40px); }
[data-reveal="fade-right"] { transform: translateX(-40px); }
[data-reveal="scale"]      { transform: scale(0.92); }
[data-reveal="blur"]       { filter: blur(8px); transform: translateY(18px); }
[data-reveal="zoom-rotate"]{ transform: scale(0.88) rotate(-2deg); }

/* Estado revelado � com�n a todas las variantes */
[data-reveal].is-revealed {
    opacity: 1;
    transform: none;
    filter: none;
}

/* Headers de secci�n (text-center mb-X) */
.reveal-section-header { opacity: 0; transform: translateY(22px); }
.reveal-section-header.is-revealed {
    opacity: 1;
    transform: none;
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Brillo dorado suave en bordes al revelarse (cards) */
.reveal-glow {
    position: relative;
}
.reveal-glow::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(135deg,
        rgba(201, 169, 110, 0) 0%,
        rgba(201, 169, 110, 0.45) 50%,
        rgba(201, 169, 110, 0) 100%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 1.2s ease;
    z-index: -1;
    filter: blur(8px);
}
.reveal-glow.is-revealed::before { opacity: 1; }

/* L�nea decorativa que se expande bajo t�tulos de secci�n */
.reveal-underline {
    position: relative;
    display: inline-block;
}
.reveal-underline::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #c9a96e, transparent);
    transition: width 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}
.reveal-underline.is-revealed::after { width: 120px; }

/* Parallax sutil en im�genes */
.reveal-parallax {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

/* Accesibilidad: respeta usuarios que prefieren menos movimiento */
@media (prefers-reduced-motion: reduce) {
    [data-reveal],
    .reveal-section-header,
    .reveal-underline::after {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
        transition: none !important;
    }
    .reveal-underline::after { width: 120px !important; }
}

/* ===========================================================
   LUXURY REFINEMENT — pasada editorial estilo "Clive Christian"
   Paleta monocroma (carbón + marfil + un solo dorado), ritmo
   generoso, acentos contenidos. Va al final para ganar la
   cascada sobre las reglas previas. El hero/skyline no se toca.
   =========================================================== */

:root {
    --ink: #1a1712;          /* carbón para títulos serif y texto */
    --ink-soft: #4a443b;     /* texto secundario */
    --ivory: #f7f3ec;        /* fondo cálido de sección */
    --hairline: rgba(26, 23, 18, 0.10);
}

/* ---- Ritmo: más aire entre bloques ---- */
#categorias, #productos, #beneficios, #guia,
#testimonios, #sobre-nosotros, #contacto {
    padding-top: 7rem;
    padding-bottom: 7rem;
}
@media (max-width: 640px) {
    #categorias, #productos, #beneficios, #guia,
    #testimonios, #sobre-nosotros, #contacto {
        padding-top: 4.5rem;
        padding-bottom: 4.5rem;
    }
}

/* ---- Bandas alternas marfil / blanco ---- */
#categorias     { background: var(--ivory); }
#productos      { background: #ffffff; }
#beneficios     { background: var(--ivory); }
#guia           { background: #ffffff; }
#testimonios    { background: var(--ivory); }
#sobre-nosotros { background: #ffffff; }
#contacto       { background: var(--ivory); }

/* ---- Títulos de sección: serif carbón; el dorado, solo como filete ---- */
#categorias .text-center h2,
#productos  .text-center h2,
#beneficios .text-center h2,
#guia       .text-center h2,
#testimonios h2,
#contacto   .text-center h2,
#sobre-nosotros h2 {
    color: var(--ink) !important;
    font-weight: 500;
    letter-spacing: 0.005em;
}

/* Filete dorado centrado bajo los títulos de sección */
#categorias .text-center h2::after,
#productos  .text-center h2::after,
#beneficios .text-center h2::after,
#guia       .text-center h2::after,
#contacto   .text-center h2::after {
    content: "";
    display: block;
    width: 54px;
    height: 1px;
    margin: 1.25rem auto 0;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

/* Subtítulos: más callados, tracking amplio, peso ligero */
#categorias .text-center p,
#productos  .text-center p,
#beneficios .text-center p,
#guia       .text-center p,
#contacto   .text-center p {
    color: var(--ink-soft) !important;
    letter-spacing: 0.04em;
    font-weight: 300;
}

/* ---- Tarjetas de categoría: mínimas, monocromas, editoriales ---- */
#categorias .category-card {
    background: #ffffff !important;
    border: 1px solid var(--hairline) !important;
    border-radius: 2px !important;
    padding: 2.25rem 1rem !important;
    box-shadow: none !important;
}
#categorias .category-card:hover {
    background: #ffffff !important;
    border-color: rgba(201, 169, 110, 0.55) !important;
    box-shadow: 0 18px 40px -18px rgba(26, 23, 18, 0.28) !important;
    transform: translateY(-4px) !important;
}
#categorias .category-card i {
    color: var(--color-gold) !important;
    font-size: 1.7rem !important;
    margin-bottom: 1rem !important;
    transition: transform 0.3s ease;
}
#categorias .category-card:hover i { transform: translateY(-2px); }
#categorias .category-card h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    color: var(--ink) !important;
    letter-spacing: 0.02em;
}
#categorias .category-card p { color: var(--ink-soft) !important; }

/* ---- Familias olfativas: chips uniformes, monocromos ---- */
#guia a {
    background: #ffffff !important;
    border: 1px solid var(--hairline) !important;
    border-radius: 2px !important;
    padding: 1.5rem 0.75rem !important;
    transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease !important;
}
#guia a:hover {
    border-color: rgba(201, 169, 110, 0.55) !important;
    transform: translateY(-3px);
    box-shadow: 0 14px 30px -16px rgba(26, 23, 18, 0.22);
}
#guia a i {
    color: var(--color-gold) !important;
    opacity: 0.85;
}
#guia a h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    color: var(--ink) !important;
}
#guia a p { color: var(--ink-soft) !important; }

/* ---- Beneficios: aro del icono más sutil ---- */
#beneficios h3 { color: var(--ink) !important; font-weight: 500; }
#beneficios .text-gray-400 { color: var(--ink-soft) !important; }

/* ---- CTA "Ver todos": pill dorado sólido, sobrio ---- */
#productos a.border-amber-500 {
    border-radius: 2px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 0.75rem;
}

/* ===========================================================
   REFINEMENT — Flujo de compra (tarjetas + listado)
   Extiende la pasada editorial a productos.html y a todas las
   tarjetas de producto (home destacados, listado, relacionados).
   =========================================================== */

/* ---- Tarjetas de producto: nombre serif carbón, radios finos ---- */
.product-card,
.product-item {
    border-radius: 2px !important;
}
.product-card h3,
.product-item h3 {
    font-family: 'Playfair Display', serif !important;
    font-weight: 500 !important;
    color: var(--ink) !important;
    letter-spacing: 0.01em;
}
.product-card .p-6 > span:first-child,
.product-item .p-6 > span:first-child {
    color: var(--color-gold) !important;
    letter-spacing: 0.16em;
}
.product-card .p-6 button,
.product-item .p-6 button,
.product-card .p-6 a,
.product-item .p-6 a {
    border-radius: 2px !important;
}

/* ---- Página de listado (.page-shop) ---- */
.page-shop > section:first-of-type {
    background: var(--ivory);
}
.page-shop h1 {
    color: var(--ink) !important;
    font-weight: 500;
    letter-spacing: 0.01em;
}
.page-shop h1 + p {
    color: var(--ink-soft) !important;
    letter-spacing: 0.03em;
    font-weight: 300;
}

/* Encabezados del sidebar de filtros: serif carbón con filete, no dorado */
.page-shop aside h3,
.page-shop aside h4 {
    color: var(--ink) !important;
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    letter-spacing: 0.02em;
}
.page-shop aside h4 {
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--hairline);
}
/* El botón "Limpiar" conserva el acento dorado y su tipografía UI */
.page-shop #clear-filters {
    color: var(--color-gold) !important;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* ===========================================================
   Tarjetas de categoría EDITORIALES con imagen (home #categorias)
   Foto a sangre + overlay + nombre serif + CTA dorado en hover.
   =========================================================== */
.lux-cat-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 2px;
    aspect-ratio: 4 / 5;
    background: #14110d;
    box-shadow: 0 12px 34px -20px rgba(26, 23, 18, 0.55);
    isolation: isolate;
}
.lux-cat-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
/* Overlay oscuro para legibilidad del texto */
.lux-cat-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top,
        rgba(10, 8, 6, 0.86) 0%,
        rgba(10, 8, 6, 0.46) 38%,
        rgba(10, 8, 6, 0.12) 68%,
        rgba(10, 8, 6, 0.28) 100%);
    transition: background 0.5s ease;
}
/* Filete dorado que aparece en hover */
.lux-cat-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    border: 1px solid transparent;
    border-radius: 2px;
    pointer-events: none;
    transition: border-color 0.4s ease;
}
.lux-cat-card:hover .lux-cat-media { transform: scale(1.06); }
.lux-cat-card:hover::before { border-color: rgba(201, 169, 110, 0.75); }
.lux-cat-card:hover::after {
    background: linear-gradient(to top,
        rgba(10, 8, 6, 0.9) 0%,
        rgba(10, 8, 6, 0.52) 42%,
        rgba(10, 8, 6, 0.2) 72%,
        rgba(10, 8, 6, 0.36) 100%);
}

.lux-cat-body {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    padding: 1.5rem 1.35rem;
    text-align: left;
}
.lux-cat-name {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 1.12;
    letter-spacing: 0.01em;
    color: #f6efe1;
    margin: 0 0 0.3rem;
}
.lux-cat-desc {
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    color: rgba(246, 239, 225, 0.72);
    margin: 0;
}
.lux-cat-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin-top: 0.9rem;
    border: 1px solid rgba(201, 169, 110, 0.55);
    border-radius: 999px;
    color: #e6c982;
    font-size: 0.7rem;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.4s ease, transform 0.4s ease,
                background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.lux-cat-card:hover .lux-cat-cta {
    opacity: 1;
    transform: translateY(0);
    background: #c9a96e;
    color: #14110d;
    border-color: #c9a96e;
}

@media (max-width: 640px) {
    .lux-cat-card { aspect-ratio: 3 / 4; }
    .lux-cat-name { font-size: 1.2rem; }
    /* En móvil (sin hover) el CTA se muestra siempre */
    .lux-cat-cta { opacity: 1; transform: none; }
}

/* ===========================================================
   PASO 2 — Filete que reemplaza el rating falso en las cards
   =========================================================== */
.lux-card-rule {
    width: 44px;
    height: 1px;
    margin: 0.15rem 0 1.1rem;
    background: linear-gradient(90deg, var(--color-gold), rgba(201, 169, 110, 0));
    opacity: 0.85;
}

/* ===========================================================
   PASO 1 — Banda oscura dramática (sección Beneficios)
   Un respiro editorial en carbón entre secciones claras.
   =========================================================== */
#beneficios {
    background: #14110d !important;
    background-image:
        radial-gradient(ellipse at 50% 0%, rgba(201, 169, 110, 0.10), transparent 62%),
        radial-gradient(ellipse at 90% 100%, rgba(201, 169, 110, 0.06), transparent 55%) !important;
    border-top: 1px solid rgba(201, 169, 110, 0.22);
    border-bottom: 1px solid rgba(201, 169, 110, 0.22);
}
#beneficios .text-center h2 { color: #f6efe1 !important; }
#beneficios .text-center p  { color: rgba(246, 239, 225, 0.66) !important; }
#beneficios h3              { color: #f6efe1 !important; }
#beneficios .text-gray-400  { color: rgba(246, 239, 225, 0.62) !important; }
/* Aro de los iconos: un poco más presente sobre fondo oscuro */
#beneficios .bg-amber-500\/10 { background: rgba(201, 169, 110, 0.14) !important; }

/* ===========================================================
   PASO 3 — Afinado de la ficha de detalle (.page-detail)
   =========================================================== */
.page-detail #add-to-cart-detail,
.page-detail #whatsapp-buy {
    border-radius: 2px !important;
    letter-spacing: 0.03em;
}
/* Movimiento más calmado: elevación sutil en vez de "scale" */
.page-detail #add-to-cart-detail:hover,
.page-detail #whatsapp-buy:hover {
    transform: translateY(-2px) !important;
}
/* Respiro extra bajo la ficha antes de los tabs */
.page-detail #product-tabs-section { padding-top: 4rem; }

/* ===========================================================
   DESTACADOS — carrusel estilo "Gift Selection" (Clive Christian)
   Panel crema, centrado, notas itálicas, nombre mayúsculas serif,
   chip de tamaño, fila "precio • AGREGAR" con enlace subrayado.
   =========================================================== */
.lux-feat-carousel {
    position: relative;
    padding: 0;
}
.lux-feat-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 0.75rem 0.25rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.lux-feat-track::-webkit-scrollbar { display: none; }

/* Tarjeta destacada. Sobrescribe (con !important) las reglas de
   `.product-card` del tema claro para lograr el panel crema. */
.lux-feat-card {
    /* 4 tarjetas visibles (3 gaps de 1.5rem) */
    flex: 0 0 calc((100% - 4.5rem) / 4);
    width: auto;
    scroll-snap-align: start;
    background: #f4f0ea !important;
    border: none !important;
    box-shadow: 0 14px 34px -22px rgba(26, 23, 18, 0.4) !important;
    border-radius: 2px !important;
    text-align: center;
    padding-bottom: 1.75rem;
    overflow: hidden;
}
.lux-feat-media {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 290px;
    background: #ece5d9;
    overflow: hidden;
}
.lux-feat-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.lux-feat-card:hover .lux-feat-img { transform: scale(1.05); }

.lux-feat-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 0.72rem;
    letter-spacing: 0.02em;
    color: #f0e9db;
    background: #2a2621;
    padding: 0.18rem 0.72rem;
    border-radius: 999px;
}

.lux-feat-body { padding: 1.4rem 1.2rem 0; }
.lux-feat-brand {
    display: block;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    color: var(--color-gold) !important;
    margin-bottom: 0.5rem;
}
.lux-feat-notes {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 0.86rem;
    color: var(--ink-soft);
    margin: 0 0 0.35rem;
}
.lux-feat-name-link { display: block; }
.lux-feat-name {
    font-family: 'Playfair Display', serif !important;
    font-weight: 500 !important;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.95rem !important;
    line-height: 1.3;
    color: var(--ink) !important;
    margin: 0 0 0.9rem !important;
}
.lux-feat-size {
    display: inline-block;
    border: 1px solid var(--hairline);
    color: var(--ink-soft);
    font-size: 0.72rem;
    letter-spacing: 0.05em;
    padding: 0.25rem 0.75rem;
    border-radius: 2px;
    margin-bottom: 1.1rem;
}
.lux-feat-buy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}
.lux-feat-price {
    font-family: 'Inter', sans-serif !important;
    font-size: 0.82rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.02em;
    color: var(--ink) !important;
}
.lux-feat-dot { color: var(--color-gold); }
.lux-feat-add {
    background: none;
    border: none;
    padding: 0;
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink);
    text-decoration: underline;
    text-underline-offset: 4px;
    cursor: pointer;
    transition: color 0.25s ease;
}
.lux-feat-add:hover { color: var(--color-gold); }
.lux-feat-add[disabled] { color: #9ca3af; text-decoration: none; cursor: not-allowed; }

/* Navegación del carrusel — centrada abajo, minimalista y elegante */
.lux-feat-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2.75rem;
}
.lux-feat-arrow {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: transparent;
    color: var(--ink);
    border: 1px solid rgba(26, 23, 18, 0.20);
    font-size: 0.8rem;
    letter-spacing: 0;
    transition: color 0.3s ease, border-color 0.3s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.lux-feat-arrow:hover {
    color: var(--color-gold);
    border-color: var(--color-gold);
    transform: translateY(-3px);
}
.lux-feat-arrow:active { transform: translateY(0); }

/* La tarjeta destacada NO debe heredar el hover-lift genérico de .product-card */
.lux-feat-card.product-card:hover {
    transform: none !important;
    border-color: transparent !important;
}

/* Tablet: 2 tarjetas visibles */
@media (max-width: 1023px) {
    .lux-feat-card { flex-basis: calc((100% - 1.5rem) / 2); }
}
/* Móvil: una sola tarjeta, scroll táctil nativo, sin flechas */
@media (max-width: 640px) {
    .lux-feat-card { flex-basis: 100%; }
    .lux-feat-media { height: 300px; }
    .lux-feat-nav { display: none; }
}

/* ===========================================================
   Listado "Todos los productos" con tarjetas estilo destacado
   (grid usa el estilo tal cual; aquí solo se adapta la VISTA LISTA)
   =========================================================== */
#products-grid.list-view .lux-feat-card {
    text-align: left;
    align-items: stretch;
}
#products-grid.list-view .lux-feat-media {
    width: 220px;
    min-width: 220px;
    height: 220px;
    flex-shrink: 0;
}
#products-grid.list-view .lux-feat-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 1.5rem 1.75rem;
}
#products-grid.list-view .lux-feat-name-link { text-align: left; }
#products-grid.list-view .lux-feat-buy { justify-content: flex-start; }

@media (max-width: 640px) {
    #products-grid.list-view .lux-feat-card { flex-direction: column; }
    #products-grid.list-view .lux-feat-media { width: 100%; min-width: 0; height: 260px; }
    #products-grid.list-view .lux-feat-body { align-items: center; text-align: center; }
    #products-grid.list-view .lux-feat-buy { justify-content: center; }
}

/* ===========================================================
   CARRITO — panel deslizante refinado (carbón + dorado + serif)
   Aplica en todas las páginas vía #cart-modal.
   =========================================================== */
#cart-modal > div {
    background: #14110d !important;
    border-left: 1px solid rgba(201, 169, 110, 0.28);
    box-shadow: -24px 0 60px -20px rgba(0, 0, 0, 0.7);
}
#cart-modal h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    color: #f6efe1;
    letter-spacing: 0.01em;
}
#cart-modal #close-cart { color: rgba(246, 239, 225, 0.55); transition: color 0.2s ease; }
#cart-modal #close-cart:hover { color: #f6efe1; }
#cart-modal .border-t { border-color: rgba(201, 169, 110, 0.20) !important; }
#cart-modal .border-t span:first-child { color: #e9dcc0; }
#cart-total {
    color: var(--color-gold) !important;
    font-family: 'Playfair Display', serif;
}

/* Botones de acción */
#cart-modal #checkout-btn {
    background: linear-gradient(135deg, #e6c982 0%, #c9a96e 55%, #a9854e 100%) !important;
    color: #1a120a !important;
    border-radius: 2px !important;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.78rem;
}
#cart-modal #whatsapp-order {
    border-radius: 2px !important;
    letter-spacing: 0.06em;
}

/* Estado vacío */
.cart-empty {
    text-align: center;
    padding: 3.5rem 1rem;
    color: rgba(246, 239, 225, 0.5);
}
.cart-empty i { font-size: 2.4rem; color: rgba(201, 169, 110, 0.35); margin-bottom: 1rem; }
.cart-empty p { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1rem; }

/* Ítem del carrito */
.cart-item {
    display: flex;
    gap: 1rem;
    padding-bottom: 1.25rem;
    margin-bottom: 1.25rem;
    border-bottom: 1px solid rgba(201, 169, 110, 0.12);
}
.cart-item__media {
    width: 74px;
    height: 74px;
    flex-shrink: 0;
    border-radius: 2px;
    overflow: hidden;
    background: #211b13;
    border: 1px solid rgba(201, 169, 110, 0.20);
    display: flex;
    align-items: center;
    justify-content: center;
}
.cart-item__img { width: 100%; height: 100%; object-fit: cover; }
.cart-item__ph { font-size: 1.5rem; color: rgba(201, 169, 110, 0.4); }
.cart-item__info { flex: 1; min-width: 0; }
.cart-item__name {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    color: #f6efe1;
    font-size: 0.98rem;
    line-height: 1.25;
    margin-bottom: 0.2rem;
}
.cart-item__brand {
    font-size: 0.64rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 0.65rem;
}
.cart-qty {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(201, 169, 110, 0.30);
    border-radius: 2px;
}
.cart-qty__btn {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e9dcc0;
    font-size: 0.62rem;
    transition: background 0.2s ease, color 0.2s ease;
}
.cart-qty__btn:hover { background: rgba(201, 169, 110, 0.15); color: #ffffff; }
.cart-qty__n { min-width: 34px; text-align: center; font-size: 0.85rem; color: #f6efe1; }
.cart-item__right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    text-align: right;
}
.cart-item__price {
    font-family: 'Playfair Display', serif;
    color: var(--color-gold);
    font-weight: 500;
    font-size: 0.95rem;
}
.cart-item__remove {
    color: rgba(255, 255, 255, 0.32);
    font-size: 0.9rem;
    margin-top: auto;
    transition: color 0.2s ease;
}
.cart-item__remove:hover { color: #e07a6b; }

/* ===========================================================
   HERO fotográfico — foto de NY nocturna (reemplaza el skyline SVG)
   Mantiene logo/titular/CTA sobre un overlay oscuro. El SVG queda
   en el DOM pero oculto (revertir = quitar la clase .hero-photo).
   =========================================================== */
.hero-photo {
    background: #0a0a0a url('../images/hero-ny.jpg?sunny') center center / cover no-repeat !important;
}
/* Oculta la escena ilustrada anterior */
.hero-photo .ny-skyline,
.hero-photo .ny-grid-overlay,
.hero-photo .hero-pattern {
    display: none !important;
}
/* Overlay para legibilidad del texto sobre la foto de día (más brillante):
   oscurecido central tras el bloque de texto + base uniforme y pie más oscuro. */
.hero-photo .hero-overlay {
    background:
        radial-gradient(ellipse 64% 55% at 50% 47%, rgba(8, 7, 5, 0.50) 0%, transparent 72%),
        linear-gradient(180deg,
            rgba(8, 7, 5, 0.40) 0%,
            rgba(8, 7, 5, 0.34) 42%,
            rgba(8, 7, 5, 0.60) 100%);
}
/* Fijar el fondo en escritorio para un leve efecto de profundidad */
@media (min-width: 768px) {
    .hero-photo { background-attachment: fixed !important; }
}

/* ===========================================================
   FOOTER — pequeños remates de coherencia (monocromo + serif)
   =========================================================== */
/* "Cerrado" fuera de la paleta roja -> tono neutro cálido */
footer .text-red-400 { color: rgba(246, 239, 225, 0.55) !important; }

/* Filete dorado bajo los títulos de columna (como en el resto del sitio) */
footer h4 {
    position: relative;
    padding-bottom: 0.7rem;
    letter-spacing: 0.18em;
}
footer h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 26px;
    height: 1px;
    background: linear-gradient(90deg, var(--color-gold), transparent);
}

/* ===========================================================
   PROMOCIONES — rediseño editorial (contador + tarjeta media)
   =========================================================== */
.promo-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1.35rem;
    color: #d4ba85;
    font-size: 0.72rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-weight: 600;
}
.promo-eyebrow__line { width: 2rem; height: 1px; background: var(--color-gold); }

.promo-title {
    font-size: clamp(2.2rem, 4vw, 3.3rem);
    line-height: 1.08;
    font-weight: 500;
    color: #f6efe1;
    margin: 0 0 1.25rem;
}
.promo-subtitle {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(246, 239, 225, 0.72);
    margin: 0 0 1.75rem;
    max-width: 34rem;
}
.promo-bullets {
    list-style: none;
    margin: 0 0 2rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}
.promo-bullets li {
    display: flex;
    align-items: center;
    color: rgba(246, 239, 225, 0.85);
    font-size: 0.95rem;
}
.promo-bullets li i { color: var(--color-gold); margin-right: 0.75rem; font-size: 0.9rem; }

/* Contador */
.promo-countdown-wrap { margin-bottom: 2rem; }
.promo-countdown-label {
    display: block;
    margin-bottom: 0.7rem;
    font-size: 0.66rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(246, 239, 225, 0.5);
}
.promo-countdown { display: flex; gap: 0.75rem; }
.promo-cd {
    min-width: 66px;
    padding: 0.8rem 0.5rem;
    text-align: center;
    border: 1px solid rgba(201, 169, 110, 0.28);
    border-radius: 3px;
    background: rgba(201, 169, 110, 0.05);
}
.promo-cd__n {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.65rem;
    font-weight: 500;
    line-height: 1;
    color: #f6efe1;
    font-variant-numeric: tabular-nums;
}
.promo-cd__l {
    display: block;
    margin-top: 0.45rem;
    font-size: 0.58rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-gold);
}

/* CTA */
.promo-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.95rem 2.2rem;
    background: linear-gradient(135deg, #e6c982 0%, #c9a96e 55%, #a9854e 100%);
    color: #1a120a;
    border-radius: 2px;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    box-shadow: 0 14px 34px -12px rgba(201, 169, 110, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.promo-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px -12px rgba(201, 169, 110, 0.65);
}

/* Tarjeta editorial de media (imagen o video) */
.promo-media-wrap { display: flex; justify-content: center; }
.promo-media {
    position: relative;
    width: 100%;
    max-width: 26rem;
    aspect-ratio: 4 / 5;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(201, 169, 110, 0.35);
    background: #14110d;
    box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.85), 0 0 70px rgba(201, 169, 110, 0.12);
}
.promo-media__img,
.promo-media__video,
.promo-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.promo-media::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(10, 8, 6, 0.18) 0%, transparent 30%, transparent 62%, rgba(10, 8, 6, 0.58) 100%);
}
.promo-media__chip {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.9rem;
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
    color: #f0e4c8;
    background: rgba(10, 8, 6, 0.55);
    border: 1px solid rgba(201, 169, 110, 0.5);
    border-radius: 999px;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}
.promo-media__chip::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-gold);
    box-shadow: 0 0 8px 2px rgba(201, 169, 110, 0.7);
}
.promo-media__mute {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    z-index: 3;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4ba85;
    background: rgba(10, 8, 6, 0.55);
    border: 1px solid rgba(201, 169, 110, 0.5);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    transition: transform 0.25s ease;
}
.promo-media__mute:hover { transform: scale(1.08); }

@media (max-width: 640px) {
    .promo-countdown { gap: 0.5rem; }
    .promo-cd { min-width: 0; flex: 1; padding: 0.7rem 0.3rem; }
    .promo-cd__n { font-size: 1.35rem; }
    .promo-media { max-width: 100%; }
}
