/* ==========================================================
   DON MUCÍLAGO — Sistema de diseño VIP (2026)
   Identidad: café de especialidad de Antioquia, procesado con
   su propio mucílago ("miel"). Oscuro especiado + oro miel +
   pergamino, tipografía Fraunces + Outfit.
   ========================================================== */

:root {
    --espresso:   #0E1210;
    --espresso-2: #141A16;
    --espresso-3: #1C2420;
    --parchment:  #F5F0E6;
    --parchment-2:#EDE5D4;
    --honey:      #E3B457;
    --mucilage:   #C9973F;
    --leaf:       #2C4A3A;
    --chile:      #B4232E;
    --smoke:      #9AA69B;
    --line-dark:  rgba(245, 240, 230, 0.14);
    --line-light: rgba(20, 26, 22, 0.12);

    --display: 'Fraunces', Georgia, serif;
    --body: 'Outfit', 'Segoe UI', system-ui, sans-serif;

    --ease-lux: cubic-bezier(0.22, 1, 0.36, 1);
    --shadow-lux: 0 30px 60px -20px rgba(0, 0, 0, 0.45);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--body);
    font-weight: 300;
    background: var(--espresso);
    color: var(--parchment);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body.is-subpage { background: var(--espresso); }

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

::selection { background: var(--honey); color: var(--espresso); }

:focus-visible { outline: 2px solid var(--honey); outline-offset: 3px; }

.container {
    width: min(1200px, 92%);
    margin-inline: auto;
}

/* ----------------------------------------------------------
   Tipografía
   ---------------------------------------------------------- */
.display {
    font-family: var(--display);
    font-weight: 600;
    font-variation-settings: 'opsz' 120;
    line-height: 0.98;
    letter-spacing: -0.01em;
}

.eyebrow {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: var(--honey);
}

.lead { font-size: 1.05rem; color: var(--smoke); font-weight: 300; }

.section { padding: clamp(5rem, 10vw, 8.5rem) 0; }
.section-cream { background: var(--parchment); color: var(--espresso-2); }
.section-cream .lead { color: #5c5a52; }
.section-cream .section-title { color: var(--espresso); }

.section-head { max-width: 720px; margin-bottom: clamp(3rem, 6vw, 4.5rem); }
.section-title { font-size: clamp(2.2rem, 5vw, 3.6rem); margin: 1.1rem 0 1rem; }

.rule { width: 64px; height: 2px; background: var(--honey); border: 0; margin: 1.6rem 0 0; }
.section-cream .rule { background: var(--mucilage); }

/* ----------------------------------------------------------
   Botones
   ---------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1rem 2.1rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    transition: transform 0.35s var(--ease-lux), background 0.35s, color 0.35s, border-color 0.35s;
    will-change: transform;
}
.btn:hover { transform: translateY(-3px); }

.btn-gold { background: linear-gradient(135deg, #EEC470, var(--honey) 55%, var(--mucilage)); color: #221803; box-shadow: 0 12px 30px -10px rgba(227, 180, 87, 0.55); }
.btn-gold:hover { box-shadow: 0 18px 40px -12px rgba(227, 180, 87, 0.7); }

.btn-ghost { border: 1px solid var(--line-dark); color: var(--parchment); background: rgba(255, 255, 255, 0.03); backdrop-filter: blur(8px); }
.btn-ghost:hover { border-color: var(--honey); color: var(--honey); }

.btn-light { background: var(--espresso); color: var(--parchment); }
.btn-light:hover { background: var(--leaf); }

/* ----------------------------------------------------------
   Nav
   ---------------------------------------------------------- */
.site-nav {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    transition: background 0.4s, box-shadow 0.4s;
    background: transparent;
}
.site-nav.scrolled,
.site-nav.open { background: rgba(14, 18, 16, 0.86); backdrop-filter: blur(18px); box-shadow: 0 10px 40px -18px rgba(0, 0, 0, 0.7); border-bottom: 1px solid var(--line-dark); }

.nav-inner {
    width: min(1280px, 94%);
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 1.15rem 0;
}

.nav-logo { display: flex; align-items: baseline; gap: 0.35rem; font-size: 1.35rem; letter-spacing: 0.04em; }
.nav-logo span { font-weight: 600; }
.nav-logo em { font-style: normal; font-family: var(--display); font-weight: 600; color: var(--honey); }

.nav-links { display: flex; align-items: center; gap: 2.4rem; }
.nav-link {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(245, 240, 230, 0.75);
    position: relative;
    padding: 0.4rem 0;
    transition: color 0.3s;
}
.nav-link::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 100%; height: 1px;
    background: var(--honey);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-lux);
}
.nav-link:hover { color: var(--parchment); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--honey); }

.nav-actions { display: flex; align-items: center; gap: 1rem; }

.nav-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px; height: 46px;
    border-radius: 999px;
    border: 1px solid var(--line-dark);
    background: rgba(255, 255, 255, 0.04);
    color: var(--parchment);
    transition: border-color 0.3s, background 0.3s, color 0.3s;
}
.nav-icon-btn:hover { border-color: var(--honey); color: var(--honey); background: rgba(255,255,255,0.07); }

.cart-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px; height: 46px;
    border-radius: 999px;
    border: 1px solid var(--line-dark);
    background: rgba(255, 255, 255, 0.04);
    color: var(--parchment);
    transition: border-color 0.3s, background 0.3s, color 0.3s;
}
.cart-btn:hover { border-color: var(--honey); color: var(--honey); }
.cart-badge {
    position: absolute;
    top: -4px; right: -4px;
    min-width: 20px; height: 20px;
    padding: 0 5px;
    border-radius: 999px;
    background: var(--chile);
    color: #fff;
    font-size: 0.62rem;
    font-weight: 600;
    display: flex; align-items: center; justify-content: center;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none; border: 0; padding: 0.5rem;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--parchment); transition: transform 0.3s, opacity 0.3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
    .nav-toggle { display: flex; }
    .nav-links {
        position: absolute;
        top: 100%; left: 0; right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: rgba(14, 18, 16, 0.97);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--line-dark);
        padding: 0.5rem 6%;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.5s var(--ease-lux), opacity 0.4s, padding 0.4s;
    }
    .nav-links.open { max-height: 420px; opacity: 1; padding: 1rem 6%; }
    .nav-link { padding: 0.9rem 0; border-bottom: 1px solid var(--line-dark); }
    .nav-link::after { display: none; }
}

@media (max-width: 480px) {
    .nav-inner { justify-content: center; gap: 1rem; }
    .nav-logo { font-size: 1.15rem; }
    .nav-actions { gap: 0.5rem; }
    #install-app-btn { display: none !important; }
    #share-app-btn { display: inline-flex !important; width: 34px; height: 34px; }
    .cart-btn, .nav-toggle { width: 42px; height: 42px; flex-shrink: 0; }
    .nav-toggle { display: flex; padding: 0.3rem; }
}

/* ----------------------------------------------------------
   Hero
   ---------------------------------------------------------- */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 8rem 6% 7rem;
}

.hero-bg {
    position: absolute;
    inset: -18% 0;
    background-size: cover;
    background-position: center 30%;
    will-change: transform;
}
.hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(14, 18, 16, 0.72), rgba(14, 18, 16, 0.55) 45%, var(--espresso) 100%),
        radial-gradient(80% 60% at 50% 20%, rgba(44, 74, 58, 0.35), transparent 70%);
}

/* Sellos giratorios (mucílago) */
.hero-drips { position: absolute; inset: 0; pointer-events: none; }
.drip {
    position: absolute;
    top: -40px;
    width: 9px; height: 26px;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    background: linear-gradient(var(--honey), var(--mucilage));
    opacity: 0;
    animation: drip 7s ease-in infinite;
}
.drip::after {
    content: "";
    position: absolute;
    left: 50%; bottom: -7px;
    width: 13px; height: 13px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: inherit;
}
.drip:nth-child(1) { left: 9%; animation-delay: 0s; }
.drip:nth-child(2) { left: 16%; animation-delay: 2.2s; opacity: .6; }
.drip:nth-child(3) { left: 88%; animation-delay: 4.1s; }

@keyframes drip {
    0%   { transform: translateY(0); opacity: 0; }
    12%  { opacity: 0.9; }
    100% { transform: translateY(105vh); opacity: 0; }
}

.seal {
    position: absolute;
    right: 6%; top: 26%;
    width: clamp(120px, 12vw, 170px);
    aspect-ratio: 1;
    pointer-events: none;
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 1s 1s, transform 1s var(--ease-lux);
}
.hero.is-in .seal { opacity: 1; transform: scale(1); }
.seal svg { width: 100%; height: 100%; animation: spin 22s linear infinite; }
.seal .seal-center { animation: spin 22s linear infinite reverse; transform-origin: 100px 100px; }
@keyframes spin { to { transform: rotate(360deg); } }

.hero-content { position: relative; z-index: 2; max-width: 980px; margin-inline: auto; }

.hero-eyebrow {
    opacity: 0; transform: translateY(14px);
    transition: opacity 0.9s 0.55s, transform 0.9s var(--ease-lux) 0.55s;
}
.hero.is-in .hero-eyebrow { opacity: 1; transform: none; }

.hero-title { margin: 1.4rem 0 0.4rem; font-size: clamp(3.2rem, 13vw, 9rem); }
.k-line { display: block; overflow: hidden; padding-bottom: 0.06em; margin-bottom: -0.06em; }
.k-inner {
    display: inline-block;
    transform: translateY(118%);
    transition: transform 1.15s var(--ease-lux);
    font-variation-settings: 'opsz' 144;
}
.k-inner.k-gold {
    background: linear-gradient(110deg, var(--honey) 10%, #F7E3AE 45%, var(--mucilage) 90%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero.is-in .k-inner { transform: none; }
.hero.is-in .k-line:nth-child(1) .k-inner { transition-delay: 0.15s; }
.hero.is-in .k-line:nth-child(2) .k-inner { transition-delay: 0.3s; }

.hero-sub {
    font-family: var(--display);
    font-style: italic;
    font-size: clamp(1.1rem, 2.4vw, 1.55rem);
    color: rgba(245, 240, 230, 0.85);
    opacity: 0; transform: translateY(14px);
    transition: opacity 0.9s 0.75s, transform 0.9s var(--ease-lux) 0.75s;
}
.hero.is-in .hero-sub { opacity: 1; transform: none; }

.hero-cta {
    margin-top: 2.6rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0; transform: translateY(14px);
    transition: opacity 0.9s 0.95s, transform 0.9s var(--ease-lux) 0.95s;
}
.hero.is-in .hero-cta { opacity: 1; transform: none; }

.hero-scroll {
    position: absolute;
    bottom: 2.2rem; left: 50%;
    transform: translateX(-50%);
    font-size: 0.62rem;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    color: rgba(245, 240, 230, 0.6);
    display: flex; flex-direction: column; align-items: center; gap: 0.8rem;
    opacity: 0;
    transition: opacity 1s 1.3s;
}
.hero.is-in .hero-scroll { opacity: 1; }
.hero-scroll::after {
    content: "";
    width: 1px; height: 44px;
    background: linear-gradient(var(--honey), transparent);
    animation: scrollcue 2.2s var(--ease-lux) infinite;
}
@keyframes scrollcue { 0% { transform: scaleY(0); transform-origin: top; } 45% { transform: scaleY(1); transform-origin: top; } 55% { transform: scaleY(1); transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ----------------------------------------------------------
   Marquee
   ---------------------------------------------------------- */
.marquee {
    background: linear-gradient(90deg, var(--espresso-3), var(--leaf));
    border-top: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
    overflow: hidden;
    padding: 1.15rem 0;
}
.marquee-track {
    display: flex;
    gap: 3.5rem;
    width: max-content;
    animation: marquee 32s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
    font-family: var(--display);
    font-style: italic;
    font-size: 1.25rem;
    color: rgba(245, 240, 230, 0.55);
    white-space: nowrap;
    display: flex; align-items: center; gap: 3.5rem;
}
.marquee-track span::after { content: "✦"; color: var(--honey); font-style: normal; font-size: 0.8rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ----------------------------------------------------------
   Manifiesto (reemplaza vitrina de video vertical)
   ---------------------------------------------------------- */
.manifiesto { position: relative; overflow: hidden; }
.manifiesto-wrap {
    display: grid;
    grid-template-columns: minmax(300px, 1.05fr) 1fr;
    gap: clamp(2.5rem, 6vw, 5rem);
    align-items: center;
}
.manifiesto-card {
    position: relative;
    border: 1px solid var(--line-dark);
    border-radius: 2rem;
    padding: clamp(2rem, 4vw, 3rem);
    background: linear-gradient(160deg, rgba(28, 36, 32, 0.9), rgba(14, 18, 16, 0.85));
    box-shadow: var(--shadow-lux);
    overflow: hidden;
}
.manifiesto-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--honey), transparent);
}
.manifiesto-label { color: var(--smoke); font-size: 0.66rem; letter-spacing: 0.3em; text-transform: uppercase; margin-bottom: 1.6rem; }
.manifiesto-list { list-style: none; margin: 0; padding: 0; }
.manifiesto-list li {
    display: flex;
    align-items: baseline;
    gap: 1.2rem;
    padding: 1.05rem 0;
    border-bottom: 1px solid var(--line-dark);
}
.manifiesto-list li:last-child { border-bottom: 0; }
.manifiesto-num { font-size: 0.66rem; color: var(--honey); letter-spacing: 0.2em; }
.manifiesto-word { font-family: var(--display); font-size: clamp(1.7rem, 3.5vw, 2.5rem); font-style: italic; }
.manifiesto-copy .lead { font-size: clamp(1.15rem, 2.2vw, 1.5rem); }
.manifiesto-copy strong { color: var(--honey); font-weight: 500; }

/* ----------------------------------------------------------
   Proceso (secuencia real → números 01/02/03)
   ---------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.step {
    position: relative;
    border: 1px solid var(--line-light);
    border-radius: 1.8rem;
    padding: 2.4rem 2rem 2.6rem;
    background: #fff;
    transition: transform 0.5s var(--ease-lux), box-shadow 0.5s;
    overflow: hidden;
}
.step:hover { transform: translateY(-8px); box-shadow: 0 30px 50px -25px rgba(20, 26, 22, 0.35); }
.step-num {
    font-family: var(--display);
    font-size: 0.85rem;
    letter-spacing: 0.25em;
    color: var(--mucilage);
    display: block;
    margin-bottom: 1.4rem;
}
.step-icon {
    width: 56px; height: 56px;
    border-radius: 1rem;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    margin-bottom: 1.4rem;
}
.step-icon.s1 { background: var(--leaf); }
.step-icon.s2 { background: var(--mucilage); }
.step-icon.s3 { background: #23406B; }
.step h3 { font-family: var(--display); font-size: 1.5rem; margin: 0 0 0.8rem; }
.step p { color: #5c5a52; font-size: 0.92rem; margin: 0; }

.step-list {
    list-style: none;
    margin: 1.1rem 0 0;
    padding: 1.1rem 0 0;
    border-top: 1px solid var(--line-light);
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}
.step-list li {
    display: flex;
    gap: 0.6rem;
    color: #5c5a52;
    font-size: 0.85rem;
    line-height: 1.5;
}
.step-list li::before {
    content: "✦";
    color: var(--mucilage);
    font-size: 0.6rem;
    margin-top: 0.32rem;
    flex-shrink: 0;
}

/* ----------------------------------------------------------
   Proceso: experiencia scroll-driven (El Secreto del Mucílago)
   ---------------------------------------------------------- */
.process-section {
    background: linear-gradient(180deg, var(--espresso), var(--espresso-2));
    padding: 0;
}
.process-intro {
    text-align: center;
    padding: clamp(5rem, 9vw, 8rem) 6% 2.5rem;
}
.process-intro .section-title { color: var(--parchment); margin: 1.2rem auto 0.9rem; }
.process-intro .lead { max-width: 560px; margin: 0 auto; }

.scroll-hint {
    margin-top: 2.2rem;
    font-size: 0.66rem;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    color: var(--smoke);
}
.scroll-hint span {
    display: inline-block;
    color: var(--honey);
    margin-left: 0.4rem;
    animation: bob 1.7s ease-in-out infinite;
}
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(7px); } }

.process-wrap { position: relative; }
.process-viewport {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    background: var(--espresso);
}

.process-bg {
    position: absolute;
    inset: -14% 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.14);
    transition: opacity 1.1s ease, transform 7s linear;
    will-change: transform, opacity;
    overflow: hidden;
}
.process-bg video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}
.process-bg.is-active { opacity: 1; transform: scale(1.04); }

.process-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(14, 18, 16, 0.18) 0%, rgba(14, 18, 16, 0.05) 55%, transparent 100%),
        linear-gradient(to bottom, rgba(14, 18, 16, 0.15), transparent 35%, var(--espresso));
}

.process-label {
    position: absolute;
    top: 5.4rem; left: 8%;
    z-index: 5;
    display: flex; align-items: center; gap: 1rem;
}
.process-label::after {
    content: "";
    width: 52px; height: 1px;
    background: var(--honey);
}

.process-scene, .process-final {
    position: absolute;
    inset: 0;
    display: none;
    align-items: center;
    padding: 6rem 8% 4rem;
    pointer-events: none;
}
.process-scene.is-active { display: flex; }

.process-num {
    position: absolute;
    top: 50%; right: 7%;
    transform: translateY(-50%);
    font-family: var(--display);
    font-weight: 600;
    font-size: clamp(9rem, 24vw, 19rem);
    line-height: 0.8;
    color: rgba(245, 240, 230, 0.05);
    text-shadow: 0 0 90px rgba(227, 180, 87, 0.18);
    user-select: none;
    pointer-events: none;
    will-change: transform;
    opacity: 0;
}

.process-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    pointer-events: auto;
}
.process-eyebrow {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--honey);
    display: block;
    opacity: 0;
    will-change: transform, opacity;
}
.process-title {
    color: var(--parchment);
    font-size: clamp(2.4rem, 5.5vw, 4.4rem);
    margin: 1.1rem 0 0.7rem;
    opacity: 0;
    will-change: transform, opacity;
}
.process-desc {
    max-width: 560px;
    margin: 0;
    opacity: 0;
    will-change: transform, opacity;
}
.process-list { margin-top: 1.4rem; opacity: 0; will-change: transform, opacity; }
.process-list li { color: rgba(245, 240, 230, 0.78); }
.process-list li::before { color: var(--honey); }

.process-progress {
    position: absolute;
    right: 3.4%; top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.9rem;
}
.process-rail { width: 1px; height: 130px; background: rgba(255, 255, 255, 0.18); position: relative; overflow: hidden; }
.process-rail i { position: absolute; inset: 0 0 auto 0; height: 0; background: linear-gradient(var(--honey), var(--mucilage)); }
.process-dots { display: flex; flex-direction: column; gap: 0.55rem; }
.process-dot {
    width: 9px; height: 9px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.35);
    transition: all 0.3s;
}
.process-dot.is-on { background: var(--honey); border-color: var(--honey); box-shadow: 0 0 12px rgba(227, 180, 87, 0.55); }

.process-recap {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: 1.6rem 0 2.2rem;
    opacity: 0;
    will-change: transform, opacity;
}
.process-recap span {
    border: 1px solid var(--line-dark);
    border-radius: 999px;
    padding: 0.55rem 1.3rem;
    font-size: 0.82rem;
    color: rgba(245, 240, 230, 0.78);
    background: rgba(255, 255, 255, 0.03);
}
.process-recap b {
    font-family: var(--display);
    font-style: italic;
    color: var(--honey);
    margin-right: 0.4rem;
}
.process-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    will-change: transform, opacity;
}

/* Beads flotantes con parallax de mouse */
.process-beads { position: absolute; inset: 0; z-index: 3; pointer-events: none; }
.bead-float { position: absolute; animation: floaty 9s ease-in-out infinite; }
.bead-float:nth-child(2) { animation-duration: 11s; animation-delay: -3s; }
.bead-float:nth-child(3) { animation-duration: 8s; animation-delay: -5s; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-22px); } }
.bead {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-lux);
    border: 1px solid var(--line-dark);
    will-change: transform;
}
.bead img { width: 100%; height: 100%; object-fit: cover; }
.b1 { width: 104px; height: 142px; }
.b2 { width: 80px; height: 110px; }
.b3 { width: 122px; height: 162px; }
@media (hover: hover) and (pointer: fine) { .bead-float { opacity: 0.6; } }

@media (max-width: 900px) {
    .process-num { right: 0.5rem; opacity: 0.35; }
    .process-progress { right: 4.5%; }
    .process-beads { display: none; }
}

/* Fallback accesible / sin animación */
@media (prefers-reduced-motion: reduce) {
    .process-wrap { height: auto !important; }
    .process-viewport {
        position: static !important;
        height: auto !important;
        overflow: visible;
        background: transparent;
    }
    .process-bg, .process-shade, .process-num, .process-progress, .process-beads, .process-label { display: none !important; }
    .process-scene, .process-final {
        position: static !important;
        display: block !important;
        padding: 3rem 0;
        border-bottom: 1px solid var(--line-dark);
    }
    .process-content * { opacity: 1 !important; transform: none !important; }
    .process-title { color: var(--parchment); }
}
.step::after {
    content: "";
    position: absolute;
    bottom: 0; left: 2rem; right: 2rem;
    height: 2px;
    background: linear-gradient(90deg, var(--mucilage), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s var(--ease-lux);
}
.step:hover::after { transform: scaleX(1); }

@media (max-width: 900px) {
    .steps { grid-template-columns: 1fr; }
    .manifiesto-wrap { grid-template-columns: 1fr; }
}

/* ----------------------------------------------------------
   Ficha de lote / perfil de taza
   ---------------------------------------------------------- */
.ficha-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }
.ficha-panel {
    min-width: 0;
    border: 1px solid var(--line-dark);
    border-radius: 2rem;
    padding: clamp(1.8rem, 3vw, 2.6rem);
    background: rgba(255, 255, 255, 0.03);
}
.ficha-panel h3 { font-family: var(--display); font-size: 1.6rem; color: var(--honey); margin: 0 0 1.6rem; }
.ficha dl { margin: 0; }
.ficha-row {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--line-dark);
    font-size: 0.92rem;
}
.ficha-row:last-child { border-bottom: 0; }
.ficha-row dt { color: var(--smoke); }
.ficha-row dd { margin: 0; text-align: right; font-weight: 400; }

.notas { display: flex; flex-wrap: wrap; gap: 0.9rem; margin: 1.4rem 0 2.2rem; }
.nota {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    border: 1px solid var(--line-dark);
    border-radius: 999px;
    padding: 0.55rem 1.3rem;
    font-family: var(--display);
    font-style: italic;
    font-size: 1.05rem;
}
.nota::before { content: "✦"; color: var(--honey); font-style: normal; font-size: 0.7rem; }

.prep {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--line-dark);
}
.prep:last-child { border-bottom: 0; }
.prep-meta { display: flex; gap: 1.4rem; font-size: 0.82rem; color: var(--smoke); }
.prep-meta b { color: var(--parchment); font-weight: 500; margin-left: 0.2rem; }

.perfil-toolbar {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}
.perfil-select {
    background: var(--espresso-3);
    border: 1px solid var(--line-dark);
    color: var(--parchment);
    padding: 0.85rem 1.2rem;
    border-radius: 0.9rem;
    font-size: 0.88rem;
    font-family: var(--body);
    outline: none;
    transition: border-color 0.3s;
}
.perfil-select:focus { border-color: var(--honey); }
.share-btn { white-space: nowrap; }

@media (max-width: 820px) { .ficha-grid { grid-template-columns: 1fr; } }

@media (max-width: 600px) {
    .perfil-toolbar { flex-wrap: wrap; }
    .perfil-select { flex: 1 1 100%; width: 100%; }
}

/* ----------------------------------------------------------
   Banda parallax de cita
   ---------------------------------------------------------- */
.quote-band {
    position: relative;
    min-height: 72svh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 6rem 6%;
}
.quote-bg {
    position: absolute;
    inset: -20% 0;
    background-size: cover;
    background-position: center;
    will-change: transform;
}
.quote-shade {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, var(--espresso), rgba(14, 18, 16, 0.78) 45%, var(--espresso));
}
.quote-content { position: relative; z-index: 2; max-width: 900px; }
.quote-mark { font-family: var(--display); font-size: 4rem; line-height: 0; color: var(--honey); display: block; margin-bottom: 1rem; }
.quote-text {
    font-family: var(--display);
    font-style: italic;
    font-size: clamp(1.9rem, 5vw, 3.4rem);
    line-height: 1.15;
    margin: 0;
}

/* ----------------------------------------------------------
   Tarjetas de sección (Boutique / Galería preview)
   ---------------------------------------------------------- */
.preview-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }

.preview-card {
    position: relative;
    border-radius: 1.6rem;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    border: 1px solid var(--line-dark);
}
.preview-card img, .preview-card video { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease-lux); }
.preview-card:hover img, .preview-card:hover video { transform: scale(1.07); }
.preview-card::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(14, 18, 16, 0.85), transparent 55%);
}
.preview-card-caption {
    position: absolute;
    left: 1.3rem; right: 1.3rem; bottom: 1.2rem;
    z-index: 2;
    font-family: var(--display);
    font-style: italic;
    font-size: 1.15rem;
    display: flex; justify-content: space-between; align-items: center;
}
.preview-card-caption small { font-family: var(--body); font-style: normal; font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--honey); }

@media (max-width: 980px) { .preview-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .preview-grid { grid-template-columns: 1fr; } }

.cta-band {
    text-align: center;
    padding: clamp(5rem, 9vw, 7.5rem) 6%;
    background:
        radial-gradient(90% 120% at 50% 0%, rgba(44, 74, 58, 0.5), transparent 70%),
        var(--espresso-2);
    border-top: 1px solid var(--line-dark);
}
.cta-band h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); margin: 1.2rem auto 1rem; max-width: 760px; }

/* ----------------------------------------------------------
   Manual y Mejoras
   ---------------------------------------------------------- */
.manual-list { display: flex; flex-direction: column; gap: 1.4rem; }
.manual-item {
    border: 1px solid var(--line-dark);
    border-radius: 2rem;
    padding: clamp(1.8rem, 3vw, 2.6rem);
    background: rgba(255, 255, 255, 0.03);
}
.manual-item .panel-head { margin-bottom: 0.6rem; }
.manual-item .eyebrow { display: block; margin-bottom: 0.4rem; }
.manual-body { margin-top: 0.6rem; }
.manual-body h2 {
    font-family: var(--display);
    font-size: 1.6rem;
    color: var(--honey);
    margin: 1.6rem 0 0.8rem;
}
.manual-body h3 {
    font-family: var(--display);
    font-size: 1.25rem;
    color: var(--parchment);
    margin: 1.4rem 0 0.6rem;
}
.manual-body p {
    color: var(--smoke);
    margin: 0 0 0.8rem;
    line-height: 1.7;
}
.manual-body ul {
    margin: 0 0 1rem 1.2rem;
    color: var(--smoke);
}
.manual-body li { margin-bottom: 0.35rem; }
.manual-body strong { color: var(--parchment); }
.manual-body a { color: var(--honey); text-decoration: underline; }

.mejoras-card {
    border: 1px solid var(--line-dark);
    border-radius: 2rem;
    padding: clamp(1.8rem, 3vw, 2.6rem);
    background: linear-gradient(160deg, rgba(28, 36, 32, 0.9), rgba(14, 18, 16, 0.85));
    box-shadow: var(--shadow-lux);
}
.mejoras-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--honey), transparent);
}
.mejoras-form .field { margin-bottom: 1.2rem; }
.mejoras-form label {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--smoke);
    margin-bottom: 0.5rem;
}
.mejoras-form input,
.mejoras-form textarea {
    width: 100%;
    background: var(--espresso-3);
    border: 1px solid var(--line-dark);
    color: var(--parchment);
    padding: 0.9rem 1rem;
    border-radius: 0.9rem;
    font-family: var(--body);
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.mejoras-form input:focus,
.mejoras-form textarea:focus {
    border-color: var(--honey);
    box-shadow: 0 0 0 4px rgba(227, 180, 87, 0.12);
}
.mejoras-form textarea { resize: vertical; min-height: 130px; }

.mejora-feedback {
    margin-top: 0.8rem;
    font-size: 0.9rem;
    color: var(--smoke);
    min-height: 1.4rem;
}
.mejora-feedback.ok { color: #8fd694; }
.mejora-feedback.err { color: #f08080; }

@media (max-width: 760px) {
    .mejoras-card .field-row { grid-template-columns: 1fr; }
}

/* ----------------------------------------------------------
   Páginas interiores (tienda / galería)
   ---------------------------------------------------------- */
.page-hero {
    position: relative;
    min-height: 52svh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding: 9rem 6% 5rem;
}
.page-hero-bg { position: absolute; inset: -22% 0; background-size: cover; background-position: center; will-change: transform; }
.page-hero-shade { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(14, 18, 16, 0.62), rgba(14, 18, 16, 0.55) 45%, var(--espresso)); }
.page-hero-content { position: relative; z-index: 2; max-width: 760px; margin-inline: auto; }
.page-title { font-size: clamp(2.6rem, 7vw, 5.2rem); margin: 1rem 0 0.6rem; }

.page-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

/* Filtros */
.filters { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.filter-btn {
    border: 1px solid var(--line-dark);
    background: transparent;
    color: var(--smoke);
    border-radius: 999px;
    padding: 0.6rem 1.4rem;
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    transition: all 0.3s;
}
.filter-btn:hover { color: var(--parchment); border-color: var(--honey); }
.filter-btn.active { background: var(--honey); border-color: var(--honey); color: #221803; }

.count-label { font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--smoke); }
.count-label b { color: var(--honey); }

/* ----------------------------------------------------------
   Productos
   ---------------------------------------------------------- */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }

.product-card {
    display: flex;
    flex-direction: column;
    background: var(--espresso-2);
    border: 1px solid var(--line-dark);
    border-radius: 1.6rem;
    overflow: hidden;
    transition: transform 0.5s var(--ease-lux), border-color 0.5s, box-shadow 0.5s;
}
.product-card:hover { transform: translateY(-8px); border-color: rgba(227, 180, 87, 0.4); box-shadow: var(--shadow-lux); }

.product-media { position: relative; aspect-ratio: 1 / 1; overflow: hidden; }
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease-lux); }
.product-card:hover .product-media img { transform: scale(1.08); }
.product-tag {
    position: absolute;
    top: 0.9rem; left: 0.9rem;
    z-index: 2;
    background: rgba(14, 18, 16, 0.75);
    backdrop-filter: blur(8px);
    border: 1px solid var(--line-dark);
    color: var(--honey);
    font-size: 0.56rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
}

.product-body { display: flex; flex-direction: column; flex-grow: 1; padding: 1.4rem; }
.product-name { font-family: var(--display); font-size: 1.25rem; margin: 0 0 0.4rem; line-height: 1.2; }
.product-desc { color: var(--smoke); font-size: 0.85rem; margin: 0 0 1.1rem; }
.product-price {
    font-family: var(--display);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--honey);
    margin: 0 0 1rem;
}

.size-select {
    width: 100%;
    background: var(--espresso-3);
    border: 1px solid var(--line-dark);
    border-radius: 0.8rem;
    color: var(--parchment);
    padding: 0.7rem 0.9rem;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    outline: none;
}
.size-select:focus { border-color: var(--honey); }

.add-btn {
    margin-top: auto;
    width: 100%;
    border: 1px solid var(--honey);
    background: transparent;
    color: var(--honey);
    border-radius: 0.9rem;
    padding: 0.95rem;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    transition: all 0.35s;
}
.add-btn:hover { background: var(--honey); color: #221803; }

@media (max-width: 1080px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 820px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .product-grid { grid-template-columns: 1fr; } }

/* ----------------------------------------------------------
   Galería
   ---------------------------------------------------------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 1fr;
    gap: 1.2rem;
}
.gallery-item {
    position: relative;
    border-radius: 1.4rem;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    border: 1px solid var(--line-dark);
}
.gallery-item:nth-child(6n+1) { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
.gallery-item img, .gallery-item video { width: 100%; height: 100%; object-fit: cover; cursor: pointer; transition: transform 0.9s var(--ease-lux); }
.gallery-item:hover img, .gallery-item:hover video { transform: scale(1.07); }
.gallery-item-cap {
    position: absolute;
    left: 1rem; right: 1rem; bottom: 1rem;
    background: rgba(14, 18, 16, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid var(--line-dark);
    border-radius: 999px;
    padding: 0.5rem 1.1rem;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(245, 240, 230, 0.85);
    pointer-events: none;
}
.g-play {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: 0;
    cursor: pointer;
}
.g-play svg {
    width: 60px;
    height: 60px;
    padding: 16px;
    border-radius: 999px;
    background: rgba(14, 18, 16, 0.55);
    backdrop-filter: blur(6px);
    color: #fff;
    transition: transform 0.3s var(--ease-lux), background 0.3s;
}
.gallery-item:hover .g-play svg {
    transform: scale(1.08);
    background: rgba(209, 145, 63, 0.9);
}
.g-share {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    z-index: 3;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(14, 18, 16, 0.55);
    backdrop-filter: blur(6px);
    border: 1px solid var(--line-dark);
    color: #fff;
    cursor: pointer;
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity 0.3s, transform 0.3s, background 0.3s;
}
.g-share svg { width: 17px; height: 17px; }
.gallery-item:hover .g-share { opacity: 1; transform: none; }
.g-share:hover { background: rgba(209, 145, 63, 0.9); }

@media (max-width: 1000px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } .g-share { opacity: 1; transform: none; } }
@media (max-width: 460px) { .gallery-grid { grid-template-columns: 1fr; } .gallery-item:nth-child(6n+1) { grid-column: auto; grid-row: auto; aspect-ratio: 1/1; } }

.gallery-empty { grid-column: 1 / -1; text-align: center; color: var(--smoke); font-style: italic; padding: 4rem 0; }

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(10, 12, 11, 0.92);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img { max-height: 88vh; max-width: 92vw; border-radius: 1.2rem; box-shadow: var(--shadow-lux); }
.lightbox-close {
    position: absolute;
    top: 1.4rem; right: 1.6rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--line-dark);
    color: var(--parchment);
    width: 46px; height: 46px;
    border-radius: 999px;
    font-size: 1.1rem;
    transition: border-color 0.3s;
}
.lightbox-close:hover { border-color: var(--honey); color: var(--honey); }
.lightbox video {
    max-height: 82vh;
    max-width: 92vw;
    border-radius: 1.2rem;
    box-shadow: var(--shadow-lux);
    background: #000;
}
.lightbox-meta {
    position: absolute;
    left: 50%;
    bottom: 1.6rem;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    max-width: 92vw;
}
.lightbox-title {
    color: rgba(245, 240, 230, 0.9);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: rgba(14, 18, 16, 0.7);
    border: 1px solid var(--line-dark);
    border-radius: 999px;
    padding: 0.55rem 1.2rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.lightbox-share {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    background: var(--honey);
    border: 0;
    border-radius: 999px;
    color: #1a1a12;
    font-weight: 600;
    font-size: 0.78rem;
    padding: 0.55rem 1.1rem;
    cursor: pointer;
    white-space: nowrap;
    transition: filter 0.3s, transform 0.3s;
}
.lightbox-share:hover { filter: brightness(1.08); transform: translateY(-1px); }

.dm-toast {
    position: fixed;
    left: 50%;
    bottom: 2rem;
    z-index: 300;
    transform: translate(-50%, 16px);
    background: rgba(14, 18, 16, 0.92);
    border: 1px solid var(--line-dark);
    color: var(--parchment);
    padding: 0.7rem 1.3rem;
    border-radius: 999px;
    font-size: 0.8rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s;
}
.dm-toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ----------------------------------------------------------
   Carrito
   ---------------------------------------------------------- */
.cart-layer {
    position: fixed;
    inset: 0;
    z-index: 140;
    overflow: hidden;
    pointer-events: none;
}
.cart-sidebar {
    position: absolute;
    top: 0; right: 0;
    height: 100%;
    width: min(460px, 100%);
    background: var(--espresso-2);
    border-left: 1px solid var(--line-dark);
    z-index: 2;
    pointer-events: auto;
    transform: translateX(105%);
    visibility: hidden;
    transition: transform 0.55s var(--ease-lux), visibility 0s 0.55s;
    display: flex;
    flex-direction: column;
}
.cart-sidebar.open { transform: none; visibility: visible; transition: transform 0.55s var(--ease-lux); }
.cart-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.6rem 1.8rem;
    border-bottom: 1px solid var(--line-dark);
}
.cart-head h3 { font-family: var(--display); font-style: italic; font-size: 1.5rem; margin: 0; }
.cart-close { background: none; border: 0; color: var(--smoke); font-size: 1.3rem; transition: color 0.3s, transform 0.3s; }
.cart-close:hover { color: var(--honey); transform: rotate(90deg); }
.cart-body { flex-grow: 1; overflow-y: auto; padding: 1.4rem 1.8rem; }
.cart-item { display: flex; gap: 1rem; align-items: center; padding: 1rem 0; border-bottom: 1px solid var(--line-dark); }
.cart-item:last-child { border-bottom: 0; }
.cart-item-thumb { width: 74px; height: 74px; border-radius: 0.9rem; overflow: hidden; flex-shrink: 0; border: 1px solid var(--line-dark); }
.cart-item-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex-grow: 1; }
.cart-item-info h4 { font-size: 0.9rem; margin: 0 0 0.2rem; text-transform: uppercase; letter-spacing: 0.06em; }
.cart-item-info p { margin: 0; font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--honey); }
.cart-item-price { margin-top: 0.3rem !important; color: var(--honey); }
.cart-remove { background: none; border: 0; color: var(--smoke); transition: color 0.3s; }
.cart-remove:hover { color: var(--chile); }

.cart-empty { height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; color: var(--smoke); }
.cart-empty .icon { width: 74px; height: 74px; border-radius: 999px; background: rgba(255, 255, 255, 0.05); display: flex; align-items: center; justify-content: center; margin-bottom: 1.2rem; color: var(--mucilage); }
.cart-empty p { font-family: var(--display); font-style: italic; font-size: 1.1rem; margin: 0; }

.cart-foot { padding: 1.4rem 1.8rem; border-top: 1px solid var(--line-dark); background: var(--espresso-3); }

.cart-total-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0 0.2rem;
}
.cart-total-row span { font-size: 0.62rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--smoke); font-weight: 600; }
.cart-total-row b { font-family: var(--display); font-style: italic; font-size: 1.4rem; color: var(--honey); }
.checkout-btn {
    width: 100%;
    border: 0;
    border-radius: 999px;
    padding: 1.15rem;
    background: linear-gradient(135deg, #EEC470, var(--honey) 55%, var(--mucilage));
    color: #221803;
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: transform 0.3s var(--ease-lux), box-shadow 0.3s;
}
.checkout-btn:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 14px 34px -12px rgba(227, 180, 87, 0.6); }
.checkout-btn:disabled { opacity: 0.4; cursor: not-allowed; }

.cart-overlay {
    position: absolute; inset: 0;
    background: rgba(10, 12, 11, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }

/* ----------------------------------------------------------
   Comunidad / redes
   ---------------------------------------------------------- */
.social-row { display: flex; justify-content: center; gap: 1.2rem; }
.social-link {
    width: 64px; height: 64px;
    border: 1px solid var(--line-dark);
    border-radius: 1.2rem;
    display: flex; align-items: center; justify-content: center;
    color: var(--parchment);
    transition: all 0.4s;
}
.social-link:hover { background: var(--parchment); color: var(--espresso); border-color: var(--parchment); transform: translateY(-4px); }
.social-link svg { width: 26px; height: 26px; }

/* ----------------------------------------------------------
   Footer
   ---------------------------------------------------------- */
.site-footer { border-top: 1px solid var(--line-dark); background: #0B0F0D; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 3rem;
    padding: 4.5rem 0 3.5rem;
}
.footer-brand .nav-logo { font-size: 1.6rem; }
.footer-brand p { color: var(--smoke); font-size: 0.92rem; max-width: 300px; margin: 1.2rem 0 0; }
.footer-col h4 { font-size: 0.66rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--honey); margin: 0 0 1.3rem; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 0.7rem; }
.footer-col a { color: rgba(245, 240, 230, 0.72); font-size: 0.9rem; transition: color 0.3s; }
.footer-col a:hover { color: var(--honey); }

.footer-bottom {
    border-top: 1px solid var(--line-dark);
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.75rem;
    color: var(--smoke);
}
.footer-bottom b { color: var(--honey); font-weight: 500; }

@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ----------------------------------------------------------
   AOS reset para tema oscuro
   ---------------------------------------------------------- */
[data-aos] { transition-timing-function: var(--ease-lux); }

/* ----------------------------------------------------------
   Movimiento reducido
   ---------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
    .hero-bg, .quote-bg, .page-hero-bg, [data-parallax] { transform: none !important; }
    .k-inner { transform: none; }
    .seal { display: none; }
}
