/* =====================================================================
   MIEL Y CANELA — Sistema de diseño
   Paleta corporativa (azul #2596BE + blanco + gris claro)
   ===================================================================== */

:root {
  /* Color — paleta corporativa de la clienta
     · Azul corporativo #2596BE → botones, enlaces, iconos, acentos, títulos
     · Blanco puro #FFFFFF → fondo principal
     · Gris muy claro #F5F5F5 → tarjetas, formularios, bloques secundarios   */
  --cream: #ffffff;        /* fondo claro / texto claro sobre bandas oscuras */
  --cream-2: #e1edf3;      /* placeholders e hovers suaves (tinte azul) */
  --paper: #eef5f9;        /* bloques secundarios (blanco azulado, vivo pero suave) */
  --ink: #15384a;          /* títulos y texto fuerte (azul muy oscuro) */
  --ink-soft: #41606c;     /* texto de cuerpo */
  --muted: #7b929b;        /* texto atenuado */
  --honey: #2596be;        /* azul corporativo (acento principal) */
  --honey-deep: #1b7a9c;   /* azul para enlaces/hover sobre claro */
  --blue-bright: #3bb4dc;  /* azul claro para gradientes y brillos */
  --cinnamon: #1d7497;     /* azul medio (badges, estadísticas) */
  --cinnamon-deep: #0f3b4d;/* azul muy oscuro para bandas (preloader, CTA, footer) */
  --line: #d7e4ea;         /* líneas y bordes sobre claro */
  --white: #ffffff;
  --ok: #2596be;
  --grad-blue: linear-gradient(135deg, #2596be 0%, #3bb4dc 100%);
  --grad-deep: linear-gradient(150deg, #0f3b4d 0%, #185069 55%, #1f6f8f 100%);

  /* Type */
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", system-ui, -apple-system, sans-serif;

  /* Metrics */
  --maxw: 1320px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 14px;
  --radius-lg: 26px;
  --header-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

/* ---------- Typography ---------- */
.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--honey-deep);
}
h1, h2, h3, h4 { font-weight: 500; line-height: 1.08; letter-spacing: -0.01em; }
.display {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.0;
  letter-spacing: -0.01em;
}
.display em { font-style: italic; color: var(--honey-deep); }

.h-xl { font-family: var(--serif); font-size: clamp(2.6rem, 7vw, 5.4rem); font-weight: 500; line-height: 0.98; }
.h-lg { font-family: var(--serif); font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight: 500; }
.h-md { font-family: var(--serif); font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 500; }
.lead { font-size: clamp(1.02rem, 1.4vw, 1.18rem); color: var(--ink-soft); max-width: 56ch; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(72px, 11vw, 150px); position: relative; }
.section--tight { padding-block: clamp(48px, 7vw, 96px); }
.center { text-align: center; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 80px); align-items: center; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--ink);
  --fg: var(--paper);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.95em 1.7em;
  background: var(--bg);
  color: var(--fg);
  border-radius: 100px;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease), color 0.4s var(--ease);
  will-change: transform;
}
.btn span { position: relative; z-index: 2; }
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--honey);
  transform: translateY(101%);
  transition: transform 0.5s var(--ease);
  z-index: 1;
}
.btn:hover::after { transform: translateY(0); }
.btn:hover { color: #fff; }
.btn--honey { --bg: var(--honey); --fg: #ffffff; background: var(--grad-blue); box-shadow: 0 10px 24px -10px rgba(37,150,190,0.7); }
.btn--honey::after { background: var(--ink); }
.btn--honey:hover { color: var(--paper); }
.btn--ghost { --bg: transparent; --fg: var(--ink); box-shadow: inset 0 0 0 1.4px var(--ink); }
.btn--ghost::after { background: var(--ink); }
.btn--ghost:hover { color: var(--paper); }
.btn--sm { padding: 0.7em 1.2em; font-size: 0.78rem; }
.btn--block { display: flex; justify-content: center; width: 100%; }

.link-underline {
  position: relative;
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  padding-bottom: 3px;
}
.link-underline::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1.4px; background: currentColor;
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.45s var(--ease);
}
.link-underline:hover::after { transform: scaleX(1); transform-origin: left; }

/* ---------- Custom cursor ---------- */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0;
  border-radius: 50%; pointer-events: none; z-index: 9999;
  mix-blend-mode: difference;
}
.cursor-dot { width: 7px; height: 7px; background: #fff; transform: translate(-50%, -50%); }
.cursor-ring {
  width: 42px; height: 42px;
  border: 1.4px solid #fff;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease), height 0.3s var(--ease), background 0.3s var(--ease);
}
.cursor-ring.is-hover { width: 70px; height: 70px; background: rgba(255,255,255,0.12); }
.cursor-ring.is-hover::after {
  content: "VER"; font-size: 0.6rem; letter-spacing: 0.15em; color: #fff;
  display: grid; place-items: center; width: 100%; height: 100%; font-weight: 700;
}
body.using-cursor { cursor: none; }
body.using-cursor a, body.using-cursor button { cursor: none; }
@media (max-width: 1024px), (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ---------- Preloader ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--grad-deep);
  display: grid; place-items: center;
  color: var(--cream);
}
.preloader__inner { text-align: center; overflow: hidden; }
.preloader__logo {
  font-family: var(--serif); font-size: clamp(2rem, 6vw, 3.4rem);
  letter-spacing: 0.02em; line-height: 1;
}
.preloader__logo em { font-style: italic; color: var(--honey); }
.preloader__count {
  margin-top: 1rem; font-size: 0.8rem; letter-spacing: 0.3em;
  font-weight: 600; color: rgba(246,239,227,0.6);
}
.preloader__bar { margin-top: 1.2rem; height: 1.5px; width: min(280px, 60vw); background: rgba(246,239,227,0.18); overflow: hidden; }
.preloader__bar span { display: block; height: 100%; width: 0; background: var(--honey); }

/* ---------- Header ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: transform 0.5s var(--ease), background 0.4s var(--ease), backdrop-filter 0.4s;
}
.header.is-hidden { transform: translateY(-105%); }
.header.is-stuck {
  background: rgba(255,255,255,0.88);
  backdrop-filter: saturate(160%) blur(14px);
  box-shadow: 0 1px 0 var(--line);
}

/* Header CLARO sobre hero oscuro (index): texto blanco hasta hacer scroll */
.header--light .brand,
.header--light .nav a,
.header--light .icon-btn { color: #ffffff; }
.header--light .brand em { color: var(--blue-bright); }
.header--light .brand small { color: rgba(255,255,255,0.72); }
.header--light .nav a::after { background: #ffffff; }
.header--light .burger span { background: #ffffff; }
.header--light .icon-btn:hover { background: rgba(255,255,255,0.16); }
.header--light:not(.is-stuck) .nav a,
.header--light:not(.is-stuck) .icon-btn { text-shadow: 0 1px 10px rgba(8,30,40,0.45); }
.header--light:not(.is-stuck) .brand__img--white { filter: drop-shadow(0 2px 8px rgba(8,30,40,0.45)); }
.header--light .cart-count { background: var(--grad-blue); color: #fff; }
/* al hacer scroll el fondo se vuelve claro → texto oscuro de nuevo */
.header--light.is-stuck .brand,
.header--light.is-stuck .nav a,
.header--light.is-stuck .icon-btn { color: var(--ink); }
.header--light.is-stuck .brand em { color: var(--honey-deep); }
.header--light.is-stuck .brand small { color: var(--muted); }
.header--light.is-stuck .nav a::after { background: var(--honey-deep); }
.header--light.is-stuck .burger span { background: var(--ink); }
.header--light.is-stuck .icon-btn:hover { background: var(--cream-2); }
.header__row { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.brand { display: flex; align-items: baseline; gap: 0.45rem; font-family: var(--serif); font-size: 1.5rem; letter-spacing: 0.01em; line-height: 1; }
.brand b { font-weight: 500; }
.brand em { font-style: italic; color: var(--honey-deep); font-size: 1.05em; }
.brand small { font-family: var(--sans); font-size: 0.5rem; letter-spacing: 0.34em; text-transform: uppercase; color: var(--muted); font-weight: 700; align-self: center; }

/* Logo de imagen real (azul para fondo claro, blanco para fondo oscuro) */
.brand--logo { display: inline-flex; align-items: center; gap: 0; }
.brand__img { height: 42px; width: auto; display: block; }
.brand__img--white { display: none; }
.footer .brand--logo .brand__img { height: 50px; }
.footer .brand--logo .brand__img--color { display: none; }
.footer .brand--logo .brand__img--white { display: block; }
/* sobre el hero oscuro (header--light sin scroll): versión blanca */
.header--light:not(.is-stuck) .brand__img--color { display: none; }
.header--light:not(.is-stuck) .brand__img--white { display: block; }

.nav { display: flex; align-items: center; gap: 2.2rem; }
.nav a { font-size: 0.84rem; font-weight: 600; letter-spacing: 0.02em; position: relative; padding: 0.3em 0; }
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1.5px; width: 100%;
  background: var(--honey-deep); transform: scaleX(0); transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); transform-origin: left; }
.header__actions { display: flex; align-items: center; gap: 1.1rem; }
.icon-btn { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; transition: background 0.3s; position: relative; }
.icon-btn:hover { background: var(--cream-2); }
.icon-btn svg { width: 21px; height: 21px; }
.cart-count {
  position: absolute; top: 4px; right: 2px; min-width: 17px; height: 17px; padding: 0 4px;
  background: var(--honey); color: #ffffff; border-radius: 9px;
  font-size: 0.62rem; font-weight: 800; display: grid; place-items: center; line-height: 1;
  transform: scale(0); transition: transform 0.35s var(--ease);
}
.cart-count.show { transform: scale(1); }
.burger { display: none; width: 42px; height: 42px; border-radius: 50%; }
.burger span { display: block; width: 19px; height: 1.6px; background: var(--ink); margin: 4px auto; transition: 0.35s var(--ease); }
.burger.open span:nth-child(1) { transform: translateY(5.6px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-5.6px) rotate(-45deg); }

@media (max-width: 880px) {
  .nav {
    position: fixed; inset: 0; flex-direction: column; justify-content: center; gap: 1.4rem;
    background: var(--cinnamon-deep); color: var(--cream);
    transform: translateY(-100%); transition: transform 0.6s var(--ease);
    z-index: 199;
  }
  .nav.open { transform: translateY(0); }
  .nav a { font-family: var(--serif); font-size: 1.8rem; }
  .nav a::after { background: var(--honey); }
  .burger { display: block; z-index: 201; }
  .burger.open span { background: var(--cream); }
}

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; padding-bottom: clamp(40px, 6vw, 90px); padding-top: calc(var(--header-h) + 24px); overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 120%; object-fit: cover; will-change: transform; }
.hero__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,38,50,0.5) 0%, rgba(10,38,50,0.12) 32%, rgba(10,38,50,0.78) 100%); }
.hero__inner { position: relative; z-index: 2; color: var(--cream); width: 100%; }
.hero__eyebrow { color: var(--honey); }
.hero h1 { font-family: var(--serif); font-size: clamp(3rem, 9vw, 7.4rem); font-weight: 500; line-height: 0.94; margin: 0.4rem 0 1.2rem; }
.hero h1 em { font-style: italic; color: var(--honey); }
.hero .lead { color: #0a2a3a; }
.hero__cta { display: flex; gap: 1rem; margin-top: 1.8rem; flex-wrap: wrap; }
.hero__cta .btn--ghost { box-shadow: inset 0 0 0 1.6px var(--ink); color: var(--ink); }
.hero__scroll { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 3; color: var(--cream); font-size: 0.66rem; letter-spacing: 0.3em; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 8px; opacity: 0.8; }
.hero__scroll i { display: block; width: 1px; height: 40px; background: var(--cream); animation: scrolly 1.8s infinite; transform-origin: top; }
@keyframes scrolly { 0% { transform: scaleY(0); transform-origin: top; } 45% { transform: scaleY(1); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* reveal text */
.reveal-line { display: block; overflow: hidden; }
.reveal-line > * { display: block; }

/* ---------- Marquee ---------- */
.marquee {
  background: var(--grad-deep); color: var(--cream);
  padding: 1.1rem 0; overflow: hidden; white-space: nowrap;
}
.marquee--honey { background: var(--grad-blue); color: #ffffff; }
.marquee__track { display: inline-flex; will-change: transform; }
.marquee__track span { font-family: var(--serif); font-size: clamp(1.4rem, 3vw, 2.2rem); font-style: italic; display: inline-flex; align-items: center; gap: 3rem; margin-right: 3rem; }
.marquee__track span::after { content: "✦"; font-size: 0.7em; font-style: normal; color: var(--honey); }
.marquee--honey .marquee__track span::after { color: #ffffff; }

/* ---------- Product card ---------- */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.6vw, 40px) clamp(16px, 2vw, 32px); }
@media (max-width: 860px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .product-grid { grid-template-columns: 1fr; } }

.card { position: relative; }
.card__media {
  position: relative; aspect-ratio: 3 / 4; border-radius: var(--radius);
  overflow: hidden; background: var(--cream-2); margin-bottom: 1rem;
}
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); will-change: transform; }
.card:hover .card__media img { transform: scale(1.07); }
.card__badge {
  position: absolute; top: 12px; left: 12px; z-index: 3;
  background: var(--paper); color: var(--cinnamon); font-size: 0.64rem; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase; padding: 0.45em 0.8em; border-radius: 100px;
}
.card__badge--honey { background: var(--honey); color: #ffffff; }
.card__quick {
  position: absolute; left: 12px; right: 12px; bottom: 12px; z-index: 3;
  transform: translateY(130%); transition: transform 0.5s var(--ease); opacity: 0;
}
.card:hover .card__quick { transform: translateY(0); opacity: 1; }
.card__fav {
  position: absolute; top: 10px; right: 10px; z-index: 3;
  width: 38px; height: 38px; border-radius: 50%; background: rgba(251,247,239,0.85);
  backdrop-filter: blur(6px); display: grid; place-items: center; transition: 0.3s var(--ease);
}
.card__fav svg { width: 18px; height: 18px; }
.card__fav:hover { background: var(--paper); transform: scale(1.08); }
.card__fav.active svg { fill: var(--honey-deep); stroke: var(--honey-deep); }
.card__cat { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.card__name { font-family: var(--serif); font-size: 1.32rem; margin: 0.15rem 0 0.35rem; line-height: 1.1; }
.card__row { display: flex; align-items: center; justify-content: space-between; }
.card__price { font-weight: 700; font-size: 1.02rem; }
.card__price small { color: var(--muted); font-weight: 600; text-decoration: line-through; margin-right: 6px; font-size: 0.85em; }

/* ---------- Filters ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.filter {
  padding: 0.6em 1.25em; border-radius: 100px; font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.02em; box-shadow: inset 0 0 0 1.4px var(--line); color: var(--ink-soft);
  transition: 0.35s var(--ease);
}
.filter:hover { box-shadow: inset 0 0 0 1.4px var(--honey); }
.filter.active { background: var(--ink); color: var(--paper); box-shadow: none; }

/* ---------- Brand story / split image ---------- */
.figure { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.figure img { width: 100%; height: 100%; object-fit: cover; will-change: transform; }
.figure--tall { aspect-ratio: 4 / 5; }
.figure--wide { aspect-ratio: 16 / 11; }
.stat-row { display: flex; gap: clamp(20px, 4vw, 56px); flex-wrap: wrap; margin-top: 2rem; }
.stat b { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3rem); display: block; line-height: 1; color: var(--cinnamon); }
.stat span { font-size: 0.78rem; letter-spacing: 0.06em; color: var(--muted); text-transform: uppercase; font-weight: 600; }

/* ---------- Editorial collage ---------- */
.collage { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(12px, 1.6vw, 24px); }
.collage .figure:nth-child(1) { grid-column: 1 / 6; aspect-ratio: 3/4; }
.collage .figure:nth-child(2) { grid-column: 6 / 13; aspect-ratio: 16/10; align-self: end; }
.collage .figure:nth-child(3) { grid-column: 1 / 5; aspect-ratio: 1/1; }
.collage .figure:nth-child(4) { grid-column: 5 / 13; aspect-ratio: 16/9; }
@media (max-width: 720px) {
  .collage { grid-template-columns: 1fr 1fr; }
  .collage .figure { grid-column: auto !important; aspect-ratio: 3/4 !important; }
}

/* ---------- Features / values ---------- */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 44px); }
@media (max-width: 760px) { .values { grid-template-columns: 1fr; } }
.value { padding-top: 1.4rem; border-top: 1.5px solid var(--line); }
.value .num { font-family: var(--serif); font-style: italic; color: var(--honey-deep); font-size: 1.1rem; }
.value h3 { font-family: var(--serif); font-size: 1.5rem; margin: 0.5rem 0 0.6rem; }
.value p { color: var(--ink-soft); font-size: 0.96rem; }

/* ---------- Testimonials ---------- */
.quote { max-width: 60ch; margin-inline: auto; text-align: center; }
.quote p { font-family: var(--serif); font-size: clamp(1.5rem, 3.4vw, 2.6rem); line-height: 1.25; font-style: italic; }
.quote cite { display: block; margin-top: 1.6rem; font-style: normal; font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700; color: var(--honey-deep); }

/* ---------- Newsletter / CTA band ---------- */
.cta-band { background: var(--grad-deep); color: var(--cream); border-radius: var(--radius-lg); padding: clamp(40px, 6vw, 84px); text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; width: 60%; height: 160%; top: -30%; right: -10%; background: radial-gradient(circle, rgba(59,180,220,0.28) 0%, transparent 70%); pointer-events: none; z-index: 0; }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { font-family: var(--serif); font-size: clamp(2rem, 5vw, 3.6rem); margin-bottom: 0.6rem; }
.cta-band h2 em { font-style: italic; color: var(--honey); }
.cta-band p { color: rgba(246,239,227,0.78); max-width: 48ch; margin: 0 auto 1.8rem; }
.newsletter { display: flex; gap: 0.6rem; max-width: 460px; margin-inline: auto; flex-wrap: wrap; }
.newsletter input {
  flex: 1; min-width: 200px; padding: 0.95em 1.3em; border-radius: 100px; border: 1.4px solid rgba(255,255,255,0.34);
  background: rgba(255,255,255,0.08); color: #ffffff; -webkit-text-fill-color: #ffffff;
}
.newsletter input::placeholder { color: rgba(255,255,255,0.6); -webkit-text-fill-color: rgba(255,255,255,0.6); }
.newsletter input:focus { outline: none; border-color: var(--honey); }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: var(--cream); padding-top: clamp(56px, 8vw, 96px); }
.footer__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: clamp(28px, 4vw, 56px); padding-bottom: 56px; }
@media (max-width: 760px) { .footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .footer__top { grid-template-columns: 1fr; } }
.footer h4 { font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--honey); margin-bottom: 1.2rem; font-weight: 700; }
.footer__brand .brand { color: var(--cream); font-size: 2rem; }
.footer__brand p { color: rgba(246,239,227,0.6); margin-top: 1rem; max-width: 36ch; font-size: 0.95rem; }
.footer ul li { margin-bottom: 0.7rem; }
.footer ul a { color: rgba(246,239,227,0.78); font-size: 0.94rem; transition: color 0.3s; }
.footer ul a:hover { color: var(--honey); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; padding: 28px 0; border-top: 1px solid rgba(246,239,227,0.12); font-size: 0.8rem; color: rgba(246,239,227,0.5); }
.socials { display: flex; gap: 0.6rem; }
.socials a { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; box-shadow: inset 0 0 0 1px rgba(246,239,227,0.2); transition: 0.3s var(--ease); }
.socials a:hover { background: var(--honey); color: #ffffff; }
.socials svg { width: 18px; height: 18px; }

/* ---------- Cart drawer ---------- */
.overlay { position: fixed; inset: 0; background: rgba(15,40,52,0.5); backdrop-filter: blur(3px); opacity: 0; visibility: hidden; transition: 0.4s var(--ease); z-index: 300; }
.overlay.open { opacity: 1; visibility: visible; }
.drawer {
  position: fixed; top: 0; right: 0; height: 100%; width: min(420px, 92vw);
  background: var(--paper); z-index: 310; transform: translateX(100%);
  transition: transform 0.55s var(--ease); display: flex; flex-direction: column;
  box-shadow: -20px 0 60px rgba(15,40,52,0.18);
}
.drawer.open { transform: translateX(0); }
.drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 22px var(--gutter); border-bottom: 1px solid var(--line); }
.drawer__head h3 { font-family: var(--serif); font-size: 1.5rem; }
.drawer__body { flex: 1; overflow-y: auto; padding: 16px var(--gutter); }
.drawer__empty { text-align: center; color: var(--muted); padding: 40px 0; }
.cart-item { display: grid; grid-template-columns: 64px 1fr auto; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); align-items: center; }
.cart-item img { width: 64px; height: 80px; object-fit: cover; border-radius: 8px; }
.cart-item h5 { font-family: var(--serif); font-size: 1.05rem; line-height: 1.1; }
.cart-item .qty { display: inline-flex; align-items: center; gap: 10px; margin-top: 6px; font-size: 0.85rem; }
.cart-item .qty button { width: 24px; height: 24px; border-radius: 50%; box-shadow: inset 0 0 0 1.2px var(--line); display: grid; place-items: center; font-weight: 700; }
.cart-item .price { font-weight: 700; }
.cart-item .remove { font-size: 0.72rem; color: var(--muted); text-decoration: underline; margin-top: 4px; display: block; }
.drawer__foot { padding: 20px var(--gutter); border-top: 1px solid var(--line); }
.drawer__total { display: flex; justify-content: space-between; font-weight: 700; font-size: 1.1rem; margin-bottom: 1rem; }
.drawer__note { font-size: 0.74rem; color: var(--muted); margin-top: 0.8rem; text-align: center; }

/* ---------- Account drawer (cuenta de usuario) ---------- */
.account-hi { display: flex; align-items: center; gap: 0.9rem; padding-bottom: 1.1rem; border-bottom: 1px solid var(--line); }
.account-avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--grad-blue); color: #fff; display: grid; place-items: center; font-family: var(--serif); font-size: 1.35rem; flex: none; }
.account-hi b { display: block; font-family: var(--serif); font-size: 1.15rem; line-height: 1.1; }
.account-hi .muted { font-size: 0.8rem; }
.account-tabs { display: flex; gap: 0.4rem; margin: 1.1rem 0 1.2rem; flex-wrap: wrap; }
.account-tabs button { padding: 0.5em 0.9em; border-radius: 100px; font-size: 0.78rem; font-weight: 700; box-shadow: inset 0 0 0 1.4px var(--line); color: var(--ink-soft); transition: 0.3s var(--ease); }
.account-tabs button.active { background: var(--ink); color: #fff; box-shadow: none; }
.account-lead { color: var(--ink-soft); margin-bottom: 1.2rem; font-size: 0.95rem; }
.account-auth .field { margin-bottom: 1rem; }
.account-logout { display: inline-block; margin-top: 1.5rem; font-size: 0.8rem; }
.order { border: 1px solid var(--line); border-radius: var(--radius); padding: 0.9rem 1rem; margin-bottom: 0.9rem; }
.order__head { display: flex; justify-content: space-between; align-items: center; }
.order__head b { font-size: 0.95rem; }
.order__head span { color: var(--muted); font-size: 0.76rem; }
.order__items { display: flex; gap: 6px; margin: 0.7rem 0; flex-wrap: wrap; }
.order__items img { width: 42px; height: 52px; object-fit: cover; border-radius: 6px; background: var(--cream-2); }
.order__foot { display: flex; justify-content: space-between; align-items: center; }
.order__status { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--honey-deep); font-weight: 700; }
.account-favs { display: grid; gap: 0.8rem; }
.account-fav { display: grid; grid-template-columns: 46px 1fr auto; gap: 0.8rem; align-items: center; color: var(--ink); }
.account-fav img { width: 46px; height: 58px; object-fit: cover; border-radius: 6px; background: var(--cream-2); }
.account-fav span { font-size: 0.9rem; line-height: 1.15; }
.account-fav b { font-size: 0.85rem; }
.account-fav:hover span { color: var(--honey-deep); }
.account-data .field { margin-bottom: 1rem; }

/* ---------- Page hero (interior) ---------- */
.page-hero { padding-top: calc(var(--header-h) + clamp(50px, 8vw, 110px)); padding-bottom: clamp(30px, 5vw, 60px); }
.page-hero .eyebrow { margin-bottom: 1rem; }
.page-hero h1 { font-family: var(--serif); font-size: clamp(2.6rem, 7vw, 5.4rem); font-weight: 500; line-height: 0.96; }
.page-hero h1 em { font-style: italic; color: var(--honey-deep); }
.breadcrumb { font-size: 0.78rem; color: var(--muted); letter-spacing: 0.04em; margin-bottom: 1.5rem; }
.breadcrumb a:hover { color: var(--honey-deep); }

/* ---------- Product detail ---------- */
.pdp { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(28px, 5vw, 72px); align-items: start; }
@media (max-width: 900px) { .pdp { grid-template-columns: 1fr; } }
.pdp__gallery { display: grid; grid-template-columns: 1fr; gap: 14px; position: sticky; top: calc(var(--header-h) + 20px); }
.pdp__main { aspect-ratio: 3/4; border-radius: var(--radius-lg); overflow: hidden; background: var(--cream-2); }
.pdp__main img { width: 100%; height: 100%; object-fit: cover; }
.pdp__thumbs { display: flex; gap: 10px; }
.pdp__thumbs button { width: 72px; aspect-ratio: 3/4; border-radius: 10px; overflow: hidden; box-shadow: inset 0 0 0 1.5px transparent; transition: 0.3s; }
.pdp__thumbs button.active { box-shadow: inset 0 0 0 2px var(--honey-deep); }
.pdp__thumbs img { width: 100%; height: 100%; object-fit: cover; }
.pdp__price { font-size: 1.7rem; font-weight: 700; margin: 0.6rem 0 1.2rem; }
.pdp__desc { color: var(--ink-soft); margin-bottom: 1.6rem; }
.pdp__opts { margin-bottom: 1.6rem; }
.pdp__opts h5 { font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); font-weight: 700; margin-bottom: 0.6rem; }
.chips { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.chip { padding: 0.55em 1.1em; border-radius: 100px; box-shadow: inset 0 0 0 1.4px var(--line); font-size: 0.82rem; font-weight: 600; transition: 0.3s; }
.chip.active, .chip:hover { box-shadow: inset 0 0 0 1.6px var(--ink); }
.pdp__buy { display: flex; gap: 0.8rem; align-items: stretch; margin-bottom: 1.8rem; flex-wrap: wrap; }
.stepper { display: inline-flex; align-items: center; box-shadow: inset 0 0 0 1.4px var(--line); border-radius: 100px; }
.stepper button { width: 44px; height: 100%; font-size: 1.1rem; font-weight: 600; }
.stepper input { width: 38px; text-align: center; border: none; background: none; font-weight: 700; }
.pdp__meta { border-top: 1px solid var(--line); padding-top: 1.4rem; }
.pdp__meta details { border-bottom: 1px solid var(--line); padding: 1rem 0; }
.pdp__meta summary { cursor: pointer; font-weight: 600; display: flex; justify-content: space-between; list-style: none; }
.pdp__meta summary::-webkit-details-marker { display: none; }
.pdp__meta summary::after { content: "+"; font-size: 1.2rem; color: var(--honey-deep); }
.pdp__meta details[open] summary::after { content: "–"; }
.pdp__meta p, .pdp__meta li { color: var(--ink-soft); font-size: 0.94rem; padding-top: 0.6rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 72px); }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); font-weight: 700; margin-bottom: 0.5rem; }
.field input, .field textarea {
  width: 100%; padding: 0.95em 1.1em; border-radius: var(--radius);
  border: 1.4px solid var(--line); background: #ffffff;
  color: var(--ink); -webkit-text-fill-color: var(--ink); caret-color: var(--honey);
  transition: border 0.3s, box-shadow 0.3s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted); -webkit-text-fill-color: var(--muted); opacity: 1; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--honey); box-shadow: 0 0 0 3px rgba(37,150,190,0.14); }
.info-block { display: flex; gap: 1rem; padding: 1.2rem 0; border-bottom: 1px solid var(--line); }
.info-block .ic { width: 44px; height: 44px; flex: none; border-radius: 50%; background: var(--cream-2); display: grid; place-items: center; }
.info-block .ic svg { width: 20px; height: 20px; }
.info-block h4 { font-family: var(--serif); font-size: 1.2rem; }
.info-block a, .info-block p { color: var(--ink-soft); font-size: 0.95rem; }
.info-block a:hover { color: var(--honey-deep); }

/* ---------- WhatsApp float ---------- */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 150; width: 56px; height: 56px; border-radius: 50%; background: #25d366; display: grid; place-items: center; box-shadow: 0 12px 30px rgba(37,211,102,0.4); transition: transform 0.4s var(--ease); }
.wa-float:hover { transform: scale(1.1) rotate(6deg); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* ---------- Toast ---------- */
.toast { position: fixed; bottom: 24px; left: 50%; transform: translate(-50%, 120%); background: var(--ink); color: var(--cream); padding: 0.9em 1.5em; border-radius: 100px; font-size: 0.86rem; font-weight: 600; z-index: 400; transition: transform 0.5s var(--ease); display: flex; gap: 0.6rem; align-items: center; }
.toast.show { transform: translate(-50%, 0); }
.toast svg { width: 18px; height: 18px; color: var(--honey); }

/* ---------- Utility reveal states (set by JS / no-JS fallback) ---------- */
[data-reveal] { opacity: 1; }
.js [data-reveal] { opacity: 0; }

/* ---------- Barra de progreso de scroll (DrawSVG) ---------- */
.scroll-progress { position: fixed; top: 0; left: 0; width: 100%; height: 3px; z-index: 250; pointer-events: none; }
.scroll-progress line { stroke: var(--honey); stroke-width: 2; }

/* ---------- SplitText (líneas con máscara) ---------- */
.js [data-split] { opacity: 0; }
.split-line { will-change: transform; }

/* ---------- Abeja voladora (MotionPath) + trazo (DrawSVG) en el hero ---------- */
.hero__flight { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; pointer-events: none; }
.hero__bee { position: absolute; top: 0; left: 0; z-index: 4; width: 46px; opacity: 0; pointer-events: none; will-change: transform; }
.hero__bee svg { width: 46px; height: auto; display: block; filter: drop-shadow(0 5px 10px rgba(0,0,0,0.3)); }
.hero__underline { display: block; width: min(340px, 72%); height: auto; margin: 0.1rem 0 0; overflow: visible; }

/* ---------- Confeti físico (Physics2DPlugin) ---------- */
.confetti { position: fixed; top: 0; left: 0; width: 10px; height: 10px; border-radius: 2px; z-index: 500; pointer-events: none; }

.hero__slide { position: absolute; inset: 0; }
.hero__slide img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Hero "glow" (lienzo blanco + glow azul + producto flotante) ---------- */
.hero--glow { display: block; background: #fff; text-align: center; padding: 0; min-height: 100svh; }
.hero__glow { position: absolute; top: 58%; left: 50%; width: min(1100px, 130vw); aspect-ratio: 1; transform: translate(-50%, -50%); z-index: 0; pointer-events: none;
  background: radial-gradient(circle, rgba(59,180,220,0.4) 0%, rgba(37,150,190,0.18) 34%, rgba(37,150,190,0.05) 56%, rgba(255,255,255,0) 70%); }
.hero--glow .hero__inner { position: relative; z-index: 2; color: var(--ink); max-width: 1040px; min-height: 100svh; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: clamp(2px, 0.5vh, 8px); padding-top: calc(var(--header-h) + 0.5vh); padding-bottom: clamp(6px, 1.2vh, 18px); }
.hero--glow .eyebrow { color: var(--honey-deep); }
.hero__big { font-family: var(--sans); font-weight: 800; text-transform: uppercase; letter-spacing: -0.02em; line-height: 0.9; font-size: clamp(2.4rem, 7vw, 5.4rem); color: #0a2a3a; margin: 0.3rem 0 0; }
.hero__big em { font-family: var(--serif); font-weight: 500; text-transform: none; font-style: italic; color: var(--honey); letter-spacing: 0; }
.hero__product { position: relative; z-index: 1; width: min(330px, 64vw); aspect-ratio: 3 / 4; margin: clamp(22px, 3.5vw, 40px) auto; will-change: transform; }
.hero__pslide { position: absolute; inset: 0; border-radius: 26px; overflow: hidden; box-shadow: 0 40px 80px -28px rgba(15,40,52,0.5); }
.hero__pslide img { width: 100%; height: 100%; object-fit: cover; }

/* stack de tarjetas: empieza como una y se despliega en abanico con el scroll.
   Se dimensiona por ALTURA de pantalla (vh) para que todo el hero quepa con el pin. */
.hero__stack { position: relative; flex: 0 0 auto; height: clamp(310px, 50vh, 560px); width: min(780px, 92vw); margin: clamp(20px, 3.5vh, 48px) 0 0; }
.hero__card { position: absolute; top: 50%; left: 50%; height: 100%; width: auto; aspect-ratio: 3 / 4; border-radius: 24px; overflow: hidden; background: var(--cream-2); box-shadow: 0 34px 66px -24px rgba(15,40,52,0.55); will-change: transform; transition: box-shadow 0.4s var(--ease); }
.hero__card:hover { z-index: 30 !important; box-shadow: 0 54px 100px -26px rgba(15,40,52,0.66); }
.hero__card img { width: 100%; height: 100%; object-fit: cover; will-change: transform; }
.hero__lead { color: #0a2a3a; margin: 0 auto; max-width: 56ch; font-size: clamp(1.08rem, 1.5vw, 1.3rem); font-weight: 600; }
/* Texto del hero SIEMPRE visible: opacidad forzada + halo blanco para contraste */
.hero--glow .eyebrow,
.hero--glow .hero__big,
.hero--glow .hero__lead,
.hero--glow .hero__cta { opacity: 1 !important; visibility: visible !important; }
.hero__big { text-shadow: 0 2px 22px rgba(255,255,255,0.92), 0 1px 3px rgba(255,255,255,0.8); }
.hero__lead { text-shadow: 0 1px 14px rgba(255,255,255,0.96), 0 1px 2px rgba(255,255,255,0.85); }
.hero--glow .eyebrow { text-shadow: 0 1px 10px rgba(255,255,255,0.9); }
.hero--glow .hero__cta { justify-content: center; }
.hero--glow .hero__scroll { color: var(--ink); opacity: 0.55; }
.hero--glow .hero__scroll i { background: var(--ink); }
.hero__star { position: absolute; z-index: 1; width: 26px; height: auto; pointer-events: none; will-change: transform; }
.hero__star--1 { top: 12%; left: 9%; color: var(--blue-bright); width: 30px; }
.hero__star--2 { top: 26%; right: 8%; color: var(--honey); width: 22px; }
.hero__star--3 { bottom: 22%; left: 6%; color: var(--honey-deep); width: 26px; }
.hero__star--4 { bottom: 16%; right: 11%; color: var(--blue-bright); width: 34px; }
.hero__star--5 { top: 54%; right: 2%; color: var(--cinnamon); width: 18px; }
@media (max-width: 600px) { .hero__star--1, .hero__star--5 { display: none; } }

/* ---------- Showcase (imágenes solapadas) ---------- */
.showcase__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 84px); align-items: center; }
.showcase__media { position: relative; aspect-ratio: 1 / 1; }
.showcase__fig { position: absolute; border-radius: var(--radius-lg); overflow: hidden; }
.showcase__fig--a { width: 70%; aspect-ratio: 3 / 4; left: 0; top: 0; z-index: 1; }
.showcase__fig--b { width: 56%; aspect-ratio: 3 / 4; right: 0; bottom: 0; z-index: 2; border: 6px solid #fff; box-shadow: -24px 30px 60px -28px rgba(15,40,52,0.5); }
.ticks { list-style: none; margin: 1.5rem 0 2rem; display: grid; gap: 0.8rem; }
.ticks li { position: relative; padding-left: 1.9rem; color: var(--ink-soft); }
.ticks li::before { content: ""; position: absolute; left: 0; top: 0.28em; width: 13px; height: 7px; border-left: 2.2px solid var(--honey); border-bottom: 2.2px solid var(--honey); transform: rotate(-45deg); }
@media (max-width: 860px) {
  .showcase__grid { grid-template-columns: 1fr; }
  .showcase__media { aspect-ratio: 4 / 3; margin-bottom: 1.5rem; max-width: 480px; }
}

/* ---------- Testimonios (carrusel arrastrable) ---------- */
.testi__viewport { overflow: hidden; padding-inline: var(--gutter); cursor: grab; }
.testi__viewport:active { cursor: grabbing; }
.testi__track { display: flex; gap: clamp(16px, 2vw, 28px); width: max-content; padding-block: 0.5rem; will-change: transform; }
.testi__card { flex: none; width: min(380px, 84vw); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(24px, 3vw, 38px); box-shadow: 0 24px 60px -38px rgba(15,40,52,0.5); display: flex; flex-direction: column; }
.testi__stars { color: var(--honey); letter-spacing: 3px; font-size: 0.9rem; margin-bottom: 1rem; }
.testi__card p { font-family: var(--serif); font-size: 1.3rem; line-height: 1.4; font-style: italic; color: var(--ink); }
.testi__card cite { display: block; margin-top: 1.4rem; font-style: normal; font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700; color: var(--honey-deep); }

/* ---------- Decoración parallax (puntos/estrellas que flotan a distinta velocidad) ---------- */
.deco-dot { position: absolute; border-radius: 50%; pointer-events: none; z-index: 0; filter: blur(22px); }
.deco-dot--a { width: 220px; height: 220px; top: 6%; right: 5%; background: radial-gradient(circle, rgba(59,180,220,0.45), rgba(59,180,220,0) 70%); }
.deco-star { position: absolute; pointer-events: none; z-index: 1; width: 26px; will-change: transform; }
.deco-star svg { width: 100%; height: auto; display: block; }
.showcase__media .deco-star { top: -16px; right: 4%; color: var(--blue-bright); width: 30px; }
.deco-star--fb { top: 15%; right: 12%; color: var(--blue-bright); width: 34px; z-index: 2; }

/* ---------- Sección full-bleed ---------- */
.fullbleed { position: relative; min-height: 88vh; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; color: var(--cream); padding-block: clamp(80px, 12vw, 150px); }
.fullbleed__media { position: absolute; inset: 0; z-index: 0; }
.fullbleed__media img { width: 100%; height: 100%; object-fit: cover; }
.fullbleed::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(0deg, rgba(10,38,50,0.78), rgba(10,38,50,0.42)); }
.fullbleed__inner { position: relative; z-index: 2; max-width: 780px; }
.fullbleed__inner .lead { color: rgba(255,255,255,0.86); margin-inline: auto; }
.fullbleed__title { font-family: var(--serif); font-weight: 500; line-height: 0.98; color: #fff; font-size: clamp(2.6rem, 7vw, 5rem); }
.fullbleed__title em { font-style: italic; color: var(--blue-bright); }

/* ---------- Scroll horizontal por estilo (pin + containerAnimation) ---------- */
.horizontal { position: relative; background: var(--paper); }
.horizontal__pin { height: 100vh; display: flex; align-items: center; overflow: hidden; }
.horizontal__track { display: flex; align-items: center; gap: clamp(22px, 3vw, 56px); height: 100%; padding-inline: var(--gutter); width: max-content; will-change: transform; }
.horizontal__intro { flex: none; width: min(420px, 80vw); align-self: center; }
.horizontal__hint { display: inline-block; margin-top: 1.4rem; font-size: 0.7rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.hcard { flex: none; width: min(430px, 76vw); }
.hcard__inner { will-change: transform; }
.hcard__media { aspect-ratio: 4 / 5; border-radius: var(--radius-lg); overflow: hidden; background: var(--cream-2); }
.hcard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.hcard:hover .hcard__media img { transform: scale(1.06); }
.hcard__cap { display: flex; align-items: baseline; gap: 1rem; margin-top: 1.1rem; flex-wrap: wrap; }
.hcard__num { font-family: var(--serif); font-style: italic; color: var(--honey-deep); font-size: 1.1rem; }
.hcard__cap h3 { font-family: var(--serif); font-size: 1.6rem; margin-right: auto; }
@media (max-width: 900px) {
  .horizontal__pin { height: auto; padding-block: clamp(48px, 9vw, 84px); }
  .horizontal__track { transform: none !important; width: auto; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding-bottom: 1rem; }
  .horizontal__intro { width: min(340px, 72vw); }
  .hcard { scroll-snap-align: start; width: min(320px, 72vw); }
}

/* ---------- Lookbook arrastrable (Draggable + Inertia) ---------- */
.lookbook__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 1rem; margin-bottom: clamp(20px, 3vw, 40px); }
.lookbook__hint { font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); font-weight: 700; white-space: nowrap; }
.lookbook__viewport { overflow: hidden; padding-inline: var(--gutter); cursor: grab; }
.lookbook__viewport:active { cursor: grabbing; }
.lookbook__track { display: flex; gap: clamp(14px, 2vw, 30px); width: max-content; will-change: transform; }
.lookbook__item { flex: none; width: clamp(220px, 26vw, 320px); }
.lookbook__item img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; border-radius: var(--radius); background: var(--cream-2); user-select: none; pointer-events: none; }
.lookbook__item figcaption { margin-top: 0.7rem; font-family: var(--serif); font-style: italic; color: var(--ink-soft); font-size: 1.02rem; }

/* ---------- Acento MotionPath en el CTA ---------- */
.cta-blob { position: absolute; left: -8%; bottom: -22%; width: 48%; height: auto; z-index: 0; pointer-events: none; filter: blur(1px); }
.cta-orbit { position: absolute; inset: 8% 5%; width: auto; height: auto; pointer-events: none; z-index: 0; }
.cta-dot { position: absolute; top: 0; left: 0; width: 11px; height: 11px; border-radius: 50%; background: var(--honey); box-shadow: 0 0 18px rgba(37,150,190,0.75); pointer-events: none; }

/* ---------- Flip filtro tienda ---------- */
.card.is-hidden { display: none; }

/* ============================================================
   Integración con WordPress (Hello Elementor y temas en blanco)
   ============================================================ */
body.myc-site .site-header, body.myc-site header.site-header,
body.myc-site .site-footer, body.myc-site footer.site-footer,
body.myc-site .elementor-location-header, body.myc-site .elementor-location-footer { display: none !important; }
/* Ancho completo SOLO en páginas de diseño (inicio/nosotros/contacto) */
body.myc-design .site, body.myc-design #page, body.myc-design #content,
body.myc-design .site-main, body.myc-design main, body.myc-design .page-content,
body.myc-design .entry-content, body.myc-design article, body.myc-design .hentry,
body.myc-design .elementor, body.myc-design .ast-container, body.myc-design .wp-block-post-content {
  max-width: 100% !important; width: auto !important; margin-left: 0 !important; margin-right: 0 !important; padding-left: 0 !important; padding-right: 0 !important; float: none !important;
}
/* Páginas de WooCommerce: contenedor centrado con aire */
body.myc-site.woocommerce-page #content, body.myc-site.woocommerce-page .site-main, body.myc-site.woocommerce-page main {
  max-width: var(--maxw) !important; margin-inline: auto !important; padding: clamp(28px, 5vw, 64px) var(--gutter) !important;
}
/* Cabecera fija + menú con el color del diseño (no el del tema) */
body.myc-site .myc-header { position: sticky; top: 0; background: rgba(255,255,255,0.9); backdrop-filter: saturate(160%) blur(12px); box-shadow: 0 1px 0 var(--line); }
body.myc-site .myc-header .brand, body.myc-site .myc-header .nav a, body.myc-site .myc-header .icon-btn { color: var(--ink) !important; }
body.myc-site .myc-header .nav a { text-decoration: none !important; box-shadow: none !important; }
body.myc-site .myc-header .nav a::after { background: var(--honey-deep) !important; }
body.myc-site .myc-header .nav a:hover { color: var(--honey-deep) !important; }
body.myc-design .hero { min-height: calc(100svh - var(--header-h)); }
body.myc-design .hero--glow .hero__inner { min-height: calc(100svh - var(--header-h)); padding-top: clamp(8px, 2vh, 28px); }

/* Tienda y ficha de producto con plantilla propia: ancho completo (el .container interno
   maneja el ancho), anulando el centrado de las páginas WooCommerce por defecto. */
body.myc-store #content, body.myc-store .site-main, body.myc-store main#content,
body.myc-store main, body.myc-store .site-content, body.myc-store .ast-container, body.myc-store .elementor {
  max-width: 100% !important; width: auto !important; margin: 0 !important; padding: 0 !important; float: none !important;
}
body.myc-store .myc-shop { padding-top: var(--header-h); }
.shop-bar { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }

/* ============================================================
   Piel de WooCommerce con el diseño Miel y Canela
   ============================================================ */
.myc-site .woocommerce, .myc-site .woocommerce-page { font-family: var(--sans); color: var(--ink); }
.myc-site .woocommerce h1, .myc-site .woocommerce h2, .myc-site .woocommerce h3,
.myc-site .woocommerce .product_title, .myc-site .woocommerce-products-header__title,
.myc-site .woocommerce-loop-product__title { font-family: var(--serif) !important; font-weight: 500; color: var(--ink); }

/* Rejilla de productos como nuestras tarjetas */
.myc-site .woocommerce ul.products, .myc-site .woocommerce-page ul.products {
  display: grid !important; grid-template-columns: repeat(3, 1fr); gap: clamp(22px, 3vw, 44px) clamp(16px, 2vw, 32px);
  margin: 0 0 2rem !important; padding: 0 !important; list-style: none !important;
}
.myc-site ul.products::before, .myc-site ul.products::after { content: none !important; display: none !important; }
.myc-site ul.products li.product { width: auto !important; margin: 0 !important; padding: 0 !important; float: none !important; text-align: left !important; }
.myc-site ul.products li.product a img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: var(--radius); margin: 0 0 1rem !important; background: var(--cream-2); transition: transform .9s var(--ease); }
.myc-site ul.products li.product:hover a img { transform: scale(1.05); }
.myc-site ul.products li.product .woocommerce-loop-product__title { font-size: 1.3rem !important; padding: 0 !important; margin: .1rem 0 .35rem !important; }
.myc-site ul.products li.product .price { color: var(--ink) !important; font-weight: 700; font-size: 1.02rem; }
.myc-site ul.products li.product .price del { color: var(--muted); font-weight: 600; }
.myc-site ul.products li.product .price ins { text-decoration: none; }
.myc-site .woocommerce span.onsale { background: var(--honey) !important; color: #fff !important; border-radius: 100px; min-height: auto; line-height: 1; padding: .45em .8em; font-weight: 800; }

/* Botones WooCommerce = nuestro botón pastilla azul */
.myc-site .woocommerce a.button, .myc-site .woocommerce button.button, .myc-site .woocommerce input.button,
.myc-site .woocommerce .button, .myc-site .woocommerce #respond input#submit,
.myc-site .woocommerce a.added_to_cart, .myc-site .woocommerce .single_add_to_cart_button,
.myc-site .woocommerce-page .button {
  background: var(--grad-blue) !important; color: #fff !important; border: none !important; border-radius: 100px !important;
  padding: .85em 1.6em !important; font-weight: 600 !important; font-size: .86rem !important; letter-spacing: .03em !important;
  text-transform: none !important; box-shadow: 0 10px 24px -12px rgba(37,150,190,.7) !important;
  transition: transform .3s var(--ease) !important; cursor: pointer;
}
.myc-site .woocommerce .button:hover, .myc-site .woocommerce a.button:hover, .myc-site .woocommerce button.button:hover { transform: translateY(-2px); }
.myc-site .woocommerce .button.alt, .myc-site .woocommerce .checkout-button, .myc-site .woocommerce #place_order { background: var(--ink) !important; }

/* Ficha de producto */
.myc-site .woocommerce div.product .product_title { font-size: clamp(1.8rem, 3.5vw, 2.6rem) !important; }
.myc-site .woocommerce div.product p.price, .myc-site .woocommerce div.product span.price { color: var(--ink) !important; font-weight: 700; font-size: 1.6rem; }
.myc-site .woocommerce div.product .woocommerce-product-gallery__image img { border-radius: var(--radius-lg); }
.myc-site .woocommerce .woocommerce-tabs ul.tabs li { background: var(--paper); border-radius: 100px 100px 0 0; }
.myc-site .woocommerce .quantity .qty { border: 1.4px solid var(--line); border-radius: 100px; padding: .5em; background: #fff; color: var(--ink); }

/* Cesta y checkout */
.myc-site .woocommerce table.shop_table { border: 1px solid var(--line) !important; border-radius: var(--radius); border-collapse: separate; overflow: hidden; }
.myc-site .woocommerce table.shop_table th { font-family: var(--sans); color: var(--ink); }
.myc-site .woocommerce .cart_totals h2, .myc-site .woocommerce-checkout h3 { font-family: var(--serif); }
.myc-site .woocommerce-message, .myc-site .woocommerce-info { border-top-color: var(--honey) !important; }
.myc-site .woocommerce-message::before, .myc-site .woocommerce-info::before { color: var(--honey) !important; }
.myc-site .woocommerce form .form-row input.input-text, .myc-site .woocommerce form .form-row textarea,
.myc-site .woocommerce-page form .form-row input.input-text, .myc-site .woocommerce select, .myc-site .select2-container .select2-selection {
  border: 1.4px solid var(--line) !important; border-radius: var(--radius) !important; padding: .8em 1em !important; background: #fff !important; color: var(--ink) !important; -webkit-text-fill-color: var(--ink);
}
/* Mi cuenta */
.myc-site .woocommerce-MyAccount-navigation ul { list-style: none; padding: 0; }
.myc-site .woocommerce-MyAccount-navigation li { border-bottom: 1px solid var(--line); }
.myc-site .woocommerce-MyAccount-navigation li.is-active a { color: var(--honey-deep); font-weight: 700; }

@media (max-width: 860px) { .myc-site .woocommerce ul.products { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .myc-site .woocommerce ul.products { grid-template-columns: 1fr; } }

/* Corazón de favorito en la rejilla de tienda */
.myc-site ul.products li.product { position: relative; }
.myc-site .myc-fav { position: absolute; top: 10px; right: 10px; z-index: 3; width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.85); backdrop-filter: blur(6px); display: grid; place-items: center; border: none; cursor: pointer; transition: 0.3s var(--ease); padding: 0; }
.myc-site .myc-fav svg { width: 18px; height: 18px; }
.myc-site .myc-fav:hover { transform: scale(1.08); background: #fff; }
.myc-site .myc-fav.active svg { fill: var(--honey-deep); stroke: var(--honey-deep); }

/* Cesta lateral (mini-cart de WooCommerce con nuestro diseño) */
.drawer--wccart .widget_shopping_cart_content { display: flex; flex-direction: column; height: 100%; }
.drawer--wccart ul.woocommerce-mini-cart { list-style: none; margin: 0 0 auto; padding: 0; flex: 1; overflow-y: auto; }
.drawer--wccart .woocommerce-mini-cart-item { display: flex; align-items: center; gap: 12px; padding: 14px 24px 14px 0; border-bottom: 1px solid var(--line); position: relative; }
.drawer--wccart .woocommerce-mini-cart-item > a:not(.remove) { display: flex; align-items: center; gap: 12px; flex: 1; color: var(--ink); font-family: var(--serif); font-size: 1.02rem; line-height: 1.15; }
.drawer--wccart .woocommerce-mini-cart-item img { width: 56px !important; height: 70px; object-fit: cover; border-radius: 8px; float: none !important; margin: 0 !important; background: var(--cream-2); }
.drawer--wccart .woocommerce-mini-cart-item .quantity { font-family: var(--sans); font-size: 0.82rem; color: var(--muted); white-space: nowrap; }
.drawer--wccart a.remove { position: absolute; top: 16px; right: 0; color: var(--muted) !important; font-size: 18px; line-height: 1; }
.drawer--wccart .woocommerce-mini-cart__total { display: flex; justify-content: space-between; align-items: center; font-weight: 700; font-size: 1.1rem; padding: 16px 0; border-top: 1px solid var(--line); margin: 0; }
.drawer--wccart .woocommerce-mini-cart__buttons { display: flex; flex-direction: column; gap: 0.6rem; margin: 0; padding-bottom: 6px; }
.drawer--wccart .woocommerce-mini-cart__buttons .button { width: 100%; text-align: center; }
.drawer--wccart .woocommerce-mini-cart__buttons .checkout { order: -1; }
.drawer--wccart .woocommerce-mini-cart__empty-message { text-align: center; color: var(--muted); padding: 40px 0; }

/* Ficha de producto: se RESPETA la maquetación nativa de WooCommerce (2 columnas
   con float), solo se añaden detalles cosméticos. NO se cambia el display para no
   romper la galería ni el formulario de compra. */
.myc-site .woocommerce div.product .woocommerce-product-gallery__image img { border-radius: var(--radius-lg); }

/* ---------- Misc ---------- */
.muted { color: var(--muted); }
.mt-1 { margin-top: 0.6rem; } .mt-2 { margin-top: 1.2rem; } .mt-3 { margin-top: 2rem; } .mt-4 { margin-top: 3rem; }
.tag-soft { display: inline-block; background: var(--cream-2); color: var(--cinnamon); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.4em 0.8em; border-radius: 100px; margin: 0 6px 6px 0; }
.divider { height: 1px; background: var(--line); border: none; }

/* =====================================================================
   Quitar el ROJO del tema en TODA la web (enlaces heredados + recuadros de foco).
   El tema (Hello Elementor u otro) colorea los <a> en rojo; aquí se fuerza
   la paleta corporativa azul/oscuro y se neutralizan los contornos rojos.
   ===================================================================== */
/* Títulos y textos de tarjeta/ficha: nunca rojos */
body.myc-site .card__name a, body.myc-site .card__name { color: var(--ink) !important; text-decoration: none !important; }
body.myc-site .card__name a:hover { color: var(--honey-deep) !important; }
body.myc-site .card__cat { color: var(--muted) !important; }
body.myc-site .card__price, body.myc-site .pdp__price { color: var(--ink) !important; }
body.myc-site .pdp__info h1, body.myc-site .pdp__info h1 a { color: var(--ink) !important; }
/* Enlaces dentro del contenido del diseño que heredarían el rojo del tema → azul corporativo */
body.myc-site .product-grid a, body.myc-site .pdp a, body.myc-site .page-hero a,
body.myc-site .section a, body.myc-site .breadcrumb a, body.myc-site .pdp__meta a { text-decoration: none; }
body.myc-site .link-underline { color: var(--honey-deep) !important; }
body.myc-site .breadcrumb a { color: var(--muted) !important; }
body.myc-site .breadcrumb a:hover { color: var(--honey-deep) !important; }
/* Acordeones de la ficha: el resumen no debe ser rojo */
body.myc-site .pdp__meta summary, body.myc-site details summary { color: var(--ink) !important; }
/* Contornos / recuadros de foco rojos del tema → azul suave */
body.myc-site a:focus, body.myc-site a:focus-visible,
body.myc-site button:focus, body.myc-site button:focus-visible,
body.myc-site input:focus, body.myc-site select:focus, body.myc-site textarea:focus,
body.myc-site .icon-btn:focus, body.myc-site .card__fav:focus, body.myc-site .filter:focus {
  outline: 2px solid rgba(37, 150, 190, 0.5) !important; outline-offset: 2px; box-shadow: none !important;
}
/* WooCommerce (carrito/checkout/cuenta): enlaces y acentos del tema en rojo → azul */
body.myc-site .woocommerce a:not(.button):not(.btn), body.myc-site .woocommerce-MyAccount-navigation a {
  color: var(--honey-deep);
}
body.myc-site .woocommerce a:not(.button):not(.btn):hover { color: var(--ink); }

/* =====================================================================
   Reset de BOTONES e INPUTS nativos (el tema les añade borde y color ROJO).
   El diseño usa box-shadow para los "bordes"; aquí quitamos el borde del
   tema y forzamos la paleta corporativa en todos los controles.
   ===================================================================== */
body.myc-site .icon-btn, body.myc-site .filter, body.myc-site .stepper, body.myc-site .stepper button,
body.myc-site .card__fav, body.myc-site .burger, body.myc-site .chip,
body.myc-site .drawer__head button, body.myc-site [data-drawer-close],
body.myc-site .pdp__meta summary, body.myc-site .account-tabs button {
  border: 0 !important; -webkit-appearance: none; appearance: none; background-image: none; outline: none;
}
body.myc-site .icon-btn { color: var(--ink) !important; background: transparent; }
body.myc-site .icon-btn:hover { background: var(--cream-2); }
/* Pastillas de filtro */
body.myc-site .filter { color: var(--ink-soft) !important; background: #fff !important; box-shadow: inset 0 0 0 1.4px var(--line) !important; }
body.myc-site .filter:hover { box-shadow: inset 0 0 0 1.4px var(--honey) !important; }
body.myc-site .filter.active { background: var(--ink) !important; color: var(--paper) !important; box-shadow: none !important; }
/* Stepper de cantidad (− 1 +) */
body.myc-site .stepper { box-shadow: inset 0 0 0 1.4px var(--line) !important; border-radius: 100px; }
body.myc-site .stepper button { color: var(--ink) !important; background: none !important; }
body.myc-site .stepper input { color: var(--ink) !important; background: none !important; border: 0 !important; }
/* Corazón de favorito */
body.myc-site .card__fav { color: var(--ink) !important; }
body.myc-site .card__fav.active svg { fill: var(--honey-deep) !important; stroke: var(--honey-deep) !important; }
/* Chips de color en la ficha */
body.myc-site .chip { color: var(--ink) !important; background: #fff !important; box-shadow: inset 0 0 0 1.4px var(--line) !important; border-radius: 100px; padding: .5em 1em; }
body.myc-site .chip.active { background: var(--ink) !important; color: var(--paper) !important; box-shadow: none !important; }
/* Botones X de cerrar y eliminar: gris, NUNCA rojo */
body.myc-site .drawer__head button, body.myc-site [data-drawer-close],
body.myc-site .cart-item .remove, body.myc-site .drawer--wccart a.remove,
body.myc-site .woocommerce-mini-cart-item a.remove, body.myc-site .woocommerce a.remove {
  color: var(--muted) !important; background: transparent !important; border: 0 !important;
}
body.myc-site .drawer__head button:hover, body.myc-site [data-drawer-close]:hover,
body.myc-site .woocommerce a.remove:hover { color: var(--ink) !important; background: var(--cream-2) !important; }
/* Pestañas del panel de cuenta */
body.myc-site .account-tabs button { color: var(--ink-soft) !important; background: transparent !important; }
body.myc-site .account-tabs button.active { color: var(--honey-deep) !important; }

/* Imágenes de tarjeta: deben LLENAR el marco (el tema fuerza img{height:auto}) */
body.myc-site .card__media img { width: 100% !important; height: 100% !important; object-fit: cover !important; max-width: none !important; }
body.myc-site .pdp__main img { width: 100% !important; height: auto; object-fit: cover; }
body.myc-site .pdp__thumbs img { width: 100% !important; height: 100% !important; object-fit: cover !important; }

/* Énfasis <em> en títulos (para textos editables desde Elementor con <em> simple) */
body.myc-site h1 em, body.myc-site h2 em, body.myc-site .hero__big em,
body.myc-site .fullbleed__title em, body.myc-site .h-lg em, body.myc-site .h-md em,
body.myc-site .cta-band h2 em { font-style: italic; color: var(--honey-deep); }
body.myc-site .fullbleed h2 em { color: #cfeaf5; }
