/* ═══════════════════════════════════════════════════════════════
   Platinum Joyas — Sistema de diseño CSS completo
   Variables + Reset + Componentes públicos
   ═══════════════════════════════════════════════════════════════ */

/* ─── Variables del sistema de diseño ────────────────────────── */
:root {
    /* ── Paleta ───────────────────────────────────────────────── */
    --cream:        #F7F0E6;
    --cream-alt:    #EDE5D4;
    --gold:         #D8B26E;
    --gold-dark:    #A8833E;
    --primary:      #775a1f;
    --brown:        #3D2010;
    --brown-mid:    #6B4020;
    --carbon:       #1E1B1A;
    --esmeralda:    #0F4F45;
    --arena:        #DDD4C7;
    --white:        #FFFFFF;
    --black:        #0A0A0A;

    /* ── Texto ────────────────────────────────────────────────── */
    --text:         #1E1B1A;
    --text-mid:     #4e4639;
    --text-light:   #6B6256;

    /* ── Bordes ───────────────────────────────────────────────── */
    --border:       #DDD4C7;
    --border-light: #e8e1df;
    --pj-border-soft: rgba(139, 111, 71, 0.14);

    /* ── Tipografía ───────────────────────────────────────────── */
    --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans:  'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;

    /* ── Espaciado ────────────────────────────────────────────── */
    --container:   1280px;
    --section-gap: 6rem;
    --radius:      4px;
    --radius-lg:   8px;

    /* ── Sombras ──────────────────────────────────────────────── */
    --shadow-sm: 0 1px 4px rgba(30, 27, 26, 0.06);
    --shadow:    0 4px 16px rgba(30, 27, 26, 0.10);
    --shadow-lg: 0 12px 40px rgba(30, 27, 26, 0.16);

    /* ── Paleta luxury — Block 4A ─────────────────────────────── */
    --lux-black:       #050505;
    --lux-black-soft:  #0B0A08;
    --lux-charcoal:    #11100E;
    --lux-gold:        #C89B55;
    --lux-gold-soft:   #D7B16A;
    --lux-gold-dark:   #7A5A2B;
    --lux-ivory:       #F8F4EC;
    --lux-cream:       #F3EFE7;
    --lux-text-muted:  #D8CEC0;
    --lux-border-gold: rgba(200, 155, 85, 0.32);

    --font-nav-luxury: 'Cinzel', 'Cormorant Garamond', serif;

    /* Topbar 62px + divider 1px + navbar 54px */
    --header-height: 117px;
}

/* ─── Reset ───────────────────────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--cream);
    overflow-x: clip; /* prevent horizontal scroll on iOS */
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul, ol {
    list-style: none;
}

/* ─── Tipografía base ─────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
    font-family: var(--font-serif);
    line-height: 1.2;
    font-weight: 600;
    color: var(--text);
}

/* ─── Contenedor ──────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* ─── Botones ─────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.85rem 2rem;
    border-radius: 0;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: background 0.25s ease, color 0.25s ease, transform 0.15s ease, box-shadow 0.25s ease;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}
.btn-primary:hover {
    background: var(--gold);
    color: var(--carbon);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 1.5px solid var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-gold {
    background: var(--gold);
    color: var(--carbon);
}
.btn-gold:hover {
    background: var(--primary);
    color: var(--white);
}

/* Hero buttons */
.btn-hero {
    background: transparent;
    color: var(--white);
    border: 1.5px solid var(--white);
    padding: 0.75rem 2rem;
}
.btn-hero:hover {
    background: var(--white);
    color: var(--brown);
    transform: translateY(-1px);
}

.btn-hero-outline {
    background: transparent;
    color: rgba(255, 255, 255, 0.85);
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    padding: 0.75rem 2rem;
}
.btn-hero-outline:hover {
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-1px);
}

/* ─── Badges de estado de pedido ────────────────────────────── */
.badge {
    display: inline-block;
    padding: 0.2rem 0.65rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 500;
}
.badge-pending    { background: #FEF3C7; color: #92400E; }
.badge-confirmed  { background: #DBEAFE; color: #1D4ED8; }
.badge-preparing  { background: #EDE9FE; color: #5B21B6; }
.badge-ready      { background: #DCFCE7; color: #15803D; }
.badge-delivered  { background: #F0FDF4; color: #166534; }
.badge-cancelled  { background: #FEF2F2; color: #B91C1C; }

/* ─── Placeholder de desarrollo ──────────────────────────────── */
.dev-placeholder {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    background: var(--cream);
    padding: 2rem;
    text-align: center;
}
.dev-placeholder img {
    max-width: 180px;
    margin: 0 auto;
}
.dev-placeholder h2 {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    color: var(--brown);
}
.dev-placeholder p {
    color: var(--text-mid);
    font-size: 0.95rem;
}
.dev-placeholder a {
    color: var(--gold-dark);
    font-size: 0.875rem;
    text-decoration: underline;
}

/* ─── Formularios base ────────────────────────────────────────── */
.form-group {
    margin-bottom: 1rem;
}
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.35rem;
    color: var(--text-mid);
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.65rem 0.9rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-family: var(--font-sans);
    background: var(--white);
    color: var(--text);
    outline: none;
    transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
}

/* ─── Alertas ─────────────────────────────────────────────────── */
.alert {
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}
.alert-error   { background: #FEF2F2; color: #B91C1C; border: 1px solid #FECACA; }
.alert-success { background: #F0FDF4; color: #166534; border: 1px solid #BBF7D0; }
.alert-info    { background: #EFF6FF; color: #1D4ED8; border: 1px solid #BFDBFE; }
.alert-warning { background: #FFFBEB; color: #92400E; border: 1px solid #FDE68A; }

#cart-alerts:empty { display: none; }


/* ══════════════════════════════════════════════════════════════
   SITE HEADER — LUXURY TWO-LEVEL (Block 4A)
   ══════════════════════════════════════════════════════════════ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--lux-black);
    transition: box-shadow 0.3s;
}

.site-header.scrolled {
    box-shadow: 0 2px 28px rgba(0, 0, 0, 0.55);
}

/* ── Topbar ─────────────────────────────────────────────────── */
.site-topbar {
    background: var(--lux-black);
}

.topbar-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 62px;
    gap: 2.5rem;
    padding: 0 2rem;
    max-width: 1320px;
    margin: 0 auto;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    justify-content: flex-start;
}

.topbar-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    justify-content: flex-end;
}

.topbar-benefit {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.01em;
    color: var(--lux-text-muted);
    white-space: nowrap;
}

.topbar-benefit svg {
    color: var(--lux-gold);
    flex-shrink: 0;
}

.topbar-sep {
    display: inline-block;
    width: 1px;
    height: 14px;
    background: var(--lux-border-gold);
    flex-shrink: 0;
}

.topbar-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.topbar-logo img {
    height: 58px;
    width: auto;
    max-width: 190px;
    object-fit: contain;
}

.topbar-logo:focus-visible {
    outline: 1.5px solid var(--lux-gold);
    outline-offset: 4px;
    border-radius: 2px;
}

.topbar-contact-label {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.01em;
    color: var(--lux-text-muted);
    white-space: nowrap;
}

.topbar-wa {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--lux-gold-soft);
    text-decoration: none;
    transition: color 0.2s;
    white-space: nowrap;
}

.topbar-wa:hover {
    color: var(--lux-gold);
}

.topbar-wa:focus-visible {
    outline: 1.5px solid var(--lux-gold);
    outline-offset: 3px;
    border-radius: 2px;
}

/* Línea divisoria topbar/navbar */
.site-topbar-divider {
    height: 1px;
    background: var(--lux-border-gold);
}

/* ── Navbar ─────────────────────────────────────────────────── */
.site-navbar {
    background: var(--lux-black-soft);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 54px;
    gap: 2rem;
    padding: 0 2rem;
    max-width: 1320px;
    margin: 0 auto;
}

/* Desktop nav */
.site-nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--lux-text-muted);
    position: relative;
    padding-bottom: 2px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-nav-luxury);
    transition: color 0.25s;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--lux-gold);
    transition: width 0.25s ease;
}

.nav-link:hover {
    color: var(--lux-gold-soft);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--lux-gold);
}

.nav-link.active::after {
    width: 100%;
}

.nav-link:focus-visible {
    outline: 1.5px solid var(--lux-gold);
    outline-offset: 4px;
    border-radius: 2px;
}

/* Navbar actions */
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.navbar-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    color: var(--lux-text-muted);
    background: none;
    border: none;
    cursor: pointer;
    border-radius: 2px;
    transition: color 0.2s;
    position: relative;
    text-decoration: none;
}

.navbar-icon-btn:hover {
    color: var(--lux-gold-soft);
}

.navbar-icon-btn:focus-visible {
    outline: 1.5px solid var(--lux-gold);
    outline-offset: 2px;
}

/* Cart button */
.cart-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    color: var(--lux-text-muted);
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.2s;
    border-radius: 2px;
}

.cart-btn:hover {
    color: var(--lux-gold-soft);
}

.cart-btn:focus-visible {
    outline: 1.5px solid var(--lux-gold);
    outline-offset: 2px;
}

.cart-btn svg {
    width: 21px;
    height: 21px;
}

.cart-count {
    position: absolute;
    top: 2px;
    right: 2px;
    min-width: 16px;
    height: 16px;
    padding: 0 3px;
    border-radius: 999px;
    background: var(--lux-gold);
    color: var(--lux-black);
    font-size: 0.6rem;
    font-weight: 700;
    font-family: var(--font-sans);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Currency toggle in navbar — visible pill dorado */
.navbar-currency {
    border: 1.5px solid rgba(200, 155, 85, 0.6) !important;
    color: var(--lux-ivory) !important;
    background: rgba(200, 155, 85, 0.11) !important;
    border-radius: 999px;
    padding: 5px 14px !important;
    font-size: 0.7rem !important;
    letter-spacing: 0.06em;
    font-family: var(--font-sans);
    font-weight: 600;
    text-transform: uppercase;
    opacity: 1;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
    margin-left: 0.35rem;
}

.navbar-currency:hover {
    border-color: var(--lux-gold) !important;
    background: rgba(200, 155, 85, 0.20) !important;
    color: var(--lux-gold-soft) !important;
}

.navbar-currency .currency-toggle__gs.active,
.navbar-currency .currency-toggle__usd.active {
    color: var(--lux-gold-soft);
}

.navbar-currency .currency-toggle__sep {
    color: rgba(200, 155, 85, 0.45);
    margin: 0 2px;
}

/* Customer nav link */
.customer-nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    color: var(--lux-text-muted);
    text-decoration: none;
    transition: color 0.2s;
    border-radius: 2px;
}

.customer-nav-link:hover {
    color: var(--lux-gold-soft);
}

.customer-nav-name {
    display: none;
}

/* Hamburger button */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 34px;
    height: 34px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 2px;
    transition: background 0.2s;
}

.hamburger:hover {
    background: rgba(200, 155, 85, 0.08);
}

.hamburger span {
    display: block;
    width: 20px;
    height: 1.5px;
    background: var(--lux-text-muted);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.2s;
}

.hamburger:hover span {
    background: var(--lux-gold-soft);
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}
.hamburger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}
.hamburger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}


/* ══════════════════════════════════════════════════════════════
   MOBILE MENU
   ══════════════════════════════════════════════════════════════ */

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 85vw);
    z-index: 200;
    background: var(--lux-charcoal);
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: opacity 0.32s ease, visibility 0.32s ease, transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.6);
}

.mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.mobile-menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 199;
    background: rgba(30, 27, 26, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.32s ease, visibility 0.32s ease;
}

.mobile-menu-backdrop.is-open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--lux-border-gold);
}

.mobile-menu-logo {
    display: flex;
    align-items: center;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--lux-gold);
    font-weight: 600;
    text-decoration: none;
}

.mobile-menu-logo img {
    width: 100px;
    height: auto;
    max-height: 40px;
    object-fit: contain;
    display: block;
}

.mobile-menu-close {
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--lux-text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    transition: color 0.2s, background 0.2s;
    line-height: 1;
}

.mobile-menu-close:hover {
    color: var(--lux-gold-soft);
    background: rgba(200, 155, 85, 0.08);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1.5rem;
    gap: 0.15rem;
    overflow-y: auto;
}

.mobile-nav-link {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--lux-text-muted);
    padding: 0.75rem 0.5rem;
    border-bottom: 1px solid rgba(200, 155, 85, 0.12);
    transition: color 0.2s, padding-left 0.2s;
    background: none;
    border-left: none;
    border-right: none;
    border-top: none;
    text-align: left;
    width: 100%;
    cursor: pointer;
}

.mobile-nav-link:hover {
    color: var(--lux-gold-soft);
    padding-left: 0.75rem;
}

.mobile-nav-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--lux-border-gold);
}


/* ══════════════════════════════════════════════════════════════
   HERO SECTION
   ══════════════════════════════════════════════════════════════ */

.hero {
    min-height: 85vh;
    position: relative;
}

.hero__bg {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(30, 27, 26, 0.72) 0%,
        rgba(30, 27, 26, 0.42) 50%,
        rgba(30, 27, 26, 0.12) 100%
    );
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 1;
    color: var(--white);
    padding: 4rem 1.25rem;
    max-width: 620px;
    margin-left: 0;
    text-align: left;
}

.hero__eyebrow {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 1rem;
}

.hero__title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.12;
    margin-bottom: 1rem;
}

.hero__subtitle {
    font-size: 1.1rem;
    color: var(--white);
    opacity: 0.85;
    margin-bottom: 2rem;
    font-weight: 300;
    line-height: 1.6;
}


/* ══════════════════════════════════════════════════════════════
   HERO LUXURY — Block 4A (home redesign)
   ══════════════════════════════════════════════════════════════ */

.hero-luxury {
    background: var(--lux-black);
    position: relative;
    overflow: hidden;
    min-height: 560px;
}

.hero-luxury__image {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-luxury__image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
    display: block;
}

.hero-luxury__image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        100deg,
        rgba(5, 5, 5, 0.93) 0%,
        rgba(5, 5, 5, 0.76) 30%,
        rgba(5, 5, 5, 0.32) 60%,
        rgba(5, 5, 5, 0.05) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.hero-luxury__inner {
    position: relative;
    z-index: 2;
    max-width: var(--container);
    margin: 0 auto;
    padding: 4.5rem 2rem;
    min-height: 560px;
    display: flex;
    align-items: center;
}

.hero-luxury__text {
    max-width: 720px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-lux__eyebrow {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    color: var(--lux-gold);
    margin-bottom: 1.375rem;
}

.hero-lux__title {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 3.6vw, 4.2rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--lux-ivory);
    margin: 0;
    display: block;
    white-space: nowrap;
}

.hero-lux__title-italic {
    display: block;
    font-style: italic;
    color: var(--lux-gold-soft);
    font-weight: 300;
    margin-top: 0.08em;
    white-space: nowrap;
}

.hero-lux__divider {
    width: 56px;
    height: 1px;
    background: var(--lux-gold);
    border: none;
    margin: 1.5rem 0;
}

.hero-lux__desc {
    font-size: 0.98rem;
    line-height: 1.75;
    color: var(--lux-text-muted);
    margin-bottom: 2rem;
    max-width: 480px;
}

.hero-lux__benefits {
    display: grid;
    grid-template-columns: repeat(4, minmax(110px, 1fr));
    width: 100%;
    max-width: 680px;
    margin-bottom: 2.25rem;
    border: 1px solid rgba(200, 155, 85, 0.25);
    border-radius: 2px;
    overflow: hidden;
    background: rgba(5, 5, 5, 0.42);
    backdrop-filter: blur(4px);
}

.hero-lux__benefit {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.5rem 0.875rem;
    text-align: center;
    position: relative;
}

.hero-lux__benefit + .hero-lux__benefit::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16%;
    height: 68%;
    width: 1px;
    background: rgba(200, 155, 85, 0.22);
}

.hero-lux__benefit img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    flex-shrink: 0;
    display: block;
    transform: scale(1.08);
}

.hero-lux__benefit svg {
    color: var(--lux-gold);
    flex-shrink: 0;
}

.hero-lux__benefit-label {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--lux-text-muted);
    line-height: 1.45;
}

.hero-lux__ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-lux__btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 1rem 2.25rem;
    background: var(--lux-gold);
    color: var(--lux-black);
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 2px;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.15s ease, box-shadow 0.25s ease;
    white-space: nowrap;
    border: none;
    cursor: pointer;
}

.hero-lux__btn-primary:hover {
    background: var(--lux-gold-soft);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200, 155, 85, 0.28);
}

.hero-lux__btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 1rem 2.25rem;
    background: transparent;
    color: var(--lux-ivory);
    border: 1px solid rgba(200, 155, 85, 0.55);
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 2px;
    text-decoration: none;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.15s ease;
    white-space: nowrap;
    cursor: pointer;
}

.hero-lux__btn-secondary:hover {
    background: rgba(200, 155, 85, 0.10);
    border-color: var(--lux-gold);
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .hero-luxury {
        min-height: 480px;
    }
    .hero-luxury__inner {
        min-height: 480px;
        padding: 3.5rem 1.5rem;
    }
    .hero-luxury__text {
        max-width: 100%;
    }
    .hero-lux__title {
        font-size: clamp(2rem, 8vw, 3.2rem);
        white-space: normal;
    }
    .hero-lux__title-italic {
        white-space: normal;
    }
    .hero-lux__benefits {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 100%;
    }
    .hero-lux__benefit img {
        width: 44px;
        height: 44px;
    }
    .hero-lux__benefit:nth-child(3)::before {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-luxury {
        min-height: 400px;
    }
    .hero-luxury__inner {
        min-height: 400px;
        padding: 2.5rem 1.25rem;
    }
    .hero-lux__title {
        font-size: clamp(1.8rem, 10vw, 2.8rem);
        white-space: normal;
    }
    .hero-lux__title-italic {
        white-space: normal;
    }
    .hero-lux__benefits {
        max-width: 100%;
    }
    .hero-lux__benefit {
        padding: 1.25rem 0.625rem;
        gap: 0.6rem;
    }
    .hero-lux__benefit img {
        width: 40px;
        height: 40px;
        transform: scale(1.05);
    }
    .hero-lux__ctas {
        flex-direction: column;
        width: 100%;
    }
    .hero-lux__btn-primary,
    .hero-lux__btn-secondary {
        width: 100%;
        justify-content: center;
    }
}


/* ══════════════════════════════════════════════════════════════
   SEARCH OVERLAY — Block 4A
   ══════════════════════════════════════════════════════════════ */

.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 300;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    pointer-events: none;
}

.search-overlay.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.search-overlay__panel {
    background: var(--lux-charcoal);
    border-bottom: 1px solid var(--lux-border-gold);
    padding: 1.125rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 100%;
    position: relative;
    z-index: 1;
}

.search-overlay__form {
    display: flex;
    align-items: center;
    flex: 1;
    gap: 0;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--lux-border-gold);
    border-radius: 3px;
    padding: 0 0.875rem;
    max-width: 680px;
}

.search-overlay__input {
    flex: 1;
    background: none;
    border: none;
    padding: 0.75rem 0.5rem;
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--lux-ivory);
    outline: none;
}

.search-overlay__input::placeholder {
    color: rgba(216, 206, 192, 0.4);
}

.search-overlay__submit {
    background: none;
    border: none;
    color: var(--lux-gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    transition: color 0.2s;
    flex-shrink: 0;
}

.search-overlay__submit:hover {
    color: var(--lux-gold-soft);
}

.search-overlay__close {
    background: none;
    border: none;
    color: var(--lux-text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 2px;
    transition: color 0.2s, background 0.2s;
    flex-shrink: 0;
}

.search-overlay__close:hover {
    color: var(--lux-gold-soft);
    background: rgba(200, 155, 85, 0.08);
}

.search-overlay__backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    pointer-events: all;
}

@media (max-width: 768px) {
    .search-overlay__panel {
        padding: 0.875rem 1rem;
    }
    .search-overlay__form {
        max-width: 100%;
    }
}


/* ══════════════════════════════════════════════════════════════
   SECTION TITLES
   ══════════════════════════════════════════════════════════════ */

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-eyebrow {
    display: block;
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--primary);
    margin-bottom: 0.6rem;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3vw, 2.75rem);
    font-weight: 400;
    color: var(--carbon);
    line-height: 1.15;
}

.section-divider {
    width: 48px;
    height: 2px;
    background: var(--gold);
    margin: 0.875rem auto 0;
    border: none;
}

.section-header.left-align .section-divider {
    margin-left: 0;
}


/* ══════════════════════════════════════════════════════════════
   COLLECTIONS GRID (categorías en home)
   ══════════════════════════════════════════════════════════════ */

.collections-section {
    padding: var(--section-gap) 0;
    background: var(--cream);
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.collection-card {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    aspect-ratio: 4 / 5;
    text-decoration: none;
}

.collection-card__image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transition: transform 0.5s ease;
}

.collection-card:hover .collection-card__image {
    transform: scale(1.04);
}

.collection-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 40%,
        rgba(20, 10, 5, 0.70) 100%
    );
    pointer-events: none;
}

.collection-card__name {
    display: block;
    color: var(--white);
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}


/* ══════════════════════════════════════════════════════════════
   CATEGORIES CAROUSEL
   ══════════════════════════════════════════════════════════════ */

.collection-card__label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem 1rem;
}

.cat-carousel {
    position: relative;
}

/* Desktop: clip del track en movimiento */
.cat-carousel__viewport {
    overflow: hidden;
}

/* El track se mueve con CSS transform — no con scroll */
.cat-carousel__track {
    display: flex;
    gap: 1.25rem;
    transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.cat-carousel__card {
    flex: 0 0 calc(25% - 1rem);
    aspect-ratio: 3 / 4;
    flex-shrink: 0;
}

/* Tarjetas entrando desde la derecha (click en →) */
@keyframes catCardEnterRight {
    from { opacity: 0; transform: translateX(28px) scale(0.96); }
    to   { opacity: 1; transform: translateX(0)    scale(1);    }
}
/* Tarjetas entrando desde la izquierda (click en ←) */
@keyframes catCardEnterLeft {
    from { opacity: 0; transform: translateX(-28px) scale(0.96); }
    to   { opacity: 1; transform: translateX(0)     scale(1);    }
}
.cat-carousel__card.cat-card--enter-right {
    animation: catCardEnterRight 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
.cat-carousel__card.cat-card--enter-left {
    animation: catCardEnterLeft 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.cat-carousel__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--gold);
    color: var(--carbon);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: background 0.2s, opacity 0.2s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.12);
}

.cat-carousel__arrow:hover {
    background: var(--gold);
    color: var(--white);
}

.cat-carousel__arrow--prev { left: -20px; }
.cat-carousel__arrow--next { right: -20px; }

.cat-carousel__arrow[disabled],
.cat-carousel__arrow.is-disabled {
    opacity: 0.25;
    pointer-events: none;
}

/* Pulso en la flecha al hacer click */
@keyframes arrowTap {
    0%   { transform: translateY(-50%) scale(1); }
    35%  { transform: translateY(-50%) scale(0.84); }
    70%  { transform: translateY(-50%) scale(1.06); }
    100% { transform: translateY(-50%) scale(1); }
}
.cat-carousel__arrow.is-tapping {
    animation: arrowTap 0.28s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@media (max-width: 1024px) {
    .cat-carousel__card {
        flex: 0 0 calc(33.333% - 1rem);
    }
}

/* Mobile: swipe nativo — el viewport es el contenedor scrollable */
@media (max-width: 768px) {
    .cat-carousel__viewport {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }
    .cat-carousel__viewport::-webkit-scrollbar {
        display: none;
    }
    .cat-carousel__track {
        /* Sin transition ni transform en mobile — scroll nativo */
        transition: none;
        gap: 1rem;
        padding-right: 1rem;
    }
    .cat-carousel__card {
        flex: 0 0 65%;
        scroll-snap-align: start;
    }
    .cat-carousel__arrow {
        display: none;
    }
}

@media (max-width: 480px) {
    .cat-carousel__card {
        flex: 0 0 72%;
    }
}

/* ══════════════════════════════════════════════════════════════
   PRODUCTS GRID
   ══════════════════════════════════════════════════════════════ */

.products-section {
    padding: var(--section-gap) 0;
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.product-card {
    display: block;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    background: var(--white);
    border: 1px solid rgba(221, 212, 199, 0.5);
    transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(30, 27, 26, 0.12);
}

.product-card__image-wrap {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--cream-alt);
    margin-bottom: 0;
    position: relative;
}

.product-card__image-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(30, 27, 26, 0);
    transition: background 0.45s ease;
    pointer-events: none;
}

.product-card:hover .product-card__image-wrap::after {
    background: rgba(30, 27, 26, 0.07);
}

.product-card__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-card__image-wrap img {
    transform: scale(1.06);
}

.product-card__info {
    padding: 1rem 1.1rem 1.1rem;
}

.product-card__category {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-light);
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.product-card__name {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--carbon);
    margin-bottom: 0.6rem;
    line-height: 1.25;
    transition: color 0.2s;
}

.product-card:hover .product-card__name {
    color: var(--primary);
}

.product-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.product-card__price {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--primary);
    font-weight: 400;
}

.product-card__link {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
    border-bottom: 1px solid transparent;
    transition: color 0.2s, border-color 0.2s;
    padding-bottom: 1px;
}

.product-card__link:hover,
.product-card:hover .product-card__link {
    color: var(--primary);
    border-color: var(--primary);
}


/* ══════════════════════════════════════════════════════════════
   SHOWROOM CTA SECTION
   ══════════════════════════════════════════════════════════════ */

.showroom-section {
    padding: var(--section-gap) 0;
    background: var(--cream);
}

.showroom-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.showroom-image {
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.showroom-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.showroom-image:hover img {
    transform: scale(1.03);
}

.showroom-content {
    padding: 2rem 0;
}

.showroom-content h2 {
    font-family: var(--font-serif);
    font-size: 2.25rem;
    font-weight: 400;
    color: var(--brown);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.showroom-content p {
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 0.975rem;
}


/* ══════════════════════════════════════════════════════════════
   NEWSLETTER SECTION
   ══════════════════════════════════════════════════════════════ */

.newsletter-section {
    padding: var(--section-gap) 0;
    background: var(--brown);
    color: var(--white);
}

.newsletter-inner {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-inner h2 {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.newsletter-inner p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-input {
    flex: 1;
    min-width: 220px;
    padding: 0.7rem 1rem;
    border: none;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-family: var(--font-sans);
    outline: none;
    background: var(--white);
    color: var(--text);
    transition: box-shadow 0.2s;
}

.newsletter-input:focus {
    box-shadow: 0 0 0 3px rgba(201, 160, 106, 0.4);
}

.newsletter-btn {
    background: var(--gold);
    color: var(--brown);
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 2px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, transform 0.15s;
    white-space: nowrap;
}

.newsletter-btn:hover {
    background: var(--gold-dark);
    color: var(--white);
    transform: translateY(-1px);
}


/* ══════════════════════════════════════════════════════════════
   SITE FOOTER
   ══════════════════════════════════════════════════════════════ */

.site-footer {
    background: var(--carbon);
    padding: 4rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.25fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
}

.footer-brand img {
    max-width: 130px;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.footer-brand p {
    color: rgba(221, 212, 199, 0.6);
    font-size: 0.875rem;
    line-height: 1.8;
}

.footer-col h4 {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 1.25rem;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-col ul li a {
    font-size: 0.875rem;
    color: rgba(221, 212, 199, 0.6);
    transition: color 0.2s;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--gold);
}

.footer-col address {
    font-style: normal;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-contact-icon {
    flex-shrink: 0;
    color: var(--gold);
    margin-top: 1px;
    width: 15px;
    height: 15px;
}

.footer-contact-item p,
.footer-contact-item span,
.footer-contact-item a {
    font-size: 0.875rem;
    color: rgba(221, 212, 199, 0.6);
    line-height: 1.5;
    transition: color 0.2s;
}

.footer-contact-item a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(216, 178, 110, 0.12);
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.footer-copy {
    font-size: 0.78rem;
    color: rgba(221, 212, 199, 0.35);
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    font-size: 0.78rem;
    color: rgba(221, 212, 199, 0.35);
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: var(--gold);
}

.footer-social {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(221, 212, 199, 0.4);
    transition: color 0.2s;
}

.footer-social a:hover {
    color: var(--gold);
}

.footer-social a svg {
    width: 18px;
    height: 18px;
}


/* ══════════════════════════════════════════════════════════════
   WHATSAPP FLOAT BUTTON
   ══════════════════════════════════════════════════════════════ */

.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.20);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.28);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
    fill: var(--white);
}

/* ══════════════════════════════════════════════════════════════
   BREADCRUMB
   ══════════════════════════════════════════════════════════════ */

.breadcrumb {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.25rem;
}

.breadcrumb a {
    color: var(--text-light);
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: var(--brown);
}

.breadcrumb span {
    color: var(--text-mid);
}

.breadcrumb-sep {
    color: var(--text-light);
    padding: 0 0.2rem;
    user-select: none;
}


/* ══════════════════════════════════════════════════════════════
   CATALOG PAGE (catálogo.php)
   ══════════════════════════════════════════════════════════════ */

.catalog-hero {
    padding: 4.5rem 0 3rem;
    background: linear-gradient(135deg, var(--cream) 0%, rgba(216, 178, 110, 0.12) 100%);
    border-bottom: 1px solid var(--border);
    position: relative;
}

.catalog-hero h1,
.catalog-hero__title {
    font-family: var(--font-serif);
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    font-weight: 300;
    color: var(--brown);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.catalog-hero p {
    color: var(--text-mid);
    font-size: 1rem;
    max-width: 560px;
}

.catalog-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 2.5rem;
    padding: 3rem 0;
    align-items: start;
}

.catalog-sidebar {
    position: sticky;
    top: var(--header-height, 125px);
}

.catalog-sidebar h3 {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-mid);
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
}

.catalog-sidebar h3:first-child {
    margin-top: 0;
}

.filter-list {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.filter-link {
    font-size: 0.875rem;
    color: var(--text-light);
    padding: 0.35rem 0;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-link:hover,
.filter-link.active {
    color: var(--brown);
}

.filter-link.active {
    font-weight: 500;
}

.catalog-sort {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.catalog-count {
    font-size: 0.875rem;
    color: var(--text-mid);
}

.catalog-sort select {
    padding: 0.45rem 0.75rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-family: var(--font-sans);
    color: var(--text-mid);
    background: var(--white);
    outline: none;
    cursor: pointer;
    transition: border-color 0.2s;
}

.catalog-sort select:focus {
    border-color: var(--gold);
}

.catalog-empty {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-mid);
}

.catalog-empty h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--brown);
    margin-bottom: 0.75rem;
}

.load-more-wrap {
    text-align: center;
    margin-top: 3rem;
}

/* Catalog hero con imagen de fondo */
.catalog-hero--has-image {
    background-size: cover;
    background-position: center center;
    min-height: 220px;
    display: flex;
    align-items: center;
}

.catalog-hero--has-image .catalog-hero__content {
    position: relative;
    z-index: 1;
}

.catalog-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(20, 10, 5, 0.55) 0%, rgba(20, 10, 5, 0.30) 100%);
    pointer-events: none;
}

.catalog-hero--has-image .catalog-hero__title,
.catalog-hero--has-image h1,
.catalog-hero--has-image p,
.catalog-hero--has-image .section-eyebrow {
    color: var(--white);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

.catalog-hero--has-image .section-eyebrow {
    color: rgba(255, 255, 255, 0.75);
}


/* ══════════════════════════════════════════════════════════════
   PRODUCT DETAIL PAGE (producto.php)
   ══════════════════════════════════════════════════════════════ */

.product-detail {
    padding: 2.5rem 0 4rem;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.product-gallery {
    position: sticky;
    top: var(--header-height, 125px);
}

.product-gallery__main {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--cream-alt);
    margin-bottom: 1rem;
}

.product-gallery__main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-gallery__main:hover img {
    transform: scale(1.04);
}

.product-gallery__thumbs {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.thumb-item {
    width: 72px;
    height: 72px;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.2s;
    background: var(--cream-alt);
    flex-shrink: 0;
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumb-item:hover,
.thumb-item.active {
    border-color: var(--gold);
}

.product-info {
    padding-top: 0.5rem;
}

.product-info__category {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold-dark);
    margin-bottom: 0.75rem;
}

.product-info__name {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 400;
    color: var(--brown);
    margin-bottom: 1rem;
    line-height: 1.15;
}

.product-info__price {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--brown-mid);
    margin-bottom: 1.5rem;
    letter-spacing: 0.01em;
}

.product-info__description {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.product-info__actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.product-info__actions .btn {
    width: 100%;
    padding: 0.9rem 1.75rem;
    font-size: 0.9rem;
}

.product-accordion {
    border-top: 1px solid var(--border);
    margin-top: 2rem;
}

.accordion-item {
    border-bottom: 1px solid var(--border);
}

.accordion-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text);
    text-align: left;
    transition: color 0.2s;
}

.accordion-trigger:hover {
    color: var(--brown);
}

.accordion-icon {
    font-size: 1.25rem;
    line-height: 1;
    color: var(--text-light);
    transition: transform 0.25s ease;
    user-select: none;
}

.accordion-item.is-open .accordion-icon {
    transform: rotate(45deg);
}

.accordion-body {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-item.is-open .accordion-body {
    max-height: 400px;
}

.accordion-body p {
    padding-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--text-mid);
    line-height: 1.7;
}

.related-products {
    padding: 4rem 0;
    background: var(--cream);
    border-top: 1px solid var(--border);
}


/* ══════════════════════════════════════════════════════════════
   CART PAGE (carrito.php)
   ══════════════════════════════════════════════════════════════ */

.cart-page {
    padding: 3rem 0 5rem;
    min-height: 60vh;
}

.cart-page h1 {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 400;
    color: var(--brown);
    margin-bottom: 2.5rem;
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 2.5rem;
    align-items: start;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 1.25rem;
    align-items: center;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    padding: 1.5rem 0;
}

.cart-items .cart-item:last-child {
    border-bottom: none;
}

.cart-item__image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: var(--radius);
    background: var(--cream-alt);
    flex-shrink: 0;
}

.cart-item__name {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--brown);
    margin-bottom: 0.25rem;
}

.cart-item__meta {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.cart-item__price {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-mid);
}

.cart-item__qty {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.qty-btn {
    width: 28px;
    height: 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--text-mid);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s, color 0.2s;
    line-height: 1;
}

.qty-btn:hover {
    border-color: var(--gold);
    color: var(--brown);
}

.qty-value {
    min-width: 28px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
}

.cart-item__remove {
    color: var(--text-light);
    font-size: 1.2rem;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.25rem;
    transition: color 0.2s;
    align-self: flex-start;
    line-height: 1;
}

.cart-item__remove:hover {
    color: #B91C1C;
}

.cart-summary {
    position: sticky;
    top: var(--header-height, 125px);
    background: var(--white);
    border: 1px solid rgba(216, 178, 110, 0.45);
    border-radius: var(--radius);
    padding: 1.75rem;
}

.cart-summary h2 {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--brown);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-mid);
    margin-bottom: 0.75rem;
}

.summary-row.total {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--brown);
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    margin-bottom: 1.5rem;
}

.cart-empty {
    text-align: center;
    padding: 5rem 2rem;
    color: var(--text-mid);
}

.cart-empty h2 {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    color: var(--brown);
    margin-bottom: 0.75rem;
}

.cart-empty p {
    margin-bottom: 2rem;
}


/* ══════════════════════════════════════════════════════════════
   CHECKOUT PAGE (checkout.php)
   ══════════════════════════════════════════════════════════════ */

.checkout-page {
    padding: 3rem 0 5rem;
    min-height: 60vh;
}

.checkout-page h1 {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 400;
    color: var(--brown);
    margin-bottom: 2.5rem;
}

.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 2.5rem;
    align-items: start;
}

.checkout-form-section {
    background: transparent;
    border: none;
    border-top: 1px solid var(--border);
    border-radius: 0;
    padding: 2rem 0;
    margin-bottom: 0;
}

.checkout-form-section:first-of-type {
    border-top: none;
    padding-top: 0;
}

.checkout-form-section h2 {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--brown);
    margin-bottom: 1.5rem;
    letter-spacing: 0.01em;
}

.checkout-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.payment-method-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}

.payment-method-card:has(input:checked),
.payment-method-card.selected {
    border-color: var(--gold);
    background: rgba(201, 160, 106, 0.06);
}

.payment-method-card input[type="radio"] {
    accent-color: var(--gold);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.payment-method-card .method-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
}

.payment-method-card .method-desc {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 0.15rem;
}

.order-summary-panel {
    position: sticky;
    top: var(--header-height, 125px);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
}

.order-summary-panel h2 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--brown);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
}

.order-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-light);
}

.order-item:last-of-type {
    border-bottom: none;
}

.order-item img {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: var(--radius);
    background: var(--cream-alt);
    flex-shrink: 0;
}

.order-item__name {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text);
    line-height: 1.3;
    margin-bottom: 0.2rem;
}

.order-item__qty {
    font-size: 0.8rem;
    color: var(--text-light);
}

.order-item__price {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-mid);
    margin-left: auto;
    white-space: nowrap;
}

.checkout-submit {
    width: 100%;
    padding: 1rem;
    font-size: 0.9rem;
    margin-top: 1.5rem;
}

/* ── Confirmation page ─────────────────────────────────────── */
.confirmation-page {
    padding: 4rem 0 5rem;
}

.order-confirmation__grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

.order-confirmation__left {
    position: sticky;
    top: 6rem;
}

.confirmation-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(216, 178, 110, 0.10);
    border: 1.5px solid rgba(216, 178, 110, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 1.75rem;
}

.confirmation-icon svg {
    width: 36px;
    height: 36px;
}

.confirmation-title {
    font-family: var(--font-serif);
    font-size: 2.25rem;
    font-weight: 400;
    color: var(--brown);
    line-height: 1.15;
    margin-bottom: 0.75rem;
}

.confirmation-subtitle {
    color: var(--text-mid);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 1.75rem;
}

.confirmation-order-num {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: rgba(216, 178, 110, 0.10);
    border: 1px solid rgba(216, 178, 110, 0.35);
    border-radius: var(--radius);
    padding: 0.55rem 1.1rem;
    font-size: 0.875rem;
    color: var(--text-mid);
    margin-bottom: 2rem;
}

.confirmation-order-num strong {
    color: var(--brown);
    font-weight: 700;
}

.confirmation-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
}

/* Right column — cards */
.conf-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1.75rem;
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.25rem;
}

.conf-card:last-child {
    margin-bottom: 0;
}

.conf-card h3 {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-light);
}

.conf-items__row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    padding: 0.55rem 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.875rem;
    color: var(--text-mid);
}

.conf-items__row:last-child {
    border-bottom: none;
}

.conf-items__name {
    flex: 1;
}

.conf-items__qty {
    color: var(--text-light);
    font-size: 0.8rem;
    margin-left: 0.25rem;
}

.conf-items__row--total {
    border-bottom: none;
    border-top: 1.5px solid var(--border);
    margin-top: 0.5rem;
    padding-top: 0.9rem;
}

.conf-items__row--total span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--brown);
}

.conf-items__row--total strong {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brown);
}

.payment-instructions {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--text-mid);
    white-space: pre-line;
    overflow-wrap: break-word;
    word-break: normal;
    max-width: 100%;
    margin-bottom: 0.75rem;
}

.conf-card p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-mid);
    margin-bottom: 0.4rem;
}

.conf-card p:last-child {
    margin-bottom: 0;
}


/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — 1024px (tablet landscape)
   ══════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
    .catalog-layout {
        grid-template-columns: 200px 1fr;
        gap: 2rem;
    }

    .product-detail-grid {
        gap: 2.5rem;
    }

    .checkout-layout {
        grid-template-columns: 1fr 300px;
    }

    /* Confirmation */
    .order-confirmation__grid {
        gap: 2rem;
    }
}


/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — 768px (tablet / mobile)
   ══════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
    :root {
        --container:   100%;
        --section-gap: 4.5rem;
    }

    /* Header — mobile: ocultar nav desktop, mostrar hamburger */
    .site-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    /* Topbar mobile: ocultar beneficios, solo logo centrado */
    .topbar-inner {
        grid-template-columns: 1fr auto 1fr;
        height: 64px;
        padding: 0 1rem;
    }

    .topbar-left,
    .topbar-right {
        display: none;
    }

    .topbar-center {
        grid-column: 1 / -1;
    }

    .topbar-logo img {
        height: 48px;
        width: auto;
        max-width: 155px;
    }

    .navbar-inner {
        height: 48px;
        padding: 0 1rem;
    }

    .navbar-currency {
        display: none;
    }

    /* Corregir header-height para mobile */
    :root {
        --header-height: 113px; /* mobile: 64px topbar + 1px divider + 48px navbar */
    }

    /* Hero */
    .hero__title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero__content {
        padding: 3rem 1.25rem;
    }

    /* Collections */
    .collections-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Products */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    /* Showroom */
    .showroom-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .showroom-image img {
        height: 280px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    /* Catalog */
    .catalog-layout {
        grid-template-columns: 1fr;
    }

    .catalog-sidebar {
        position: static;
        display: none;
    }

    .catalog-sidebar.is-open {
        display: block;
    }

    /* Product detail */
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-gallery {
        position: static;
    }

    /* Cart */
    .cart-layout {
        grid-template-columns: 1fr;
    }

    .cart-summary {
        position: static;
    }

    /* Checkout */
    .checkout-layout {
        grid-template-columns: 1fr;
    }

    .order-summary-panel {
        position: static;
    }

    .checkout-grid-2 {
        grid-template-columns: 1fr;
    }

    /* Confirmation */
    .order-confirmation__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .order-confirmation__left {
        position: static;
        text-align: center;
    }

    .confirmation-icon {
        margin: 0 auto 1.5rem;
    }

    .confirmation-actions {
        align-items: center;
    }

    .confirmation-actions .btn {
        width: 100%;
        justify-content: center;
    }
}


/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — 480px (mobile small)
   ══════════════════════════════════════════════════════════════ */

@media (max-width: 480px) {
    /* Collections */
    .collections-grid {
        grid-template-columns: 1fr;
    }

    /* Products */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    /* Cart item */
    .cart-item {
        grid-template-columns: 80px 1fr;
    }

    .cart-item__remove {
        grid-column: 2;
    }

    /* Hero */
    .hero__content {
        padding: 2.5rem 1rem;
    }

    .newsletter-form {
        flex-direction: column;
        align-items: stretch;
    }

    .newsletter-input {
        min-width: unset;
    }
}

/* ══════════════════════════════════════════════════════════════
   CURRENCY TOGGLE
   ══════════════════════════════════════════════════════════════ */

.currency-toggle {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 0.3rem 0.65rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
    color: var(--text-light);
    transition: border-color 0.2s, background 0.2s;
    line-height: 1;
}
.currency-toggle:hover {
    border-color: var(--gold);
    background: var(--cream-alt);
}
.currency-toggle__gs,
.currency-toggle__usd {
    transition: color 0.2s;
}
.currency-toggle__gs.active,
.currency-toggle__usd.active {
    color: var(--brown);
}
.currency-toggle__sep {
    color: var(--border);
    font-weight: 300;
}

/* Price display con soporte de doble moneda */
.price-display    { display: inline; }
.price-usd-value  { display: none;   }

/* Cuando body tiene clase currency-usd */
body.currency-usd .price-gs-value  { display: none;   }
body.currency-usd .price-usd-value { display: inline; }

/* ══════════════════════════════════════════════════════════════
   GOLD PRICE WIDGET (usado en producto.php)
   ══════════════════════════════════════════════════════════════ */

.gold-widget {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.85rem;
    background: linear-gradient(135deg, #FBF3DC 0%, #F5E4B0 100%);
    border: 1px solid var(--gold);
    border-radius: var(--radius);
    font-size: 0.78rem;
    color: var(--brown-mid, #6B4020);
    margin-bottom: 1.25rem;
    white-space: nowrap;
}
.gold-widget__icon  { color: var(--gold); flex-shrink: 0; }
.gold-widget__label { font-weight: 400; opacity: 0.8; }
.gold-widget__price { font-weight: 600; color: var(--brown); }
.gold-widget__karat { font-size: 0.68rem; opacity: 0.7; margin-left: 0.15rem; }

/* ══════════════════════════════════════════════════════════════
   MEDIDAS PAGE
   ══════════════════════════════════════════════════════════════ */

.medidas-page {
    padding-bottom: 5rem;
}
.medidas-hero {
    text-align: center;
    padding: 4rem 0 2.5rem;
    background: var(--cream);
}
.medidas-hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--brown);
    margin-bottom: 0.75rem;
}
.medidas-hero p {
    color: var(--text-mid);
    font-size: 1.05rem;
    max-width: 480px;
    margin: 0 auto;
}
.medidas-hero__icon {
    color: var(--gold);
    margin: 0 auto 1.5rem;
}
.video-placeholder {
    aspect-ratio: 16 / 9;
    background: var(--cream-alt);
    border: 2px dashed var(--border);
    border-radius: var(--radius-lg, 12px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    gap: 0.75rem;
    margin: 0 0 3rem;
    text-align: center;
    padding: 2rem;
}
.video-placeholder small {
    font-size: 0.8rem;
    max-width: 360px;
    display: block;
}
.video-embed-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-lg, 12px);
    margin-bottom: 3rem;
    box-shadow: var(--shadow);
}
.video-embed-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}
.medidas-section-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--brown);
    margin-bottom: 1.5rem;
    text-align: center;
}
.medidas-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}
.medidas-step {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
}
.medidas-step__num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gold-dark);
    color: var(--white);
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}
.medidas-step h3 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}
.medidas-step p {
    font-size: 0.875rem;
    color: var(--text-mid);
    line-height: 1.6;
}
.ring-size-chart {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    border-radius: var(--radius);
    overflow: hidden;
}
.ring-size-chart thead tr {
    background: var(--brown);
    color: var(--white);
}
.ring-size-chart th {
    padding: 0.7rem 1rem;
    text-align: left;
    font-weight: 500;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.ring-size-chart td {
    padding: 0.55rem 1rem;
    border-bottom: 1px solid var(--border);
    color: var(--text);
}
.ring-size-chart tbody tr:last-child td { border-bottom: none; }
.ring-size-chart tbody tr:nth-child(even) td { background: var(--cream); }
.ring-size-chart tbody tr:hover td { background: var(--cream-alt); }
.ring-size-note {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

/* ── Size Guide (sg-*) ────────────────────────────────────────── */
.sg-intro {
    max-width: 640px;
    margin: 0 auto 3rem;
    text-align: center;
    color: var(--text-mid);
    font-size: 1.05rem;
    line-height: 1.7;
}
.sg-method {
    padding: 2.5rem 0 1.5rem;
}
.sg-method__header {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 2rem;
}
.sg-method__num {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold-dark);
    color: var(--white);
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sg-method__header h2 {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    color: var(--brown);
    margin-bottom: 0.25rem;
}
.sg-method__subtitle {
    color: var(--text-mid);
    font-size: 0.95rem;
    margin: 0;
}
.sg-method__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 1.5rem;
}
.sg-img-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    background: var(--cream-alt);
    line-height: 0;
}
.sg-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
}
.sg-step-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
    padding: 0;
}
.sg-step {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
}
.sg-step--plain {
    margin-top: 1rem;
}
.sg-step__num {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--cream-alt);
    border: 1.5px solid var(--gold);
    color: var(--gold-dark);
    font-family: var(--font-serif);
    font-size: 0.82rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}
.sg-step__body {
    flex: 1;
}
.sg-step__body strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.2rem;
}
.sg-step__body p {
    font-size: 0.875rem;
    color: var(--text-mid);
    line-height: 1.6;
    margin: 0;
}
.sg-highlight {
    background: linear-gradient(135deg, rgba(216,178,110,0.1) 0%, rgba(216,178,110,0.04) 100%);
    border-left: 3px solid var(--gold);
    padding: 1rem 1.25rem;
    border-radius: 0 var(--radius) var(--radius) 0;
    margin-bottom: 1rem;
}
.sg-highlight p {
    font-size: 0.9rem;
    color: var(--text);
    font-style: italic;
    margin: 0;
}
.sg-highlight__examples {
    margin-top: 0.6rem !important;
    font-style: normal !important;
    font-weight: 600;
    font-family: var(--font-serif);
    font-size: 1.1rem !important;
    color: var(--brown) !important;
    letter-spacing: 0.04em;
}
.sg-tip {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
    padding: 0.9rem 1rem;
    background: var(--cream-alt);
    border-radius: var(--radius);
}
.sg-tip svg {
    flex-shrink: 0;
    color: var(--gold-dark);
    margin-top: 2px;
}
.sg-tip p {
    font-size: 0.875rem;
    color: var(--text-mid);
    line-height: 1.5;
    margin: 0;
}
.sg-important-box {
    background: var(--cream-alt);
    border: 1px solid var(--border);
    border-left: 3px solid var(--gold-dark);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0 0.5rem;
}
.sg-important-box__title {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--brown);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.sg-important-box ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.sg-important-box ul li {
    font-size: 0.875rem;
    color: var(--text-mid);
    padding-left: 1.2rem;
    position: relative;
    line-height: 1.5;
}
.sg-important-box ul li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--gold);
}
.sg-thanks {
    text-align: center;
    font-style: italic;
    color: var(--text-mid);
    font-size: 0.875rem;
    margin-top: 1rem;
}
.sg-resorte-box {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
    margin-top: 1.5rem;
    box-shadow: var(--shadow-sm);
}
.sg-resorte-box__icon {
    flex-shrink: 0;
    color: var(--gold-dark);
    margin-top: 2px;
}
.sg-resorte-box p {
    font-size: 0.875rem;
    color: var(--text-mid);
    line-height: 1.6;
    margin: 0;
}
.sg-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 0.5rem 0 0;
}
.sg-video {
    padding: 2.5rem 0 2rem;
    text-align: center;
}
.sg-shorts-outer {
    max-width: 340px;
    margin: 0 auto;
}
.sg-shorts-wrap {
    position: relative;
    padding-bottom: 177.78%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}
.sg-shorts-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}
.sg-video__ext-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--text-light);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
}
.sg-video__ext-link:hover {
    color: var(--primary);
}
.sg-cta-section {
    padding: 2.5rem 0 5rem;
}
.sg-cta-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
}
.sg-cta-box h2 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: var(--brown);
    margin-bottom: 0.75rem;
}
.sg-cta-box p {
    color: var(--text-mid);
    font-size: 1rem;
    max-width: 480px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}
.sg-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
}
@media (max-width: 700px) {
    .sg-method__layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .sg-method__layout--reverse .sg-method__image {
        order: -1;
    }
    .sg-cta-box {
        padding: 2rem 1.25rem;
    }
    .sg-shorts-outer {
        max-width: 260px;
    }
    .sg-method__header h2 {
        font-size: 1.15rem;
    }
}

/* ── Admin flash message ──────────────────────────────────────── */
.flash-message {
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
}
.flash-success { background: #F0FDF4; color: #166534; border: 1px solid #BBF7D0; }
.flash-error   { background: #FEF2F2; color: #B91C1C; border: 1px solid #FECACA; }
.flash-info    { background: #EFF6FF; color: #1D4ED8; border: 1px solid #BFDBFE; }

/* ── Customer nav (header) ────────────────────────────────────── */
.customer-nav-link {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--lux-ivory);
    font-size: 0.78rem;
    text-decoration: none;
    transition: color 0.2s;
}
.customer-nav-link:hover { color: var(--lux-gold-soft); }
.customer-nav-name {
    max-width: 80px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.72rem;
}

/* ══════════════════════════════════════════════════════════════
   CONTACTO PAGE
   ══════════════════════════════════════════════════════════════ */
.page-hero {
    background: linear-gradient(135deg, var(--cream-alt) 0%, rgba(216, 178, 110, 0.1) 100%);
    padding: 5rem 0 3.5rem;
    border-bottom: 1px solid var(--border);
}
.page-hero__title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    color: var(--brown);
    margin-top: 0.4rem;
}
.contacto-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    padding: 4rem 1.25rem;
    align-items: start;
}
@media (max-width: 768px) {
    .contacto-layout { grid-template-columns: 1fr; gap: 2rem; }
}
.contacto-info h2 {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    color: var(--brown);
    margin-bottom: 2rem;
}
.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}
.contact-item__icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--cream-alt);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold-dark);
}
.contact-item__label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}
.contact-item__value { font-size: 0.9rem; color: var(--text); }
.contact-item__value a { color: var(--brown-mid, #6B4020); }
.contact-item__value a:hover { text-decoration: underline; }

/* ── Showroom map block ──────────────────────────────────────── */
.showroom-map-block {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.showroom-map-block__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}
.showroom-map-block__title {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--brown);
    font-weight: 600;
    letter-spacing: 0.02em;
}
.showroom-map {
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--cream-alt);
    position: relative;
}
.showroom-map .leaflet-tile-pane {
    filter: saturate(0.68) brightness(1.02);
}
.showroom-map--placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--text-light);
    font-size: 0.875rem;
}
.pj-map-marker {
    width: 28px;
    height: 28px;
    background: var(--brown);
    border: 3px solid var(--gold);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28);
}
@media (max-width: 768px) {
    .showroom-map { height: 300px; }
}

/* ── Static pages ─────────────────────────────────────────────── */
.static-page {
    padding-bottom: 5rem;
}
.static-content {
    max-width: 780px;
    margin: 0 auto;
    padding: 3rem 1.25rem;
    line-height: 1.85;
    color: var(--text);
}
.static-content h2 {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    color: var(--brown);
    margin: 2rem 0 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
}
.static-content h2:first-child { margin-top: 0; }
.static-content p  { margin-bottom: 0.875rem; }
.static-content ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 0.875rem; }
.static-content ul li { margin-bottom: 0.35rem; }
.static-content strong { color: var(--text); }
.static-content a { color: var(--brown-mid, #6B4020); }
.static-content a:hover { text-decoration: underline; }

/* ── Nosotros page ────────────────────────────────────────────── */
.nosotros-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 0;
}
@media (max-width: 768px) {
    .nosotros-layout { grid-template-columns: 1fr; gap: 2rem; }
}
.nosotros-image { border-radius: var(--radius-lg, 12px); overflow: hidden; }
.nosotros-image img { width: 100%; height: 480px; object-fit: cover; }
.nosotros-text h2 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--brown);
    margin-bottom: 1.25rem;
}
.nosotros-text p { color: var(--text-mid); line-height: 1.85; margin-bottom: 1rem; }

.nosotros-hero {
    padding: 5.5rem 0 4rem;
    background: linear-gradient(135deg, var(--cream) 0%, rgba(216, 178, 110, 0.1) 100%);
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.nosotros-hero__eyebrow {
    display: block;
    font-size: 0.72rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--gold-dark);
    margin-bottom: 1rem;
}

.nosotros-hero__title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    color: var(--brown);
    line-height: 1.15;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}

.nosotros-hero__subtitle {
    font-size: 1.05rem;
    color: var(--text-mid);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

.nosotros-valores {
    padding: 5rem 0;
    background: var(--white);
}

.nosotros-valores__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.valor-card {
    text-align: center;
    padding: 2rem 1.5rem;
}

.valor-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    color: var(--white);
}

.valor-card h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--brown);
    margin-bottom: 0.75rem;
}

.valor-card p {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .nosotros-valores__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ══════════════════════════════════════════════════════════════
   MI CUENTA PAGE (mi-cuenta.php)
   ══════════════════════════════════════════════════════════════ */

.mi-cuenta-page {
    padding: 3rem 0 5rem;
    min-height: 60vh;
}

.mi-cuenta-header {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.mi-cuenta-header h1 {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 300;
    color: var(--brown);
}

.mi-cuenta-header p {
    color: var(--text-mid);
    font-size: 0.95rem;
    margin-top: 0.25rem;
}

.mi-cuenta-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 2.5rem;
    align-items: start;
}

.mi-cuenta-sidebar {
    position: sticky;
    top: 100px;
    background: var(--white);
    border: 1px solid rgba(216, 178, 110, 0.4);
    border-radius: var(--radius);
    overflow: hidden;
}

.mi-cuenta-avatar {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    padding: 1.75rem;
    text-align: center;
}

.mi-cuenta-avatar__initials {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 0.05em;
}

.mi-cuenta-avatar__name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.2rem;
}

.mi-cuenta-avatar__email {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

.mi-cuenta-nav {
    padding: 0.5rem 0;
    border-top: 1px solid var(--border);
}

.mi-cuenta-nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 1.25rem;
    font-size: 0.875rem;
    color: var(--text-mid);
    border-left: 3px solid transparent;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
    text-decoration: none;
}

.mi-cuenta-nav-link:hover {
    background: var(--cream);
    color: var(--text);
}

.mi-cuenta-nav-link.active {
    background: var(--cream);
    color: var(--brown);
    border-left-color: var(--gold);
    font-weight: 500;
}

.mi-cuenta-nav-link--danger {
    color: #B91C1C;
}

.mi-cuenta-nav-link--danger:hover {
    background: #FEF2F2;
    color: #991B1B;
    border-left-color: transparent;
}

.mi-cuenta-main {}

.mi-cuenta-section-title {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--brown);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
}

.pedido-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    margin-bottom: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.pedido-card:hover {
    border-color: rgba(216, 178, 110, 0.5);
    box-shadow: var(--shadow-sm);
}

.pedido-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.pedido-card__num {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    color: var(--brown);
    font-weight: 400;
}

.pedido-card__date {
    font-size: 0.78rem;
    color: var(--text-light);
}

.pedido-card__body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.pedido-card__items {
    font-size: 0.875rem;
    color: var(--text-mid);
}

.pedido-card__total {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--brown-mid);
    font-weight: 400;
}

.pedido-card__link {
    font-size: 0.75rem;
    color: var(--gold-dark);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.2s;
}

.pedido-card__link:hover {
    color: var(--brown);
    text-decoration: underline;
}

.mi-cuenta-empty {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-mid);
}

.mi-cuenta-empty h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--brown);
    margin-bottom: 0.75rem;
}

@media (max-width: 768px) {
    .mi-cuenta-layout {
        grid-template-columns: 1fr;
    }
    .mi-cuenta-sidebar {
        position: static;
    }
}

/* ══════════════════════════════════════════════════════════════
   LOGIN / REGISTRO CLIENTE
   ══════════════════════════════════════════════════════════════ */

.auth-page {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}

.auth-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    background: var(--cream);
}

.auth-card {
    width: 100%;
    max-width: 400px;
}

.auth-card__logo {
    margin-bottom: 2rem;
    text-align: center;
}

.auth-card__logo img {
    max-height: 48px;
    width: auto;
}

.auth-card__title {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--brown);
    margin-bottom: 0.4rem;
    text-align: center;
}

.auth-card__subtitle {
    font-size: 0.875rem;
    color: var(--text-mid);
    text-align: center;
    margin-bottom: 2rem;
}

.auth-image-panel {
    position: relative;
    overflow: hidden;
    background: var(--cream-alt);
    background-image: url('/assets/images/generated/producto-anillo-compromiso-1.png');
    background-size: cover;
    background-position: center;
}

.auth-image-panel::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(61, 32, 16, 0.2) 0%, rgba(61, 32, 16, 0.55) 100%);
}

.auth-divider {
    text-align: center;
    margin: 1.25rem 0;
    position: relative;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border);
}

.auth-divider span {
    position: relative;
    background: var(--cream);
    padding: 0 0.75rem;
    font-size: 0.78rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.auth-link {
    text-align: center;
    margin-top: 1.25rem;
    font-size: 0.875rem;
    color: var(--text-mid);
}

.auth-link a {
    color: var(--gold-dark);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (max-width: 768px) {
    .auth-page {
        grid-template-columns: 1fr;
    }
    .auth-image-panel {
        display: none;
    }
    .auth-panel {
        min-height: 100vh;
    }
}


/* ══════════════════════════════════════════════════════════════
   HEADER — CTA WHATSAPP (desktop)
   ══════════════════════════════════════════════════════════════ */

.header-wa-btn {
    display: none;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1rem;
    background: var(--primary);
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    text-decoration: none;
    transition: background 0.25s, color 0.25s;
    white-space: nowrap;
    border-radius: 0;
}

.header-wa-btn:hover {
    background: var(--gold);
    color: var(--carbon);
}

.header-wa-btn svg {
    flex-shrink: 0;
}

@media (min-width: 1024px) {
    .header-wa-btn {
        display: inline-flex;
    }
}


/* ══════════════════════════════════════════════════════════════
   PRODUCT BADGE (catálogo y producto)
   ══════════════════════════════════════════════════════════════ */

.product-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 2;
    font-family: var(--font-sans);
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 0.3rem 0.6rem;
    pointer-events: none;
}

.product-badge--gold  { background: var(--gold);      color: var(--carbon); }
.product-badge--green { background: var(--esmeralda); color: var(--white);  }
.product-badge--dark  { background: var(--carbon);    color: var(--gold);   }


/* ══════════════════════════════════════════════════════════════
   ANIMACIONES GLOBALES
   ══════════════════════════════════════════════════════════════ */

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0);     }
}

@keyframes heroZoom {
    from { transform: scale(1); }
    to   { transform: scale(1.04); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in-up--delay-1 { animation-delay: 0.15s; opacity: 0; }
.fade-in-up--delay-2 { animation-delay: 0.30s; opacity: 0; }
.fade-in-up--delay-3 { animation-delay: 0.45s; opacity: 0; }

.hero-zoom {
    animation: heroZoom 8s ease-out forwards;
}


/* ══════════════════════════════════════════════════════════════
   SCROLLBAR CUSTOM
   ══════════════════════════════════════════════════════════════ */

::-webkit-scrollbar       { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--cream-alt); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }


/* ══════════════════════════════════════════════════════════════
   FOCUS RING GLOBAL
   ══════════════════════════════════════════════════════════════ */

:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
}


/* ══════════════════════════════════════════════════════════════
   FOOTER RESPONSIVE (actualizado para dark)
   ══════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}


/* ══════════════════════════════════════════════════════════════
   PRODUCT CARD — padding en children sin wrapper (compatibilidad)
   ══════════════════════════════════════════════════════════════ */

.product-card__category,
.product-card__name,
.product-card__price {
    padding-left: 1rem;
    padding-right: 1rem;
}

.product-card__category { padding-top: 0.9rem; }
.product-card__name     { }
.product-card__price    { padding-bottom: 1rem; }

/* Con wrapper .product-card__info: override el padding doble */
.product-card__info > .product-card__category,
.product-card__info > .product-card__name,
.product-card__info > .product-card__footer {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
    padding-bottom: 0;
}


/* ══════════════════════════════════════════════════════════════
   BENEFITS STRIP LUXURY (ivory — debajo del hero)
   ══════════════════════════════════════════════════════════════ */

.benefits-strip-lux {
    background: var(--lux-cream);
    border-bottom: none;
}

.benefits-strip-lux__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem;
}

.benefit-lux__item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem 1.75rem;
}

.benefit-lux__item + .benefit-lux__item {
    border-left: 1px solid rgba(58, 40, 24, 0.15);
}

.benefit-lux__icon {
    flex-shrink: 0;
    color: #2A1D12;
    opacity: 0.82;
}

.benefit-lux__content {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.benefit-lux__title {
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: #2A1D12;
    line-height: 1.3;
    margin: 0;
}

.benefit-lux__text {
    font-size: 0.82rem;
    color: rgba(42, 29, 18, 0.65);
    line-height: 1.45;
    margin: 0;
}

@media (max-width: 900px) {
    .benefits-strip-lux__inner {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 1.25rem;
    }
    .benefit-lux__item:nth-child(3) {
        border-left: none;
    }
}

@media (max-width: 500px) {
    .benefits-strip-lux__inner {
        grid-template-columns: 1fr;
    }
    .benefit-lux__item + .benefit-lux__item {
        border-left: none;
        border-top: 1px solid rgba(58, 40, 24, 0.12);
    }
    .benefit-lux__item {
        padding: 1.125rem 1rem;
    }
}


/* ══════════════════════════════════════════════════════════════
   DARK SPLIT SECTION (home — compromiso CTA)
   ══════════════════════════════════════════════════════════════ */

.dark-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 480px;
}

.dark-split__image {
    position: relative;
    overflow: hidden;
}

.dark-split__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.dark-split__image:hover img {
    transform: scale(1.04);
}

.dark-split__image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(30, 27, 26, 0.25);
    pointer-events: none;
}

.dark-split__content {
    background: var(--carbon);
    display: flex;
    align-items: center;
    padding: 4rem 4rem;
}

.dark-split__inner {
    max-width: 420px;
}

.dark-split__inner .section-eyebrow {
    color: var(--gold);
    margin-bottom: 1rem;
}

.dark-split__inner h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 400;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.dark-split__inner h2 em {
    font-style: italic;
    color: var(--gold);
}

.dark-split__inner p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.btn-champan {
    background: var(--gold);
    color: var(--carbon);
    border-radius: 0;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.85rem 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: background 0.25s, color 0.25s;
    text-decoration: none;
}

.btn-champan:hover {
    background: var(--white);
    color: var(--carbon);
}

@media (max-width: 768px) {
    .dark-split {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .dark-split__image { height: 280px; }
    .dark-split__content { padding: 3rem 1.5rem; }
    .dark-split__inner { max-width: 100%; }
}


/* ══════════════════════════════════════════════════════════════
   SCROLL INDICATOR (hero)
   ══════════════════════════════════════════════════════════════ */

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    z-index: 2;
    animation: bounceY 2s ease-in-out infinite;
}

.scroll-indicator span {
    font-family: var(--font-sans);
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: rgba(255, 255, 255, 0.45);
    user-select: none;
}

.scroll-indicator__line {
    width: 1px;
    height: 32px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.35), transparent);
}

@keyframes bounceY {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(6px); }
}


/* ══════════════════════════════════════════════════════════════
   CATALOG FILTER PILLS (horizontal)
   ══════════════════════════════════════════════════════════════ */

.catalog-pills-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.catalog-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.catalog-pill {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.45rem 1rem;
    border: 1.5px solid var(--border);
    color: var(--text-mid);
    background: transparent;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
    white-space: nowrap;
}

.catalog-pill:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.catalog-pill.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.catalog-sort__select {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 500;
    padding: 0.45rem 2rem 0.45rem 0.75rem;
    border: 1.5px solid var(--border);
    background: transparent;
    color: var(--text-mid);
    outline: none;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237f7667' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.6rem center;
    transition: border-color 0.2s;
}

.catalog-sort__select:focus {
    border-color: var(--primary);
}

.catalog-count-text {
    font-size: 0.78rem;
    color: var(--text-light);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
}


/* ══════════════════════════════════════════════════════════════
   CART — estructura de 4 columnas renovada
   ══════════════════════════════════════════════════════════════ */

.cart-items__header {
    display: grid;
    grid-template-columns: 1fr auto auto auto;
    gap: 1.25rem;
    align-items: center;
    padding: 0 0 0.75rem;
    border-bottom: 2px solid var(--border);
    margin-bottom: 0;
}

.cart-items__header span {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-light);
}

.cart-items__header span:nth-child(2),
.cart-items__header span:nth-child(3) {
    text-align: center;
    min-width: 80px;
}

.cart-items__header span:nth-child(4) {
    min-width: 32px;
}

.cart-item {
    display: grid;
    grid-template-columns: 1fr auto auto auto;
    gap: 1.25rem;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-light);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item__product {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 0;
}

.cart-item__thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    flex-shrink: 0;
    display: block;
    background: var(--cream-alt);
}

.cart-item__image a {
    display: block;
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    overflow: hidden;
}

.cart-item__image a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}

.cart-item__image a:hover img {
    transform: scale(1.05);
}

.cart-item__info {
    min-width: 0;
    flex: 1;
}

.cart-item__name {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--carbon);
    display: block;
    margin-bottom: 0.25rem;
    transition: color 0.2s;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-item__name:hover { color: var(--primary); }

.cart-item__price {
    font-size: 0.82rem;
    color: var(--text-light);
    display: block;
}

.cart-item__qty {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1.5px solid var(--border);
}

.qty-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    color: var(--text-mid);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
    line-height: 1;
}

.qty-btn:hover {
    background: var(--cream-alt);
    color: var(--primary);
}

.qty-display {
    min-width: 32px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    border-left: 1.5px solid var(--border);
    border-right: 1.5px solid var(--border);
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item__subtotal {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 400;
    color: var(--primary);
    min-width: 80px;
    text-align: center;
}

.cart-item__remove {
    min-width: 32px;
    display: flex;
    justify-content: center;
}

.btn-remove {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: 0.35rem;
    transition: color 0.2s;
    display: flex;
}

.btn-remove svg { width: 17px; height: 17px; }
.btn-remove:hover { color: #B91C1C; }

.cart-summary h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--carbon);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.summary-row--total {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--carbon);
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    margin-bottom: 1.5rem;
}

.summary-row--total span:last-child {
    color: var(--primary);
    font-family: var(--font-serif);
    font-size: 1.2rem;
}

.btn-block {
    display: flex;
    width: 100%;
    justify-content: center;
}

.cart-empty svg {
    width: 52px;
    height: 52px;
    color: var(--border);
    margin: 0 auto 1.25rem;
    display: block;
}

@media (max-width: 768px) {
    .cart-items__header { display: none; }
    .cart-item {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    .cart-item__product { flex-direction: row; }
    .cart-item__qty, .cart-item__subtotal, .cart-item__remove {
        align-self: center;
    }
    .cart-item {
        grid-template-columns: 1fr auto auto auto;
    }
}


/* ══════════════════════════════════════════════════════════════
   PRODUCT DETAIL — refinamientos
   ══════════════════════════════════════════════════════════════ */

.product-gallery__main {
    border-radius: 0;
}

.product-info__price {
    color: var(--primary);
}

.btn-esmeralda {
    background: transparent;
    color: var(--esmeralda);
    border: 1.5px solid var(--esmeralda);
    border-radius: 0;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.85rem 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    justify-content: center;
    text-decoration: none;
    transition: background 0.25s, color 0.25s;
    cursor: pointer;
}

.btn-esmeralda:hover {
    background: var(--esmeralda);
    color: var(--white);
}

.product-info__actions .btn {
    width: 100%;
    display: flex;
    justify-content: center;
}

.product-info__actions form {
    display: contents;
}

.accordion-trigger {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--carbon);
}

.accordion-icon {
    font-size: 1rem;
    color: var(--text-light);
}


/* ══════════════════════════════════════════════════════════════
   CATALOG HERO — min-height mejorado
   ══════════════════════════════════════════════════════════════ */

.catalog-hero--has-image {
    min-height: 300px;
}

@media (min-width: 768px) {
    .catalog-hero--has-image { min-height: 380px; }
}

.catalog-hero__desc {
    color: var(--text-mid);
    font-size: 1rem;
    margin-top: 0.75rem;
    max-width: 520px;
}

.catalog-hero--has-image .catalog-hero__desc {
    color: rgba(255,255,255,0.75);
}


/* ══════════════════════════════════════════════════════════════
   HOME — colecciones grid 6 columnas
   ══════════════════════════════════════════════════════════════ */

.collections-grid--6 {
    grid-template-columns: repeat(6, 1fr);
}

.collection-card__count {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.2rem;
    display: block;
}

.collections-grid--6 .collection-card__name {
    font-size: 1.1rem;
}

@media (max-width: 1024px) {
    .collections-grid--6 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
    .collections-grid--6 { grid-template-columns: repeat(2, 1fr); }
}

/* Sección de productos en home sobre fondo crema */
.products-section {
    background: var(--cream-alt);
}

.section-header__cta {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 2.5rem;
    gap: 1rem;
}

.section-header__cta .section-header {
    margin-bottom: 0;
    text-align: left;
}

.section-header__cta .section-header .section-divider {
    margin-left: 0;
}

.section-view-all {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    border-bottom: 1.5px solid var(--primary);
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
    white-space: nowrap;
    text-decoration: none;
    flex-shrink: 0;
}

.section-view-all:hover {
    color: var(--gold);
    border-color: var(--gold);
}


/* ══════════════════════════════════════════════════════════════
   UX/FINAL-POLISH — header, footer, logo
   ══════════════════════════════════════════════════════════════ */

/* Logo desktop responsive */
@media (max-width: 768px) {
    .header-logo img {
        width: 96px;
        max-height: 44px;
    }
}

/* Customer nav — "Mi cuenta" / "Ingresar" con texto visible */
.customer-nav-name {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    max-width: none;
    white-space: nowrap;
}

/* Mobile currency section en el drawer */
.mobile-currency-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 1.5rem;
    border-top: 1px solid var(--lux-border-gold);
}

.mobile-currency-label {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--lux-gold-dark);
}

.mobile-currency-section .currency-toggle {
    padding: 0.35rem 0.8rem;
    font-size: 0.72rem;
    border-color: var(--lux-border-gold);
    color: var(--lux-text-muted);
}

.mobile-currency-section .currency-toggle:hover {
    border-color: var(--lux-gold);
    background: rgba(200, 155, 85, 0.08);
}

.mobile-currency-section .currency-toggle__gs.active,
.mobile-currency-section .currency-toggle__usd.active {
    color: var(--lux-gold-soft);
}

/* Footer logo — wrapper crema sutil para contraste sobre carbon */
.footer-brand__logo-wrap {
    display: inline-block;
    background: rgba(255, 248, 246, 0.07);
    border-radius: 3px;
    padding: 0.5rem 0.65rem;
    margin-bottom: 1rem;
}

.footer-brand__logo-wrap img {
    display: block;
    max-width: 100px;
    height: auto;
    opacity: 0.95;
}

/* Sobrescribir la regla anterior de .footer-brand img (que aplicaba margen) */
.footer-brand img {
    margin-bottom: 0;
    max-width: 100px;
    opacity: 0.95;
}

/* WhatsApp float — clearance en mobile */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 1.25rem;
        right: 1.25rem;
        width: 52px;
        height: 52px;
    }
    .whatsapp-float svg {
        width: 25px;
        height: 25px;
    }
}


/* ══════════════════════════════════════════════════════════════
   MEGA MENÚ COLECCIONES (desktop)
   ══════════════════════════════════════════════════════════════ */

.nav-categories {
    position: static;
}

.nav-categories__trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    font-family: var(--font-sans);
}

.nav-categories__chevron {
    transition: transform 0.2s ease;
    flex-shrink: 0;
    color: currentColor;
    opacity: 0.6;
}

.nav-categories.is-open .nav-categories__chevron {
    transform: rotate(180deg);
}

.nav-categories.is-open .nav-categories__trigger {
    color: var(--lux-gold-soft);
}

.nav-categories.is-open .nav-categories__trigger::after {
    width: 100%;
}

/* El dropdown ahora es un panel ancho posicionado respecto al header */
.nav-categories__dropdown {
    position: fixed;
    top: var(--header-height, 125px);
    left: 0;
    right: 0;
    background: #0F0E0C;
    border-top: 1px solid var(--lux-border-gold);
    border-bottom: 1px solid var(--lux-border-gold);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s;
    z-index: 140;
    max-height: calc(100vh - var(--header-height, 125px));
    overflow-y: auto;
}

.nav-categories.is-open .nav-categories__dropdown {
    opacity: 1;
    visibility: visible;
}

/* ── Mega menú interior ────────────────────────────────────── */
.nav-mega__body {
    display: grid;
    grid-template-columns: 1fr 240px;
    gap: 0;
    max-width: var(--container);
    margin: 0 auto;
    padding: 1.75rem 2rem;
}

.nav-mega__collections {
    padding-right: 2rem;
    border-right: 1px solid var(--lux-border-gold);
}

.nav-mega__collections-inner {
    column-count: 2;
    column-gap: 2rem;
}

.nav-mega__group {
    break-inside: avoid;
    margin-bottom: 1.25rem;
}

/* Título padre con hijos */
.nav-mega__parent-link {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.67rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--lux-gold);
    text-decoration: none;
    margin-bottom: 0.35rem;
    transition: color 0.15s;
}

.nav-mega__parent-link:hover {
    color: var(--lux-gold-soft);
}

/* Subcategoría hija */
.nav-mega__child-link {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 400;
    color: var(--lux-text-muted);
    text-decoration: none;
    padding: 0.22rem 0;
    transition: color 0.15s, padding-left 0.15s;
    line-height: 1.4;
}

.nav-mega__child-link:hover {
    color: var(--lux-gold-soft);
    padding-left: 0.4rem;
}

.nav-mega__ext-icon {
    flex-shrink: 0;
    opacity: 0.5;
}

/* Categoría raíz sin hijos (aparece sola) */
.nav-mega__solo-link {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--lux-text-muted);
    text-decoration: none;
    padding: 0.22rem 0;
    transition: color 0.15s;
}

.nav-mega__solo-link:hover {
    color: var(--lux-gold-soft);
}

/* Ver todo el catálogo */
.nav-mega__see-all {
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--lux-border-gold);
}

.nav-mega__see-all-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--lux-gold);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.15s;
}

.nav-mega__see-all-link:hover {
    color: var(--lux-gold-soft);
}

/* ── Panel lateral (servicios + destacado) ─────────────────── */
.nav-mega__side {
    padding-left: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.nav-mega__section-title {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.58rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--lux-gold-dark);
    margin-bottom: 0.6rem;
}

.nav-mega__services {
    display: flex;
    flex-direction: column;
}

.nav-mega__services .nav-mega__child-link {
    border-bottom: 1px solid rgba(200, 155, 85, 0.10);
    padding: 0.38rem 0;
}

.nav-mega__services .nav-mega__child-link:last-child {
    border-bottom: none;
}

/* Destacado */
.nav-mega__featured {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nav-mega__featured-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    padding: 0.55rem 0.75rem;
    border: 1px solid var(--lux-border-gold);
    border-radius: 2px;
    background: rgba(200, 155, 85, 0.05);
    transition: background 0.15s, border-color 0.15s;
}

.nav-mega__featured-link:hover {
    background: rgba(200, 155, 85, 0.12);
    border-color: var(--lux-gold);
}

.nav-mega__star {
    color: var(--lux-gold);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.nav-mega__featured-link strong {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--lux-ivory);
    letter-spacing: 0.03em;
}

.nav-mega__featured-link small {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.68rem;
    color: var(--lux-text-muted);
    font-weight: 400;
}

/* ── Hover desktop: abrir al pasar el mouse ────────────────── */
@media (min-width: 769px) {
    .nav-categories:hover .nav-categories__dropdown,
    .nav-categories:focus-within .nav-categories__dropdown {
        opacity: 1;
        visibility: visible;
    }
    .nav-categories:hover .nav-categories__chevron,
    .nav-categories:focus-within .nav-categories__chevron {
        transform: rotate(180deg);
    }
    .nav-categories:hover .nav-categories__trigger::after,
    .nav-categories:focus-within .nav-categories__trigger::after {
        width: 100%;
    }
}


/* ══════════════════════════════════════════════════════════════
   MOBILE NAV — grupos y separadores
   ══════════════════════════════════════════════════════════════ */

.mobile-nav-group {
    padding-bottom: 0.15rem;
}

.mobile-nav-group__label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.58rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--lux-gold-dark);
    padding: 0.85rem 0.5rem 0.4rem;
    pointer-events: none;
}

.mobile-nav-link--sub {
    padding-left: 1.1rem;
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.09em;
    color: rgba(216, 206, 192, 0.75);
    opacity: 1;
}

.mobile-nav-link--sub:hover {
    padding-left: 1.35rem;
    color: var(--lux-gold-soft);
    opacity: 1;
}

.mobile-nav-sep {
    height: 1px;
    background: var(--lux-border-gold);
    margin: 0.4rem 0.5rem;
}

/* Mobile nav footer — WA agendar visita */
.mobile-wa-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem;
    background: var(--lux-gold-dark);
    color: var(--lux-ivory);
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    text-decoration: none;
    transition: background 0.2s;
}

.mobile-wa-link:hover {
    background: var(--lux-gold);
    color: var(--lux-black);
}

/* ─── Market Rates Bar (footer, discreto) ────────────────────── */
.market-rates-bar {
    border-top: 1px solid var(--border-light);
    padding: 0.55rem 0;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    color: var(--text-light);
    letter-spacing: 0.02em;
}

.market-rates-bar__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0 1.5rem;
}

.market-rates-bar__item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.market-rates-bar__label {
    opacity: 0.7;
}

.market-rates-bar__value {
    color: var(--text-mid);
    font-weight: 500;
}

.market-rates-bar__age {
    margin-left: auto;
    opacity: 0.55;
    font-size: 0.68rem;
}

/* ─── FAQ Page ───────────────────────────────────────────────── */
.faq-page {
    background: var(--cream);
    min-height: 60vh;
}

/* Hero */
.faq-hero {
    padding: 5rem 0 3.5rem;
    background: var(--carbon);
    text-align: center;
}

.faq-hero__eyebrow {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.faq-hero__title {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.15;
    margin: 0 0 1rem;
    letter-spacing: 0.01em;
}

.faq-hero__subtitle {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    font-weight: 300;
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Section */
.faq-section {
    padding: 4rem 0 5rem;
}

/* List */
.faq-list {
    max-width: 760px;
    margin: 0 auto;
}

/* Item */
.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
    border-top: 1px solid var(--border);
}

/* Question button */
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    padding: 1.35rem 0;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: color 0.2s;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question__text {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    color: inherit;
    line-height: 1.5;
    letter-spacing: 0.01em;
}

.faq-question__icon {
    flex-shrink: 0;
    color: var(--gold);
    transition: transform 0.28s ease;
}

.faq-item.is-open .faq-question {
    color: var(--primary);
}

.faq-item.is-open .faq-question__icon {
    transform: rotate(180deg);
}

/* Answer — grid trick para transición sin JS de alturas */
.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.28s ease;
}

.faq-item.is-open .faq-answer {
    grid-template-rows: 1fr;
}

.faq-answer__inner {
    overflow: hidden;
}

.faq-answer__text {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    color: var(--text-mid);
    line-height: 1.75;
    font-weight: 300;
    padding: 0 0 1.5rem;
    max-width: 640px;
}

/* CTA secundario */
.faq-cta {
    max-width: 760px;
    margin: 3rem auto 0;
    text-align: center;
    border-top: 1px solid var(--border-light);
    padding-top: 2.5rem;
}

.faq-cta p {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 1.25rem;
}

.faq-cta a {
    color: var(--primary);
    text-decoration: underline;
}

.faq-cta__btn {
    display: inline-block;
}

/* Responsive */
@media (max-width: 640px) {
    .faq-hero {
        padding: 3.5rem 0 2.5rem;
    }

    .faq-section {
        padding: 2.5rem 0 4rem;
    }

    .faq-question {
        padding: 1.15rem 0;
    }

    .faq-question__text {
        font-size: 0.855rem;
    }
}


/* ══════════════════════════════════════════════════════════════
   MOBILE NAV — accordion de categorías
   ══════════════════════════════════════════════════════════════ */

.mobile-nav-accordion__trigger {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    /* hereda estilos de .mobile-nav-link */
}

.mobile-nav-accordion__chevron {
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.55;
}

.mobile-nav-accordion__trigger[aria-expanded="true"] .mobile-nav-accordion__chevron {
    transform: rotate(180deg);
    opacity: 1;
}

/* Panel: hidden via atributo hasta que JS inicializa.
   Después JS quita hidden y el panel se controla con is-open. */
.mobile-nav-accordion__panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.32s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.28s ease;
    opacity: 0;
}

.mobile-nav-accordion__panel.is-open {
    grid-template-rows: 1fr;
    opacity: 1;
}

/* Wrapper interno que contiene los links — necesario para que grid 0fr funcione */
.mobile-nav-accordion__inner {
    overflow: hidden;
    padding-bottom: 2px;
}

.mobile-nav-link--all-cat {
    font-weight: 600;
    color: var(--lux-gold);
    opacity: 1;
}

.mobile-nav-link--all-cat:hover {
    color: var(--lux-gold-soft);
}

/* ══════════════════════════════════════════════════════════════
   CATALOG PILLS — subcategorías y padre
   ══════════════════════════════════════════════════════════════ */

.catalog-pill--sub {
    background: var(--cream-alt);
    border-color: transparent;
    font-size: 0.7rem;
    font-weight: 500;
    opacity: 0.85;
}

.catalog-pill--sub:hover,
.catalog-pill--sub.active {
    opacity: 1;
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.catalog-pill--parent {
    background: transparent;
    border-color: var(--border);
    color: var(--text-light);
    font-size: 0.72rem;
}

.catalog-pill--parent:hover {
    color: var(--primary);
    border-color: var(--primary);
    background: transparent;
}

/* ══════════════════════════════════════════════════════════════
   MEGA MENÚ — responsive tablet/desktop
   ══════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
    .nav-mega__body {
        padding: 1.25rem 1.5rem;
    }

    .nav-mega__collections-inner {
        column-count: 1;
    }
}

@media (max-width: 768px) {
    /* En mobile el mega menú desktop no se usa; lo oculta el .site-nav */
    .nav-mega__body {
        grid-template-columns: 1fr;
    }

    .nav-mega__collections {
        border-right: none;
        border-bottom: 1px solid var(--lux-border-gold);
        padding-right: 0;
        padding-bottom: 1rem;
        margin-bottom: 1rem;
    }

    .nav-mega__side {
        padding-left: 0;
    }
}


/* ══════════════════════════════════════════════════════════════
   SERVICIOS PAGE
   ══════════════════════════════════════════════════════════════ */

.services-hero {
    padding: 5rem 0 3.5rem;
    background: var(--carbon);
    text-align: center;
}

.services-hero__eyebrow {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.services-hero__title {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 5vw, 3.4rem);
    font-weight: 300;
    color: var(--white);
    margin: 0 0 1rem;
    letter-spacing: 0.01em;
    line-height: 1.12;
}

.services-hero__subtitle {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    font-weight: 300;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Índice rápido */
.services-index {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding-top: 2rem;
    padding-bottom: 0.5rem;
}

.services-index__item {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-mid);
    text-decoration: none;
    border: 1px solid var(--border);
    border-radius: 2rem;
    padding: 0.4rem 1rem;
    transition: color 0.15s, border-color 0.15s, background 0.15s;
}

.services-index__item:hover {
    color: var(--brown);
    border-color: var(--gold);
    background: rgba(216,178,110,0.06);
}

/* Sección individual de servicio */
.service-section {
    padding: 5rem 0;
    border-bottom: 1px solid var(--border-light);
}

.service-section--alt {
    background: var(--cream-alt);
}

.service-section__inner {
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 3rem;
    align-items: center;
}

.service-section__number {
    display: block;
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 300;
    color: var(--gold);
    opacity: 0.4;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.service-section__title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 300;
    color: var(--brown);
    margin: 0 0 1rem;
    line-height: 1.2;
}

.service-section__desc {
    font-family: var(--font-sans);
    font-size: 0.93rem;
    color: var(--text-mid);
    line-height: 1.75;
    margin-bottom: 1.25rem;
    max-width: 560px;
}

.service-section__features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.service-section__features li {
    font-family: var(--font-sans);
    font-size: 0.83rem;
    color: var(--text-mid);
    padding: 0.4rem 0;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-section__features li::before {
    content: '✓';
    color: var(--gold);
    font-size: 0.75rem;
    flex-shrink: 0;
}

.service-section__features a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.service-section__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Icono decorativo */
.service-section__icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.15;
}

.service-section__icon {
    width: 140px;
    height: 140px;
    color: var(--brown);
}

@media (max-width: 768px) {
    .services-hero {
        padding: 3.5rem 0 2.5rem;
    }

    .service-section {
        padding: 3rem 0;
    }

    .service-section__inner {
        grid-template-columns: 1fr;
    }

    .service-section__icon-wrap {
        display: none;
    }
}


/* ══════════════════════════════════════════════════════════════
   ETERNO ENLACE PAGE
   ══════════════════════════════════════════════════════════════ */

.eterno-hero {
    padding: 6rem 0 4rem;
    background: var(--carbon);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.eterno-hero::before {
    content: '✦';
    position: absolute;
    font-size: 20rem;
    color: var(--gold);
    opacity: 0.03;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    line-height: 1;
}

.eterno-hero__eyebrow {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.eterno-hero__title {
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 7vw, 4.5rem);
    font-weight: 300;
    color: var(--white);
    letter-spacing: 0.08em;
    line-height: 1.05;
    margin: 0 0 0.75rem;
}

.eterno-hero__subtitle {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    font-weight: 300;
    letter-spacing: 0.08em;
    margin-bottom: 2.5rem;
}

.eterno-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* About */
.eterno-about {
    padding: 5rem 0;
    background: var(--cream-alt);
}

.eterno-about__inner {
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 4rem;
    align-items: center;
}

.eterno-about__text h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    font-weight: 300;
    color: var(--brown);
    margin: 0.5rem 0 1.25rem;
    line-height: 1.2;
}

.eterno-about__text h3 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--brown);
    margin: 1.5rem 0 0.75rem;
}

.eterno-about__text p {
    font-family: var(--font-sans);
    font-size: 0.92rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.eterno-steps {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
}

.eterno-steps li {
    counter-increment: step-counter;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--text-mid);
    padding: 0.55rem 0 0.55rem 2rem;
    border-bottom: 1px solid var(--border-light);
    position: relative;
    line-height: 1.5;
}

.eterno-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 1.4rem;
    height: 1.4rem;
    background: var(--gold);
    color: var(--white);
    border-radius: 50%;
    font-size: 0.65rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Badge decorativo */
.eterno-about__visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.eterno-about__badge {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    color: var(--brown);
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    text-align: center;
    line-height: 1.3;
}

.eterno-about__badge-text {
    color: var(--gold);
    font-size: 1.6rem;
}

/* Catálogo */
.eterno-catalog {
    padding: 4rem 0;
}

/* CTA final */
.eterno-cta {
    padding: 5rem 0;
    background: var(--carbon);
    text-align: center;
}

.eterno-cta h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 300;
    color: var(--white);
    margin: 0 0 0.75rem;
    letter-spacing: 0.02em;
}

.eterno-cta p {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    margin-bottom: 2rem;
}

.eterno-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

@media (max-width: 768px) {
    .eterno-hero {
        padding: 4rem 0 3rem;
    }

    .eterno-about__inner {
        grid-template-columns: 1fr;
    }

    .eterno-about__visual {
        display: none;
    }
}


/* ══════════════════════════════════════════════════════════════
   NOVEDADES PAGE
   ══════════════════════════════════════════════════════════════ */

.novedades-hero {
    padding: 5rem 0 3.5rem;
    background: var(--carbon);
    text-align: center;
}

.novedades-hero__eyebrow {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.novedades-hero__title {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 5vw, 3.4rem);
    font-weight: 300;
    color: var(--white);
    margin: 0 0 1rem;
    letter-spacing: 0.01em;
    line-height: 1.12;
}

.novedades-hero__subtitle {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    font-weight: 300;
    max-width: 460px;
    margin: 0 auto;
    line-height: 1.7;
}

@media (max-width: 640px) {
    .novedades-hero {
        padding: 3.5rem 0 2.5rem;
    }
}

/* ══════════════════════════════════════════════════════════════
   PRODUCT BADGES — etiquetas visuales en cards y detalle
   ══════════════════════════════════════════════════════════════ */

.product-badges {
    position: absolute;
    top: 0.6rem;
    left: 0.6rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    z-index: 2;
    pointer-events: none;
}

.product-badge {
    display: inline-block;
    padding: 0.2rem 0.55rem;
    font-family: var(--font-sans);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    border-radius: 2px;
    line-height: 1.5;
    white-space: nowrap;
}

.product-badge--discount {
    background-color: var(--brown);
    color: #fff;
}

.product-badge--new {
    background-color: var(--esmeralda);
    color: #fff;
}

.product-badge--featured {
    background-color: var(--gold-dark);
    color: #fff;
}

.product-badge--sold-out {
    background-color: rgba(30, 27, 26, 0.55);
    color: #fff;
}

/* Badges en detalle de producto (inline, no absoluto) */
.product-detail-badges .product-badges {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    pointer-events: auto;
}

/* ══════════════════════════════════════════════════════════════
   PRODUCT PRICE — precio con descuento
   ══════════════════════════════════════════════════════════════ */

.product-price {
    display: inline-flex;
    flex-direction: column;
    gap: 0.1rem;
    line-height: 1.3;
}

.product-price__original {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    color: var(--text-light);
    text-decoration: line-through;
    font-weight: 400;
}

.product-price__final {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--brown);
    font-weight: 600;
}

/* En detalle del producto, precio más grande */
.product-info__price .product-price__original {
    font-size: 1rem;
}

.product-info__price .product-price__final {
    font-size: 1.6rem;
}

/* ── Precio original tachado en carrito ────────────────────── */
.cart-item__price-original {
    display: block;
    font-size: 0.72rem;
    color: var(--text-light);
    text-decoration: line-through;
    line-height: 1.3;
}


/* ══════════════════════════════════════════════════════════════
   SITE RATES — cotizaciones compactas en header desktop
   ══════════════════════════════════════════════════════════════ */

.site-rates {
    display: none;
    align-items: center;
    gap: 0.75rem;
    padding: 0 0.85rem;
    border-left: 1px solid var(--border-light);
    border-right: 1px solid var(--border-light);
}

@media (min-width: 1024px) {
    .site-rates { display: flex; }
}

.site-rates__item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    white-space: nowrap;
}

.site-rates__label {
    font-family: var(--font-sans);
    font-size: 0.62rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--text-light);
}

.site-rates__value {
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--text-mid);
    letter-spacing: 0.01em;
}


/* ══════════════════════════════════════════════════════════════
   FOOTER COMPACTO
   ══════════════════════════════════════════════════════════════ */

.site-footer {
    padding-top: 2.5rem;
}

.footer-compact__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(216, 178, 110, 0.12);
}

.footer-compact__brand img {
    max-width: 90px;
    height: auto;
    opacity: 0.9;
    margin-bottom: 0.65rem;
    display: block;
}

.footer-compact__tagline {
    font-size: 0.82rem;
    color: rgba(221, 212, 199, 0.5);
    line-height: 1.5;
    margin-bottom: 0.85rem;
}

.footer-compact__wa {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(221, 212, 199, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.09em;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-compact__wa:hover {
    color: var(--gold);
}

.footer-compact__links h4,
.footer-compact__contact h4 {
    font-family: var(--font-sans);
    font-size: 0.63rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 1rem;
}

.footer-compact__links ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-compact__links ul li a {
    font-size: 0.82rem;
    color: rgba(221, 212, 199, 0.55);
    transition: color 0.2s;
    display: inline-block;
}

.footer-compact__links ul li a:hover {
    color: var(--gold);
}

.footer-compact__contact address {
    font-style: normal;
}

.footer-compact__bottom {
    padding: 1.25rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

@media (max-width: 768px) {
    .footer-compact__grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        padding-bottom: 1.75rem;
    }
    .footer-compact__bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    .footer-compact__bottom .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-compact__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}


/* ══════════════════════════════════════════════════════════════
   MOBILE RATES — cotizaciones en drawer mobile
   ══════════════════════════════════════════════════════════════ */

.mobile-rates-section {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 0.9rem 1.5rem;
    border-top: 1px solid var(--lux-border-gold);
}

.mobile-rates-label {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--lux-gold-dark);
    padding-top: 0.1rem;
}

.mobile-rates-values {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.2rem;
}

.mobile-rates__item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    line-height: 1.4;
}

.mobile-rates__item span:first-child {
    color: rgba(216, 206, 192, 0.55);
    font-weight: 400;
}

.mobile-rates__item span:last-child {
    font-weight: 600;
    color: var(--lux-text-muted);
}

/* ═══════════════════════════════════════════════════
   Delivery Methods — checkout & confirmation
   ═══════════════════════════════════════════════════ */

.delivery-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.delivery-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid var(--border, #e8e0d8);
    border-radius: 6px;
    padding: 0.6rem 1rem;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
    font-size: 0.9rem;
    background: var(--white, #fff);
}

.delivery-option input[type="radio"] {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
    accent-color: var(--gold, #C9A06A);
}

.delivery-option.selected,
.delivery-option:has(input:checked) {
    border-color: var(--gold, #C9A06A);
    background: #fdf8f1;
}

.delivery-option__label {
    font-weight: 500;
}

.delivery-fields {
    padding: 1rem;
    background: #faf6f0;
    border: 1px solid var(--border, #e8e0d8);
    border-radius: 6px;
    margin-bottom: 0.75rem;
}

.delivery-info-box {
    background: #fff8e1;
    border: 1px solid #fcd34d;
    border-radius: 4px;
    padding: 0.6rem 0.85rem;
    font-size: 0.85rem;
    color: #6b5600;
    margin-top: 0.75rem;
}

.delivery-notice {
    background: #fff8e1;
    border: 1px solid #fcd34d;
    border-radius: 5px;
    padding: 0.65rem 0.9rem;
    font-size: 0.82rem;
    color: #b45309;
    margin-top: 0.75rem;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    cursor: pointer;
}

/* Confirmation page delivery card */
.delivery-summary__method {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
}

.delivery-cost-status {
    font-size: 0.8rem;
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
    font-weight: 500;
}

.delivery-cost-status--free     { background: #dcfce7; color: #166534; }
.delivery-cost-status--included { background: #f0f9ff; color: #0c4a6e; }
.delivery-cost-status--to_confirm { background: #fff8e1; color: #b45309; }

.conf-delivery-row {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.3rem 0;
    font-size: 0.875rem;
    border-bottom: 1px solid var(--border, #e8e0d8);
}

.conf-delivery-row:last-of-type { border-bottom: none; }
.conf-delivery-row span:first-child { color: var(--text-light, #888); flex-shrink: 0; }
.conf-delivery-row span:last-child  { text-align: right; word-break: break-word; }


/* ══════════════════════════════════════════════════════════════
   COLECCIONES DARK (home — grid negro luxury)
   ══════════════════════════════════════════════════════════════ */

/* Block 4A Luxury Home: Colecciones */
.colecciones-dark {
    background: var(--lux-black);
    padding: 3.5rem 2rem 5rem;
}

.colecciones-dark__header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    max-width: var(--container);
    margin-left: auto;
    margin-right: auto;
}

.colecciones-dark__rule {
    flex: 0 0 240px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--lux-gold-dark), transparent);
    opacity: 0.6;
}

.colecciones-dark__title {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--lux-gold);
    white-space: nowrap;
    margin: 0;
    line-height: 1;
}

.colecciones-dark__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    max-width: var(--container);
    margin: 0 auto;
}

.coleccion-dark-card {
    display: block;
    position: relative;
    overflow: hidden;
    height: 220px;
    border: 1px solid rgba(200, 155, 85, 0.10);
    text-decoration: none;
}

.coleccion-dark-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.55s ease;
}

.coleccion-dark-card:hover img {
    transform: scale(1.04);
}

.coleccion-dark-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(5, 5, 5, 0.15) 0%,
        rgba(5, 5, 5, 0.72) 100%
    );
    transition: background 0.35s ease;
    pointer-events: none;
}

.coleccion-dark-card:hover .coleccion-dark-card__overlay {
    background: linear-gradient(
        to bottom,
        rgba(5, 5, 5, 0.08) 0%,
        rgba(25, 12, 2, 0.84) 100%
    );
}

.coleccion-dark-card__label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.875rem 0.75rem 0.75rem;
    z-index: 2;
}

.coleccion-dark-card__name {
    display: block;
    font-family: var(--font-nav-luxury);
    font-size: 0.78rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--lux-ivory);
    line-height: 1.3;
    margin-bottom: 0.45rem;
}

.coleccion-dark-card__line {
    display: block;
    width: 18px;
    height: 1px;
    background: var(--lux-gold);
    transition: width 0.3s ease;
}

.coleccion-dark-card:hover .coleccion-dark-card__line {
    width: 30px;
}

@media (max-width: 1100px) {
    .colecciones-dark__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    .coleccion-dark-card {
        height: 255px;
    }
    .colecciones-dark__rule {
        flex: 0 0 100px;
    }
}

@media (max-width: 600px) {
    .colecciones-dark {
        padding: 2.5rem 1.25rem 3rem;
    }
    .colecciones-dark__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .coleccion-dark-card {
        height: 200px;
    }
    .colecciones-dark__rule {
        flex: 0 0 50px;
    }
    .coleccion-dark-card__name {
        font-size: 0.68rem;
    }
}


/* ══════════════════════════════════════════════════════════════
   BLOCK 4A LUXURY HOME — refinamientos finales
   Aplican a index.php únicamente. Sobreescriben reglas generales.
   Secciones: Destacados · Compromiso · Showroom · Footer luxury.
   ══════════════════════════════════════════════════════════════ */

/* Block 4A Luxury Home: Piezas destacadas */
.products-section {
    background: var(--lux-ivory);
    padding: 5.5rem 0;
}

#destacados .section-eyebrow {
    color: var(--lux-gold);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.26em;
}

#destacados .section-title {
    color: #1D1712;
    font-size: clamp(1.75rem, 2.8vw, 2.5rem);
    font-weight: 300;
}

#destacados .section-divider {
    background: var(--lux-gold);
    height: 1px;
    width: 44px;
    opacity: 0.8;
}

#destacados .section-view-all {
    color: var(--lux-gold-dark);
    border-color: var(--lux-gold-dark);
    font-size: 0.67rem;
    letter-spacing: 0.16em;
}

#destacados .section-view-all:hover {
    color: var(--lux-gold);
    border-color: var(--lux-gold);
}

/* ── Cards de producto — premium ────────────────────────────── */
#destacados .product-card {
    background: #FDFAF6;
    border: 1px solid rgba(58, 40, 24, 0.10);
    box-shadow: 0 1px 6px rgba(29, 23, 18, 0.04);
    transition: transform 0.45s ease, box-shadow 0.45s ease, border-color 0.3s ease;
}

#destacados .product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 32px rgba(29, 23, 18, 0.10);
    border-color: rgba(200, 155, 85, 0.28);
}

#destacados .product-card__image-wrap {
    background: var(--lux-cream);
}

#destacados .product-card__category {
    color: var(--lux-gold-dark);
    font-size: 0.62rem;
    letter-spacing: 0.16em;
}

#destacados .product-card__name {
    color: #1D1712;
    font-size: 1.05rem;
    font-weight: 400;
    letter-spacing: 0.01em;
}

#destacados .product-card:hover .product-card__name {
    color: #7A5A2B;
}

#destacados .product-card__info {
    padding: 1.1rem 1.25rem 1.25rem;
}

#destacados .product-card__link {
    color: #7C7164;
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    border-color: transparent;
}

#destacados .product-card:hover .product-card__link {
    color: var(--lux-gold-dark);
    border-color: var(--lux-gold-dark);
}

#destacados .product-price__final {
    color: #1D1712;
}

#destacados .product-price__original {
    color: #7C7164;
}


/* ── Bloque Compromiso — dark luxury upgrade ─────────────────── */
.dark-split__content {
    background: #17110E;
}

.dark-split__inner .section-eyebrow {
    color: var(--lux-gold);
    font-size: 0.64rem;
    font-weight: 600;
    letter-spacing: 0.26em;
}

.dark-split__inner h2 {
    color: var(--lux-ivory);
    font-weight: 300;
    letter-spacing: 0.01em;
}

.dark-split__inner h2 em {
    color: var(--lux-gold-soft);
}

.dark-split__inner p {
    color: rgba(248, 244, 236, 0.56);
    font-size: 0.91rem;
    line-height: 1.85;
}

.btn-champan {
    background: var(--lux-gold);
    color: var(--lux-black);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    padding: 0.9rem 2.25rem;
    gap: 0.5rem;
}

.btn-champan:hover {
    background: var(--lux-gold-soft);
    color: var(--lux-black);
}


/* ── Showroom — luxury boutique ─────────────────────────────── */
.showroom-section {
    background: var(--lux-cream);
    padding: 5.5rem 0;
}

#showroom .section-eyebrow {
    color: var(--lux-gold);
    font-size: 0.64rem;
    font-weight: 600;
    letter-spacing: 0.26em;
    margin-bottom: 0.9rem;
}

.showroom-image {
    border-radius: 2px;
    overflow: hidden;
}

.showroom-image img {
    height: 460px;
    border-radius: 2px;
    object-position: center;
}

.showroom-content h2 {
    color: #1D1712;
    font-size: clamp(2rem, 3.2vw, 2.7rem);
    font-weight: 300;
    line-height: 1.18;
    letter-spacing: 0.01em;
    margin-bottom: 1.25rem;
}

.showroom-content p {
    color: #7C7164;
    font-size: 0.93rem;
    line-height: 1.85;
    max-width: 440px;
    margin-bottom: 2rem;
}

.showroom-content .btn.btn-outline {
    border: 1.5px solid rgba(200, 155, 85, 0.60);
    color: #1D1712;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    padding: 0.9rem 2.25rem;
    background: transparent;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.showroom-content .btn.btn-outline:hover {
    background: var(--lux-gold);
    color: var(--lux-black);
    border-color: var(--lux-gold);
}


/* ── Footer — luxury dark refinements ───────────────────────── */
.site-footer {
    background: #0B0A08;
    padding-top: 3.5rem;
}

.footer-compact__brand img {
    max-width: 108px;
    opacity: 1;
    margin-bottom: 0.8rem;
}

.footer-compact__tagline {
    color: rgba(221, 212, 199, 0.40);
    font-size: 0.8rem;
    letter-spacing: 0.01em;
}

.footer-compact__wa {
    color: rgba(221, 212, 199, 0.48);
}

.footer-compact__wa svg {
    color: var(--lux-gold);
}

.footer-compact__wa:hover {
    color: var(--lux-gold-soft);
}

.footer-compact__links h4,
.footer-compact__contact h4 {
    color: var(--lux-gold);
    font-size: 0.60rem;
    letter-spacing: 0.24em;
    margin-bottom: 1.1rem;
}

.footer-compact__links ul li a {
    color: rgba(221, 212, 199, 0.46);
    font-size: 0.83rem;
    transition: color 0.2s, padding-left 0.15s;
    display: inline-block;
}

.footer-compact__links ul li a:hover {
    color: var(--lux-gold-soft);
    padding-left: 0.28rem;
}

.footer-compact__grid {
    border-bottom-color: rgba(200, 155, 85, 0.11);
}

.footer-contact-icon {
    color: var(--lux-gold);
    width: 14px;
    height: 14px;
}

.footer-contact-item span,
.footer-contact-item p {
    color: rgba(221, 212, 199, 0.46);
    font-size: 0.83rem;
}

.footer-contact-item a {
    color: rgba(221, 212, 199, 0.46);
    font-size: 0.83rem;
}

.footer-contact-item a:hover {
    color: var(--lux-gold-soft);
}

.footer-copy {
    color: rgba(221, 212, 199, 0.22);
    font-size: 0.76rem;
}

.footer-legal a {
    color: rgba(221, 212, 199, 0.22);
    font-size: 0.76rem;
}

.footer-legal a:hover {
    color: var(--lux-gold-soft);
}


/* Block 4A Luxury Home: Overflow mobile — fixes */
.products-section,
.showroom-section,
.dark-split,
.site-footer {
    overflow-x: clip;
}

.products-grid,
.showroom-inner {
    min-width: 0;
}

.products-grid > *,
.showroom-inner > * {
    min-width: 0;
}

@media (max-width: 768px) {
    .showroom-image img {
        height: 300px;
    }

    .showroom-content p {
        max-width: 100%;
    }

    .showroom-inner {
        gap: 2rem;
    }

    .dark-split__content {
        padding: 3rem 1.5rem;
    }

    #destacados .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .showroom-image img {
        height: 240px;
    }

    .showroom-section {
        padding: 4rem 0;
    }

    .products-section {
        padding: 4rem 0;
    }

    #destacados .products-grid {
        grid-template-columns: 1fr;
        gap: 0.9rem;
    }
}


/* ══════════════════════════════════════════════════════════════
   CLIENT FEEDBACK 4A — Header cream/warm light theme
   ══════════════════════════════════════════════════════════════ */

/* Topbar — ivory cálido */
.site-header          { background: var(--lux-ivory); }
.site-header.scrolled { box-shadow: 0 2px 20px rgba(139, 105, 53, 0.18); }
.site-topbar          { background: var(--lux-ivory); }
.site-topbar-divider  { background: rgba(139, 105, 53, 0.18); }

.topbar-benefit       { color: #1D1712; }
.topbar-benefit svg   { color: var(--lux-gold-dark); }
.topbar-contact-label { color: #6F6255; }
.topbar-wa            { color: var(--lux-gold-dark); }
.topbar-wa:hover      { color: var(--lux-gold); }

/* Navbar — crema suave */
.site-navbar {
    background: var(--lux-cream);
    border-bottom: 1px solid rgba(139, 105, 53, 0.15);
}

.nav-link         { color: #1D1712; }
.nav-link:hover   { color: var(--lux-gold-dark); }
.nav-link.active  { color: var(--lux-gold-dark); }

.navbar-icon-btn          { color: #1D1712; }
.navbar-icon-btn:hover    { color: var(--lux-gold-dark); }
.cart-btn                 { color: #1D1712; }
.cart-btn:hover           { color: var(--lux-gold-dark); }
.customer-nav-link        { color: #1D1712; }
.customer-nav-link:hover  { color: var(--lux-gold-dark); }

/* Currency pill — sobre fondo claro */
.navbar-currency {
    border: 1.5px solid rgba(139, 105, 53, 0.45) !important;
    color: #1D1712 !important;
    background: rgba(200, 155, 85, 0.07) !important;
}
.navbar-currency:hover {
    border-color: var(--lux-gold) !important;
    background: rgba(200, 155, 85, 0.14) !important;
    color: var(--lux-gold-dark) !important;
}
.navbar-currency .currency-toggle__gs.active,
.navbar-currency .currency-toggle__usd.active { color: var(--lux-gold-dark); }
.navbar-currency .currency-toggle__sep         { color: rgba(139, 105, 53, 0.40); margin: 0 2px; }

/* Hamburger — líneas oscuras sobre fondo claro */
.hamburger span       { background: #1D1712; }
.hamburger:hover span { background: var(--lux-gold-dark); }

/* Mobile menu — ivory cálido */
.mobile-menu {
    background: var(--lux-ivory);
    box-shadow: -6px 0 32px rgba(100, 70, 30, 0.15);
}
.mobile-menu-close       { color: #1D1712; }
.mobile-menu-close:hover { color: var(--lux-gold-dark); background: rgba(200, 155, 85, 0.08); }

.mobile-nav-link {
    color: #1D1712;
    border-bottom-color: rgba(139, 105, 53, 0.14);
}
.mobile-nav-link:hover { color: var(--lux-gold-dark); }

.mobile-nav-link--sub       { color: #6F6255; opacity: 1; }
.mobile-nav-link--sub:hover { color: var(--lux-gold-dark); }

.mobile-nav-sep { background: rgba(139, 105, 53, 0.14); }

.mobile-currency-section .currency-toggle {
    color: #1D1712;
    border-color: rgba(139, 105, 53, 0.35);
    background: transparent;
}
.mobile-currency-label { color: #6F6255; }

.mobile-rates-label                    { color: #6F6255; }
.mobile-rates__item span:first-child   { color: #6F6255; }
.mobile-rates__item span:last-child    { color: #1D1712; }


/* ── Hero: mini tira de categorías ───────────────────────────── */
.hero-lux__cats {
    width: 100%;
    max-width: 780px;
    margin-bottom: 2rem;
}

.hero-lux__cats-scroll {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 3px;
}
.hero-lux__cats-scroll::-webkit-scrollbar { display: none; }

.hero-lux__cat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    flex: 0 0 110px;
    height: 125px;
    border-radius: 3px;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    border: 1px solid rgba(200, 155, 85, 0.22);
    background: rgba(5, 5, 5, 0.55);
    transition: border-color 0.22s, transform 0.22s;
}
.hero-lux__cat-card:hover {
    border-color: rgba(200, 155, 85, 0.65);
    transform: translateY(-2px);
}

.hero-lux__cat-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: opacity 0.3s;
}
.hero-lux__cat-card:hover .hero-lux__cat-img { opacity: 0.80; }

.hero-lux__cat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5,5,5,0.82) 0%, rgba(5,5,5,0.08) 65%);
    pointer-events: none;
}

.hero-lux__cat-name {
    position: relative;
    z-index: 1;
    font-family: var(--font-sans);
    font-size: 0.60rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--lux-ivory);
    text-align: center;
    padding: 0 0.35rem 0.6rem;
    line-height: 1.35;
}

.hero-lux__cat-line {
    display: block;
    width: 14px;
    height: 1px;
    background: var(--lux-gold);
    margin: 0 auto 0.3rem;
}

@media (min-width: 901px) {
    .hero-lux__cat-card {
        flex: 1 1 0;
        min-width: 90px;
        max-width: 128px;
        height: 132px;
    }
    .hero-lux__cats-scroll {
        overflow-x: visible;
    }
    /* Más de 6 categorías: volver a scroll horizontal en desktop */
    .hero-lux__cats-scroll--overflow {
        overflow-x: auto;
    }
    .hero-lux__cats-scroll--overflow .hero-lux__cat-card {
        flex: 0 0 108px;
        max-width: 108px;
    }
}

@media (max-width: 480px) {
    .hero-lux__cat-card {
        flex: 0 0 105px;
        height: 115px;
    }
}

/* ── Hero: wrapper con flechas de carrusel (desktop, >6 categorías) ─── */
.hero-lux__cats-wrap {
    width: 100%;
}

.hero-lux__cat-arrow {
    display: none;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    background: rgba(5, 5, 5, 0.60);
    border: 1px solid rgba(200, 155, 85, 0.40);
    border-radius: 50%;
    color: #C89B55;
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.hero-lux__cat-arrow:hover:not(:disabled) {
    background: rgba(200, 155, 85, 0.18);
    border-color: rgba(200, 155, 85, 0.75);
    color: #e8c97a;
}
.hero-lux__cat-arrow:focus-visible {
    outline: 2px solid #C89B55;
    outline-offset: 2px;
}
.hero-lux__cat-arrow:disabled {
    opacity: 0.25;
    cursor: default;
}

@media (min-width: 901px) {
    .hero-lux__cats-wrap {
        display: flex;
        align-items: center;
        gap: 6px;
    }
    .hero-lux__cat-arrow {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* ══════════════════════════════════════════════════════════════
   INVOICE TOGGLE CARD (checkout.php — Deseo factura)
   ══════════════════════════════════════════════════════════════ */

.invoice-toggle-wrap {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border, #e5e5e5);
}

.invoice-toggle-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.1rem;
    border: 1.5px solid var(--border, #e5e5e5);
    border-radius: 8px;
    cursor: pointer;
    background: #fdfaf6;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
    position: relative;
    user-select: none;
}

.invoice-toggle-card:hover {
    border-color: var(--gold, #C9A06A);
    background: #faf5ee;
    box-shadow: 0 2px 8px rgba(201, 160, 106, 0.12);
}

.invoice-toggle-card__checkbox {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.invoice-toggle-card__indicator {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border: 1.5px solid #c8b89a;
    border-radius: 5px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s, background 0.2s;
    position: relative;
}

.invoice-toggle-card__indicator::after {
    content: '';
    display: block;
    width: 11px;
    height: 7px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg) translateY(-2px);
    opacity: 0;
    transition: opacity 0.15s;
}

.invoice-toggle-card__checkbox:checked ~ .invoice-toggle-card__indicator {
    background: var(--gold, #C9A06A);
    border-color: var(--gold, #C9A06A);
}

.invoice-toggle-card__checkbox:checked ~ .invoice-toggle-card__indicator::after {
    opacity: 1;
}

.invoice-toggle-card__checkbox:focus-visible ~ .invoice-toggle-card__indicator {
    outline: 2px solid var(--gold, #C9A06A);
    outline-offset: 2px;
}

.invoice-toggle-card:has(.invoice-toggle-card__checkbox:checked) {
    border-color: var(--gold, #C9A06A);
    background: #faf5ee;
    box-shadow: 0 2px 10px rgba(201, 160, 106, 0.15);
}

.invoice-toggle-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.invoice-toggle-card__title {
    font-family: var(--font-serif, 'Cormorant Garamond', serif);
    font-size: 1rem;
    font-weight: 600;
    color: var(--brown, #3D2010);
    line-height: 1.3;
}

.invoice-toggle-card__desc {
    font-size: 0.78rem;
    color: var(--text-light, #888);
    line-height: 1.45;
}

.invoice-toggle-card__icon {
    flex-shrink: 0;
    color: #c8b89a;
    transition: color 0.2s;
}

.invoice-toggle-card:hover .invoice-toggle-card__icon,
.invoice-toggle-card:has(.invoice-toggle-card__checkbox:checked) .invoice-toggle-card__icon {
    color: var(--gold, #C9A06A);
}

.invoice-fields-panel {
    margin-top: 1rem;
    padding: 1rem 1.1rem;
    border: 1px solid var(--gold, #C9A06A);
    border-top: none;
    border-radius: 0 0 8px 8px;
    background: #faf5ee;
    animation: invoicePanelIn 0.18s ease;
}

@keyframes invoicePanelIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════════════════════════
   FOOTER RATES (cotización en footer)
   ══════════════════════════════════════════════════════════════ */

.footer-rates {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    padding: 0.7rem 0 0.85rem;
    border-top: 1px solid rgba(200, 155, 85, 0.1);
    margin-bottom: 0;
}

.footer-rates__item {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.72rem;
    color: rgba(221, 212, 199, 0.38);
}

.footer-rates__label {
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.65rem;
}

.footer-rates__value {
    color: rgba(221, 212, 199, 0.52);
}

.footer-rates__sep {
    color: rgba(200, 155, 85, 0.25);
    font-size: 0.8rem;
}

.footer-dev {
    opacity: 0.55;
    font-size: 0.72rem;
}

@media (max-width: 480px) {
    .invoice-toggle-card__desc { display: none; }
    .invoice-toggle-card__icon { display: none; }
}
