/* =====================================================
   ANTOJOS CON ESTILO — Accesorios y algo más
   Paleta fucsia/magenta + amarillo, serif elegante Cormorant
   Garamond + script Yesteryear, tipografía Jost para UI.
   ===================================================== */
:root {
    --bg:        #fff8fb;
    --bg-panel:  #fbe2ee;
    --bg-panel-2:#f6d3e5;
    --topbar:    #e51e77;
    --pink:      #e51e77;
    --pink-dark: #b8145d;
    --pink-deep: #7c0f40;
    --yellow:    #fce26b;
    --yellow-dark:#e8bd2a;
    --ink:       #2b1620;
    --ink-soft:  #9a7284;
    --line:      rgba(43,22,32,0.1);
    --white:     #ffffff;

    --radius-pill: 999px;
    --radius-lg:   18px;
    --radius-md:   10px;
    --shadow-card: 0 10px 26px rgba(124,15,64,0.10);
    --shadow-hover:0 22px 42px rgba(124,15,64,0.18);
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Jost', sans-serif;
    background: var(--bg);
    color: var(--ink);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
section[id] { scroll-margin-top: 120px; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}

/* ===================== */
/* TOPBAR                */
/* ===================== */
.topbar { background: var(--topbar); color: #fff; }
.topbar-track {
    max-width: 1400px;
    margin: 0 auto;
    padding: 9px 24px;
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.6px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.topbar-track i { font-size: 10px; color: var(--yellow); }

/* ===================== */
/* HEADER                */
/* ===================== */
.header {
    position: sticky;
    top: 0;
    z-index: 300;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    transition: box-shadow 0.35s var(--ease);
}
.header.scrolled { box-shadow: 0 8px 26px rgba(124,15,64,0.10); }

.header-track {
    max-width: 1400px;
    margin: 0 auto;
    padding: 14px 30px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
}

.header-izq { display: flex; align-items: center; gap: 34px; }

.btn-hamburguesa {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 22px;
}
.btn-hamburguesa span { display: block; width: 100%; height: 1.5px; background: var(--ink); transition: 0.3s; }
.btn-hamburguesa:hover span { background: var(--pink-dark); }

.nav-principal { display: flex; gap: 26px; }
.nav-principal a {
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--ink);
    padding: 8px 0;
    position: relative;
    transition: color 0.25s;
    white-space: nowrap;
}
.nav-principal li.activo a,
.nav-principal a:hover { color: var(--pink-dark); }
.nav-principal li.activo a::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: -1px;
    height: 2px;
    background: var(--pink);
    border-radius: 2px;
}

.marca-centro { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.marca-logo { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; margin-bottom: 4px; box-shadow: 0 4px 14px rgba(124,15,64,0.22); }
.marca-texto { font-family: 'Cormorant Garamond', serif; font-size: 30px; font-weight: 700; letter-spacing: 0.5px; color: var(--ink); line-height: 1; }
.marca-texto em { font-family: 'Yesteryear', cursive; font-style: normal; color: var(--pink-dark); font-size: 1.2em; margin-left: 4px; }
.marca-centro .marca-sub { font-size: 8.5px; letter-spacing: 2.6px; color: var(--ink-soft); font-weight: 600; margin-top: 2px; }

.header-der { display: flex; align-items: center; justify-content: flex-end; gap: 22px; }
.icono-btn {
    position: relative;
    font-size: 16px;
    color: var(--ink);
    width: 34px; height: 34px;
    display: flex; align-items: center; justify-content: center;
    transition: color 0.25s, transform 0.3s var(--ease);
}
.icono-btn:hover { color: var(--pink-dark); transform: translateY(-2px); }
.icono-badge {
    position: absolute;
    top: -2px; right: -2px;
    min-width: 16px; height: 16px;
    padding: 0 3px;
    border-radius: 50%;
    background: var(--pink);
    color: #fff;
    font-size: 9.5px;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 0 2px var(--bg);
}
.icono-btn.bump { animation: bumpIcon 0.4s var(--ease); }
@keyframes bumpIcon { 0%{transform:scale(1);} 45%{transform:scale(1.28);} 100%{transform:scale(1);} }

/* ===================== */
/* DRAWER DE CATEGORÍAS   */
/* ===================== */
.drawer-fondo {
    position: fixed; inset: 0;
    background: rgba(43,22,32,0.45);
    z-index: 400;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s var(--ease);
}
.drawer-fondo.activo { opacity: 1; pointer-events: auto; }

.drawer {
    position: fixed;
    top: 0; left: 0;
    height: 100%;
    width: 100%;
    max-width: 340px;
    background: var(--bg);
    z-index: 401;
    transform: translateX(-100%);
    transition: transform 0.4s var(--ease);
    display: flex;
    flex-direction: column;
    box-shadow: 20px 0 50px rgba(0,0,0,0.15);
}
.drawer.activo { transform: translateX(0); }
.drawer-header { display: flex; justify-content: space-between; align-items: center; padding: 22px 24px; border-bottom: 1px solid var(--line); background: var(--pink); color: #fff; }
.drawer-header span { font-family: 'Cormorant Garamond', serif; font-size: 21px; font-weight: 700; }
.drawer-cerrar { font-size: 22px; color: #fff; opacity: 0.85; }
.drawer-cerrar:hover { opacity: 1; }
.drawer-links { padding: 10px 10px; overflow-y: auto; }
.drawer-links a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 14px;
    font-size: 13px;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: background 0.2s, color 0.2s;
}
.drawer-links a:hover { background: var(--bg-panel); color: var(--pink-dark); }
.drawer-links a i:last-child { font-size: 10px; color: var(--ink-soft); }
.drawer-links .buscador-drawer { margin: 10px 4px 16px; }

/* ===================== */
/* HERO — corcho/collage */
/* ===================== */
.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, var(--pink) 0%, var(--pink-dark) 55%, var(--pink-deep) 100%);
    padding: 80px 6vw 96px;
    isolation: isolate;
}

/* doodles sueltos flotando por el fondo, como si fueran anotaciones a mano */
.hero-scatter { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.doodle {
    position: absolute;
    color: rgba(255,255,255,0.28);
    font-size: 30px;
    line-height: 1;
    animation: flotarDoodle 7s ease-in-out infinite;
}
.doodle-1 { top: 12%; left: 6%;  font-size: 26px; animation-delay: 0s; }
.doodle-2 { top: 68%; left: 3%;  font-size: 20px; color: rgba(252,226,107,0.4); animation-delay: 1.1s; }
.doodle-3 { top: 20%; right: 32%; font-size: 18px; animation-delay: 2.2s; }
.doodle-4 { top: 78%; right: 8%; font-size: 30px; color: rgba(252,226,107,0.35); animation-delay: 0.6s; transform: rotate(-18deg); }
.doodle-5 { top: 8%;  right: 6%; font-size: 22px; animation-delay: 1.8s; }
@keyframes flotarDoodle {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-14px) rotate(8deg); }
}

.hero-grid {
    position: relative;
    z-index: 1;
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 40px;
}

.hero-copy { text-align: left; }
.hero-eyebrow {
    display: inline-block;
    font-family: 'Caveat', cursive;
    font-size: 19px;
    font-weight: 600;
    letter-spacing: 0.4px;
    color: var(--yellow);
    margin-bottom: 14px;
    transform: rotate(-2deg);
}
.hero-copy h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 58px;
    line-height: 1.1;
    font-weight: 700;
    color: #fff;
}
.hero-copy .script {
    font-family: 'Yesteryear', cursive;
    color: var(--yellow);
    font-size: 48px;
    display: inline-flex;
    align-items: center;
    line-height: 1.3;
    margin-top: 2px;
}
.hero-nota {
    font-size: 14.5px;
    color: #fbdcea;
    line-height: 1.8;
    max-width: 420px;
    margin: 22px 0 32px;
}

.hero-botones { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }

.btn-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--yellow);
    color: var(--pink-deep);
    padding: 15px 32px;
    border-radius: var(--radius-md);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 1.4px;
    width: fit-content;
    transition: background 0.3s, transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
    box-shadow: 0 12px 26px rgba(0,0,0,0.18);
}
.btn-pill:hover { background: var(--yellow-dark); transform: translateY(-3px); box-shadow: 0 18px 32px rgba(0,0,0,0.22); }

.btn-pill-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1.5px solid rgba(255,255,255,0.7);
    color: #fff;
    padding: 13.5px 30px;
    border-radius: var(--radius-md);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 1.4px;
    background: transparent;
    transition: 0.3s var(--ease);
}
.btn-pill-outline:hover { background: rgba(255,255,255,0.15); transform: translateY(-3px); }

/* link "nota escrita a mano" — la alternativa al botón de siempre */
.btn-nota {
    font-family: 'Caveat', cursive;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    position: relative;
    padding-bottom: 3px;
    transition: color 0.25s, transform 0.25s var(--ease);
}
.btn-nota::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: -2px;
    height: 6px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 8' preserveAspectRatio='none'%3E%3Cpath d='M0 5 Q 7 0 15 5 T 30 5 T 45 5 T 60 5' fill='none' stroke='%23fce26b' stroke-width='2'/%3E%3C/svg%3E") repeat-x;
    background-size: 30px 8px;
}
.btn-nota:hover { color: var(--yellow); transform: translateX(3px); }

/* ---- polaroids apiladas ---- */
.hero-polaroids {
    position: relative;
    z-index: 1;
    height: 340px;
    justify-self: center;
    width: 100%;
    max-width: 360px;
}
.polaroid {
    position: absolute;
    background: #fff;
    padding: 14px 14px 40px;
    border-radius: 4px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.28);
    width: 220px;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.polaroid:hover { transform: translateY(-6px) rotate(0deg) !important; box-shadow: 0 24px 50px rgba(0,0,0,0.32); }
.polaroid-a { top: 0; left: 0; transform: rotate(-7deg); z-index: 2; }
.polaroid-b { bottom: 0; right: 0; transform: rotate(6deg); z-index: 1; }
.polaroid-foto {
    aspect-ratio: 1;
    display: flex; align-items: center; justify-content: center;
    font-size: 40px;
    color: var(--pink);
}
.polaroid-caption {
    position: absolute;
    left: 14px; right: 14px; bottom: 10px;
    font-family: 'Caveat', cursive;
    font-size: 17px;
    font-weight: 600;
    color: var(--ink);
    text-align: center;
}
.hero-pin {
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%) rotate(-6deg);
    z-index: 3;
    width: 34px; height: 34px;
    border-radius: 50%;
    background: var(--yellow);
    color: var(--pink-deep);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.25);
}

/* borde inferior de papel arrancado, transición al fondo crema */
.hero-borde {
    position: absolute;
    left: 0; right: 0; bottom: -1px;
    height: 22px;
    z-index: 2;
    background:
        linear-gradient(135deg, var(--bg) 25%, transparent 25%) -11px 0 / 22px 22px repeat-x,
        linear-gradient(225deg, var(--bg) 25%, transparent 25%) -11px 0 / 22px 22px repeat-x;
}

/* ===================== */
/* CATEGORÍAS — pulsera de dijes */
/* ===================== */
/* La idea: en vez de una grilla de íconos genérica, las categorías cuelgan
   como los dijes de una pulsera real — a distintas alturas, de una cadena
   fina, con un balanceo al tocarlas. "Ofertas" no es un dije redondo sino
   el cartelito de precio que se cuelga aparte, como en una pulsera real. */
.categorias { padding: 70px 6vw 26px; }
.categorias-etiqueta {
    display: block;
    text-align: center;
    font-family: 'Caveat', cursive;
    font-size: 22px;
    font-weight: 600;
    color: var(--pink-dark);
    margin-bottom: 6px;
    transform: rotate(-1.2deg);
}

.categorias-track {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px 32px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 30px 20px 26px;
}

/* la cadena: una tira de eslabones dorados que atraviesa toda la fila */
.categorias-track::before {
    content: '';
    position: absolute;
    top: 6px; left: 4%; right: 4%;
    height: 7px;
    border-radius: var(--radius-pill);
    background: repeating-linear-gradient(
        90deg,
        var(--yellow-dark) 0px, var(--yellow-dark) 11px,
        transparent 11px, transparent 15px
    );
    opacity: 0.65;
}

.charm-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 84px;
    flex: 0 0 auto;
}

/* ritmo ondulado: cada dije cuelga a una altura distinta, como en una
   pulsera real donde no todos los dijes son del mismo largo */
.charm-item:nth-child(4n+2) { margin-top: 13px; }
.charm-item:nth-child(4n+3) { margin-top: 4px; }
.charm-item:nth-child(4n)   { margin-top: 17px; }

.charm-eslabon {
    width: 7px;
    height: 16px;
    border-radius: var(--radius-pill);
    background: linear-gradient(180deg, var(--yellow-dark), var(--yellow));
    box-shadow: 0 1px 2px rgba(124,15,64,0.25);
}

.charm-medalla {
    width: 58px;
    height: 58px;
    flex-shrink: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 2px solid var(--yellow-dark);
    color: var(--pink-dark);
    font-size: 19px;
    box-shadow: 0 8px 16px rgba(124,15,64,0.18);
    transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
    transform-origin: top center;
}

/* el balanceo: un solo gesto, disparado por la interacción (hover en
   desktop, clase agregada por JS al tocar en mobile) — no es un loop */
.charm-item:hover .charm-medalla,
.charm-item.balanceo .charm-medalla {
    animation: colgarSwing 0.7s ease-in-out;
}
@keyframes colgarSwing {
    0%   { transform: rotate(0deg); }
    25%  { transform: rotate(11deg); }
    55%  { transform: rotate(-8deg); }
    80%  { transform: rotate(3deg); }
    100% { transform: rotate(0deg); }
}

.charm-nombre {
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
    color: var(--ink);
}

/* estado activo: el dije "puesto" queda resaltado */
.charm-item.activa .charm-medalla {
    background: var(--pink-dark);
    color: #fff;
    border-color: var(--pink);
    box-shadow: 0 10px 20px rgba(124,15,64,0.3), 0 0 0 3px var(--bg-panel);
}
.charm-item.activa .charm-nombre { color: var(--pink-dark); }

/* Ofertas: cartelito de precio en vez de dije redondo */
.charm-item.es-oferta .charm-medalla {
    width: 58px;
    height: 50px;
    border-radius: 8px 8px 8px 26px;
    background: var(--yellow);
    border-color: var(--pink-dark);
    color: var(--pink-deep);
}
.charm-item.es-oferta.activa .charm-medalla,
.charm-item.es-oferta:hover .charm-medalla {
    background: var(--yellow-dark);
}

/* ===================== */
/* SECCIÓN TÍTULO         */
/* ===================== */
.seccion-titulo { text-align: center; max-width: 1400px; margin: 0 auto; padding: 74px 24px 6px; }
.seccion-titulo .eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 3px; color: var(--pink-dark); }
.seccion-titulo h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 34px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-top: 10px;
}
.seccion-titulo .divisor { width: 50px; height: 2px; background: var(--pink); margin: 18px auto 0; border-radius: 2px; }
.seccion-nota {
    display: block;
    font-family: 'Caveat', cursive;
    font-size: 17px;
    font-weight: 600;
    color: var(--ink-soft);
    margin-top: 8px;
}

/* ===================== */
/* FILTROS                */
/* ===================== */
.filtros { max-width: 1400px; margin: 0 auto; padding: 0 24px; display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
.filtro-chip {
    padding: 9px 20px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--line);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.6px;
    color: var(--ink-soft);
    background: #fff;
    transition: 0.25s var(--ease);
}
.filtro-chip:hover { border-color: var(--pink); color: var(--pink-dark); }
.filtro-chip.activo { background: var(--pink); border-color: var(--pink); color: #fff; }

/* ===================== */
/* GRID DE PRODUCTOS      */
/* ===================== */
.productos-wrap { max-width: 1400px; margin: 0 auto; padding: 40px 24px 20px; }
.productos-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }

.producto-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
    display: flex;
    flex-direction: column;
}
.producto-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-hover); }

.producto-media { position: relative; aspect-ratio: 1; overflow: hidden; background: var(--bg-panel); }

.producto-media-imgs { position: relative; width: 100%; height: 100%; }
.producto-media-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    z-index: 1;
    transition: opacity 0.4s var(--ease), transform 0.6s var(--ease);
}
.producto-media-img.activa { opacity: 1; z-index: 2; }
.producto-card:hover .producto-media-img.activa { transform: scale(1.08); }

.producto-carrusel-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
    z-index: 3;
}
.producto-carrusel-dots button {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: rgba(255,255,255,0.65);
    box-shadow: 0 0 0 1px rgba(43,22,32,0.15);
    transition: 0.25s var(--ease);
}
.producto-carrusel-dots button.activo { background: #fff; width: 14px; border-radius: 3px; }

.producto-carrusel-flecha {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 26px; height: 26px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    color: var(--ink);
    display: flex; align-items: center; justify-content: center;
    font-size: 11px;
    opacity: 0;
    transition: opacity 0.25s var(--ease), background 0.25s, color 0.25s;
}
.producto-card:hover .producto-carrusel-flecha { opacity: 1; }
.producto-carrusel-flecha:hover { background: var(--pink); color: #fff; }
.producto-carrusel-flecha.prev { left: 8px; }
.producto-carrusel-flecha.next { right: 8px; }

@media (hover: none) {
    .producto-carrusel-flecha { opacity: 1; }
}

.producto-badge {
    position: absolute; top: 12px; left: 12px;
    background: var(--yellow);
    color: var(--pink-deep);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.3px;
    padding: 5px 10px;
    border-radius: var(--radius-md);
    z-index: 4;
}

.producto-info { padding: 16px 16px 4px; }
.producto-info .cat { font-size: 9.5px; letter-spacing: 1.4px; color: var(--ink-soft); text-transform: uppercase; }
.producto-info h3 { font-family: 'Cormorant Garamond', serif; font-size: 17px; font-weight: 700; margin-top: 4px; color: var(--ink); }
.precio-fila { display: flex; align-items: baseline; gap: 8px; margin-top: 8px; }
.precio { font-size: 16px; font-weight: 800; color: var(--pink-dark); }
.precio-antes { font-size: 11.5px; color: #c0a4b2; text-decoration: line-through; }

.btn-agregar {
    margin: 12px 16px 16px;
    padding: 11px;
    border-radius: var(--radius-md);
    background: transparent;
    border: 1.3px solid var(--pink);
    color: var(--pink-dark);
    font-weight: 700;
    font-size: 10.8px;
    letter-spacing: 0.8px;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    transition: 0.3s var(--ease);
}
.btn-agregar:hover { background: var(--pink); color: #fff; }
.btn-agregar.agregado { background: var(--pink-dark); border-color: var(--pink-dark); color: #fff; }

.grid-vacio { grid-column: 1 / -1; text-align: center; padding: 60px 20px; color: var(--ink-soft); }

/* ===================== */
/* BANNER OFERTA          */
/* ===================== */
.oferta-banner { max-width: 1400px; margin: 10px auto 90px; padding: 0 24px; }
.oferta-banner-inner {
    position: relative;
    background: linear-gradient(120deg, var(--pink) 0%, var(--pink-dark) 100%);
    border-radius: var(--radius-lg);
    padding: 50px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    overflow: hidden;
}
.oferta-cinta {
    position: absolute;
    top: 18px; left: 26px;
    font-size: 22px;
    color: rgba(252,226,107,0.55);
    transform: rotate(-14deg);
}
.oferta-banner-texto span { font-size: 11px; letter-spacing: 2px; font-weight: 700; color: var(--yellow); }
.oferta-banner-texto h3 { font-family: 'Cormorant Garamond', serif; font-size: 30px; font-weight: 700; margin: 10px 0 8px; color: #fff; }
.oferta-banner-texto p { font-size: 13.5px; color: #fbdcea; max-width: 420px; }

/* ===================== */
/* CONTACTO               */
/* ===================== */
.contacto { max-width: 1400px; margin: 0 auto; padding: 90px 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contacto-info .eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 3px; color: var(--pink-dark); }
.contacto-info h3 { font-family: 'Cormorant Garamond', serif; font-size: 30px; font-weight: 700; margin: 10px 0 14px; }
.contacto-info p { color: var(--ink-soft); line-height: 1.8; margin-bottom: 26px; max-width: 380px; font-size: 13.5px; }
.contacto-dato { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.contacto-dato .icono { width: 40px; height: 40px; border-radius: 50%; background: var(--bg-panel); color: var(--pink-dark); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contacto-dato strong { display: block; font-size: 13px; }
.contacto-dato span { font-size: 12px; color: var(--ink-soft); }

.form-contacto { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow-card); display: grid; gap: 14px; }
.postal-clip {
    position: absolute;
    top: -16px; left: 34px;
    font-size: 26px;
    color: var(--pink-dark);
    transform: rotate(-25deg);
    filter: drop-shadow(0 4px 6px rgba(124,15,64,0.25));
}
.form-contacto input, .form-contacto select, .form-contacto textarea {
    width: 100%; padding: 13px 16px; border-radius: var(--radius-md);
    border: 1px solid var(--line); background: var(--bg);
    font-family: inherit; font-size: 13px; color: var(--ink); outline: none;
    transition: border-color 0.25s, box-shadow 0.25s;
}
.form-contacto input:focus, .form-contacto select:focus, .form-contacto textarea:focus { border-color: var(--pink); box-shadow: 0 0 0 3px var(--bg-panel); }
.form-contacto textarea { min-height: 100px; resize: vertical; }
.form-contacto button { background: var(--pink); color: #fff; padding: 14px; border-radius: var(--radius-pill); font-weight: 700; font-size: 12px; letter-spacing: 0.8px; transition: background 0.25s, transform 0.25s var(--ease); }
.form-contacto button:hover { background: var(--pink-dark); transform: translateY(-2px); }

/* ===================== */
/* FOOTER                 */
/* ===================== */
.footer { background: var(--pink-deep); color: #f3d2e2; padding: 70px 24px 30px; }
.footer-track { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-marca { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.footer-marca img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.footer-marca .marca-texto { font-size: 22px; color: #fff; }
.footer-marca .marca-texto em { color: var(--yellow); }
.footer-col-marca p { font-size: 13px; color: #ecb9d3; max-width: 260px; line-height: 1.7; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.09); display: flex; align-items: center; justify-content: center; transition: 0.25s; }
.footer-social a:hover { background: var(--yellow); color: var(--pink-deep); transform: translateY(-3px); }
.footer-col h4 { font-size: 11.5px; letter-spacing: 1.4px; margin-bottom: 18px; color: #fff; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul li a { font-size: 13px; color: #ecb9d3; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--yellow); }
.footer-bottom { max-width: 1400px; margin: 0 auto; padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 11.5px; color: #c084a4; }
.footer-firma {
    font-family: 'Caveat', cursive;
    font-size: 17px;
    font-weight: 600;
    color: var(--yellow);
}
.footer-firma i { color: var(--pink); margin: 0 2px; }

/* ===================== */
/* MODAL CARRITO          */
/* ===================== */
.modal-carrito { display: none; position: fixed; inset: 0; z-index: 1000; background: rgba(43,22,32,0.5); backdrop-filter: blur(4px); align-items: center; justify-content: flex-end; }
.modal-carrito.activo { display: flex; }
.modal-carrito-panel { width: 100%; max-width: 420px; height: 100%; background: #fff; display: flex; flex-direction: column; animation: entrarPanel 0.4s var(--ease); box-shadow: -20px 0 50px rgba(0,0,0,0.2); }
@keyframes entrarPanel { from { transform: translateX(100%); } to { transform: translateX(0); } }

.modal-carrito-header { background: var(--pink); color: #fff; padding: 24px 26px; display: flex; justify-content: space-between; align-items: center; }
.modal-carrito-header h2 { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 700; display: flex; align-items: center; gap: 10px; }
.cerrar-modal { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.2); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 18px; transition: 0.25s; }
.cerrar-modal:hover { background: rgba(255,255,255,0.35); transform: rotate(90deg); }

#carritoItems { flex: 1; overflow-y: auto; padding: 20px; }
.carrito-vacio { text-align: center; padding: 60px 20px; color: var(--ink-soft); }
.carrito-vacio i { font-size: 32px; color: var(--pink); margin-bottom: 14px; display: block; }

.carrito-item { display: flex; gap: 12px; padding: 14px; border: 1px solid var(--line); border-radius: var(--radius-md); margin-bottom: 12px; align-items: center; }
.carrito-item img { width: 56px; height: 56px; border-radius: var(--radius-md); object-fit: cover; background: var(--bg-panel); flex-shrink: 0; }
.carrito-item-info { flex: 1; }
.carrito-item-nombre { font-size: 13px; font-weight: 600; margin-bottom: 4px; }
.carrito-item-precio { font-size: 12px; color: var(--pink-dark); font-weight: 700; }
.carrito-item-cantidad { display: flex; align-items: center; gap: 8px; background: var(--bg); border-radius: var(--radius-pill); padding: 5px 8px; margin-top: 6px; width: fit-content; }
.btn-cantidad { width: 20px; height: 20px; display: flex; align-items: center; justify-content: center; color: var(--pink-dark); font-weight: 700; border-radius: 50%; }
.btn-cantidad:hover { background: var(--bg-panel); }
.carrito-cantidad-span { font-size: 12px; font-weight: 700; min-width: 16px; text-align: center; }
.btn-eliminar-item { color: #c98a9c; font-size: 15px; padding: 6px; }
.btn-eliminar-item:hover { color: var(--pink); }

#carritoTotalContainer { border-top: 1px solid var(--line); padding: 20px; }
.carrito-total { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 16px; }
.carrito-total h3 { font-size: 13px; color: var(--ink-soft); }
.carrito-total-precio { font-size: 22px; font-weight: 800; color: var(--pink-dark); }
.btn-comprar { width: 100%; background: var(--pink); color: #fff; padding: 15px; border-radius: var(--radius-pill); font-weight: 700; font-size: 12.5px; letter-spacing: 0.5px; display: flex; align-items: center; justify-content: center; gap: 10px; transition: 0.25s var(--ease); margin-bottom: 10px; }
.btn-comprar:hover { background: var(--pink-dark); transform: translateY(-2px); }
.btn-seguir { width: 100%; text-align: center; padding: 12px; color: var(--ink-soft); font-size: 12px; font-weight: 600; }
.btn-seguir:hover { color: var(--pink-dark); }

/* ===================== */
/* SCROLL REVEAL          */
/* ===================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.en-vista { opacity: 1; transform: translateY(0); }

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
    outline: 2px solid var(--pink-dark);
    outline-offset: 3px;
    border-radius: 4px;
}

/* ===================== */
/* RESPONSIVE             */
/* ===================== */
@media (max-width: 1200px) {
    .productos-grid { grid-template-columns: repeat(3, 1fr); }
    .hero-copy h1 { font-size: 46px; }
    .hero-copy .script { font-size: 38px; }
}

@media (max-width: 980px) {
    .nav-principal { display: none; }
    .header-track { grid-template-columns: auto 1fr auto; gap: 14px; }
    .header-der { gap: 14px; }
    .marca-texto { font-size: 22px; }
    .hero { padding: 60px 24px 70px; }
    .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 54px; }
    .hero-copy { text-align: center; }
    .hero-nota { margin-left: auto; margin-right: auto; }
    .hero-botones { justify-content: center; }
    .hero-polaroids { justify-self: center; height: 300px; max-width: 300px; }
    .contacto { grid-template-columns: 1fr; }
    .footer-track { grid-template-columns: 1fr 1fr; }
    .oferta-banner-inner { gap: 20px; }
}

@media (max-width: 640px) {
    .header-track { padding: 12px 18px; grid-template-columns: auto 1fr auto; }
    .header-izq { gap: 10px; }
    .nav-principal { display: none; }
    .header-der { justify-content: flex-end; gap: 10px; }
    .marca-texto { font-size: 19px; }
    .marca-logo { width: 34px; height: 34px; }
    .marca-sub { font-size: 7.5px !important; }
    .hero { padding: 44px 16px 56px; }
    .hero-copy h1 { font-size: 32px; }
    .hero-copy .script { font-size: 28px; }
    .hero-nota { font-size: 13px; margin: 14px 0 20px; }
    .hero-eyebrow { font-size: 16px; margin-bottom: 10px; }
    .btn-pill, .btn-pill-outline { padding: 12px 22px; font-size: 10px; }
    .btn-nota { font-size: 17px; }
    .hero-polaroids { height: 220px; max-width: 220px; }
    .polaroid { width: 150px; padding: 10px 10px 28px; }
    .polaroid-caption { font-size: 14px; }
    .doodle { font-size: 20px !important; }
    .doodle-4 { font-size: 22px !important; }
    .categorias { padding: 44px 0 10px; }
    .categorias-etiqueta { padding: 0 20px; }
    .categorias-track {
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: visible;
        scroll-snap-type: x proximity;
        justify-content: flex-start;
        gap: 22px;
        padding: 26px 20px 20px;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    .categorias-track::-webkit-scrollbar { display: none; }
    .categorias-track::before { left: 20px; right: 20px; }
    .charm-item { scroll-snap-align: start; width: 68px; }
    .charm-medalla { width: 48px; height: 48px; font-size: 16px; }
    .charm-item.es-oferta .charm-medalla { height: 42px; }
    .charm-nombre { font-size: 13px; }
    .productos-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .oferta-banner-inner { flex-direction: column; text-align: center; padding: 32px 22px; }
    .footer-track { grid-template-columns: 1fr; }
    .contacto { padding: 60px 18px; }
    .form-contacto { padding: 24px; }
    .form-contacto button { width: 100%; }
    .btn-seguir { width: 100%; }
    .modal-carrito-panel { max-width: 100%; }
}

@media (max-width: 420px) {
    .marca-texto { font-size: 17px; }
    .hero-copy h1 { font-size: 26px; }
    .hero-copy .script { font-size: 22px; }
    .productos-grid { grid-template-columns: 1fr; gap: 14px; }
    .filtros { gap: 8px; justify-content: flex-start; overflow-x: auto; padding-bottom: 10px; }
    .filtro-chip { padding: 8px 12px; font-size: 11px; }
    .seccion-titulo { padding: 56px 16px 6px; }
    .seccion-titulo h2 { font-size: 26px; }
    .footer-bottom { flex-direction: column; align-items: center; gap: 10px; }
}