/* ============================================================
   CORPORATIVAS.CL — DESIGN SYSTEM PREMIUM
   Paleta: tinta + marfil + cobre · Serif display + Inter
   ============================================================ */

@font-face {
    font-family: 'Inter'; font-style: normal; font-weight: 300 800; font-display: swap;
    src: url('../fonts/inter-latin.woff2') format('woff2');
}
@font-face {
    font-family: 'Playfair Display'; font-style: normal; font-weight: 500 700; font-display: swap;
    src: url('../fonts/playfair-normal-latin.woff2') format('woff2');
}
@font-face {
    font-family: 'Playfair Display'; font-style: italic; font-weight: 500 700; font-display: swap;
    src: url('../fonts/playfair-italic-latin.woff2') format('woff2');
}

:root {
    --ink: #0b0e14;
    --ink-2: #12161f;
    --ink-3: #1a1f2b;
    --ivory: #f5f1e8;
    --paper: #fbf8f1;
    --copper: #c9963f;
    --copper-light: #e8c07a;
    --copper-dark: #76500f;
    --text: #1b2027;
    --text-light: #5b6472;
    --text-muted: #5f6875;
    --border: #e6e0d2;
    --border-light: #efe9dc;
    --success: #16733c;
    --error: #dc2626;
    --whatsapp: #22c15e;
    --shadow-sm: 0 1px 2px rgb(11 14 20 / .06);
    --shadow: 0 6px 18px -6px rgb(11 14 20 / .12);
    --shadow-lg: 0 18px 40px -12px rgb(11 14 20 / .22);
    --shadow-xl: 0 30px 60px -18px rgb(11 14 20 / .35);
    --radius: .7rem;
    --radius-lg: 1rem;
    --radius-xl: 1.75rem;
    --header-h: 76px;
    --ease-out: cubic-bezier(.22, 1, .36, 1);
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    --font-display: 'Playfair Display', 'Georgia', serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-body);
    font-size: 16px; line-height: 1.6; color: var(--text);
    background: var(--paper); min-height: 100vh;
    -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
    padding-top: var(--header-h);
}
body.page-home { padding-top: 0; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: 1rem; }
::selection { background: var(--copper); color: #14100a; }
:focus-visible { outline: 2px solid var(--copper-light); outline-offset: 3px; }

.skip-link {
    position: absolute; top: -100%; left: 0; z-index: 9999;
    background: var(--copper); color: #fff; padding: .75rem 1.5rem;
    border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { top: 0; }

.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 1.5rem; }

/* ============================================================
   HEADER
   ============================================================ */

.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 300;
    color: #fff;
    transition: background .35s ease, box-shadow .35s ease, border-color .35s ease;
    border-bottom: 1px solid transparent;
}
.site-header.scrolled, body:not(.page-home) .site-header {
    background: rgb(11 14 20 / .86);
    -webkit-backdrop-filter: blur(16px) saturate(1.3);
    backdrop-filter: blur(16px) saturate(1.3);
    border-bottom-color: rgb(255 255 255 / .08);
    box-shadow: 0 10px 30px -12px rgb(0 0 0 / .5);
}
.header-inner {
    display: flex; align-items: center; gap: 1.5rem;
    height: var(--header-h);
}
.brand { display: flex; align-items: center; gap: .8rem; flex-shrink: 0; }
.brand-mark {
    width: 44px; height: 44px; border-radius: 12px;
}
.brand-text strong {
    display: block; font-family: var(--font-display); font-size: 1.28rem;
    font-weight: 600; letter-spacing: .01em; line-height: 1.1; color: #fff;
}
.brand-text em { font-style: italic; color: var(--copper-light); }
.brand-text small {
    display: block; font-size: .62rem; letter-spacing: .18em;
    text-transform: uppercase; color: rgb(255 255 255 / .55); margin-top: .1rem;
}

.main-nav { display: flex; align-items: center; gap: .35rem; margin-left: auto; }
.nav-link {
    display: inline-flex; align-items: center; gap: .35rem;
    padding: .55rem .9rem; border-radius: 999px;
    font-size: .88rem; font-weight: 500; color: rgb(255 255 255 / .82);
    transition: color .25s ease, background .25s ease;
}
.nav-link:hover { color: #fff; background: rgb(255 255 255 / .07); }

/* Mega menú */
.has-mega { position: static; }
.has-mega::after {
    content: "";
    position: absolute;
    top: calc(var(--header-h) - 6px);
    left: 50%;
    width: min(1060px, 94vw);
    height: 24px;
    transform: translateX(-50%);
    pointer-events: auto;
}
.mega-panel {
    position: absolute; top: var(--header-h); left: 50%;
    transform: translate(-50%, 12px);
    width: min(1060px, 94vw);
    background: rgb(18 22 31 / .97);
    -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
    border: 1px solid rgb(255 255 255 / .1); border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 1.4rem;
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity .3s var(--ease-out), transform .3s var(--ease-out), visibility .3s;
}
.has-mega:hover .mega-panel, .has-mega:focus-within .mega-panel {
    opacity: 1; visibility: visible; pointer-events: auto;
    transform: translate(-50%, 0);
}
.mega-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: .4rem;
    max-height: 60vh; overflow-y: auto; scrollbar-width: thin;
}
.mega-grid::-webkit-scrollbar { width: 4px; }
.mega-grid::-webkit-scrollbar-thumb { background: rgb(255 255 255 / .15); border-radius: 4px; }
.mega-cat {
    display: grid; grid-template-columns: 44px minmax(0, 1fr); column-gap: .7rem; row-gap: .14rem; align-items: start;
    padding: .6rem .7rem; border-radius: var(--radius);
    transition: background .2s ease;
}
.mega-cat:hover { background: rgb(255 255 255 / .06); }
.mega-thumb {
    grid-row: 1 / span 2; width: 44px; height: 44px; display: grid; place-items: center; border-radius: .65rem; overflow: hidden;
    background: #fff; border: 1px solid rgb(255 255 255 / .14);
}
.mega-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease-out); }
.mega-cat:hover .mega-thumb img { transform: scale(1.07); }
.mega-thumb-fallback { color: #1b2432; font-size: 1rem; font-weight: 700; }
.mega-cat-name { font-size: .86rem; font-weight: 600; color: #fff; }
.mega-subs { font-size: .72rem; color: rgb(255 255 255 / .5); line-height: 1.35; }
.mega-footer {
    margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgb(255 255 255 / .08);
    text-align: center;
}
.mega-footer a { font-size: .85rem; color: var(--copper-light); font-weight: 500; }
.mega-footer a:hover { text-decoration: underline; }

.header-actions { display: flex; align-items: center; gap: .6rem; }
.header-wa {
    width: 40px; height: 40px; border-radius: 50%;
    display: grid; place-items: center;
    color: #fff; border: 1px solid rgb(255 255 255 / .18);
    transition: all .25s ease;
}
.header-wa:hover { background: var(--whatsapp); border-color: var(--whatsapp); transform: translateY(-2px); }
.btn-header-cta {
    padding: .6rem 1.4rem; border-radius: .6rem;
    background: linear-gradient(135deg, var(--copper-light), var(--copper) 55%, var(--copper-dark));
    color: #14100a; font-weight: 700; font-size: .86rem; letter-spacing: .02em;
    box-shadow: 0 6px 18px -6px rgb(201 150 63 / .55);
    transition: transform .25s var(--ease-out), box-shadow .25s ease;
}
.btn-header-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 24px -6px rgb(201 150 63 / .7); }

.menu-toggle {
    display: none; width: 42px; height: 42px;
    flex-direction: column; justify-content: center; align-items: center; gap: 5px;
}
.menu-toggle span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: .3s ease; }

/* Drawer móvil */
.mobile-overlay {
    display: none; position: fixed; inset: 0; background: rgb(0 0 0 / .6); z-index: 315;
    -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px);
}
.mobile-drawer {
    position: fixed; top: 0; right: 0; width: min(320px, 88vw); height: 100vh;
    background: var(--ink-2); color: #fff; z-index: 320;
    transform: translateX(105%); transition: transform .38s var(--ease-out);
    padding: 1.25rem; overflow-y: auto; display: flex; flex-direction: column;
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; gap: .5rem; }
.mobile-drawer-head strong { font-family: var(--font-display); font-size: 1.1rem; }
.mobile-drawer-head img { border-radius: 10px; }
.mobile-drawer-head button { font-size: 1.6rem; color: #fff; opacity: .7; }

.sidebar-section-title {
    font-size: .68rem; text-transform: uppercase; letter-spacing: .14em;
    opacity: .5; margin: 1.25rem 0 .5rem; font-weight: 600;
}
.mobile-categories { display: flex; flex-direction: column; gap: .25rem; }
.nav-category-group { border-radius: var(--radius); overflow: hidden; }
.nav-category-trigger {
    display: flex; align-items: center; justify-content: space-between;
    padding: .6rem .75rem; border-radius: var(--radius);
    font-size: .9rem; font-weight: 500; opacity: .9;
    transition: background .25s ease, opacity .25s ease;
}
.nav-category-trigger:hover, .nav-category-trigger.active { background: rgb(255 255 255 / .08); opacity: 1; }
.nav-category-trigger.active { color: var(--copper-light); }
.nav-subcategories {
    display: none; flex-direction: column; padding-left: .75rem;
    border-left: 2px solid rgb(255 255 255 / .08); margin: .25rem 0 .5rem .75rem;
}
.nav-category-group.is-open .nav-subcategories { display: flex; }
.nav-subcategories a { padding: .4rem .75rem; font-size: .82rem; opacity: .75; border-radius: var(--radius); transition: .25s ease; }
.nav-subcategories a:hover { opacity: 1; background: rgb(255 255 255 / .06); }
.nav-caret { opacity: .5; font-size: .7rem; transition: transform .25s ease; }
.nav-category-group.is-open .nav-caret { transform: rotate(180deg); }
.sidebar-extras { margin-top: auto; padding-top: 1.5rem; display: flex; flex-direction: column; gap: .5rem; }
.sidebar-extras a { padding: .5rem .75rem; border-radius: var(--radius); font-size: .85rem; opacity: .8; transition: .25s ease; }
.sidebar-extras a:hover { opacity: 1; background: rgb(255 255 255 / .06); }
.sidebar-cta {
    background: linear-gradient(135deg, var(--copper-light), var(--copper)) !important;
    color: #14100a !important; text-align: center; font-weight: 700; opacity: 1 !important;
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
    position: relative; min-height: 100svh;
    display: flex; align-items: center;
    color: #fff; overflow: hidden;
    margin-top: calc(var(--header-h) * -1);
    padding: calc(var(--header-h) + 5rem) 0 5rem;
}
.hero-media { position: absolute; inset: -12% 0; z-index: 0; will-change: transform; }
.hero-media img {
    width: 100%; height: 100%; object-fit: cover; object-position: 68% 50%;
    animation: kenburns 22s var(--ease-out) infinite alternate;
}
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.1); } }
.hero-shade {
    position: absolute; inset: 0;
    background:
        linear-gradient(90deg, rgb(11 14 20 / .94) 0%, rgb(11 14 20 / .72) 38%, rgb(11 14 20 / .28) 65%, rgb(11 14 20 / .42) 100%),
        linear-gradient(0deg, rgb(11 14 20 / .85) 0%, transparent 32%);
}
.hero-grain {
    position: absolute; inset: 0; opacity: .35; mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
}
.hero-inner { position: relative; z-index: 1; }
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 6.2vw, 5rem);
    line-height: 1.04; font-weight: 600; letter-spacing: -.01em;
    margin-bottom: 1.4rem; max-width: 780px;
    text-wrap: balance;
}
.hero-title em {
    font-style: italic; font-weight: 500; color: var(--copper-light);
}
.hero-copy {
    font-size: clamp(1rem, 1.6vw, 1.2rem); font-weight: 300;
    color: rgb(255 255 255 / .78); max-width: 540px; margin-bottom: 2.4rem; line-height: 1.7;
}
.hero-cta-row { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3.5rem; }
.hero-cta {
    display: inline-flex; align-items: center; gap: .6rem;
    padding: 1rem 2rem; border-radius: .65rem;
    font-weight: 600; font-size: .95rem;
    transition: transform .3s var(--ease-out), box-shadow .3s ease, background .3s ease;
}
.hero-cta.primary {
    background: linear-gradient(135deg, var(--copper-light), var(--copper) 55%, var(--copper-dark));
    color: #14100a; box-shadow: 0 12px 30px -8px rgb(201 150 63 / .6);
}
.hero-cta.primary svg { transition: transform .3s var(--ease-out); }
.hero-cta.primary:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -8px rgb(201 150 63 / .75); }
.hero-cta.primary:hover svg { transform: translateX(4px); }
.hero-cta.ghost {
    background: rgb(255 255 255 / .06); color: #fff;
    border: 1px solid rgb(255 255 255 / .22);
    -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.hero-cta.ghost:hover { background: rgb(255 255 255 / .14); transform: translateY(-3px); }
.hero-stats { display: flex; gap: clamp(1.5rem, 4vw, 3.5rem); flex-wrap: wrap; }
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats dt {
    font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 600; color: var(--copper-light); line-height: 1.1;
}
.hero-stats dd { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: rgb(255 255 255 / .55); margin-top: .3rem; }
.hero-scroll {
    position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 1;
    width: 26px; height: 44px; border: 1.5px solid rgb(255 255 255 / .35); border-radius: 999px;
    display: flex; justify-content: center; padding-top: 8px;
}
.hero-scroll span { width: 3px; height: 9px; border-radius: 3px; background: var(--copper-light); animation: scroll-hint 1.8s ease infinite; }
@keyframes scroll-hint { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(14px); opacity: 0; } 100% { transform: translateY(0); opacity: 0; } }

/* ============================================================
   MARQUEE
   ============================================================ */

.marquee {
    background: var(--ink); color: var(--copper-light);
    overflow: hidden; padding: 1rem 0;
    border-top: 1px solid rgb(201 150 63 / .25); border-bottom: 1px solid rgb(201 150 63 / .25);
}
.marquee-track { display: flex; width: max-content; animation: marquee 36s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
    display: inline-flex; align-items: center; gap: 1.6rem; padding: 0 .8rem;
    font-size: .82rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; white-space: nowrap;
}
.marquee-item i { font-style: normal; color: var(--copper); font-size: .7rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   SECCIONES GENERALES
   ============================================================ */

.section { padding: clamp(4rem, 8vw, 6.5rem) 0; }
.section-header { text-align: center; max-width: 660px; margin: 0 auto 3.2rem; }
.section-header.light { color: #fff; }
.section-header h2 {
    font-family: var(--font-display); font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 600; line-height: 1.15; margin-bottom: 1rem; letter-spacing: -.02em;
}
.section-header p { color: var(--text-light); font-size: 1.05rem; }
.section-header.light p { color: rgb(255 255 255 / .75); }
.section-cta { text-align: center; margin-top: 2.8rem; }

/* ============================================================
   CATEGORÍAS (home)
   ============================================================ */

.section-cats { background: var(--ivory); }
.cats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.cat-card {
    position: relative; border-radius: var(--radius-lg); overflow: hidden;
    background: var(--ink); color: #fff;
    aspect-ratio: 4/5; display: flex; align-items: flex-end;
    box-shadow: var(--shadow); isolation: isolate;
    transition: transform .45s var(--ease-out), box-shadow .45s ease;
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.cat-card-media { position: absolute; inset: 0; z-index: -1; }
.cat-card-media img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .8s var(--ease-out), filter .8s ease;
    filter: brightness(.85);
}
.cat-card::after {
    content: ''; position: absolute; inset: 0; z-index: -1;
    background: linear-gradient(0deg, rgb(11 14 20 / .92) 0%, rgb(11 14 20 / .25) 45%, transparent 70%);
}
.cat-card:hover .cat-card-media img { transform: scale(1.08); filter: brightness(1); }
.cat-card-body { padding: 1.3rem; width: 100%; display: flex; flex-direction: column; gap: .2rem; }
.cat-card-body h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; line-height: 1.2; }
.cat-count { font-size: .75rem; color: rgb(255 255 255 / .65); letter-spacing: .06em; }
.cat-arrow {
    position: absolute; right: 1.1rem; bottom: 1.1rem;
    width: 38px; height: 38px; border-radius: 50%;
    display: grid; place-items: center;
    background: rgb(201 150 63 / .18); border: 1px solid rgb(201 150 63 / .45); color: var(--copper-light);
    transition: all .35s var(--ease-out);
}
.cat-card:hover .cat-arrow { background: var(--copper); color: #14100a; transform: rotate(-45deg); }

/* ============================================================
   PRODUCTOS
   ============================================================ */

.section-featured { background: var(--paper); }
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1.5rem; }
.products-grid.compact { grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); }
.product-card {
    background: #fff; border-radius: var(--radius-lg); overflow: hidden;
    border: 1px solid var(--border-light);
    display: flex; flex-direction: column;
    transition: transform .4s var(--ease-out), box-shadow .4s ease;
    will-change: transform;
}
.product-card:hover { box-shadow: var(--shadow-lg); }
.product-image {
    position: relative; aspect-ratio: 1/1; background: #fff;
    display: grid; place-items: center; overflow: hidden; padding: 1rem;
}
.product-image img { width: 100%; height: 100%; object-fit: contain; transition: transform .6s var(--ease-out); }
.product-card:hover .product-image img { transform: scale(1.06); }
.product-badge {
    position: absolute; top: .8rem; left: .8rem;
    padding: .28rem .7rem; border-radius: 999px; font-size: .68rem; font-weight: 700;
    letter-spacing: .06em; text-transform: uppercase;
}
.product-badge.offer { background: #fde8e8; color: #991b1b; }
.product-badge.new { background: #e2ecf9; color: #1e40af; }
.product-body { padding: 1.1rem 1.2rem 1.3rem; display: flex; flex-direction: column; flex: 1; gap: .4rem; border-top: 1px solid var(--border-light); }
.product-body h3 { font-size: .95rem; font-weight: 600; line-height: 1.35; }
.product-body h3 a:hover { color: var(--copper-dark); }
.product-body p { font-size: .8rem; color: var(--text-light); }
.product-card-facts { display: flex; flex-wrap: wrap; gap: .3rem; margin-top: .12rem; }
.product-card-facts span { display: inline-flex; align-items: center; min-height: 22px; padding: .18rem .45rem; border-radius: .35rem; background: var(--ivory); color: var(--text-muted); font-size: .64rem; line-height: 1.15; }
.product-card-facts .fact-stock { color: var(--success); background: #effaf2; }
.product-card-material { margin: .05rem 0 0; font-size: .7rem !important; color: var(--text-muted) !important; line-height: 1.3; }
.product-card-material strong { color: var(--text); font-weight: 600; }
.product-price { margin-top: auto; padding-top: .6rem; display: flex; align-items: baseline; gap: .4rem; }
.price-prefix { font-size: .72rem; color: var(--text-muted); }
.price-old { text-decoration: line-through; color: var(--text-muted); font-size: .82rem; }
.price-current { font-size: 1.1rem; font-weight: 700; color: var(--copper-dark); font-variant-numeric: tabular-nums; }

/* ============================================================
   BENEFICIOS
   ============================================================ */

.section-benefits {
    background:
        radial-gradient(60% 80% at 85% 10%, rgb(201 150 63 / .14), transparent 60%),
        radial-gradient(50% 60% at 10% 90%, rgb(201 150 63 / .1), transparent 55%),
        var(--ink);
    color: #fff;
}
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.benefit-card {
    display: grid; grid-template-columns: 52px minmax(0, 1fr); column-gap: 1.1rem;
    padding: 1.5rem 0; border-top: 1px solid rgb(255 255 255 / .18);
    transition: transform .4s var(--ease-out), border-color .4s ease;
}
.benefit-card:hover { transform: translateX(4px); border-color: var(--copper); }
.benefit-icon {
    width: 52px; height: 52px; border-radius: 14px;
    background: rgb(201 150 63 / .14); border: 1px solid rgb(201 150 63 / .3);
    display: grid; place-items: center; grid-row: span 2; color: var(--copper-light);
}
.benefit-icon svg, .technique-icon svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.benefit-card h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: .45rem; }
.benefit-card p { color: rgb(255 255 255 / .65); font-size: .9rem; }

/* ============================================================
   TÉCNICAS
   ============================================================ */

.section-techniques { background: var(--ivory); }
.techniques-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.technique-card {
    background: #fff; border-radius: var(--radius); padding: 1.4rem 1.2rem;
    border: 1px solid var(--border-light); text-align: center;
    transition: transform .35s var(--ease-out), border-color .35s ease, box-shadow .35s ease;
}
.technique-card:hover { border-color: var(--copper); transform: translateY(-4px); box-shadow: var(--shadow); }
.technique-icon { color: var(--copper-dark); margin-bottom: .8rem; }
.technique-card h3 { font-size: .92rem; font-weight: 600; margin-bottom: .3rem; }
.technique-card p { font-size: .8rem; color: var(--text-light); }

/* ============================================================
   TESTIMONIOS
   ============================================================ */

.section-testimonials { background: var(--paper); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.testimonial-card {
    position: relative; background: #fff; border-radius: var(--radius-lg); padding: 2rem 1.7rem 1.6rem;
    border: 1px solid var(--border-light);
    transition: transform .4s var(--ease-out), box-shadow .4s ease;
}
.testimonial-card::before {
    content: '“'; position: absolute; top: .4rem; right: 1.2rem;
    font-family: var(--font-display); font-size: 4.5rem; line-height: 1;
    color: rgb(201 150 63 / .22);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testimonial-stars { color: var(--copper); font-size: 1rem; letter-spacing: .15em; margin-bottom: .9rem; }
.testimonial-card p { font-style: italic; color: var(--text-light); margin-bottom: 1.2rem; font-size: .94rem; }
.testimonial-card footer strong { display: block; font-size: .9rem; }
.testimonial-card footer span { font-size: .78rem; color: var(--text-muted); }

/* ============================================================
   PROCESO
   ============================================================ */

.section-process {
    background:
        radial-gradient(55% 70% at 15% 15%, rgb(201 150 63 / .12), transparent 60%),
        linear-gradient(160deg, var(--ink) 0%, #141a26 100%);
    color: #fff;
}
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.process-step { text-align: left; position: relative; padding-top: .5rem; }
.step-number {
    font-family: var(--font-display); font-size: 3.4rem; font-weight: 700; line-height: 1;
    color: var(--copper-light);
    margin-bottom: .9rem;
}
.process-step h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: .5rem; }
.process-step p { color: rgb(255 255 255 / .65); font-size: .88rem; }
.process-step:not(:last-child)::after {
    content: ''; position: absolute; top: 1.9rem; right: -1rem;
    width: 0; height: 1px; background: rgb(201 150 63 / .4);
}

/* ============================================================
   BLOG
   ============================================================ */

.section-blog { background: var(--ivory); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.blog-card {
    background: #fff; border-radius: var(--radius-lg); overflow: hidden;
    border: 1px solid var(--border-light);
    display: flex; flex-direction: column;
    transition: transform .4s var(--ease-out), box-shadow .4s ease;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-image { aspect-ratio: 16/10; overflow: hidden; background: var(--ink-2); }
.blog-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-out); }
.blog-card:hover .blog-image img { transform: scale(1.06); }
.blog-body { padding: 1.3rem; display: flex; flex-direction: column; flex: 1; gap: .45rem; }
.blog-category { font-size: .7rem; font-weight: 700; color: var(--copper-dark); text-transform: uppercase; letter-spacing: .12em; }
.blog-body h3 { font-size: 1.02rem; font-weight: 600; line-height: 1.35; }
.blog-body h3 a:hover { color: var(--copper-dark); }
.blog-body p { font-size: .86rem; color: var(--text-light); }
.blog-body time { font-size: .76rem; color: var(--text-muted); }
.blog-readmore { font-size: .84rem; font-weight: 600; color: var(--copper-dark); margin-top: auto; padding-top: .5rem; }
.blog-empty-state {
    max-width: 760px;
    margin: 0 auto;
    padding: clamp(2rem, 5vw, 3.5rem);
    text-align: center;
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
}
.blog-empty-kicker {
    display: block;
    margin-bottom: .65rem;
    color: var(--copper-dark);
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.blog-empty-state h2,
.blog-empty-state h3 {
    max-width: 34ch;
    margin: 0 auto .7rem;
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.35rem);
    line-height: 1.08;
}
.blog-empty-state p { max-width: 54ch; margin: 0 auto 1.35rem; color: var(--text-light); }

/* ============================================================
   FAQ
   ============================================================ */

.section-faq { background: var(--paper); }
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: .8rem; }
.faq-item {
    background: #fff; border-radius: var(--radius); border: 1px solid var(--border-light);
    overflow: hidden; transition: border-color .3s ease, box-shadow .3s ease;
}
.faq-item[open] { border-color: var(--copper); box-shadow: var(--shadow); }
.faq-item summary {
    padding: 1.1rem 1.4rem; font-weight: 600; cursor: pointer; list-style: none;
    display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-size: .95rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+'; font-size: 1.3rem; font-weight: 400; color: var(--copper-dark);
    width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0;
    display: grid; place-items: center; background: rgb(201 150 63 / .1);
    transition: transform .3s var(--ease-out), background .3s ease;
}
.faq-item[open] summary::after { content: '−'; background: var(--copper); color: #fff; transform: rotate(180deg); }
.faq-answer { padding: 0 1.4rem 1.2rem; color: var(--text-light); font-size: .92rem; }

/* ============================================================
   CTA FINAL PARALLAX
   ============================================================ */

.section-cta-parallax {
    position: relative; min-height: 78vh;
    display: flex; align-items: center; overflow: hidden;
    color: #fff;
}
.cta-parallax-bg { position: absolute; inset: -18% 0; z-index: 0; will-change: transform; }
.cta-parallax-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-parallax-shade {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(0deg, rgb(11 14 20 / .88), rgb(11 14 20 / .62));
}
.section-cta-parallax .container { position: relative; z-index: 2; }
.cta-parallax-box { max-width: 640px; margin: 0 auto; text-align: center; padding: 4rem 0; }
.cta-parallax-box h2 {
    font-family: var(--font-display); font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 600; line-height: 1.15; margin-bottom: 1rem; text-wrap: balance;
}
.cta-parallax-box p { color: rgb(255 255 255 / .78); margin-bottom: 2rem; font-size: 1.05rem; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   BOTONES
   ============================================================ */

.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
    padding: .65rem 1.35rem; border-radius: .6rem; font-weight: 600;
    font-size: .88rem; border: none; cursor: pointer;
    transition: transform .3s var(--ease-out), box-shadow .3s ease, background .3s ease, color .3s ease;
}
.btn-sm { padding: .45rem 1rem; font-size: .8rem; }
.btn-lg { padding: .95rem 2.2rem; font-size: 1rem; }
.btn-primary {
    background: linear-gradient(135deg, var(--copper-light), var(--copper) 55%, var(--copper-dark));
    color: #14100a; box-shadow: 0 8px 20px -8px rgb(201 150 63 / .6);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px -8px rgb(201 150 63 / .75); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--ink-3); transform: translateY(-2px); }
.btn-secondary { background: var(--ink); color: #fff; }
.btn-secondary:hover { background: var(--ink-3); }
.btn-whatsapp { background: var(--whatsapp); color: #fff; }
.btn-whatsapp:hover { background: #1aa84f; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: inherit; border: 1px solid currentColor; }
.product-card .btn-sm {
    background: var(--ivory); color: var(--text); border: 1px solid var(--border);
    margin-top: .5rem;
}
.product-card .btn-sm:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
    background: var(--ink); color: rgb(255 255 255 / .72);
    padding: 4rem 0 0; font-size: .9rem;
    border-top: 1px solid rgb(201 150 63 / .2);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 2.5rem; }
.footer-brand .brand { margin-bottom: 1rem; }
.footer-brand .brand strong { font-family: var(--font-display); font-size: 1.2rem; color: #fff; }
.footer-brand .brand em { font-style: italic; color: var(--copper-light); }
.footer-brand .brand-mark { width: 40px; height: 40px; border-radius: 10px; }
.footer-brand p { color: rgb(255 255 255 / .55); margin-bottom: 1.2rem; max-width: 320px; }
.footer-social { display: flex; gap: .7rem; }
.footer-social a {
    width: 38px; height: 38px; border-radius: 10px;
    background: rgb(255 255 255 / .06); border: 1px solid rgb(255 255 255 / .1);
    display: grid; place-items: center; color: #fff; transition: all .3s ease;
}
.footer-social a:hover { background: var(--whatsapp); border-color: var(--whatsapp); transform: translateY(-2px); }
.site-footer h3 {
    font-size: .78rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: .14em; color: var(--copper-light); margin-bottom: 1.1rem;
}
.site-footer ul { display: flex; flex-direction: column; gap: .55rem; }
.site-footer a { color: rgb(255 255 255 / .65); transition: color .25s ease; }
.site-footer a:hover { color: var(--copper-light); }
.footer-bottom {
    border-top: 1px solid rgb(255 255 255 / .07); padding: 1.4rem 0;
    text-align: center; font-size: .78rem; color: rgb(255 255 255 / .62);
}

/* ============================================================
   MOBILE CTA BAR
   ============================================================ */

.mobile-cta-bar {
    display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 310;
    background: rgb(251 248 241 / .92); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
    border-top: 1px solid var(--border); padding: .5rem;
    justify-content: space-around; gap: .5rem; box-shadow: 0 -6px 20px rgb(0 0 0 / .08);
}
.mobile-cta-bar a {
    flex: 1; display: flex; flex-direction: column; align-items: center; gap: .2rem;
    padding: .4rem; border-radius: var(--radius); font-size: .68rem; font-weight: 600;
    color: var(--text); transition: .25s ease;
}
.mobile-cta-bar a.mcta-wa { color: #128c4b; }
.mobile-cta-bar a.mcta-call { color: var(--ink); }
.mobile-cta-bar a.mcta-quote { color: #76500f; }

/* ============================================================
   PÁGINAS INTERNAS
   ============================================================ */

.page-header-mini {
    position: relative; overflow: hidden;
    background:
        radial-gradient(50% 90% at 85% 0%, rgb(201 150 63 / .18), transparent 60%),
        linear-gradient(135deg, var(--ink) 0%, var(--ink-3) 100%);
    color: #fff; padding: 3.5rem 0 2.6rem; margin-bottom: 2.5rem;
}
/* Páginas con hero propio: la banda mini solo lleva breadcrumbs */
body.page-categoria .page-header-mini,
body.page-subcategoria .page-header-mini,
body.page-producto .page-header-mini {
    padding: 1.6rem 0 1rem; margin-bottom: 1.6rem;
}
body.page-categoria .page-header-mini .breadcrumbs,
body.page-subcategoria .page-header-mini .breadcrumbs,
body.page-producto .page-header-mini .breadcrumbs { margin-bottom: 0; }
.page-header-mini .breadcrumbs { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; margin-bottom: 1rem; font-size: .78rem; color: rgb(255 255 255 / .55); }
.page-header-mini .breadcrumbs a:hover { color: var(--copper-light); }
.page-header-mini .breadcrumbs .sep { opacity: .4; }
.page-title { font-family: var(--font-display); font-size: clamp(1.7rem, 3.5vw, 2.5rem); font-weight: 600; }
.page-intro { color: rgb(255 255 255 / .7); margin-top: .6rem; max-width: 620px; }

/* Categoría */
.category-layout, .catalog-search-layout { display: grid; grid-template-columns: 250px minmax(0, 1fr); gap: 2.2rem; align-items: start; }
.category-sidebar { position: sticky; top: calc(var(--header-h) + 1rem); }
.category-sidebar .sidebar-block {
    background: #fff; border-radius: var(--radius); padding: 1.3rem;
    margin-bottom: 1rem; border: 1px solid var(--border-light);
}
.category-sidebar h2, .category-sidebar h3 { font-size: .88rem; font-weight: 700; margin-bottom: .8rem; }
.category-sidebar p { font-size: .84rem; color: var(--text-light); margin-bottom: .8rem; }
.category-sidebar nav { display: flex; flex-direction: column; gap: .35rem; }
.category-sidebar nav a { font-size: .85rem; color: var(--text-light); padding: .3rem 0; transition: color .25s ease; }
.category-sidebar nav a:hover { color: var(--copper-dark); }
.category-sidebar .btn { width: 100%; margin-top: .4rem; }
.catalog-sidebar-heading { display: flex; align-items: end; justify-content: space-between; gap: .75rem; padding-bottom: .85rem; margin-bottom: .35rem; border-bottom: 1px solid var(--border-light); }
.catalog-sidebar-heading h2 { margin: 0; font-size: 1rem; letter-spacing: -.01em; }
.catalog-sidebar-count { color: var(--text-muted); font-size: .68rem; white-space: nowrap; }
.catalog-nav-tree { display: flex; flex-direction: column; gap: .08rem; }
.catalog-nav-group { border-bottom: 1px solid rgb(31 38 49 / .07); }
.catalog-nav-group:last-child { border-bottom: 0; }
.catalog-nav-category { display: flex; align-items: center; justify-content: space-between; gap: .6rem; min-height: 42px; padding: .5rem .15rem; color: var(--text); font-size: .82rem; font-weight: 700; line-height: 1.25; transition: color .2s ease, background .2s ease, padding .2s ease; }
.catalog-nav-category:hover, .catalog-nav-category:focus-visible { color: var(--copper-dark); }
.catalog-nav-category.is-current { color: var(--copper-dark); }
.catalog-nav-chevron, .catalog-nav-arrow { flex: 0 0 16px; width: 16px; height: 16px; color: var(--text-muted); transition: transform .25s var(--ease-out), color .2s ease; }
.catalog-nav-category:hover .catalog-nav-chevron, .catalog-nav-category.is-current .catalog-nav-chevron { color: var(--copper-dark); }
.catalog-nav-group.is-open .catalog-nav-chevron { transform: rotate(180deg); }
.catalog-nav-arrow { opacity: .55; }
.catalog-nav-subcategories { display: none; flex-direction: column; gap: .08rem; padding: .1rem 0 .55rem .75rem; margin-left: .25rem; border-left: 1px solid var(--border); }
.catalog-nav-group.is-open .catalog-nav-subcategories { display: flex; }
.catalog-nav-subcategory { position: relative; padding: .34rem .45rem; color: var(--text-light); font-size: .76rem; line-height: 1.3; border-radius: .35rem; transition: color .2s ease, background .2s ease, padding .2s ease; }
.catalog-nav-subcategory:hover, .catalog-nav-subcategory:focus-visible { padding-left: .65rem; color: var(--copper-dark); background: #fffaf1; }
.catalog-nav-subcategory.is-current { color: var(--copper-dark); font-weight: 700; background: #fff6e6; }
.category-intro { margin-bottom: 1.6rem; }
.category-intro h2 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; margin-bottom: .5rem; }
.category-intro p { color: var(--text-light); }
.section-faq h2 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; margin: 2.5rem 0 1.2rem; }
.breadcrumbs-inline { margin-bottom: .75rem; }
.breadcrumbs-inline a { font-size: .85rem; color: var(--copper-dark); }

/* Producto */
.product-page { padding: .5rem 0 3rem; }
.product-layout { display: grid; grid-template-columns: 1.05fr 1fr; gap: 3rem; margin-bottom: 2.5rem; }
.product-gallery { display: flex; flex-direction: column; gap: .8rem; }
.product-main-image {
    aspect-ratio: 1; background: #fff; border-radius: var(--radius-lg);
    overflow: hidden; display: grid; place-items: center;
    border: 1px solid var(--border-light); padding: 1.5rem;
}
.product-main-image img { width: 100%; height: 100%; object-fit: contain; transition: transform .5s var(--ease-out), opacity .2s ease; }
.product-main-image img.is-changing { opacity: .35; transform: scale(.98); }
.product-main-image:hover img { transform: scale(1.04); }
.product-thumbs { display: flex; gap: .5rem; flex-wrap: wrap; }
.product-thumbs .thumb {
    width: 68px; height: 68px; border-radius: var(--radius); overflow: hidden;
    border: 2px solid var(--border-light); background: #fff; padding: 4px;
    opacity: .7; transition: all .25s ease;
}
.product-thumbs .thumb.active { border-color: var(--copper); opacity: 1; }
.product-thumbs .thumb:hover { opacity: 1; }
.product-thumbs .thumb img { width: 100%; height: 100%; object-fit: contain; }
.product-info h1 { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 600; margin-bottom: .4rem; line-height: 1.2; }
.product-sku { font-size: .78rem; color: var(--text-muted); letter-spacing: .06em; margin-bottom: .9rem; }
.product-price-large { margin-bottom: 1.1rem; display: flex; align-items: baseline; gap: .6rem; }
.product-price-large .price-current { font-size: 1.8rem; }
.product-short-desc { color: var(--text-light); margin-bottom: 1.2rem; }
.product-meta { font-size: .86rem; color: var(--text-light); padding: .45rem 0; border-bottom: 1px solid var(--border-light); }
.product-meta strong { color: var(--text); }
.product-actions { display: flex; gap: .8rem; margin-top: 1.6rem; flex-wrap: wrap; }
.product-description { margin-bottom: 2.5rem; }
.product-description h2 { font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; margin-bottom: .9rem; }
.product-long-desc { color: var(--text-light); line-height: 1.75; }
.product-long-desc h2, .product-long-desc h3 { color: var(--text); margin: 1.2rem 0 .5rem; }
.product-long-desc ul { list-style: disc; padding-left: 1.25rem; margin-bottom: .8rem; }
.product-long-desc table { width: 100%; border-collapse: collapse; margin: 1rem 0; font-size: .86rem; }
.product-long-desc td, .product-long-desc th { border: 1px solid var(--border); padding: .5rem .7rem; text-align: left; }
.section-related { margin-top: 2.5rem; }
.section-related h2 { font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; margin-bottom: 1.2rem; }

/* Blog */
.blog-filters { display: flex; gap: .5rem; flex-wrap: wrap; align-items: center; margin-bottom: 1.6rem; }
.blog-filters span { font-size: .85rem; color: var(--text-muted); margin-right: .5rem; }
.blog-filters a { padding: .38rem .9rem; border-radius: 999px; font-size: .8rem; font-weight: 500; background: #fff; border: 1px solid var(--border-light); color: var(--text-light); transition: all .25s ease; }
.blog-filters a:hover, .blog-filters a.active { background: var(--ink); border-color: var(--ink); color: #fff; }
.pagination { display: flex; justify-content: center; align-items: center; gap: 1rem; margin-top: 2.2rem; }
.pagination a { padding: .5rem 1.1rem; border-radius: 999px; background: #fff; border: 1px solid var(--border); font-size: .85rem; font-weight: 600; transition: all .25s ease; }
.pagination a:hover { background: var(--ink); color: #fff; }
.blog-post-page article { max-width: 780px; margin: 0 auto; }
.post-header { margin-bottom: 1.6rem; }
.post-header h1 { font-family: var(--font-display); font-size: clamp(1.7rem, 3.5vw, 2.4rem); font-weight: 600; margin: .5rem 0; }
.post-header time { font-size: .84rem; color: var(--text-muted); }
.post-featured-image { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 1.6rem; aspect-ratio: 16/9; background: var(--ink-2); }
.post-featured-image img { width: 100%; height: 100%; object-fit: cover; }
.post-content { line-height: 1.8; color: var(--text-light); }
.post-content h2 { color: var(--text); font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; margin: 1.7rem 0 .8rem; }
.post-content p { margin-bottom: 1rem; }
.post-content ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.post-sources { margin-top: 2.4rem; padding: 1.25rem 1.35rem; border: 1px solid var(--border-light); border-radius: var(--radius); background: #fff; }
.post-sources h2 { margin-top: 0; font-size: 1.1rem; }
.post-sources ul { margin: 0; padding-left: 1.2rem; }
.post-sources li { margin-bottom: .55rem; font-size: .86rem; line-height: 1.55; }
.post-sources li:last-child { margin-bottom: 0; }
.post-sources a { color: var(--copper-dark); text-decoration: underline; text-underline-offset: 2px; }
.post-cta { background: var(--ivory); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.7rem; text-align: center; margin-top: 2.2rem; }
.post-cta h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; margin-bottom: .8rem; }

/* Landing */
.landing-page { padding: .5rem 0 3rem; }
.landing-content { display: grid; grid-template-columns: 1fr 290px; gap: 2.5rem; align-items: start; }
.landing-body { line-height: 1.8; color: var(--text-light); }
.landing-body h2 { color: var(--text); font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; margin: 1.7rem 0 .8rem; }
.landing-body p { margin-bottom: 1rem; }
.landing-body ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.landing-cta-box { background: var(--ivory); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.6rem; margin-top: 2rem; }
.landing-cta-box h3 { color: var(--text); font-size: 1.1rem; font-weight: 700; margin-bottom: .5rem; }
.landing-cta-box p { font-size: .9rem; margin-bottom: 1rem; }
.landing-sidebar { position: sticky; top: calc(var(--header-h) + 1rem); }
.landing-sidebar .sidebar-block { background: #fff; border-radius: var(--radius); padding: 1.3rem; margin-bottom: 1rem; border: 1px solid var(--border-light); }
.landing-sidebar h3 { font-size: .88rem; font-weight: 700; margin-bottom: .8rem; }
.landing-sidebar nav { display: flex; flex-direction: column; gap: .4rem; }
.landing-sidebar nav a { font-size: .85rem; color: var(--text-light); transition: color .25s ease; }
.landing-sidebar nav a:hover { color: var(--copper-dark); }

/* Contacto / Cotizar / Buscar */
.contact-page, .cotizar-page, .buscar-page { padding: .5rem 0 3rem; }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.contact-info h2 { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; margin-bottom: .5rem; }
.contact-info p { color: var(--text-light); margin-bottom: 1.6rem; }
.contact-list { display: flex; flex-direction: column; gap: 1.1rem; }
.contact-list li { display: flex; flex-direction: column; gap: .2rem; }
.contact-list strong { font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; color: var(--text-muted); }
.contact-list a { color: var(--copper-dark); font-weight: 500; }
.contact-form, .cotizar-form {
    display: flex; flex-direction: column; gap: 1.1rem;
    background: #fff; border: 1px solid var(--border-light); border-radius: var(--radius-lg);
    padding: 1.8rem; box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label { font-size: .82rem; font-weight: 600; }
.form-group input, .form-group textarea, .form-group select {
    padding: .7rem 1rem; border: 1px solid var(--border); border-radius: var(--radius);
    background: var(--paper); transition: border-color .25s ease, box-shadow .25s ease;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none; border-color: var(--copper); box-shadow: 0 0 0 3px rgb(201 150 63 / .15);
}
.form-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.form-note { font-size: .78rem; color: var(--text-muted); }
.alert { padding: 1rem 1.3rem; border-radius: var(--radius); font-size: .9rem; }
.alert-success { background: #e5f6ec; color: #166534; border: 1px solid #bde5c9; }
.alert-error { background: #fde8e8; color: #991b1b; border: 1px solid #f3c8c8; }
.alert.center { text-align: center; }
.cotizar-intro { text-align: center; max-width: 580px; margin: 0 auto 1.6rem; }
.cotizar-intro h2 { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; }
.cotizar-intro p { color: var(--text-light); }
.cotizar-benefits { display: flex; justify-content: center; gap: 2.5rem; flex-wrap: wrap; margin-top: 2.2rem; padding-top: 2.2rem; border-top: 1px solid var(--border-light); }
.benefit-item { display: flex; flex-direction: column; align-items: center; text-align: center; }
.benefit-item strong { font-size: .9rem; }
.benefit-item span { font-size: .8rem; color: var(--text-light); }
.search-form-large { max-width: 660px; margin: 0 auto 2.2rem; }
.search-form-large label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: .45rem; }
.search-input-wrap { display: flex; gap: .5rem; }
.search-input-wrap input { flex: 1; padding: .9rem 1.1rem; border: 1px solid var(--border); border-radius: 999px; font-size: 1rem; background: #fff; }
.search-input-wrap input:focus { outline: none; border-color: var(--copper); box-shadow: 0 0 0 3px rgb(201 150 63 / .15); }
.results-count { text-align: center; color: var(--text-muted); font-size: .85rem; margin-bottom: 1.2rem; }

/* Error / vacíos */
.error-page { padding: 4rem 0; text-align: center; }
.error-content h1 {
    font-family: var(--font-display); font-size: 5.5rem; font-weight: 700; line-height: 1;
    color: var(--copper-dark);
}
.error-content p { color: var(--text-light); margin: 1rem 0 1.5rem; }
.error-actions { display: flex; gap: 1rem; justify-content: center; margin-bottom: 2rem; }
.error-suggestions h2 { font-size: 1.1rem; font-weight: 600; margin-bottom: .8rem; }
.suggestion-links { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; }
.suggestion-links a { padding: .42rem 1rem; border-radius: 999px; background: #fff; border: 1px solid var(--border); font-size: .85rem; transition: all .25s ease; }
.suggestion-links a:hover { background: var(--ink); color: #fff; }
.empty-state { text-align: center; padding: 3rem 0; }
.empty-state p { color: var(--text-light); margin-bottom: 1rem; }

/* ============================================================
   ANIMACIONES
   ============================================================ */

.js [data-animate] {
    opacity: 0; transform: translateY(30px);
    transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.js [data-animate].in-view { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    html { scroll-behavior: auto; }
    .js [data-animate], [data-animate] { opacity: 1 !important; transform: none !important; }
    .hero-media img { animation: none; }
    .marquee-track { animation: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1100px) {
    .main-nav { display: none; }
    .menu-toggle { display: flex; }
    .cats-grid { grid-template-columns: repeat(2, 1fr); }
    .benefits-grid, .testimonials-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .techniques-grid { grid-template-columns: repeat(3, 1fr); }
    .process-steps { grid-template-columns: repeat(2, 1fr); }
    .category-layout, .catalog-search-layout, .landing-content, .product-layout, .contact-layout { grid-template-columns: 1fr; }
    .category-sidebar { display: none; }
    .landing-sidebar { position: static; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
    :root { --header-h: 64px; }
    .brand-text small { display: none; }
    .brand-text strong { font-size: 1.1rem; }
    .brand-mark { width: 38px; height: 38px; }
    .btn-header-cta { display: none; }
    .header-wa { display: none; }
    .hero { padding-bottom: 6rem; min-height: 88svh; }
    .hero-stats { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.1rem 1.5rem; max-width: 270px; }
    .cats-grid { grid-template-columns: 1fr; }
    .cat-card { aspect-ratio: 16/10; }
    .benefits-grid, .testimonials-grid, .blog-grid, .techniques-grid, .process-steps { grid-template-columns: 1fr; }
    .products-grid, .products-grid.compact { grid-template-columns: repeat(2, 1fr); gap: .9rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }
    .mobile-cta-bar { display: flex; }
    .site-footer { padding-bottom: 4.5rem; }
    .form-row { grid-template-columns: 1fr; }
    .cta-buttons { flex-direction: column; }
    .cta-buttons .btn { width: 100%; }
    .product-actions { flex-direction: column; }
    .product-actions .btn { width: 100%; }
    .section { padding: 3.2rem 0; }
}

/* ============================================================
   EXPLORADOR MARKETPLACE — barra densa junto al catálogo
   ============================================================ */
.marketplace-explorer {
    margin: .15rem 0 .9rem;
    border: 1px solid #d8dde3;
    border-radius: .45rem;
    background: #fff;
    box-shadow: 0 2px 5px rgb(20 28 38 / .06);
    overflow: visible;
}
.marketplace-toolbar {
    display: flex;
    align-items: center;
    gap: .65rem;
    padding: .55rem .65rem;
    background: #f3f4f5;
    border-radius: .45rem;
}
.marketplace-result {
    display: flex;
    align-items: baseline;
    gap: .28rem;
    flex: 0 0 auto;
    padding-right: .65rem;
    border-right: 1px solid #d6dbe1;
    color: #536070;
    white-space: nowrap;
}
.marketplace-result strong { color: #1d2734; font-size: .95rem; font-variant-numeric: tabular-nums; }
.marketplace-result span { font-size: .68rem; }
.marketplace-form.marketplace-form {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    flex: 1 1 auto;
    gap: .38rem .45rem;
    min-width: 0;
    padding: 0;
    background: transparent;
}
.marketplace-form > input[type="search"] {
    flex: 0 0 215px;
    min-width: 0;
    max-width: 215px;
    height: 34px;
    padding: 0 .6rem;
    border: 1px solid #cdd3da;
    border-radius: .28rem;
    background: #fff;
    color: #202b3a;
    font: inherit;
    font-size: .72rem;
}
.marketplace-form > input[type="search"]:focus,
.marketplace-select select:focus { outline: 2px solid rgb(201 150 63 / .28); outline-offset: 1px; border-color: #b17c28; }
.marketplace-select {
    display: inline-flex;
    align-items: center;
    gap: .24rem;
    flex: 0 0 auto;
    min-width: 0;
    white-space: nowrap;
}
.marketplace-select > span {
    color: #687483;
    font-size: .57rem;
    font-weight: 800;
    letter-spacing: .045em;
    text-transform: uppercase;
}
.marketplace-select select {
    appearance: none;
    width: 104px;
    max-width: 104px;
    height: 34px;
    padding: 0 1.25rem 0 .5rem;
    border: 1px solid #cdd3da;
    border-radius: .28rem;
    background: #fff linear-gradient(45deg, transparent 50%, #657181 50%) calc(100% - 9px) 14px / 5px 5px no-repeat,
        linear-gradient(135deg, #657181 50%, transparent 50%) calc(100% - 6px) 14px / 5px 5px no-repeat;
    color: #253142;
    font: inherit;
    font-size: .68rem;
    cursor: pointer;
    text-overflow: ellipsis;
}
.marketplace-select.has-value select { border-color: #c39348; background-color: #fffaf1; color: #573b12; }
.marketplace-check {
    display: inline-flex;
    align-items: center;
    gap: .25rem;
    height: 34px;
    padding: 0 .35rem;
    border: 1px solid transparent;
    color: #536070;
    font-size: .67rem;
    white-space: nowrap;
    cursor: pointer;
}
.marketplace-check input { width: 14px; height: 14px; accent-color: #8a5c15; }
.marketplace-check:has(input:checked) { border-color: #d5b173; border-radius: .28rem; background: #fffaf1; color: #5b3d10; }
.marketplace-view-control { margin-left: auto; }
.marketplace-view-control select { max-width: 116px; }
.marketplace-apply {
    height: 34px;
    padding: 0 .72rem;
    border: 1px solid #1c2735;
    border-radius: .28rem;
    background: #1c2735;
    color: #fff;
    font: inherit;
    font-size: .68rem;
    font-weight: 750;
    cursor: pointer;
    white-space: nowrap;
    transition: background .2s ease, border-color .2s ease;
}
.marketplace-apply:hover { border-color: #8a5c15; background: #8a5c15; }
.marketplace-active {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .3rem;
    padding: .42rem .7rem;
    border-top: 1px solid #e2e5e8;
    color: #6a7481;
    font-size: .63rem;
}
.marketplace-active > span { margin-right: .1rem; font-weight: 750; color: #4b5664; }
.marketplace-active .filter-chip {
    padding: .24rem .45rem;
    border: 1px solid #d6dbe1;
    border-radius: .25rem;
    background: #fff;
    color: #394655;
    font-size: .61rem;
}
.marketplace-active .filter-chip:hover { border-color: #ba8737; background: #fffaf1; color: #65430e; }
.marketplace-active .filter-chip i { color: #8a95a1; font-size: .8rem; }
.marketplace-clear { margin-left: .2rem; color: #8a5c15; font-size: .62rem; font-weight: 750; text-decoration: underline; text-underline-offset: 2px; }
.catalog-toolbar-minimal { margin: 0 0 .65rem; }
.marketplace-explorer .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.products-grid.compact.list-view { grid-template-columns: 1fr; gap: .7rem; }
.products-grid.compact.list-view .product-card { display: grid; grid-template-columns: 165px minmax(0, 1fr); min-height: 165px; }
.products-grid.compact.list-view .product-image { aspect-ratio: 1 / 1; height: 165px; padding: .6rem; }
.products-grid.compact.list-view .product-body { border-top: 0; border-left: 1px solid var(--border-light); padding: .8rem 1rem; }
.products-grid.compact.list-view .product-body p { max-width: 72ch; }
@media (max-width: 620px) {
    .products-grid.compact.list-view .product-card { grid-template-columns: 112px minmax(0, 1fr); }
    .products-grid.compact.list-view .product-image { height: 112px; }
    .products-grid.compact.list-view .product-body { padding: .65rem .7rem; }
}

@media (max-width: 1180px) {
    .marketplace-toolbar { align-items: stretch; flex-direction: column; }
    .marketplace-result { width: fit-content; padding: 0 0 .35rem; border-right: 0; border-bottom: 1px solid #d6dbe1; }
    .marketplace-form.marketplace-form { flex-wrap: wrap; }
    .marketplace-form > input[type="search"] { flex: 1 1 220px; max-width: none; }
    .marketplace-view-control { margin-left: 0; }
}
@media (max-width: 620px) {
    .catalog-directory-grid { grid-template-columns: 1fr; }
    .marketplace-explorer { border-radius: .35rem; }
    .marketplace-toolbar { padding: .55rem; }
    .marketplace-form.marketplace-form { gap: .35rem; }
    .marketplace-form > input[type="search"] { flex: 1 1 100%; max-width: none; }
    .marketplace-select { flex: 1 1 calc(50% - .35rem); }
    .marketplace-select > span { min-width: 42px; }
    .marketplace-select select { flex: 1 1 auto; max-width: none; }
    .marketplace-check { flex: 1 1 auto; justify-content: center; border-color: #d9dee4; border-radius: .28rem; background: #fff; }
    .marketplace-apply { flex: 1 1 100%; }
}

/* ============================================================
   CATÁLOGO — EXPLORACIÓN VISUAL Y FILTROS PROGRESIVOS
   ============================================================ */
.marketplace-explorer {
    margin: 0 0 2rem;
    border: 0;
    background: transparent;
    box-shadow: none;
}
.marketplace-toolbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    gap: 1.15rem;
    padding: 1.1rem 1.2rem;
    border: 1px solid var(--border);
    border-radius: 1.1rem;
    background: #fff;
    box-shadow: var(--shadow-sm);
}
.marketplace-result {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: .12rem;
    min-height: 47px;
    padding: .2rem 1.15rem .2rem 0;
    border-right: 1px solid var(--border);
    color: var(--text-muted);
}
.marketplace-result strong {
    color: var(--text);
    font-size: 1.8rem;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}
.marketplace-result span { font-size: .72rem; }
.marketplace-form.marketplace-form {
    display: block;
    min-width: 0;
    padding: 0;
    background: transparent;
}
.marketplace-primary {
    display: grid;
    grid-template-columns: minmax(210px, 1.55fr) repeat(4, minmax(105px, 1fr));
    gap: .65rem;
    align-items: end;
}
.marketplace-search {
    position: relative;
    display: flex;
    align-items: center;
    min-width: 0;
}
.marketplace-search > svg {
    position: absolute;
    left: .85rem;
    width: 17px;
    height: 17px;
    color: var(--copper-dark);
    pointer-events: none;
}
.marketplace-form > .marketplace-primary .marketplace-search input[type="search"] {
    width: 100%;
    max-width: none;
    height: 47px;
    padding: 0 .75rem 0 2.45rem;
    border: 1px solid var(--border);
    border-radius: .65rem;
    background: var(--paper);
    color: var(--text);
    font: inherit;
    font-size: .78rem;
}
.marketplace-form > .marketplace-primary .marketplace-search input[type="search"]::placeholder { color: var(--text-muted); }
.marketplace-form > .marketplace-primary .marketplace-search input[type="search"]:focus,
.marketplace-select select:focus { outline: 2px solid rgb(201 150 63 / .28); outline-offset: 1px; border-color: var(--copper); }
.marketplace-select {
    display: grid;
    align-items: stretch;
    gap: .32rem;
    min-width: 0;
    white-space: normal;
}
.marketplace-select > .marketplace-label,
.marketplace-select > span:not(.marketplace-label) {
    display: flex;
    align-items: center;
    gap: .25rem;
    min-height: 16px;
    color: var(--text-muted);
    font-size: .61rem;
    font-weight: 750;
    letter-spacing: .045em;
    line-height: 1.1;
    text-transform: uppercase;
}
.marketplace-label i { display: inline-flex; color: var(--copper-dark); }
.marketplace-label i svg { width: 14px; height: 14px; }
.marketplace-select select {
    appearance: none;
    width: 100%;
    max-width: none;
    height: 47px;
    padding: 0 1.8rem 0 .72rem;
    border: 1px solid var(--border);
    border-radius: .65rem;
    background: #fff linear-gradient(45deg, transparent 50%, #657181 50%) calc(100% - 12px) 20px / 5px 5px no-repeat,
        linear-gradient(135deg, #657181 50%, transparent 50%) calc(100% - 9px) 20px / 5px 5px no-repeat;
    color: var(--text);
    font: inherit;
    font-size: .75rem;
    cursor: pointer;
    text-overflow: ellipsis;
}
.marketplace-select.has-value select { border-color: #c39348; background-color: #fffaf1; color: #573b12; }
.marketplace-more {
    margin-top: .78rem;
    border-top: 1px solid var(--border-light);
}
.marketplace-more summary {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .72rem .1rem .6rem;
    color: var(--text-muted);
    cursor: pointer;
    list-style: none;
}
.marketplace-more summary::-webkit-details-marker { display: none; }
.marketplace-more-title { display: inline-flex; align-items: center; gap: .35rem; color: var(--text); font-size: .76rem; font-weight: 750; }
.marketplace-more-title svg { width: 16px; height: 16px; color: var(--copper-dark); }
.marketplace-more-meta { font-size: .68rem; }
.marketplace-more-chevron { width: 16px; height: 16px; margin-left: auto; transition: transform .25s var(--ease-out); }
.marketplace-more[open] .marketplace-more-chevron { transform: rotate(180deg); }
.marketplace-more-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: .65rem;
    padding: .15rem 0 .8rem;
}
.marketplace-check {
    display: flex;
    align-items: center;
    gap: .42rem;
    min-height: 47px;
    padding: 0 .72rem;
    border: 1px solid var(--border);
    border-radius: .65rem;
    color: var(--text-muted);
    font-size: .74rem;
    white-space: nowrap;
    cursor: pointer;
}
.marketplace-check input { width: 16px; height: 16px; accent-color: var(--copper-dark); }
.marketplace-check:has(input:checked) { border-color: #d5b173; background: #fffaf1; color: #5b3d10; }
.marketplace-preferences {
    display: flex;
    align-items: end;
    justify-content: flex-end;
    gap: .65rem;
    margin-top: .15rem;
}
.marketplace-preferences .marketplace-select { min-width: 112px; }
.marketplace-preferences .marketplace-view-control select { height: 42px; font-size: .72rem; }
.marketplace-apply {
    height: 42px;
    padding: 0 1rem;
    border: 1px solid var(--ink);
    border-radius: .65rem;
    background: var(--ink);
    color: #fff;
    font: inherit;
    font-size: .74rem;
    font-weight: 750;
    cursor: pointer;
    white-space: nowrap;
    transition: transform .2s var(--ease-out), background .2s ease, border-color .2s ease;
}
.marketplace-apply:hover { transform: translateY(-1px); border-color: var(--copper-dark); background: var(--copper-dark); }
.marketplace-active {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .4rem;
    margin-top: .65rem;
    padding: .65rem .1rem 0;
    border-top: 0;
    color: var(--text-muted);
    font-size: .7rem;
}
.marketplace-active > span { margin-right: .15rem; font-weight: 750; color: var(--text); }
.marketplace-active .filter-chip { padding: .3rem .52rem; border: 1px solid var(--border); border-radius: 999px; background: #fff; color: var(--text); font-size: .67rem; }
.marketplace-active .filter-chip:hover { border-color: var(--copper); background: #fffaf1; color: var(--copper-dark); }
.marketplace-active .filter-chip i { color: var(--text-muted); font-size: .85rem; }
.marketplace-clear { margin-left: .25rem; color: var(--copper-dark); font-size: .68rem; font-weight: 750; text-decoration: underline; text-underline-offset: 2px; }
.category-main .product-card { border-radius: 1.1rem; }
.category-main .product-card:hover { transform: translateY(-4px); }
.category-main .product-image { background: #f8f6f1; }

/* Selecciones: rail horizontal con comportamiento de slider sin ocultar enlaces */
.category-collections { margin: -0.55rem 0 1.8rem; }
.category-collections-head { display: flex; align-items: end; justify-content: space-between; gap: 1rem; margin-bottom: .8rem; }
.category-collections-head h2 { font-size: 1.25rem; line-height: 1.2; }
.category-collections-head p { margin-top: .2rem; color: var(--text-light); font-size: .82rem; }
.category-collections-link { display: inline-flex; align-items: center; gap: .35rem; flex: 0 0 auto; color: var(--copper-dark); font-size: .78rem; font-weight: 750; }
.category-collections-link span { font-size: 1rem; transition: transform .2s var(--ease-out); }
.category-collections-link:hover span { transform: translateX(3px); }
.category-collections-track {
    padding: 0 .1rem;
    cursor: grab;
    user-select: none;
}
.category-collections-track .splide__track { padding: .15rem 0 .5rem; }
.category-collections-track .splide__list { align-items: stretch; }
.category-collections-track .splide__slide { height: auto; }
.category-collections-track:active { cursor: grabbing; }
.collection-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: .7rem;
    min-height: 78px;
    padding: .8rem .85rem;
    border: 1px solid var(--border);
    border-radius: .95rem;
    background: #fff;
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: transform .25s var(--ease-out), border-color .25s ease, box-shadow .25s ease;
}
.collection-card:hover { transform: translateY(-3px); border-color: #d5b173; box-shadow: var(--shadow); }
.collection-card-icon { display: grid; place-items: center; width: 40px; height: 40px; border-radius: .75rem; background: #fff6e6; color: var(--copper-dark); }
.collection-card-icon svg { width: 21px; height: 21px; }
.collection-card-copy { min-width: 0; }
.collection-card-copy strong { display: block; overflow: hidden; font-size: .79rem; line-height: 1.25; text-overflow: ellipsis; white-space: nowrap; }
.collection-card-copy small { display: block; margin-top: .22rem; color: var(--text-muted); font-size: .68rem; }
.collection-card-arrow { width: 17px; height: 17px; color: var(--text-muted); transition: transform .2s var(--ease-out), color .2s ease; }
.collection-card:hover .collection-card-arrow { transform: translateX(3px); color: var(--copper-dark); }

@media (max-width: 1100px) {
    .marketplace-toolbar { grid-template-columns: 1fr; gap: .85rem; }
    .marketplace-result { min-height: 0; padding: 0 0 .75rem; border-right: 0; border-bottom: 1px solid var(--border); }
    .marketplace-result strong { font-size: 1.55rem; }
    .marketplace-primary { grid-template-columns: minmax(220px, 2fr) repeat(3, minmax(120px, 1fr)); }
    .marketplace-primary .marketplace-select:last-child { grid-column: span 1; }
    .marketplace-more-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
    .marketplace-toolbar { padding: 1rem; border-radius: 1rem; }
    .marketplace-primary { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .marketplace-search { grid-column: 1 / -1; }
    .marketplace-more-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .marketplace-preferences { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .marketplace-preferences .marketplace-select { min-width: 0; }
    .marketplace-apply { grid-column: 1 / -1; width: 100%; }
    .category-collections-head { align-items: flex-start; flex-direction: column; gap: .4rem; }
    .category-collections-link { margin-top: .15rem; }
    .category-collections-track { grid-auto-columns: minmax(230px, 78vw); }
}
@media (max-width: 520px) {
    .marketplace-primary { grid-template-columns: 1fr; }
    .marketplace-search { grid-column: auto; }
    .marketplace-more-grid { grid-template-columns: 1fr; }
    .marketplace-preferences { grid-template-columns: 1fr; }
    .marketplace-apply { grid-column: auto; }
    .marketplace-more-meta { display: none; }
    .category-collections { margin-top: -.2rem; }
}

/* ============================================================
   SELECCIONES EDITORIALES / CONVERSIÓN
   ============================================================ */
.product-month {
    background: linear-gradient(135deg, #f2eadc 0%, #fbf8f1 64%, #efe3d1 100%);
}
.product-month-inner {
    display: grid;
    grid-template-columns: minmax(280px, .9fr) 1.1fr;
    gap: clamp(2rem, 6vw, 5.5rem);
    align-items: center;
}
.product-month-media {
    position: relative;
    min-height: 360px;
    display: grid;
    place-items: center;
    background: #fff;
    border: 1px solid rgb(201 150 63 / .22);
    border-radius: 1.4rem;
    padding: clamp(1.3rem, 4vw, 3rem);
    box-shadow: 0 22px 50px rgb(38 30 19 / .12);
}
.product-month-media img { width: 100%; max-width: 430px; height: auto; aspect-ratio: 1; object-fit: contain; mix-blend-mode: multiply; }
.product-month-stamp {
    position: absolute; top: 1rem; left: 1rem; z-index: 1;
    padding: .45rem .8rem; border-radius: 999px;
    background: var(--ink); color: var(--copper-light);
    font-size: .7rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase;
}
.product-month-copy { max-width: 560px; }
.product-month-copy h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 3.2rem); line-height: 1.08; margin: .55rem 0 1rem; }
.product-month-copy > p { color: var(--text-light); font-size: 1.05rem; max-width: 48ch; }
.product-month-note { margin: 1.2rem 0 .6rem; color: var(--text-light); font-size: .9rem; }
.product-month-price { color: var(--copper-dark) !important; font-weight: 800; font-size: 1rem !important; }
.product-month-actions { display: flex; gap: .7rem; flex-wrap: wrap; margin-top: 1.4rem; }

/* CTA editorial reutilizable: un producto, una decisión clara */
.featured-gift-cta {
    margin: clamp(2.2rem, 5vw, 4.5rem) 0;
    overflow: hidden;
    border-radius: 1rem;
    background: #fff;
    box-shadow: 0 20px 48px rgb(38 30 19 / .11);
}
.featured-gift-cta-inner {
    display: grid;
    grid-template-columns: minmax(260px, .85fr) minmax(0, 1.15fr);
    min-height: 300px;
}
.featured-gift-cta-media {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 300px;
    padding: clamp(1.25rem, 4vw, 2.8rem);
    background: var(--ivory);
}
.featured-gift-cta-media img {
    width: 100%;
    height: 100%;
    max-height: 330px;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: transform .45s var(--ease-out);
}
.featured-gift-cta-media:hover img { transform: scale(1.035); }
.featured-gift-cta-chip {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: .45rem .7rem;
    border-radius: 999px;
    background: var(--ink);
    color: var(--copper-light);
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.featured-gift-cta-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(1.6rem, 5vw, 3.5rem);
    background: linear-gradient(135deg, var(--ink) 0%, #202b36 100%);
    color: #fff;
}
.featured-gift-cta-copy h2 {
    max-width: 14ch;
    margin: 0 0 .9rem;
    color: #fff;
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3.6vw, 2.8rem);
    line-height: 1.08;
    text-wrap: balance;
}
.featured-gift-cta-copy > p:not(.featured-gift-cta-product) {
    max-width: 48ch;
    color: rgb(255 255 255 / .72);
    font-size: .95rem;
    line-height: 1.6;
}
.featured-gift-cta-product {
    margin: 0 0 .5rem;
    color: var(--copper-light);
    font-size: 1.05rem;
    font-weight: 800;
}
.featured-gift-cta-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.35rem; }
.featured-gift-cta-actions .btn-ghost { border-color: rgb(255 255 255 / .45); color: #fff; }
.featured-gift-cta-actions .btn-ghost:hover { border-color: #fff; background: rgb(255 255 255 / .1); }

.catalog-directory-page { padding-top: clamp(2rem, 4vw, 3.5rem); padding-bottom: clamp(3rem, 6vw, 5rem); }
.catalog-directory-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; }
.catalog-directory-card {
    overflow: hidden; background: #fff; border: 1px solid var(--border-light); border-radius: var(--radius-lg);
    box-shadow: 0 12px 28px rgb(38 30 19 / .06); transition: transform .3s var(--ease-out), box-shadow .3s ease, border-color .3s ease;
}
.catalog-directory-card:hover { transform: translateY(-4px); border-color: rgb(201 150 63 / .5); box-shadow: 0 18px 38px rgb(38 30 19 / .12); }
.catalog-directory-card-media { display: block; aspect-ratio: 1.55; overflow: hidden; background: var(--ivory); }
.catalog-directory-card-media img { width: 100%; height: 100%; object-fit: cover; mix-blend-mode: multiply; transition: transform .45s var(--ease-out); }
.catalog-directory-card:hover .catalog-directory-card-media img { transform: scale(1.04); }
.catalog-directory-card-body { padding: 1.15rem 1.2rem 1.25rem; }
.catalog-directory-card-heading { display: flex; align-items: start; justify-content: space-between; gap: 1rem; }
.catalog-directory-card-heading h2 { margin: 0; font-size: 1.15rem; line-height: 1.15; }
.catalog-directory-card-heading h2 a { color: var(--text); }
.catalog-directory-card-arrow { display: grid; place-items: center; flex: 0 0 auto; width: 2rem; height: 2rem; color: var(--copper-dark); border: 1px solid rgb(201 150 63 / .35); border-radius: 50%; }
.catalog-directory-card-arrow svg { width: 1rem; height: 1rem; }
.catalog-directory-subcategories { display: flex; flex-wrap: wrap; gap: .4rem .55rem; padding: 1rem 0 0; margin: 0; list-style: none; }
.catalog-directory-subcategories a { color: var(--text-light); font-size: .78rem; line-height: 1.35; }
.catalog-directory-subcategories a:hover { color: var(--copper-dark); text-decoration: underline; text-underline-offset: .18em; }
.catalog-directory-card-link { display: inline-flex; gap: .35rem; margin-top: 1.1rem; color: var(--copper-dark); font-size: .83rem; font-weight: 700; }
.catalog-directory-cta { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; margin-top: clamp(2rem, 5vw, 4rem); padding: clamp(1.4rem, 3vw, 2.2rem); border-radius: var(--radius-lg); background: var(--ink); color: #fff; }
.catalog-directory-cta h2 { margin: 0 0 .35rem; color: #fff; font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.2rem); }
.catalog-directory-cta p { margin: 0; color: rgb(255 255 255 / .72); }

.category-favorites { background: var(--paper); }
.category-favorites-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.category-favorite-card {
    background: #fff; border: 1px solid var(--border-light); border-radius: var(--radius-lg); overflow: hidden;
    transition: transform .3s var(--ease-out), box-shadow .3s ease, border-color .3s ease;
}
.category-favorite-card:hover { transform: translateY(-4px); border-color: rgb(201 150 63 / .55); box-shadow: var(--shadow-lg); }
.category-favorite-image { aspect-ratio: 1; background: var(--ivory); display: grid; place-items: center; padding: 1rem; }
.category-favorite-image img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.category-favorite-copy { padding: 1rem 1.05rem 1.15rem; }
.category-favorite-copy > span { color: var(--copper-dark); font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.category-favorite-copy h3 { margin: .4rem 0 .45rem; font-size: .98rem; line-height: 1.3; }
.category-favorite-copy h3 a:hover { color: var(--copper-dark); }
.category-favorite-copy p { min-height: 2.6em; color: var(--text-light); font-size: .8rem; margin-bottom: .65rem; }
.text-link { color: var(--copper-dark); font-size: .8rem; font-weight: 700; }
.text-link:hover { color: var(--ink); }

@media (max-width: 900px) {
    .category-favorites-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
    .product-month-inner { grid-template-columns: 1fr; gap: 1.7rem; }
    .product-month-media { min-height: 260px; }
    .product-month-copy h2 { font-size: 2rem; }
    .category-favorites-grid { grid-template-columns: 1fr 1fr; gap: .75rem; }
    .category-favorite-copy { padding: .8rem; }
    .category-favorite-copy p { display: none; }
}

/* ============================================================
   CARRUSELES DE PRODUCTOS
   ============================================================ */
.carousel-head {
    display: flex; align-items: center; justify-content: space-between;
    gap: 1rem; margin-bottom: 1.4rem;
}
.carousel-head h2 { margin: 0; }
.carousel-nav { display: flex; gap: .5rem; }
.carousel-arrow {
    width: 44px; height: 44px; border-radius: 50%;
    border: 1px solid var(--border); background: #fff; color: var(--ink);
    display: grid; place-items: center;
    transition: all .25s var(--ease-out);
}
.carousel-arrow:hover:not(:disabled) { background: var(--ink); color: var(--copper-light); border-color: var(--ink); }
.carousel-arrow:disabled { opacity: .3; cursor: default; }

.product-carousel {
    padding: 0 .25rem;
    margin: 0 -.25rem;
    cursor: grab;
    user-select: none;
}
.product-carousel .splide__track { padding: .25rem 0 1rem; }
.product-carousel .splide__list { align-items: stretch; }
.product-carousel:active { cursor: grabbing; }
.carousel-item {
    min-width: 0;
}
.carousel-item .product-card { height: 100%; }

/* ============================================================
   ACCIONES EN TARJETAS
   ============================================================ */
.card-actions {
    display: flex; gap: .5rem; margin-top: .85rem;
}
.card-actions .btn { flex: 1; justify-content: center; }
.btn-cart {
    background: var(--ink); color: #fff;
    display: inline-flex; align-items: center; gap: .4rem;
}
.btn-cart:hover { background: var(--copper-dark); }
.btn-quote {
    background: transparent; color: var(--ink);
    border: 1px solid var(--border);
}
.btn-quote:hover { border-color: var(--copper); color: var(--copper-dark); }

/* ============================================================
   HEADER — BOTÓN CARRO
   ============================================================ */
.header-cart {
    position: relative; width: 42px; height: 42px; border-radius: 50%;
    display: grid; place-items: center;
    color: #fff; border: 1px solid rgb(255 255 255 / .25);
    transition: all .25s var(--ease-out);
}
.site-header.scrolled .header-cart { color: var(--ink); border-color: var(--border); }
.header-cart:hover { border-color: var(--copper); color: var(--copper-light); }
.site-header.scrolled .header-cart:hover { color: var(--copper-dark); }
.cart-badge {
    position: absolute; top: -5px; right: -5px;
    min-width: 19px; height: 19px; padding: 0 5px;
    border-radius: 999px; background: var(--copper); color: var(--ink);
    font-size: .68rem; font-weight: 700;
    display: grid; place-items: center; line-height: 1;
}
.cart-badge[hidden] { display: none; }

/* ============================================================
   DRAWER DEL CARRO
   ============================================================ */
.cart-overlay, .quote-modal-overlay {
    position: fixed; inset: 0; z-index: 1200;
    background: rgb(11 14 20 / .55); backdrop-filter: blur(3px);
    opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s;
}
.cart-overlay.show, .quote-modal-overlay.show { opacity: 1; visibility: visible; }

.cart-drawer {
    position: fixed; top: 0; right: 0; bottom: 0; z-index: 1210;
    width: min(440px, 100vw);
    background: var(--paper);
    display: flex; flex-direction: column;
    transform: translateX(105%);
    transition: transform .38s var(--ease-out);
    box-shadow: var(--shadow-xl);
}
.cart-drawer.open { transform: translateX(0); }
.cart-drawer-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.2rem 1.4rem; border-bottom: 1px solid var(--border);
    background: var(--ink); color: #fff;
}
.cart-drawer-head h2 {
    font-size: 1.05rem; font-weight: 700;
    display: flex; align-items: center; gap: .55rem;
}
.cart-drawer-head svg { color: var(--copper-light); }
.cart-close, .quote-close {
    font-size: 1.6rem; line-height: 1; color: inherit; opacity: .7;
    transition: opacity .2s;
}
.cart-close:hover, .quote-close:hover { opacity: 1; }

.cart-items {
    flex: 1; overflow-y: auto; padding: 1rem 1.4rem;
    display: flex; flex-direction: column; gap: .9rem;
}
.cart-empty { color: var(--text-muted); text-align: center; padding: 2rem 0; }
.cart-item {
    display: flex; gap: .8rem; align-items: center;
    background: #fff; border: 1px solid var(--border-light);
    border-radius: var(--radius); padding: .7rem;
}
.cart-item-img {
    width: 62px; height: 62px; object-fit: contain;
    border-radius: .5rem; background: #fff; flex-shrink: 0;
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name {
    font-weight: 600; font-size: .9rem; display: block;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.cart-item-name:hover { color: var(--copper-dark); }
.cart-item-sku { font-size: .75rem; color: var(--text-muted); }
.cart-item-qty { display: flex; align-items: center; gap: .35rem; margin-top: .35rem; }
.cart-item-qty button {
    width: 26px; height: 26px; border-radius: .4rem;
    border: 1px solid var(--border); background: var(--paper);
    font-weight: 700; line-height: 1;
}
.cart-item-qty button:hover { border-color: var(--copper); color: var(--copper-dark); }
.cart-item-qty input {
    width: 54px; text-align: center; padding: .2rem;
    border: 1px solid var(--border); border-radius: .4rem; font-size: .85rem;
}
.cart-item-remove {
    font-size: 1.25rem; color: var(--text-muted); padding: .3rem;
    align-self: flex-start; transition: color .2s;
}
.cart-item-remove:hover { color: var(--error); }

.cart-form {
    padding: 1rem 1.4rem 1.3rem; border-top: 1px solid var(--border);
    background: #fff;
    display: flex; flex-direction: column; gap: .7rem;
    max-height: 48%; overflow-y: auto;
}
.cart-form .form-group { margin: 0; }
.cart-form label { font-size: .78rem; font-weight: 600; color: var(--text-light); display: block; margin-bottom: .2rem; }
.cart-form input, .cart-form textarea {
    width: 100%; padding: .55rem .7rem; font-size: .9rem;
    border: 1px solid var(--border); border-radius: .55rem; background: var(--paper);
}
.cart-form input:focus, .cart-form textarea:focus { outline: 2px solid var(--copper); border-color: transparent; }
.cart-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; }
.cart-form-actions { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; margin-top: .2rem; }
.cart-form-actions .btn { width: 100%; justify-content: center; font-size: .88rem; padding: .7rem .5rem; }
.cart-status { font-size: .85rem; min-height: 1.2em; margin: 0; color: var(--text-light); }

/* ============================================================
   MODAL COTIZACIÓN INDIVIDUAL
   ============================================================ */
.quote-modal {
    position: fixed; top: 50%; left: 50%; z-index: 1210;
    width: min(560px, calc(100vw - 2rem));
    max-height: calc(100vh - 3rem); overflow-y: auto;
    background: var(--paper); border-radius: var(--radius-xl);
    padding: 1.6rem 1.8rem;
    transform: translate(-50%, -48%) scale(.96);
    opacity: 0; visibility: hidden;
    transition: all .3s var(--ease-out);
    box-shadow: var(--shadow-xl);
}
.quote-modal.open { transform: translate(-50%, -50%) scale(1); opacity: 1; visibility: visible; }
.quote-modal-head {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: .3rem;
}
.quote-modal-head h2 { font-size: 1.3rem; }
.quote-product-name {
    color: var(--copper-dark); font-weight: 600; font-size: .95rem;
    margin-bottom: 1rem; padding-bottom: .8rem; border-bottom: 1px solid var(--border-light);
}
.quote-modal .form-group { margin-bottom: .8rem; }
.quote-modal label { font-size: .82rem; font-weight: 600; color: var(--text-light); display: block; margin-bottom: .25rem; }
.quote-modal input, .quote-modal textarea {
    width: 100%; padding: .6rem .8rem; font-size: .95rem;
    border: 1px solid var(--border); border-radius: .6rem; background: #fff;
}
.quote-modal input:focus, .quote-modal textarea:focus { outline: 2px solid var(--copper); border-color: transparent; }
.quote-modal .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.quote-status { font-size: .9rem; min-height: 1.2em; margin: .5rem 0 0; color: var(--text-light); }

/* ============================================================
   TOASTS
   ============================================================ */
.toast-container {
    position: fixed; bottom: 1.4rem; left: 50%; transform: translateX(-50%);
    z-index: 1300; display: flex; flex-direction: column; gap: .5rem;
    pointer-events: none;
}
.toast {
    background: var(--ink); color: #fff;
    padding: .75rem 1.4rem; border-radius: 999px;
    font-size: .9rem; font-weight: 500;
    box-shadow: var(--shadow-lg);
    opacity: 0; transform: translateY(12px);
    transition: all .3s var(--ease-out);
    border: 1px solid rgb(255 255 255 / .12);
}
.toast.show { opacity: 1; transform: translateY(0); }
.toast.warn { background: var(--copper-dark); }

/* ============================================================
   STEPPER DE CANTIDAD (detalle producto)
   ============================================================ */
.product-qty { margin: 1.2rem 0 .4rem; }
.product-qty label { font-size: .82rem; font-weight: 600; color: var(--text-light); display: block; margin-bottom: .35rem; }
.product-qty small { color: var(--text-muted); font-size: .78rem; margin-left: .6rem; }
.qty-stepper {
    display: inline-flex; align-items: stretch;
    border: 1px solid var(--border); border-radius: .7rem; overflow: hidden;
    background: #fff;
}
.qty-stepper button {
    width: 44px; font-size: 1.2rem; font-weight: 700; color: var(--ink);
    background: var(--paper); transition: background .2s;
}
.qty-stepper button:hover { background: var(--ivory); color: var(--copper-dark); }
.qty-stepper input {
    width: 76px; text-align: center; border: none; border-left: 1px solid var(--border); border-right: 1px solid var(--border);
    padding: .6rem 0; font-size: 1rem; font-weight: 600;
}
.qty-stepper input:focus { outline: none; background: var(--ivory); }

@media (max-width: 720px) {
    .cart-form .form-row, .quote-modal .form-row { grid-template-columns: 1fr; }
    .cart-form-actions { grid-template-columns: 1fr; }
    .carousel-arrow { width: 38px; height: 38px; }
    .quote-modal { padding: 1.2rem 1.1rem; }
}

/* ============================================================
   BUSCADOR EN VIVO
   ============================================================ */
.header-actions { margin-left: auto; }

.header-search {
    position: relative; display: flex; align-items: center;
    margin-left: auto;
    width: clamp(220px, 24vw, 340px);
}
.header-search .search-icon {
    position: absolute; left: .85rem; color: rgb(255 255 255 / .5); pointer-events: none;
}
.header-search input {
    width: 100%; padding: .55rem 1rem .55rem 2.4rem;
    border-radius: 999px; font-size: .86rem;
    background: rgb(255 255 255 / .08); color: #fff;
    border: 1px solid rgb(255 255 255 / .15);
    transition: all .25s ease;
}
.header-search input::placeholder { color: rgb(255 255 255 / .45); }
.header-search input:focus {
    outline: none; background: rgb(255 255 255 / .14);
    border-color: var(--copper); box-shadow: 0 0 0 3px rgb(201 150 63 / .25);
}
.header-search input::-webkit-search-cancel-button { -webkit-appearance: none; }

.search-results {
    position: absolute; top: calc(100% + 10px); left: 0; right: 0;
    min-width: 340px;
    background: #fff; border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl); border: 1px solid var(--border-light);
    overflow: hidden; z-index: 400;
    max-height: 420px; overflow-y: auto;
    animation: searchIn .22s var(--ease-out);
}
@keyframes searchIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

.search-hit {
    display: flex; align-items: center; gap: .75rem;
    padding: .6rem .9rem; transition: background .15s ease;
    border-bottom: 1px solid var(--border-light);
}
.search-hit:hover { background: var(--ivory); }
.search-hit-img {
    width: 46px; height: 46px; flex-shrink: 0;
    background: var(--paper); border-radius: .5rem;
    display: grid; place-items: center; overflow: hidden;
    border: 1px solid var(--border-light);
}
.search-hit-img img { width: 100%; height: 100%; object-fit: contain; }
.search-hit-noimg { background: var(--border-light); }
.search-hit-info { flex: 1; min-width: 0; }
.search-hit-name {
    display: block; font-size: .85rem; font-weight: 600; color: var(--text);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.search-hit-meta { display: block; font-size: .72rem; color: var(--text-muted); }
.search-hit-price { font-size: .85rem; font-weight: 700; color: var(--copper-dark); white-space: nowrap; }
.search-all {
    display: block; text-align: center; padding: .7rem;
    font-size: .84rem; font-weight: 600; color: var(--copper-dark);
    background: var(--ivory);
}
.search-all:hover { background: var(--border-light); }
.search-empty, .search-loading { padding: 1rem; font-size: .85rem; color: var(--text-light); text-align: center; }
.search-empty a { color: var(--copper-dark); font-weight: 600; }

/* Buscador en drawer móvil */
.mobile-search { position: relative; margin-bottom: 1rem; display: flex; align-items: center; }
.mobile-search .search-icon { position: absolute; left: .8rem; color: rgb(255 255 255 / .45); pointer-events: none; }
.mobile-search input {
    width: 100%; padding: .65rem 1rem .65rem 2.3rem;
    border-radius: .7rem; font-size: .92rem;
    background: rgb(255 255 255 / .07); color: #fff;
    border: 1px solid rgb(255 255 255 / .14);
}
.mobile-search input::placeholder { color: rgb(255 255 255 / .4); }
.mobile-search input:focus { outline: none; border-color: var(--copper); }
.mobile-search .search-results { min-width: 0; left: 0; right: 0; max-height: 50vh; }

/* ============================================================
   HERO DE CATEGORÍA / SUBCATEGORÍA
   ============================================================ */
.category-hero {
    position: relative; overflow: hidden;
    display: grid; grid-template-columns: 1.4fr 1fr; gap: 2rem; align-items: center;
    background:
        radial-gradient(60% 120% at 85% 20%, rgb(201 150 63 / .22), transparent 60%),
        linear-gradient(135deg, var(--ink) 0%, var(--ink-3) 100%);
    color: #fff;
    border-radius: var(--radius-xl);
    padding: clamp(1.8rem, 4vw, 3rem);
    margin: .5rem 0 2.2rem;
    box-shadow: var(--shadow-lg);
}
.category-hero-text { position: relative; z-index: 1; }
.category-hero h1 {
    font-family: var(--font-display); font-weight: 600;
    font-size: clamp(1.7rem, 3.4vw, 2.6rem); line-height: 1.12;
    margin: 0 0 .6rem;
}
.category-hero p { color: rgb(255 255 255 / .72); font-size: .98rem; max-width: 52ch; }
.category-hero-img {
    position: relative; z-index: 1;
    border-radius: var(--radius-lg); overflow: hidden;
    aspect-ratio: 4/3; background: rgb(255 255 255 / .06);
    box-shadow: var(--shadow-xl);
    transform: rotate(1.5deg);
}
.category-hero-img img { width: 100%; height: 100%; object-fit: cover; }

.subcat-chips {
    position: relative; z-index: 1;
    display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.2rem;
}
.subcat-chips a {
    padding: .42rem .95rem; border-radius: 999px; font-size: .82rem; font-weight: 500;
    background: rgb(255 255 255 / .08); color: rgb(255 255 255 / .85);
    border: 1px solid rgb(255 255 255 / .14);
    transition: all .22s ease;
}
.subcat-chips a:hover, .subcat-chips a.active {
    background: var(--copper); border-color: var(--copper); color: var(--ink);
}
.subcat-chips a.back-chip { background: transparent; border-style: dashed; }

/* Explorador de catálogo: flujo progresivo y controles según el tipo de dato */
.catalog-explorer {
    margin: 0 0 2.2rem;
    background: #fff;
    border: 1px solid #dfe3e8;
    border-radius: 1.35rem;
    box-shadow: 0 18px 45px -30px rgb(11 14 20 / .38);
    overflow: hidden;
}
.explorer-heading {
    display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 2rem;
    padding: clamp(1.35rem, 2.5vw, 2rem);
}
.explorer-heading-copy { max-width: 690px; }
.explorer-kicker {
    display: inline-flex; align-items: center; gap: .5rem;
    color: #71511c; font-size: .7rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase;
}
.explorer-kicker > span {
    width: 8px; height: 8px; border-radius: 50%; background: var(--copper);
    box-shadow: 0 0 0 5px rgb(201 150 63 / .13);
}
.explorer-heading h2 {
    margin: .55rem 0 .3rem; color: #111827; font-family: var(--font-body);
    font-size: clamp(1.45rem, 2.4vw, 2.15rem); font-weight: 750; line-height: 1.12; letter-spacing: -.035em;
}
.explorer-heading p { color: #657080; font-size: .9rem; }
.explorer-result {
    position: relative; display: flex; align-items: center; gap: .9rem;
    min-width: 270px; padding: .9rem 1.05rem;
    background: linear-gradient(135deg, #141a24, #242d3c); color: #fff;
    border: 1px solid rgb(255 255 255 / .07); border-radius: .9rem;
    box-shadow: 0 14px 30px -20px rgb(11 14 20 / .8); overflow: hidden;
}
.explorer-result::after {
    content: ""; position: absolute; width: 130px; height: 130px; right: -58px; top: -70px;
    border: 1px solid rgb(232 192 122 / .13); border-radius: 50%; box-shadow: 0 0 0 20px rgb(232 192 122 / .025);
    pointer-events: none;
}
.explorer-match-dial {
    --explorer-progress: 0deg;
    position: relative; z-index: 1; display: grid; place-items: center; flex: 0 0 58px;
    width: 58px; height: 58px; border-radius: 50%;
    background: conic-gradient(var(--copper-light) var(--explorer-progress), rgb(255 255 255 / .12) 0);
    transition: background .35s var(--ease-out), transform .35s var(--ease-out);
}
.explorer-match-dial::before {
    content: ""; position: absolute; inset: 5px; border-radius: inherit;
    background: #1b2330; box-shadow: inset 0 0 0 1px rgb(255 255 255 / .08);
}
.explorer-match-dial::after {
    content: ""; position: absolute; top: 2px; left: 50%; width: 5px; height: 5px;
    border-radius: 50%; background: #fff; box-shadow: 0 0 9px var(--copper-light);
    transform: translateX(-50%);
}
.explorer-match-dial span { position: relative; z-index: 1; font-size: 1rem; font-weight: 800; font-variant-numeric: tabular-nums; }
.explorer-result-copy { position: relative; z-index: 1; min-width: 0; }
.explorer-result-copy strong { display: block; font-size: 1.55rem; line-height: 1; font-variant-numeric: tabular-nums; letter-spacing: -.04em; }
.explorer-result-copy > span { display: block; margin-top: .25rem; color: rgb(255 255 255 / .68); font-size: .65rem; }
.explorer-result-copy > small { display: block; margin-top: .17rem; color: var(--copper-light); font-size: .58rem; font-weight: 700; }
.explorer-result.is-pulsing .explorer-match-dial { animation: explorer-dial-pulse .42s var(--ease-out); }
.explorer-result.is-pulsing .explorer-result-copy { animation: explorer-copy-shift .42s var(--ease-out); }
.explorer-clear {
    display: inline-flex; margin-top: .35rem; color: rgb(255 255 255 / .72);
    font-size: .58rem; font-weight: 700; text-decoration: underline; text-underline-offset: 3px;
}
.explorer-clear:hover { color: #fff; }
.explorer-snapshot {
    display: flex; align-items: center; flex-wrap: wrap; gap: .45rem 1.15rem;
    min-height: 46px; padding: .65rem clamp(1.35rem, 2.5vw, 2rem);
    background: #f8f9fb; border-top: 1px solid #eceff3; border-bottom: 1px solid #e6e9ee;
    color: #667181; font-size: .7rem;
}
.explorer-snapshot > span { display: inline-flex; align-items: center; gap: .32rem; white-space: nowrap; }
.explorer-snapshot strong { color: #273142; font-variant-numeric: tabular-nums; }
.explorer-snapshot-label { margin-right: .15rem; color: #2e3949 !important; font-weight: 750; }
.snapshot-icon {
    display: grid; place-items: center; width: 22px; height: 22px; border-radius: .38rem;
    background: #e9edf2; color: #596575; font-style: normal;
}
.snapshot-icon svg { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.snapshot-icon.stock { background: #e4f5ec; color: #16824b; }
.snapshot-icon.color { background: #edf1ff; color: #566ed0; }
.snapshot-icon.dimensions { background: #f0ebff; color: #7053bd; }
.snapshot-icon.minimum { background: #fff1d9; color: #946718; }
.explorer-form { padding: clamp(1.2rem, 2.5vw, 1.85rem); background: #f4f6f8; }
.explorer-search-group > label, .explorer-control > span:first-child {
    display: block; margin-bottom: .45rem; color: #374151;
    font-size: .7rem; font-weight: 750; letter-spacing: .01em;
}
.explorer-search-field { position: relative; }
.explorer-search-field svg {
    position: absolute; z-index: 1; left: 1rem; top: 50%; width: 20px; height: 20px;
    transform: translateY(-50%); fill: none; stroke: #7a8593; stroke-width: 1.8; stroke-linecap: round;
}
.explorer-search-field input {
    width: 100%; height: 58px; padding: 0 8.5rem 0 3rem;
    border: 1px solid #d5dae1; border-radius: .85rem; background: #fff; color: #172033;
    font: inherit; font-size: .92rem; box-shadow: 0 1px 2px rgb(11 14 20 / .03);
    transition: border-color .2s ease, box-shadow .2s ease;
}
.explorer-search-field input::placeholder { color: #9aa3af; }
.explorer-search-hint {
    position: absolute; right: .85rem; top: 50%; transform: translateY(-50%);
    padding: .3rem .5rem; border: 1px solid #e1e5ea; border-radius: .38rem;
    background: #f7f8fa; color: #8a94a2; font-size: .6rem; font-weight: 650;
}
.explorer-search-field input:focus, .explorer-control select:focus {
    outline: none; border-color: #a77a2e; box-shadow: 0 0 0 4px rgb(201 150 63 / .14);
}
.explorer-primary-grid {
    display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: .8rem;
    margin-top: 1.05rem;
}
.explorer-control { min-width: 0; }
.explorer-select-shell { position: relative; display: block; }
.explorer-control-icon {
    position: absolute; z-index: 1; left: .45rem; top: 50%; display: grid; place-items: center;
    width: 34px; height: 34px; border-radius: .55rem; transform: translateY(-50%);
    background: #f0f2f5; color: #677383; pointer-events: none;
    transition: color .22s ease, background .22s ease, transform .22s var(--ease-out), box-shadow .22s ease;
}
.explorer-control-icon svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.explorer-select-shell::after {
    content: ""; position: absolute; right: .9rem; top: 50%; width: 7px; height: 7px;
    border-right: 1.5px solid #6f7a88; border-bottom: 1.5px solid #6f7a88;
    transform: translateY(-70%) rotate(45deg); pointer-events: none;
}
.explorer-control select {
    appearance: none; width: 100%; height: 52px; padding: 0 2.25rem 0 3.25rem;
    border: 1px solid #d5dae1; border-radius: .7rem; background: #fff; color: #5e6876;
    font: inherit; font-size: .78rem; cursor: pointer; text-overflow: ellipsis;
    box-shadow: 0 1px 2px rgb(11 14 20 / .025);
    transition: border-color .2s ease, box-shadow .2s ease, color .2s ease;
}
.explorer-select-shell:hover .explorer-control-icon { color: #3d4a5d; transform: translateY(-50%) scale(1.04); }
.explorer-control.has-value > span:first-child { color: #785319; }
.explorer-control.has-value select { border-color: #d3ad6d; color: #182131; background: #fffdf8; }
.explorer-control.has-value .explorer-control-icon {
    background: linear-gradient(135deg, #c89339, #946419); color: #fff;
    box-shadow: 0 6px 14px -9px rgb(118 80 15 / .85);
}
.explorer-advanced {
    margin-top: 1rem; border: 1px solid #dce1e7; border-radius: .85rem; background: #fff; overflow: hidden;
}
.explorer-advanced summary {
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
    min-height: 64px; padding: .85rem 1rem; cursor: pointer; list-style: none;
    transition: background .2s ease;
}
.explorer-advanced summary::-webkit-details-marker { display: none; }
.explorer-advanced summary:hover { background: #fafbfc; }
.explorer-advanced-title { display: flex; align-items: center; gap: .75rem; min-width: 0; }
.explorer-advanced-title > svg {
    width: 34px; height: 34px; padding: 8px; border-radius: .55rem;
    background: #eef1f5; fill: none; stroke: #4d5b6d; stroke-width: 1.7; stroke-linecap: round;
}
.explorer-advanced-title > span { display: grid; gap: .08rem; }
.explorer-advanced-title strong { color: #263244; font-size: .8rem; }
.explorer-advanced-title small { color: #7b8694; font-size: .65rem; }
.explorer-advanced-meta { display: inline-flex; align-items: center; gap: .65rem; color: #7a8492; font-size: .66rem; font-weight: 700; }
.explorer-advanced-meta i {
    width: 8px; height: 8px; border-right: 1.5px solid #5f6977; border-bottom: 1.5px solid #5f6977;
    transform: translateY(-2px) rotate(45deg); transition: transform .25s ease;
}
.explorer-advanced[open] .explorer-advanced-meta i { transform: translateY(2px) rotate(225deg); }
.explorer-advanced-body { padding: 1rem; border-top: 1px solid #e8ebef; background: #fbfcfd; }
.explorer-selects { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .8rem; }
.explorer-toggles { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .7rem; margin-top: .8rem; }
.explorer-toggle {
    display: grid; grid-template-columns: auto minmax(0, 1fr); column-gap: .75rem; align-items: center;
    min-height: 64px; padding: .72rem .8rem; border: 1px solid #e0e4e9; border-radius: .7rem;
    background: #fff; cursor: pointer; transition: border-color .2s ease, background .2s ease;
}
.explorer-toggle:hover { border-color: #c9cfd7; }
.explorer-toggle > input { position: absolute; opacity: 0; pointer-events: none; }
.explorer-toggle-track {
    position: relative; width: 38px; height: 22px; border-radius: 999px; background: #c8ced7;
    transition: background .22s ease; grid-row: 1; grid-column: 1;
}
.explorer-toggle-track i {
    position: absolute; width: 16px; height: 16px; left: 3px; top: 3px; border-radius: 50%;
    background: #fff; box-shadow: 0 1px 3px rgb(0 0 0 / .24); transition: transform .22s var(--ease-out);
}
.explorer-toggle > input:checked + .explorer-toggle-track { background: #8b611d; }
.explorer-toggle > input:checked + .explorer-toggle-track i { transform: translateX(16px); }
.explorer-toggle > input:focus-visible + .explorer-toggle-track { outline: 3px solid rgb(201 150 63 / .24); outline-offset: 2px; }
.explorer-toggle > span:last-child { display: grid; gap: .04rem; grid-column: 2; grid-row: 1; }
.explorer-toggle strong { display: flex; align-items: center; gap: .38rem; color: #303b4c; font-size: .75rem; }
.explorer-toggle strong svg { width: 15px; height: 15px; fill: none; stroke: #778290; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transition: stroke .2s ease; }
.explorer-toggle small { color: #7d8794; font-size: .62rem; line-height: 1.35; }
.explorer-toggle.is-on { border-color: #d3ad6d; background: #fffdf8; }
.explorer-toggle.is-on strong svg { stroke: #916217; }
.explorer-active {
    display: flex; align-items: center; flex-wrap: wrap; gap: .45rem;
    margin-top: 1rem; color: #77818e; font-size: .67rem;
}
.explorer-active > span { margin-right: .15rem; font-weight: 750; color: #4a5565; }
.filter-chip {
    display: inline-flex; align-items: center; gap: .45rem; padding: .38rem .65rem;
    border: 1px solid #d8dde4; border-radius: 999px; background: #fff; color: #3f4c5e; font-size: .66rem;
    transition: border-color .2s ease, color .2s ease, background .2s ease;
}
.filter-chip i { color: #8f98a4; font-size: .9rem; font-style: normal; line-height: .7; }
.filter-chip:hover { border-color: #b9842d; background: #fffaf1; color: #69460d; }
.explorer-footer {
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
    margin-top: 1.15rem; padding-top: 1.05rem; border-top: 1px solid #dde2e7;
}
.explorer-feedback { display: flex; align-items: center; gap: .65rem; min-width: 0; }
.explorer-feedback > i { width: 9px; height: 9px; border-radius: 50%; background: #20a462; box-shadow: 0 0 0 5px rgb(32 164 98 / .1); }
.explorer-feedback > span { display: grid; gap: .03rem; }
.explorer-feedback strong { color: #2d3848; font-size: .75rem; }
.explorer-feedback small { color: #7b8592; font-size: .62rem; }
.explorer-submit {
    display: inline-flex; align-items: center; justify-content: center; gap: .7rem;
    min-height: 48px; padding: .7rem 1.15rem; border-radius: .7rem;
    background: #151b25; color: #fff; font-size: .76rem; font-weight: 750;
    box-shadow: 0 10px 20px -14px rgb(11 14 20 / .8);
    transition: transform .2s var(--ease-out), background .2s ease, box-shadow .2s ease;
}
.explorer-submit svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.explorer-submit:hover { transform: translateY(-1px); background: #2a3444; box-shadow: 0 14px 24px -15px rgb(11 14 20 / .9); }
.explorer-submit:hover svg { transform: translateX(3px); }
.explorer-submit svg { transition: transform .2s var(--ease-out); }
.explorer-form.is-dirty .explorer-feedback > i { background: var(--copper); box-shadow: 0 0 0 5px rgb(201 150 63 / .13); }
.explorer-form.is-dirty .explorer-submit { background: linear-gradient(135deg, #b68127, #805509); }

@keyframes explorer-dial-pulse {
    0% { transform: scale(.94) rotate(-8deg); }
    55% { transform: scale(1.08) rotate(3deg); }
    100% { transform: scale(1) rotate(0); }
}
@keyframes explorer-copy-shift {
    0% { transform: translateX(-3px); opacity: .72; }
    100% { transform: translateX(0); opacity: 1; }
}

/* Toolbar del catálogo */
.catalog-toolbar {
    display: flex; align-items: center; justify-content: space-between;
    gap: 1rem; margin-bottom: 1.2rem; flex-wrap: wrap;
}
.catalog-section-title { font-size: clamp(1.35rem, 2vw, 1.8rem); margin: 1.8rem 0 .7rem; }
.catalog-toolbar .results-info { font-size: .86rem; color: var(--text-light); }
.catalog-toolbar .results-info strong { color: var(--text); }
.catalog-controls { display: flex; align-items: center; gap: .55rem; flex-wrap: wrap; }
.catalog-controls label { display: inline-flex; align-items: center; gap: .4rem; color: var(--text-muted); font-size: .72rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.catalog-controls select { appearance: none; min-height: 36px; padding: .45rem 2rem .45rem .7rem; border: 1px solid var(--border); border-radius: 999px; background: #fff; color: var(--text); font-size: .78rem; letter-spacing: 0; text-transform: none; }
.catalog-search-label input { min-height: 36px; width: 190px; padding: .45rem .75rem; border: 1px solid var(--border); border-radius: 999px; background: #fff; color: var(--text); font-size: .78rem; letter-spacing: 0; text-transform: none; }
.catalog-search-label input:focus, .catalog-controls select:focus { outline: 3px solid rgb(201 150 63 / .22); outline-offset: 1px; border-color: var(--copper); }
.catalog-stock-filter { cursor: pointer; white-space: nowrap; text-transform: none !important; letter-spacing: 0 !important; font-weight: 500 !important; }
.catalog-stock-filter input { accent-color: var(--copper-dark); width: 15px; height: 15px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.catalog-pagination { display: flex; align-items: center; justify-content: center; gap: 1rem; margin: 2rem 0 .5rem; color: var(--text-muted); font-size: .8rem; }
.catalog-pagination .pagination-link { padding: .55rem .9rem; border: 1px solid var(--border); border-radius: 999px; color: var(--text); font-weight: 700; transition: background .2s ease, color .2s ease, border-color .2s ease; }
.catalog-pagination .pagination-link:hover { background: var(--ink); border-color: var(--ink); color: #fff; }

/* ============================================================
   DETALLE DE PRODUCTO — MEJORAS
   ============================================================ */
.product-badges { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; margin-bottom: .9rem; }
.chip-cat {
    font-size: .74rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
    color: var(--copper-dark); background: rgb(201 150 63 / .12);
    border: 1px solid rgb(201 150 63 / .3);
    padding: .3rem .8rem; border-radius: 999px;
}
.chip-cat:hover { background: var(--copper); color: var(--ink); }
.chip-stock {
    display: inline-flex; align-items: center; gap: .35rem;
    font-size: .76rem; font-weight: 600; color: var(--success);
}
.chip-stock::before {
    content: ""; width: 8px; height: 8px; border-radius: 50%;
    background: var(--success); box-shadow: 0 0 0 3px rgb(22 163 74 / .18);
}
.product-sku { font-size: .8rem; color: var(--text-muted); letter-spacing: .04em; margin-bottom: .8rem; }

.price-card {
    background: linear-gradient(135deg, var(--ivory), #fff);
    border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 1.1rem 1.3rem; margin: 1.1rem 0;
}
.price-card .product-price-large { margin: 0; }
.price-note { font-size: .78rem; color: var(--text-muted); margin-top: .3rem; }

.price-tiers {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: #fff;
    padding: 1rem 1.15rem;
    margin: 1rem 0 1.2rem;
}
.price-tiers-heading { display: flex; justify-content: space-between; gap: 1rem; align-items: flex-start; margin-bottom: .75rem; }
.price-tiers-heading h2, .variant-heading h2 { font-family: var(--font-display); font-size: 1.1rem; margin: .18rem 0 0; }
.eyebrow { display: block; color: var(--copper-dark); font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.price-tiers-note { color: var(--text-muted); font-size: .73rem; white-space: nowrap; padding-top: .1rem; }
.price-tier-list { border-top: 1px solid var(--border-light); }
.price-tier { display: grid; grid-template-columns: minmax(100px, 1fr) 90px auto; gap: .7rem; align-items: center; padding: .55rem 0; border-bottom: 1px solid var(--border-light); font-size: .8rem; }
.price-tier:last-child { border-bottom: 0; }
.price-tier > span:first-child { color: var(--text-light); }
.price-tier strong:first-child { color: var(--ink); }
.price-tier-mode { color: var(--text-muted); font-size: .72rem; text-align: right; }
.price-tier-value { color: var(--copper-dark); text-align: right; white-space: nowrap; }
.price-tiers-footnote { color: var(--text-muted); font-size: .73rem; line-height: 1.45; margin: .7rem 0 0; }

.product-meta-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: .55rem .9rem;
    margin: 1.2rem 0;
}
.product-meta {
    background: #fff; border: 1px solid var(--border-light);
    border-radius: .7rem; padding: .6rem .8rem; font-size: .83rem;
}
.product-meta strong { display: block; font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); margin-bottom: .15rem; }

.variant-panel { margin: 1.25rem 0 1.1rem; padding: 1rem 1.1rem; border: 1px solid var(--border-light); border-radius: var(--radius-lg); background: var(--ivory); }
.variant-heading { margin-bottom: .85rem; }
.variant-group + .variant-group { margin-top: .8rem; }
.variant-group > strong { display: block; font-size: .76rem; color: var(--text); margin-bottom: .4rem; }
.variant-helper { color: var(--text-muted); font-size: .7rem; font-weight: 400; }
.variant-chips { display: flex; flex-wrap: wrap; gap: .4rem; }
.variant-chip { display: inline-flex; align-items: center; min-height: 30px; padding: .35rem .65rem; border: 1px solid rgb(201 150 63 / .38); border-radius: 999px; background: #fff; color: var(--text); font-size: .75rem; line-height: 1.2; }
.variant-chip-muted { border-color: var(--border); color: var(--text-light); }
.variant-picker { gap: .5rem; }
.variant-choice { display: inline-flex; align-items: center; gap: .45rem; min-height: 36px; padding: .4rem .7rem; border: 1px solid var(--border); border-radius: 999px; background: #fff; color: var(--text); cursor: pointer; font: inherit; font-size: .76rem; transition: border-color .2s ease, background .2s ease, transform .2s ease; }
.variant-choice:hover { border-color: var(--copper); transform: translateY(-1px); }
.variant-choice.active { border-color: var(--copper-dark); background: #fffaf0; box-shadow: 0 0 0 2px rgb(201 150 63 / .14); }
.variant-choice:focus-visible { outline: 3px solid rgb(201 150 63 / .4); outline-offset: 2px; }
.variant-swatch { width: 18px; height: 18px; flex: 0 0 18px; border-radius: 50%; background: var(--swatch); border: 1px solid rgb(0 0 0 / .16); box-shadow: inset 0 0 0 2px rgb(255 255 255 / .3); }
.variant-status { margin: .55rem 0 0; color: var(--text-muted); font-size: .72rem; }

.product-trust {
    display: flex; gap: 1.2rem; flex-wrap: wrap;
    margin-top: 1.3rem; padding-top: 1.1rem;
    border-top: 1px dashed var(--border);
}
.product-trust span {
    display: inline-flex; align-items: center; gap: .45rem;
    font-size: .8rem; color: var(--text-light); font-weight: 500;
}
.product-trust svg { color: var(--copper-dark); flex-shrink: 0; }

.product-main-image {
    box-shadow: var(--shadow);
}
.product-image-trigger {
    position: relative;
    width: 100%;
    cursor: zoom-in;
    color: var(--text);
    font: inherit;
    text-align: left;
}
.product-image-trigger:focus-visible { outline: 3px solid var(--copper); outline-offset: 4px; }
.product-image-hint {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .45rem .65rem;
    border: 1px solid rgb(255 255 255 / .72);
    border-radius: .55rem;
    background: rgb(11 14 20 / .78);
    color: #fff;
    font-size: .68rem;
    font-weight: 700;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity .25s ease, transform .25s var(--ease-out);
    pointer-events: none;
}
.product-image-hint svg { width: 15px; height: 15px; }
.product-image-trigger:hover .product-image-hint,
.product-image-trigger:focus-visible .product-image-hint { opacity: 1; transform: translateY(0); }
.product-360-link { display: inline-flex; align-items: center; justify-content: center; gap: .35rem; width: 100%; margin-top: .7rem; padding: .55rem .7rem; border: 1px solid var(--border); border-radius: .6rem; color: var(--copper-dark); background: #fff; font-size: .76rem; font-weight: 700; }
.product-360-link svg { width: 16px; height: 16px; flex: 0 0 16px; }
.product-360-link:hover { border-color: var(--copper); background: var(--ivory); }
.product-price,
.product-month-price,
.price-card,
.price-tiers,
.product-price-large,
.search-hit-price,
.price-old,
.price-current,
[data-price],
[data-product-price] { display: none !important; }
.product-page .chip-stock,
.product-page .product-card-facts .fact-stock { display: none !important; }
.product-lightbox[hidden] { display: none; }
.product-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: grid;
    place-items: center;
    padding: 1.25rem;
}
.product-lightbox-backdrop { position: absolute; inset: 0; background: rgb(11 14 20 / .86); }
.product-lightbox-dialog {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    width: min(96vw, 1180px);
    height: min(92vh, 900px);
    padding: .8rem;
    border: 1px solid rgb(255 255 255 / .15);
    border-radius: 1.1rem;
    background: #f8f6f1;
    box-shadow: 0 30px 80px rgb(0 0 0 / .45);
}
.product-lightbox-bar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .2rem .25rem .7rem .45rem; }
.product-lightbox-bar p { color: var(--text); font-size: .78rem; font-weight: 750; }
.product-lightbox-close { display: grid; place-items: center; width: 36px; height: 36px; border-radius: .55rem; color: var(--text); background: transparent; }
.product-lightbox-close:hover { background: var(--border-light); }
.product-lightbox-close svg { width: 20px; height: 20px; }
.product-lightbox-stage { display: grid; grid-template-columns: 46px minmax(0, 1fr) 46px; align-items: center; gap: .4rem; min-height: 0; }
.product-lightbox-stage > img { width: 100%; height: 100%; min-height: 0; object-fit: contain; border-radius: .7rem; background: #fff; }
.product-lightbox-nav { display: grid; place-items: center; width: 40px; height: 40px; border: 1px solid var(--border); border-radius: 50%; background: #fff; color: var(--text); }
.product-lightbox-nav:hover { border-color: var(--copper); color: var(--copper-dark); }
.product-lightbox-nav[hidden] { visibility: hidden; }
.product-lightbox-nav svg { width: 21px; height: 21px; }
.product-lightbox-caption { min-height: 1.2rem; padding: .6rem .3rem .1rem; color: var(--text-muted); font-size: .7rem; text-align: center; }
.product-description {
    background: #fff; border: 1px solid var(--border-light);
    border-radius: var(--radius-lg); padding: clamp(1.2rem, 3vw, 2rem);
    margin-top: 2.5rem;
}
.product-description > h2 { font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; margin-bottom: 1rem; }
.product-long-desc table { border-radius: .6rem; overflow: hidden; box-shadow: 0 0 0 1px var(--border); border-collapse: separate; border-spacing: 0; }
.product-long-desc td:first-child, .product-long-desc th:first-child { background: var(--ivory); font-weight: 600; color: var(--text); width: 38%; }
.product-long-desc td, .product-long-desc th { border: none; border-bottom: 1px solid var(--border-light); }
.product-long-desc tr:last-child td { border-bottom: none; }

@media (max-width: 900px) {
    .category-hero { grid-template-columns: 1fr; }
    .category-hero-img { display: none; }
    .header-search { display: none; }
    .product-meta-grid { grid-template-columns: 1fr; }
    .price-tier { grid-template-columns: minmax(90px, 1fr) 76px auto; }
    .explorer-primary-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .explorer-selects { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .catalog-toolbar { align-items: flex-start; }
    .catalog-controls { width: 100%; }
    .catalog-controls label { flex: 1 1 150px; }
    .catalog-controls select { width: 100%; }
    .catalog-search-label input { width: 100%; }
}

@media (max-width: 720px) {
    .product-image-hint { opacity: 1; transform: none; right: .75rem; bottom: .75rem; font-size: .63rem; }
    .product-lightbox { padding: .6rem; }
    .product-lightbox-dialog { width: 100%; height: min(88vh, 760px); padding: .55rem; border-radius: .85rem; }
    .product-lightbox-stage { grid-template-columns: 34px minmax(0, 1fr) 34px; gap: .2rem; }
    .product-lightbox-nav { width: 32px; height: 32px; }
    .product-lightbox-nav svg { width: 17px; height: 17px; }
}

@media (max-width: 560px) {
    .catalog-explorer { border-radius: 1rem; }
    .explorer-heading { grid-template-columns: 1fr; gap: 1rem; padding: 1.15rem; }
    .explorer-heading h2 { font-size: 1.45rem; }
    .explorer-result { min-width: 0; display: flex; align-items: center; gap: .8rem; padding: .85rem 1rem; }
    .explorer-match-dial { width: 52px; height: 52px; flex-basis: 52px; }
    .explorer-result-copy strong { font-size: 1.45rem; }
    .explorer-result .explorer-clear { margin-top: .25rem; }
    .explorer-snapshot { padding: .7rem 1.15rem; gap: .5rem 1rem; }
    .explorer-snapshot-label { width: 100%; }
    .explorer-form { padding: 1rem; }
    .explorer-search-field input { height: 54px; padding-right: 1rem; }
    .explorer-search-hint { display: none; }
    .explorer-primary-grid { grid-template-columns: 1fr; gap: .7rem; }
    .explorer-selects { grid-template-columns: 1fr; }
    .explorer-toggles { grid-template-columns: 1fr; }
    .explorer-advanced summary { align-items: flex-start; }
    .explorer-advanced-title small { display: none; }
    .explorer-advanced-meta { padding-top: .2rem; }
    .explorer-footer { align-items: stretch; flex-direction: column; }
    .explorer-submit { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
    .explorer-submit, .explorer-submit svg, .explorer-advanced-meta i, .explorer-toggle-track, .explorer-toggle-track i, .explorer-control-icon, .explorer-match-dial { transition: none; }
    .explorer-result.is-pulsing .explorer-match-dial, .explorer-result.is-pulsing .explorer-result-copy { animation: none; }
}

/* ============================================================
   HOME VENDEDORA — CARRUSELES + BANNER CONVERSIÓN
   ============================================================ */
.section-header.compact { margin: 0; text-align: left; max-width: 620px; }
.carousel-head .section-header p { margin-bottom: 0; }
.carousel-head { margin-bottom: 1.6rem; }

/* Carrusel de categorías compacto */
.cats-carousel {
    padding: 0 .25rem;
    margin: 0 -.25rem;
    cursor: grab;
    user-select: none;
}
.cats-carousel .splide__track { padding: .25rem 0 1rem; }
.cats-carousel .splide__list { align-items: stretch; }
.cats-carousel:active { cursor: grabbing; }
.carousel-item-cat {
    min-width: 0;
}

/* Banner de conversión mid-page */
.conversion-banner {
    position: relative; overflow: hidden;
    background:
        radial-gradient(55% 130% at 8% 30%, rgb(201 150 63 / .3), transparent 55%),
        linear-gradient(120deg, var(--ink) 0%, var(--ink-3) 70%);
    color: #fff;
    padding: clamp(2.2rem, 5vw, 3.4rem) 0;
}
.conversion-banner-inner {
    position: relative; z-index: 1;
    display: flex; align-items: center; justify-content: space-between;
    gap: 2rem; flex-wrap: wrap;
}
.conversion-text h2 {
    font-family: var(--font-display); font-weight: 600;
    font-size: clamp(1.4rem, 2.6vw, 2rem); margin-bottom: .4rem;
}
.conversion-text p { color: rgb(255 255 255 / .7); font-size: .95rem; }
.conversion-actions { display: flex; gap: .8rem; flex-wrap: wrap; }

@media (max-width: 720px) {
    .conversion-actions { width: 100%; }
    .conversion-actions .btn { flex: 1; justify-content: center; }
    /* Menos altura muerta en móvil: secciones más compactas */
    .section-cats, .section-featured { padding: 2.4rem 0; }
    .featured-gift-cta-inner { grid-template-columns: 1fr; }
    .featured-gift-cta-media { min-height: 230px; }
    .featured-gift-cta-copy h2 { max-width: 18ch; }
    .featured-gift-cta-actions .btn { flex: 1 1 160px; }
    .catalog-directory-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .catalog-directory-cta { align-items: flex-start; flex-direction: column; }
}
