/* Caro Saab Decor � l�nea gr�fica propia + estructura tipo Marriott */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&display=swap');

:root {
  --background: hsl(30 25% 97%);
  --foreground: hsl(25 20% 12%);
  --primary: hsl(32 45% 28%);
  --primary-foreground: hsl(35 30% 95%);
  --secondary: hsl(30 15% 90%);
  --muted: hsl(30 12% 92%);
  --muted-foreground: hsl(25 10% 45%);
  --accent: hsl(38 65% 50%);
  --gold: hsl(38 65% 50%);
  --gold-light: hsl(38 50% 75%);
  --cream: hsl(35 30% 95%);
  --warm-brown: hsl(25 30% 22%);
  --warm-gray: hsl(25 8% 55%);
  --border: hsl(30 15% 85%);
  --radius: 0.375rem;
  --font-sans: "DM Sans", sans-serif;
  --font-serif: "Playfair Display", serif;
  --nav-color: rgb(126, 113, 103);
  --max: 1280px;
  --wa: #25d366;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
ul { list-style: none; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}
.container { width: min(100% - 2.5rem, var(--max)); margin-inline: auto; }

.eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--warm-gray);
  font-weight: 500;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}
.btn-gold { background: var(--gold); color: hsl(25 20% 10%); }
.btn-gold:hover { background: hsl(38 65% 44%); }
.btn-dark { background: var(--warm-brown); color: var(--cream); }
.btn-dark:hover { background: hsl(25 30% 16%); }

/* ��� Top bars ��� */
.top-bar {
  background: var(--gold);
  color: hsl(25 20% 10%);
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.55rem 1rem;
}
.top-bar a { text-decoration: underline; text-underline-offset: 2px; }

.help-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
  padding: 0.55rem 1rem;
  background: #fff;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--muted-foreground);
}
.help-bar a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--warm-brown);
  font-weight: 600;
}
.help-bar a:hover { color: var(--gold); }

/* ��� Header ��� */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.header-top {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  grid-template-areas: "logo search icons";
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 0;
  width: 100%;
}
.logo {
  grid-area: logo;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo img {
  width: auto;
  height: 64px;
  max-width: 260px;
  object-fit: contain;
}
.search-form {
  grid-area: search;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--border);
  background: #fff;
  padding: 0.35rem 0.35rem 0.35rem 0.9rem;
  border-radius: 999px;
  width: 100%;
  max-width: 640px;
  justify-self: center;
  min-width: 0;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.search-form:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px hsla(38, 65%, 50%, 0.15);
}
.search-form svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex: 0 0 auto;
}
.search-form input {
  border: none;
  outline: none;
  background: transparent;
  flex: 1 1 auto;
  min-width: 0;
  width: auto;
  font-size: 0.92rem;
  padding: 0.45rem 0;
}
.search-form input::placeholder { color: var(--warm-gray); }
.search-submit {
  border: none;
  background: var(--warm-brown);
  color: #fff;
  border-radius: 999px;
  padding: 0.55rem 1.1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  flex: 0 0 auto;
  white-space: nowrap;
}
.search-submit:hover { background: hsl(25 30% 16%); }

.header-icons {
  grid-area: icons;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-shrink: 0;
}
.icon-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border: none; background: transparent;
  color: var(--warm-brown);
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.15s;
}
.icon-btn:hover { background: var(--muted); }
.icon-btn svg { width: 21px; height: 21px; }
.icon-btn .badge {
  position: absolute;
  top: 2px; right: 2px;
  min-width: 16px; height: 16px;
  border-radius: 999px;
  background: var(--gold);
  color: hsl(25 20% 10%);
  font-size: 0.62rem;
  font-weight: 700;
  display: grid; place-items: center;
  padding: 0 3px;
}
.menu-toggle { display: none; }

.cat-nav {
  background: var(--cream);
  border-top: 1px solid var(--border);
}
.cat-nav-inner {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  overflow-x: auto;
  padding: 0.55rem 0;
  scrollbar-width: none;
}
.cat-nav-inner::-webkit-scrollbar { display: none; }
.cat-nav a {
  white-space: nowrap;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--nav-color);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  transition: color 0.15s, background 0.15s;
}
.cat-nav a:hover {
  color: var(--foreground);
  background: rgba(255,255,255,0.7);
}

/* Mobile supermenu overlay */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 120;
  height: 100%;
  height: 100dvh;
  max-height: 100dvh;
  background:
    radial-gradient(ellipse 70% 40% at 10% -10%, hsl(38 70% 72% / 0.35), transparent 55%),
    hsl(32 28% 97%);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow: hidden;
  visibility: hidden;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  padding: 0;
  padding-top: env(safe-area-inset-top, 0);
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.mobile-nav.is-open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}
.mobile-nav-top {
  display: grid;
  grid-template-columns: 1fr 44px;
  align-items: center;
  gap: 0.35rem;
  padding: 0.7rem 0.85rem;
  border-bottom: 1px solid var(--border);
  background: rgba(252,249,246,0.98);
  flex: 0 0 auto;
}
.mobile-nav-top strong {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm-brown);
  text-align: left;
}
.mobile-nav-close {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: none;
  background: transparent;
  color: var(--warm-brown);
  cursor: pointer;
  border-radius: 50%;
  justify-self: end;
}
.mobile-nav-close:hover { background: var(--muted); }
.mobile-nav-close svg { width: 22px; height: 22px; }
.mobile-mega-stages {
  flex: 1 1 auto;
  min-height: 0;
  position: relative;
  overflow: hidden;
}
.mobile-mega-stage {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
  background: hsl(32 28% 97%);
  transform: translateX(12%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.22s ease, opacity 0.22s ease;
}
.mobile-mega-stage.is-active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}
.mobile-mega-stage[hidden] {
  display: flex !important;
  visibility: hidden;
  z-index: 1;
}
.mobile-mega-stage.is-active[hidden] {
  visibility: visible;
}
.mobile-mega-backbar {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.45rem;
  width: 100%;
  margin: 0;
  padding: 0.85rem 1rem;
  border: none;
  border-bottom: 1px solid hsl(38 30% 84%);
  background: hsl(38 55% 94%);
  color: var(--warm-brown);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  text-align: left;
}
.mobile-mega-backbar:active { background: hsl(38 55% 88%); }
.mobile-mega-backbar--bottom {
  margin: 1.25rem 0 0.5rem;
  border: 1px solid hsl(38 30% 80%);
  border-radius: 2px;
  justify-content: center;
  background: #fff;
}
.mobile-mega-scroll {
  flex: 1 1 auto;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  padding: 0.5rem 1rem 2.5rem;
}
.mobile-mega-label {
  margin: 1.1rem 0 0.45rem;
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  font-weight: 700;
}
.mobile-mega-link {
  display: block;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--foreground);
}
.mobile-mega-link--strong {
  font-weight: 700;
  color: var(--warm-brown);
  border-bottom-color: hsl(38 40% 80%);
}
.mobile-mega-cats {
  display: grid;
  gap: 0.35rem;
}
.mobile-mega-cat {
  width: 100%;
  display: grid;
  grid-template-columns: 52px 1fr auto;
  align-items: center;
  gap: 0.85rem;
  padding: 0.55rem;
  border: 1px solid hsl(38 22% 86%);
  background: rgba(255,255,255,0.72);
  font: inherit;
  text-align: left;
  color: var(--foreground);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.mobile-mega-cat:hover {
  border-color: hsl(38 45% 68%);
  background: #fff;
}
.mobile-mega-cat span:nth-child(2) {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 500;
  color: var(--warm-brown);
}
.mobile-mega-cat svg { color: var(--warm-gray); }
.mobile-mega-cat-media {
  width: 52px;
  height: 52px;
  overflow: hidden;
  background: hsl(30 16% 88%);
}
.mobile-mega-cat-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mobile-mega-hero {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 0.9rem;
  align-items: center;
  margin: 0.5rem 0 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.mobile-mega-hero img {
  width: 96px;
  height: 120px;
  object-fit: cover;
  background: hsl(30 16% 88%);
}
.mobile-mega-hero h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--warm-brown);
  margin: 0 0 0.25rem;
}
.mobile-mega-hero p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted-foreground);
  line-height: 1.45;
}
.mobile-mega-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 0.75rem;
}
.mobile-mega-social a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--warm-brown);
  border: none;
  padding: 0;
}
.mobile-mega-ship {
  margin-top: 1.25rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: hsl(38 55% 38%);
}
body.nav-open { overflow: hidden; }
body.nav-open .site-header { z-index: 130; }

/* ��� Hero slider ��� */
.hero-slider {
  position: relative;
  height: min(78vh, 680px);
  min-height: 420px;
  overflow: hidden;
  background: var(--warm-brown);
}
.slides { height: 100%; }
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease, visibility 0.7s;
}
.slide.is-active { opacity: 1; visibility: visible; z-index: 1; }
.slide img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(20,14,10,0.62) 0%, rgba(20,14,10,0.25) 50%, rgba(20,14,10,0.1) 100%);
  display: flex;
  align-items: center;
}
.slide-content {
  color: #f6f3ee;
  max-width: 640px;
  padding-block: 2rem;
}
.slide-content .eyebrow { color: rgba(246,243,238,0.78); margin-bottom: 0.75rem; }
.slide-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 0.85rem;
  color: #f6f3ee;
}
.slide-content p {
  font-size: 1.02rem;
  color: rgba(246,243,238,0.85);
  margin-bottom: 1.5rem;
  max-width: 28rem;
  font-weight: 300;
}

/* Banner text entrance � elegante, escalonado */
.slide-content > * {
  opacity: 0;
  transform: translateY(22px);
}
.slide.is-active .slide-content > * {
  animation: bannerRise 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.slide.is-active .slide-content > *:nth-child(1) { animation-delay: 0.12s; }
.slide.is-active .slide-content > *:nth-child(2) { animation-delay: 0.28s; }
.slide.is-active .slide-content > *:nth-child(3) { animation-delay: 0.44s; }
.slide.is-active .slide-content > *:nth-child(4) { animation-delay: 0.6s; }

.slide.is-active .slide-content h1 {
  animation-name: bannerTitle;
}

@keyframes bannerRise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bannerTitle {
  from {
    opacity: 0;
    transform: translateY(28px);
    letter-spacing: 0.04em;
    filter: blur(2px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    letter-spacing: 0;
    filter: blur(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .slide-content > *,
  .slide.is-active .slide-content > *,
  .slide.is-active .slide-content h1,
  .cat-banner-body > *,
  .promo-card > div > *,
  .editorial-copy > * {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
  .cat-media img {
    transition: none !important;
  }
}
.slider-controls {
  position: absolute;
  left: 0; right: 0; bottom: 1.25rem;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.85rem;
}
.slider-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.45);
  background: rgba(0,0,0,0.25);
  color: #fff;
  cursor: pointer;
  font-size: 1.35rem;
  line-height: 1;
}
.slider-btn:hover { background: rgba(0,0,0,0.45); }
.slider-dots { display: flex; gap: 0.4rem; }
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
}
.dot.is-active { background: var(--gold); width: 22px; border-radius: 999px; }

/* ��� Benefits ��� */
.benefits {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 1.35rem 0;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.benefit {
  text-align: center;
  padding: 0.35rem 0.5rem;
  border-right: 1px solid var(--border);
}
.benefit:last-child { border-right: none; }
.benefit strong {
  display: block;
  font-size: 0.82rem;
  margin-bottom: 0.15rem;
}
.benefit span {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* ��� Sections ��� */
.section { padding: 4.5rem 0; }
.section-head { text-align: center; margin-bottom: 2.5rem; }
.section-head .eyebrow { margin-bottom: 0.65rem; }
.section-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  font-weight: 500;
}
.section-head h2 em { font-style: italic; }
.section-head--left {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1.5rem;
  text-align: left;
  flex-wrap: wrap;
}
.section-sub {
  color: var(--muted-foreground);
  font-size: 0.95rem;
  max-width: 18rem;
}

/* ��� Category banners (Marriott-style grid) ��� */
.cat-banners {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.cat-banner {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 6px;
  color: #fff;
  background: var(--secondary);
}
.cat-media {
  position: absolute;
  inset: 0;
}
.cat-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.1s ease, transform 6s ease;
}
.cat-media img.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}
.cat-banner:hover .cat-media img.is-active {
  transform: scale(1.06);
}
.cat-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to top, rgba(20,14,10,0.72) 0%, rgba(20,14,10,0.15) 55%, rgba(20,14,10,0.25) 100%);
  pointer-events: none;
}
.cat-banner-body {
  position: absolute;
  inset: 0;
  z-index: 3;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cat-banner-body > * {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.cat-banner.is-revealed .cat-banner-body > *:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.12s;
}
.cat-banner.is-revealed .cat-banner-body > *:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.24s;
}
.cat-banner h3 {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 500;
}
.cat-banner p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.78);
  margin-top: 0.25rem;
}
.cat-banner span {
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  opacity: 0.9;
  align-self: flex-start;
}
.cat-banner.is-revealed .cat-banner-body > span {
  opacity: 0.9;
  transform: translateY(0);
  transition-delay: 0.36s;
}
.cat-banner--fade .cat-media::after {
  content: "";
  position: absolute;
  right: 0.7rem;
  bottom: 0.7rem;
  z-index: 2;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.55);
  box-shadow: 0 0 0 4px rgba(210,150,45,0.35);
  pointer-events: none;
}

/* ��� Promo strip ��� */
.promo-strip { padding: 0 0 4rem; }
.promo-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 1rem;
}
.promo-card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border-radius: 6px;
  color: #fff;
}
.promo-card img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.promo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,14,10,0.78), rgba(20,14,10,0.2));
}
.promo-card > div {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.promo-card > div > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.promo-card.is-revealed > div > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0.1s; }
.promo-card.is-revealed > div > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.22s; }
.promo-card.is-revealed > div > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.34s; }
.promo-card.is-revealed > div > *:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.46s; }
.promo-card .eyebrow { color: var(--gold-light); margin-bottom: 0.5rem; }
.promo-card h3 {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
}
.promo-card p {
  color: rgba(255,255,255,0.8);
  font-size: 0.92rem;
  margin-bottom: 0.85rem;
  max-width: 26rem;
}
.promo-card span {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ��� Editorial ��� */
.editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}
.editorial--reverse .editorial-media { order: 2; }
.editorial-media { min-height: 320px; overflow: hidden; }
.editorial-media img { width: 100%; height: 100%; object-fit: cover; }
.editorial-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4rem);
  background: var(--background);
}
.editorial-copy > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.editorial.is-revealed .editorial-copy > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0.1s; }
.editorial.is-revealed .editorial-copy > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.25s; }
.editorial.is-revealed .editorial-copy > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.4s; }
.editorial.is-revealed .editorial-copy > *:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.55s; }
.editorial-copy .eyebrow { margin-bottom: 1rem; color: var(--gold); }
.editorial-copy h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 2.8vw, 2.35rem);
  font-weight: 500;
  margin-bottom: 1rem;
}
.editorial-copy p {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  max-width: 34rem;
}
.editorial-link {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  align-self: flex-start;
  border-bottom: 1px solid var(--foreground);
  padding-bottom: 0.2rem;
}
.editorial-link:hover { color: var(--gold); border-color: var(--gold); }

/* ��� Shop teaser ��� */
.shop-teaser {
  background:
    radial-gradient(ellipse 60% 50% at 50% 100%, hsl(38 70% 70% / 0.16), transparent 60%),
    linear-gradient(180deg, transparent 0%, hsl(32 24% 95%) 45%);
  border-top: 1px solid hsl(38 22% 86%);
}
.shop-teaser-box {
  max-width: 520px;
  margin: 0 auto;
  padding: 0;
  border: none;
  background: transparent;
  text-align: center;
}
.shop-teaser-box h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 500;
  margin: 0.65rem 0 0.85rem;
}
.shop-teaser-box p {
  color: var(--muted-foreground);
  margin-bottom: 1.35rem;
}

/* ��� Instagram / reels ��� */
.social-feed { background: #fff; }
.ig-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}
.ig-profile {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.ig-profile img {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: contain;
  background: #fff;
  border: 2px solid var(--gold-light);
  padding: 4px;
}
.ig-profile strong { display: block; font-size: 1.05rem; }
.ig-profile p { font-size: 0.85rem; color: var(--muted-foreground); }

.reels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}
.reel-card {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 8px;
  background: var(--secondary);
  color: #fff;
}
.reel-card--embed {
  background: #fafafa;
  border: 1px solid var(--border);
}
.reel-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  z-index: 2;
  background: #fff;
}
.reel-fallback {
  position: absolute;
  inset: 0;
  z-index: 1;
  color: #fff;
}
.reel-fallback img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.reel-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.reel-card:hover img { transform: scale(1.05); }
.reel-card::after {
  content: none;
}
.reel-fallback::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65), transparent 45%);
}
.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  color: var(--warm-brown);
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  padding-left: 2px;
}
.reel-label {
  position: absolute;
  left: 0.75rem; right: 0.75rem; bottom: 0.75rem;
  z-index: 1;
  font-size: 0.78rem;
  font-weight: 500;
}
.ig-more {
  margin-top: 1.75rem;
  text-align: center;
}

/* ��� Testimonials ��� */
/* Shipping banner + Reviews */
.shipping-banner {
  position: relative;
  background:
    linear-gradient(120deg, hsl(25 30% 18%) 0%, hsl(32 35% 26%) 55%, hsl(38 45% 32%) 100%);
  color: hsl(35 30% 95%);
  padding: 1.75rem 0;
  overflow: hidden;
}
.shipping-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 120% at 90% 50%, hsl(38 70% 50% / 0.28), transparent 55%);
  pointer-events: none;
}
.shipping-banner-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem 2rem;
  flex-wrap: wrap;
}
.shipping-banner-copy { max-width: 40rem; }
.shipping-banner .eyebrow {
  color: hsl(38 70% 68%);
  margin-bottom: 0.35rem;
}
.shipping-banner h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  line-height: 1.2;
  margin: 0 0 0.4rem;
  color: #fff;
}
.shipping-banner-copy p:last-child {
  margin: 0;
  font-size: 0.95rem;
  color: hsl(35 20% 88%);
  line-height: 1.5;
}
.shipping-banner .btn-dark {
  background: hsl(38 65% 50%);
  color: hsl(25 20% 12%);
  flex-shrink: 0;
}
.shipping-banner .btn-dark:hover { background: hsl(38 70% 58%); }

.reviews-section {
  background:
    radial-gradient(ellipse 60% 40% at 10% 0%, hsl(38 50% 88% / 0.55), transparent 55%),
    linear-gradient(180deg, hsl(32 28% 95%) 0%, var(--background) 100%);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.85rem;
}
.review-card {
  padding: 1.15rem 1.1rem 1.25rem;
  border-top: 2px solid var(--gold);
  background: rgba(255,255,255,0.72);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.review-card .stars {
  color: var(--gold);
  letter-spacing: 0.12em;
  font-size: 0.95rem;
  margin: 0 0 0.65rem;
  line-height: 1;
}
.review-text {
  color: var(--muted-foreground);
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 0 0 1rem;
  flex: 1;
}
.review-meta {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  margin-top: auto;
}
.review-meta strong {
  font-size: 0.88rem;
  color: var(--warm-brown);
}
.review-meta span {
  font-size: 0.75rem;
  color: var(--warm-gray);
  letter-spacing: 0.04em;
}

.testimonials { background: var(--cream); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.stars { color: var(--gold); letter-spacing: 0.1em; margin-bottom: 0.75rem; }
.testimonial-card p {
  color: var(--muted-foreground);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
.testimonial-card strong { font-size: 0.9rem; }

/* ��� Page hero / services (inner pages) ��� */
.page-hero {
  padding: 4.5rem 0 3rem;
  text-align: center;
  background: var(--cream);
}
.page-hero .eyebrow { margin-bottom: 0.85rem; }
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 4vw, 2.9rem);
  font-weight: 500;
  margin-bottom: 1rem;
}
.page-hero p {
  max-width: 36rem;
  margin: 0 auto;
  color: var(--muted-foreground);
  font-size: 1.05rem;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 3.5rem 0;
}
.feature-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: var(--radius);
}
.feature-icon {
  width: 42px; height: 42px;
  margin: 0 auto 1rem;
  color: var(--gold);
}
.feature-card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.45rem; }
.feature-card p { font-size: 0.92rem; color: var(--muted-foreground); }
.form-panel, .cta-panel {
  max-width: 640px;
  margin: 0 auto 4rem;
  padding: 2.5rem;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: var(--radius);
  text-align: center;
}
.form-panel h2, .cta-panel h2 {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 500;
  margin: 0.75rem 0 0.5rem;
}
.form-panel > p, .cta-panel > p {
  color: var(--muted-foreground);
  margin-bottom: 1.75rem;
}
.form-grid { display: grid; gap: 1rem; text-align: left; }
.form-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
}
.form-field input, .form-field textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: #fff;
  padding: 0.75rem 0.9rem;
  border-radius: 2px;
  outline: none;
}
.form-field input:focus, .form-field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px hsla(38, 65%, 50%, 0.15);
}
.form-field textarea { min-height: 120px; resize: vertical; }
.form-actions { margin-top: 0.5rem; }
.form-actions .btn { width: 100%; justify-content: center; }
.wa-number {
  display: block;
  margin-top: 1.25rem;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--warm-brown);
}

/* ��� Footer ��� */
.site-footer {
  background: hsl(25 20% 10%);
  color: hsl(35 20% 88%);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
.footer-brand .logo-text { color: #fff; margin-bottom: 1rem; }
.footer-brand .logo-text span { color: rgba(255,255,255,0.55); }
.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  max-width: 16rem;
}
.footer-col h4 {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: #fff;
  font-weight: 600;
}
.footer-col ul li, .footer-col p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.62);
  margin-bottom: 0.45rem;
}
.footer-col a:hover { color: var(--gold-light); }
.newsletter { display: flex; gap: 0.4rem; margin-top: 0.75rem; }
.newsletter input {
  flex: 1; min-width: 0;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  padding: 0.65rem 0.75rem;
  color: #fff;
  border-radius: 2px;
  outline: none;
}
.newsletter input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter .btn { flex-shrink: 0; padding: 0.65rem 0.9rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
}
.socials { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.socials a {
  display: inline-flex;
  width: 34px; height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: rgba(255,255,255,0.7);
}
.socials a:hover { border-color: var(--gold); color: var(--gold); }
.socials svg { width: 15px; height: 15px; }

/* ��� Reveal motion ��� */
.will-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.will-reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ��� WhatsApp float + chooser ��� */
.wa-widget {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}
.wa-float {
  width: 58px; height: 58px;
  border: none;
  border-radius: 50%;
  background: var(--wa);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.38);
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
}
.wa-float:hover { transform: scale(1.06); }
.wa-float .wa-icon-close { display: none; }
.wa-widget.is-open .wa-float .wa-icon-open { display: none; }
.wa-widget.is-open .wa-float .wa-icon-close { display: block; }
.wa-widget.is-open .wa-float {
  background: var(--warm-brown);
  box-shadow: 0 10px 28px rgba(20, 14, 10, 0.28);
}
.wa-menu {
  width: min(300px, calc(100vw - 2.5rem));
  background:
    linear-gradient(165deg, hsl(35 35% 98%) 0%, hsl(30 25% 96%) 100%);
  border: 1px solid rgba(126, 113, 103, 0.18);
  box-shadow: 0 18px 48px rgba(20, 14, 10, 0.22);
  overflow: hidden;
  transform-origin: bottom right;
  animation: waMenuIn 0.22s ease;
}
.wa-menu[hidden] { display: none; }
@keyframes waMenuIn {
  from { opacity: 0; transform: translateY(10px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.wa-menu-head {
  padding: 1rem 1rem 0.85rem;
  border-bottom: 1px solid rgba(126, 113, 103, 0.12);
  background:
    radial-gradient(ellipse at top right, rgba(201, 162, 74, 0.16), transparent 60%);
}
.wa-menu-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.wa-menu-brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  background: #fff;
  border-radius: 50%;
  padding: 4px;
  border: 1px solid rgba(126, 113, 103, 0.12);
}
.wa-menu-brand strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--warm-brown);
  line-height: 1.2;
}
.wa-menu-brand span {
  display: block;
  font-size: 0.78rem;
  color: var(--warm-gray);
  margin-top: 0.15rem;
}
.wa-menu-list {
  display: grid;
  gap: 0.55rem;
  padding: 0.85rem;
}
.wa-menu-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0.75rem;
  background: #fff;
  border: 1px solid rgba(126, 113, 103, 0.12);
  transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}
.wa-menu-item:hover {
  border-color: rgba(37, 211, 102, 0.45);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(20, 14, 10, 0.08);
}
.wa-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
}
.wa-menu-item--gold .wa-avatar {
  background: linear-gradient(145deg, var(--gold), hsl(32 45% 34%));
}
.wa-menu-item--green .wa-avatar {
  background: linear-gradient(145deg, #34d399, #128c7e);
}
.wa-menu-copy {
  display: grid;
  gap: 0.08rem;
  min-width: 0;
}
.wa-menu-copy strong {
  font-size: 0.95rem;
  color: var(--foreground);
  font-weight: 600;
}
.wa-menu-copy em {
  font-style: normal;
  font-size: 0.78rem;
  color: var(--warm-gray);
}
.wa-menu-copy span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--warm-brown);
  letter-spacing: 0.02em;
}
.wa-menu-go {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: hsl(145 45% 95%);
  color: var(--wa);
}
.wa-menu-item:hover .wa-menu-go {
  background: var(--wa);
  color: #fff;
}
.wa-menu-note {
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--warm-gray);
  padding: 0 1rem 0.95rem;
}

/* ��� Responsive ��� */
@media (max-width: 1100px) {
  .benefits-grid { grid-template-columns: repeat(3, 1fr); }
  .benefit:nth-child(3) { border-right: none; }
  .cat-banners { grid-template-columns: repeat(2, 1fr); }
  .reels-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .header-top {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "logo icons"
      "search search";
    gap: 0.7rem 0.5rem;
    padding: 0.7rem 0 0.85rem;
  }
  .search-form {
    max-width: none;
    width: 100%;
    justify-self: stretch;
    min-height: 52px;
    padding: 0.45rem 0.45rem 0.45rem 1rem;
  }
  .search-form input {
    flex: 1 1 auto;
    min-width: 0;
    font-size: 1rem;
    padding: 0.55rem 0.25rem;
  }
  .search-form svg {
    width: 20px;
    height: 20px;
  }
  .search-submit {
    display: inline-flex;
    padding: 0.65rem 1.1rem;
    font-size: 0.8rem;
  }
  .icon-btn--desk { display: none; }
  .cat-nav { display: none; }
  .menu-toggle { display: inline-flex; }
  .promo-grid, .editorial, .editorial--reverse .editorial-media,
  .feature-grid, .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .editorial--reverse .editorial-media { order: 0; }
  .editorial-media { aspect-ratio: 16/10; min-height: 0; }
}

@media (max-width: 720px) {
  .logo img { height: 44px; max-width: 160px; }
  .search-form {
    min-height: 54px;
  }
  .search-form input {
    font-size: 1.05rem;
  }
  .help-bar { font-size: 0.8rem; padding: 0.5rem 0.75rem; }
  .top-bar { font-size: 0.78rem; padding: 0.5rem 0.75rem; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .benefit { border-right: none; border-bottom: 1px solid var(--border); padding: 0.75rem 0.25rem; }
  .cat-banners, .reels-grid { grid-template-columns: 1fr 1fr; }
  .hero-slider { height: 68vh; min-height: 400px; }
  .form-panel, .cta-panel { padding: 1.75rem 1.25rem; }
  .slide-content h1 { font-size: clamp(1.85rem, 7vw, 2.6rem); }
  .container { width: min(100% - 1.5rem, var(--max)); }
}

/* ��� Sales layout redesign ��� */
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.55);
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); }
.btn-ghost-dark {
  background: transparent;
  color: var(--warm-brown);
  border: 1px solid var(--border);
}
.btn-ghost-dark:hover { border-color: var(--warm-brown); }

.site-header--sales {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(252,249,246,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
}
body.mega-open .site-header--sales {
  border-bottom-color: var(--border);
}
.header-sales {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  grid-template-areas: "logo search nav actions";
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 0;
  position: static;
}
.header-sales .logo { grid-area: logo; }
.header-sales .search-form {
  grid-area: search;
  max-width: none;
  justify-self: stretch;
}
.header-sales .sales-nav { grid-area: nav; position: static; }
.header-sales .header-actions { grid-area: actions; }
.sales-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  position: static;
}
.sales-nav > a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--nav-color);
  transition: color 0.15s;
  white-space: nowrap;
}
.sales-nav > a:hover { color: var(--foreground); }

/* Desktop supermenu — categorías → subcategorías */
.nav-mega { position: static; }
.nav-mega-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  border: none;
  background: transparent;
  padding: 0;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--nav-color);
  cursor: pointer;
  white-space: nowrap;
}
.nav-mega-trigger:hover,
.nav-mega.is-open .nav-mega-trigger {
  color: var(--foreground);
}
.nav-mega-trigger svg { transition: transform 0.2s ease; }
.nav-mega.is-open .nav-mega-trigger svg { transform: rotate(180deg); }

.mega-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 95;
  background:
    linear-gradient(115deg, hsl(32 28% 96%) 0%, #fff 42%, hsl(38 40% 97%) 100%);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 28px 56px hsl(25 30% 18% / 0.14);
  /* cabe bajo top-bar + header sin salirse de la pantalla */
  max-height: calc(100dvh - 7.25rem);
  max-height: calc(100vh - 7.25rem);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.mega-panel[hidden] { display: none !important; }
.mega-panel-inner {
  padding: 0;
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.mega-panel-inner.container {
  max-width: var(--max);
  width: 100%;
}

.mega-split {
  display: grid;
  grid-template-columns: minmax(240px, 300px) minmax(0, 1fr);
  flex: 1 1 auto;
  min-height: 0;
  height: min(520px, calc(100dvh - 7.25rem));
  height: min(520px, calc(100vh - 7.25rem));
  max-height: inherit;
}
.mega-cats {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 1.15rem 0.85rem 1.15rem 0;
  border-right: 1px solid var(--border);
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  background: rgba(255,255,255,0.45);
  scrollbar-width: thin;
  scrollbar-color: hsl(38 30% 72%) transparent;
}
.mega-cats::-webkit-scrollbar,
.mega-pane-links::-webkit-scrollbar {
  width: 6px;
}
.mega-cats::-webkit-scrollbar-thumb,
.mega-pane-links::-webkit-scrollbar-thumb {
  background: hsl(38 30% 72%);
  border-radius: 99px;
}
.mega-aside-label {
  margin: 0 0.65rem 0.55rem;
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  font-weight: 700;
}
.mega-cat-btn {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 0.7rem;
  width: 100%;
  padding: 0.45rem 0.55rem;
  border: none;
  border-radius: 2px;
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
  color: var(--foreground);
  transition: background 0.18s, color 0.18s;
}
.mega-cat-btn:hover {
  background: hsl(38 50% 94%);
}
.mega-cat-btn.is-active {
  background: linear-gradient(90deg, hsl(38 55% 92%), hsl(38 40% 96%));
  box-shadow: inset 3px 0 0 var(--gold);
}
.mega-cat-thumb {
  width: 44px;
  height: 44px;
  overflow: hidden;
  background: hsl(30 16% 88%);
}
.mega-cat-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mega-cat-name {
  font-family: var(--font-serif);
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--warm-brown);
  line-height: 1.2;
}
.mega-cat-btn svg { color: var(--warm-gray); opacity: 0.55; }
.mega-cat-btn.is-active svg { color: var(--gold); opacity: 1; }
.mega-cat-all {
  margin: 0.75rem 0.55rem 0;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-brown);
}

.mega-detail {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  height: 100%;
}
.mega-pane {
  display: none;
  grid-template-columns: minmax(220px, 0.85fr) minmax(0, 1.05fr);
  gap: 0;
  height: 100%;
  min-height: 0;
  animation: megaPaneIn 0.28s ease;
}
.mega-pane.is-active { display: grid; }
.mega-pane[hidden] { display: none !important; }
@keyframes megaPaneIn {
  from { opacity: 0; transform: translateX(10px); }
  to { opacity: 1; transform: translateX(0); }
}
.mega-pane-visual {
  position: relative;
  min-height: 0;
  height: 100%;
  overflow: hidden;
  background: hsl(30 16% 88%);
  order: 2;
}
.mega-pane-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  display: block;
  transform: scale(1.03);
  transition: transform 0.7s ease;
}
.mega-pane.is-active .mega-pane-visual img { transform: scale(1); }
.mega-pane-visual-copy {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.5rem 1.35rem 1.25rem;
  background: linear-gradient(transparent, hsl(25 25% 12% / 0.78));
  color: #fff;
}
.mega-pane-visual-copy .eyebrow {
  color: hsl(38 70% 68%);
  margin-bottom: 0.35rem;
}
.mega-pane-visual-copy h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  font-weight: 500;
  margin: 0 0 0.35rem;
}
.mega-pane-visual-copy p:last-child {
  margin: 0;
  font-size: 0.9rem;
  color: hsl(35 20% 88%);
  max-width: 22rem;
  line-height: 1.45;
}
.mega-pane-links {
  order: 1;
  padding: 1.25rem 1.35rem 1.35rem;
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.72);
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: hsl(38 30% 72%) transparent;
  border-right: 1px solid var(--border);
}
.mega-pane-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.15rem;
}
.mega-pane-links a {
  display: block;
  padding: 0.55rem 0;
  border-bottom: 1px solid hsl(38 20% 90%);
  font-size: 0.95rem;
  color: var(--muted-foreground);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  transition: color 0.15s, padding-left 0.15s;
}
.mega-pane-links a:hover {
  color: var(--warm-brown);
  padding-left: 0.25rem;
}
.mega-sub-featured {
  font-weight: 600 !important;
  color: var(--warm-brown) !important;
  border-bottom-color: hsl(38 45% 72%) !important;
}
.mega-ship-note {
  margin-top: auto;
  padding-top: 1.25rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: hsl(38 55% 38%);
}

@media (max-height: 720px) {
  .mega-split {
    height: calc(100dvh - 6.5rem);
    height: calc(100vh - 6.5rem);
  }
  .mega-cat-btn { padding: 0.35rem 0.5rem; }
  .mega-cat-thumb { width: 38px; height: 38px; }
  .mega-cat-name { font-size: 0.95rem; }
  .mega-pane-links { padding: 1rem 1.1rem 1.15rem; }
}
@media (max-width: 1100px) {
  .mega-panel { display: none !important; }
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-header-wa {
  padding: 0.65rem 1.1rem;
  font-size: 0.68rem;
}
.sales-layout .menu-toggle { display: none; }

.sales-hero {
  position: relative;
  min-height: min(92vh, 760px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--warm-brown);
}
.sales-hero-media {
  position: absolute;
  inset: 0;
}
.sales-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: salesHeroZoom 18s ease-out forwards;
}
@keyframes salesHeroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}
.sales-hero-overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  background: linear-gradient(180deg, rgba(20,14,10,0.15) 0%, rgba(20,14,10,0.55) 48%, rgba(20,14,10,0.82) 100%);
  padding: 7rem 0 4.5rem;
}
.sales-hero-content {
  max-width: 40rem;
  color: #fff;
  animation: salesFadeUp 0.9s ease both;
}
@keyframes salesFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
.sales-brand {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: #fff;
}
.sales-hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.55rem, 3.4vw, 2.35rem);
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 1rem;
  color: rgba(255,255,255,0.96);
}
.sales-hero-lead {
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.82);
  max-width: 34rem;
  margin-bottom: 1.75rem;
}
.sales-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.section-sub--center {
  margin: 0.75rem auto 0;
  text-align: center;
  max-width: 36rem;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  overflow: hidden;
}
.service-card-media {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.service-card:hover .service-card-media img { transform: scale(1.04); }
.service-card-body {
  padding: 1.5rem 1.4rem 1.6rem;
}
.service-card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 500;
  margin: 0.35rem 0 0.7rem;
}
.service-card-body p {
  color: var(--muted-foreground);
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

.cat-banners--sales { margin-top: 2rem; }

.atmosphere-section { padding-bottom: 1rem; }
.atmosphere-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 22vw);
  gap: 0.75rem;
  overflow-x: auto;
  padding: 0.5rem max(1.25rem, calc((100vw - var(--max)) / 2)) 1.5rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}
.atmosphere-frame {
  scroll-snap-align: start;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--warm-brown);
}
.atmosphere-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.atmosphere-frame:hover img { transform: scale(1.05); }

.shop-teaser-box--sales { display: none; }

.contact-section { padding-bottom: 4.5rem; }
.contact-panel {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.75), rgba(255,255,255,0.35)),
    radial-gradient(ellipse at top right, rgba(201,162,74,0.12), transparent 55%);
  border: 1px solid var(--border);
  padding: 2.75rem 2.5rem;
}
.contact-copy h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 500;
  margin: 0.4rem 0 0.85rem;
}
.contact-copy p {
  color: var(--muted-foreground);
  margin-bottom: 1.4rem;
  max-width: 28rem;
}
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}
.contact-list {
  display: grid;
  gap: 1.1rem;
}
.contact-list li {
  display: grid;
  gap: 0.15rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--border);
}
.contact-list li span {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm-gray);
}
.contact-list a {
  font-weight: 500;
  color: var(--warm-brown);
}
.contact-list a:hover { color: var(--gold); }

.site-footer--sales {
  padding: 2.25rem 0 1.25rem;
}
.site-footer--sales .footer-sales {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 1.5rem 2rem;
  padding: 0 0 1.35rem;
}
.site-footer--sales .footer-blurb {
  font-size: 0.86rem;
  margin: 0 0 0.55rem;
  max-width: 22rem;
}
.site-footer--sales .footer-ship-note {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: hsl(38 70% 62%);
}
.site-footer--sales .socials { margin-top: 0.65rem; }
.site-footer--sales .footer-col h4 { margin-bottom: 0.65rem; }
.site-footer--sales .footer-col ul li,
.site-footer--sales .footer-col p {
  margin-bottom: 0.3rem;
  font-size: 0.86rem;
}
.site-footer--sales .footer-social-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
}
.site-footer--sales .footer-col--nav ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.25rem 0.85rem;
}
.site-footer--sales .footer-bottom {
  padding-top: 1rem;
  font-size: 0.72rem;
}

@media (max-width: 1100px) {
  .header-sales {
    grid-template-columns: auto minmax(0, 1fr) auto;
    grid-template-areas: "logo search actions";
  }
  .sales-nav { display: none; }
}

@media (max-width: 980px) {
  .header-sales {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "logo actions"
      "search search";
    gap: 0.7rem 0.5rem;
    padding: 0.7rem 0 0.85rem;
  }
  .header-sales .search-form {
    min-height: 52px;
    padding: 0.45rem 0.45rem 0.45rem 1rem;
  }
  .header-sales .search-form input {
    font-size: 1rem;
    padding: 0.55rem 0.25rem;
  }
  .sales-layout .menu-toggle { display: inline-flex; }
  .services-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }
  .site-footer--sales .footer-sales {
    grid-template-columns: 1fr 1fr;
    gap: 1.1rem 1.25rem;
  }
  .site-footer--sales .footer-brand {
    grid-column: 1 / -1;
  }
  .site-footer--sales .footer-blurb { display: none; }
  .site-footer--sales {
    padding: 1.5rem 0 1rem;
  }
  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .shipping-banner { padding: 1.35rem 0; }
  .shipping-banner-inner { gap: 1rem; }
  .shipping-banner .btn-dark { width: 100%; justify-content: center; }
  .btn-header-wa { display: none; }
  .sales-hero { min-height: 78vh; }
  .sales-hero-overlay { padding: 5.5rem 0 3rem; }
  .contact-panel { padding: 2rem 1.35rem; }
}

@media (max-width: 1100px) {
  .reviews-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .atmosphere-strip {
    grid-auto-columns: minmax(220px, 70vw);
    padding-inline: 1rem;
  }
  .sales-brand {
    font-size: clamp(1.65rem, 8vw, 2.2rem);
  }
  .sales-hero-content h1 {
    font-size: clamp(1.35rem, 6vw, 1.75rem);
  }
  .site-footer--sales .footer-sales {
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem 1rem;
  }
  .site-footer--sales .logo-text {
    font-size: 1.15rem;
    margin-bottom: 0.35rem;
  }
  .site-footer--sales .footer-ship-note {
    font-size: 0.7rem;
    margin-bottom: 0.45rem;
  }
  .site-footer--sales .footer-col h4 {
    font-size: 0.66rem;
    margin-bottom: 0.45rem;
  }
  .site-footer--sales .footer-col ul li,
  .site-footer--sales .footer-col p {
    font-size: 0.8rem;
    margin-bottom: 0.22rem;
  }
  .site-footer--sales .footer-col--nav ul {
    grid-template-columns: 1fr;
  }
  .site-footer--sales .footer-bottom {
    flex-direction: column;
    gap: 0.25rem;
    padding-top: 0.75rem;
  }
  .reviews-grid {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 0.35rem;
    margin-inline: -1rem;
    padding-inline: 1rem;
    -webkit-overflow-scrolling: touch;
  }
  .review-card {
    flex: 0 0 min(82vw, 300px);
    scroll-snap-align: start;
    padding: 1rem 0.95rem 1.05rem;
  }
}

/* —— Tienda / catálogo —— */
.shop-page {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(ellipse 70% 40% at 10% -10%, hsl(38 70% 72% / 0.28), transparent 55%),
    radial-gradient(ellipse 55% 35% at 95% 5%, hsl(18 55% 72% / 0.18), transparent 50%),
    linear-gradient(180deg, hsl(32 28% 95%) 0%, var(--background) 280px);
  padding-bottom: 4.5rem;
  overflow: hidden;
}
.shop-page::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 320px;
  background:
    radial-gradient(circle at 30% 20%, hsl(38 80% 60% / 0.08), transparent 40%),
    radial-gradient(circle at 70% 40%, hsl(25 40% 40% / 0.05), transparent 45%);
  pointer-events: none;
  z-index: -1;
  animation: shopGlow 10s ease-in-out infinite alternate;
}
@keyframes shopGlow {
  from { opacity: 0.7; transform: scale(1); }
  to { opacity: 1; transform: scale(1.04); }
}
.shop-page-top {
  border-bottom: 1px solid hsl(38 30% 80% / 0.55);
  background: linear-gradient(180deg, hsl(35 35% 97% / 0.92), hsl(32 25% 96% / 0.75));
  backdrop-filter: blur(8px);
  padding: 2.4rem 0 0;
  margin-bottom: 2.4rem;
}
.shop-intro {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 1.5rem;
  animation: shopIntroIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes shopIntroIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}
.shop-intro .eyebrow {
  color: hsl(32 45% 38%);
}
.shop-intro h1 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.85rem, 3.5vw, 2.55rem);
  line-height: 1.15;
  margin: 0.4rem 0 0.55rem;
  background: linear-gradient(120deg, var(--warm-brown) 20%, hsl(32 50% 32%) 55%, hsl(38 55% 38%) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.shop-intro-sub {
  color: var(--muted-foreground);
  font-size: 0.95rem;
  margin: 0;
}
.shop-toolbar {
  display: grid;
  gap: 0.95rem;
  padding-bottom: 1.2rem;
}
.shop-cats {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.35rem;
  overflow-x: auto;
  scrollbar-width: thin;
  padding: 0.2rem 0 0.35rem;
  mask-image: linear-gradient(90deg, #000 90%, transparent);
}
.shop-cats a {
  flex: 0 0 auto;
  padding: 0.5rem 0.95rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  white-space: nowrap;
  transition: color 0.2s, background 0.25s, border-color 0.25s, transform 0.2s;
}
.shop-cats a:hover {
  color: var(--warm-brown);
  background: hsl(38 60% 92%);
  border-color: hsl(38 40% 80%);
  transform: translateY(-1px);
}
.shop-cats a.is-active {
  color: hsl(25 25% 16%);
  background: linear-gradient(135deg, hsl(38 70% 58%), hsl(32 65% 48%));
  border-color: transparent;
  box-shadow: 0 6px 18px hsl(38 55% 40% / 0.22);
}
.shop-search {
  display: flex;
  gap: 0.5rem;
  max-width: 28rem;
  margin-inline: auto;
  width: 100%;
}
.shop-search input[type="search"] {
  flex: 1;
  min-width: 0;
  border: 1px solid hsl(38 25% 82%);
  background: #fff;
  padding: 0.7rem 0.95rem;
  border-radius: 2px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.shop-search input[type="search"]:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px hsl(38 70% 50% / 0.15);
}
.shop-search .btn { padding: 0.7rem 1.1rem; }
.shop-page-body { min-height: 40vh; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.85rem 1.2rem;
}
.product-grid--home {
  margin-top: 0.5rem;
  gap: 1.6rem 1rem;
}
.product-card {
  display: flex;
  flex-direction: column;
  color: inherit;
  min-width: 0;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
/* Nunca ocultar productos del catálogo (will-reveal dejaba opacity:0 si fallaba el JS) */
.product-grid .product-card,
.product-grid--home .product-card {
  opacity: 1;
  transform: none;
  animation: productCardIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.product-grid .product-card:nth-child(4n + 1),
.product-grid--home .product-card:nth-child(4n + 1) { animation-delay: 0ms; }
.product-grid .product-card:nth-child(4n + 2),
.product-grid--home .product-card:nth-child(4n + 2) { animation-delay: 60ms; }
.product-grid .product-card:nth-child(4n + 3),
.product-grid--home .product-card:nth-child(4n + 3) { animation-delay: 120ms; }
.product-grid .product-card:nth-child(4n + 4),
.product-grid--home .product-card:nth-child(4n + 4) { animation-delay: 180ms; }
@keyframes productCardIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}
.product-card:hover { transform: translateY(-4px); }
.product-card .product-card-title,
.product-card .product-card-meta {
  text-decoration: none;
  color: inherit;
}
.product-card-media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background:
    linear-gradient(145deg, hsl(38 35% 90%), hsl(30 20% 86%));
  box-shadow: 0 10px 28px hsl(25 30% 20% / 0.08);
}
.product-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, hsl(25 30% 12% / 0.18) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
}
.product-card:hover .product-card-media::after { opacity: 1; }
.product-card-media::before {
  content: "";
  position: absolute;
  inset: -40% auto auto -30%;
  width: 55%;
  height: 160%;
  background: linear-gradient(105deg, transparent, hsl(38 90% 80% / 0.28), transparent);
  transform: translateX(-120%) rotate(18deg);
  transition: transform 0.8s ease;
  z-index: 2;
  pointer-events: none;
}
.product-card:hover .product-card-media::before {
  transform: translateX(280%) rotate(18deg);
}
.product-card-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1), filter 0.45s ease;
}
.product-card:hover .product-card-media img {
  transform: scale(1.06);
  filter: saturate(1.06) contrast(1.02);
}
.product-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  padding: 0.9rem 0.15rem 0;
}
.product-card-meta {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: hsl(32 35% 42%);
  font-weight: 700;
}
.product-card-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.6em;
  transition: color 0.2s ease;
}
.product-card:hover .product-card-title { color: hsl(32 45% 28%); }
.product-card-price {
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-top: 0.15rem;
  color: hsl(32 50% 32%);
}
.product-iva-tag {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  margin: 0.15rem 0 0.35rem;
}
.visit-type-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 0 0 1.35rem;
}
.visit-cta-section {
  padding-top: 0;
}
.visit-cta-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.25rem;
  align-items: center;
  padding: 1.5rem 0 2.5rem;
  border-top: 1px solid var(--border);
}
.visit-cta-inner h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.45rem, 2.5vw, 1.9rem);
  margin: 0.2rem 0 0.45rem;
}
.visit-cta-inner p:last-child {
  margin: 0;
  color: var(--muted-foreground);
  max-width: 36rem;
}
.visit-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.legal-doc {
  max-width: 720px;
  color: var(--muted-foreground);
  line-height: 1.65;
}
.legal-doc p { margin: 0 0 1rem; }
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.shop-home-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  text-align: center;
  margin: 2.4rem 0 0;
}
.shop-home-cta .btn {
  box-shadow: 0 8px 22px hsl(38 55% 40% / 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s;
}
.shop-home-cta .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px hsl(38 55% 40% / 0.32);
}
.catalog-full-page .catalog-jump {
  margin: 0 0 1.75rem;
  flex-wrap: wrap;
}
.catalog-cat-block {
  margin: 0 0 2.5rem;
  padding-top: 0.5rem;
}
.catalog-cat-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.catalog-cat-head h2 {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 500;
  margin: 0;
}
.catalog-cat-head a {
  font-size: 0.92rem;
  color: var(--muted-foreground);
}
.shop-empty {
  text-align: center;
  padding: 4rem 1rem;
  color: var(--muted-foreground);
  display: grid;
  gap: 1.25rem;
  justify-items: center;
}
/* display:grid de .shop-empty pisa el atributo HTML hidden */
.shop-empty[hidden],
.cart-layout[hidden],
.checkout-grid[hidden] {
  display: none !important;
}
.shop-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  justify-content: center;
  margin-top: 2.85rem;
}
.shop-pagination a {
  min-width: 2.2rem;
  height: 2.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--muted-foreground);
  border-radius: 999px;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.shop-pagination a.is-active,
.shop-pagination a:hover {
  color: hsl(25 25% 14%);
  background: linear-gradient(135deg, hsl(38 70% 62%), hsl(32 65% 52%));
  transform: translateY(-1px);
}

/* Ficha producto + galería animada */
.product-detail {
  position: relative;
  padding: 1.75rem 0 4.75rem;
  background:
    radial-gradient(ellipse 50% 35% at 85% 0%, hsl(38 70% 70% / 0.22), transparent 55%),
    linear-gradient(180deg, hsl(32 28% 95%) 0%, var(--background) 220px);
}
.product-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  color: var(--muted-foreground);
  margin-bottom: 1.75rem;
}
.product-breadcrumb a {
  transition: color 0.2s;
}
.product-breadcrumb a:hover { color: var(--gold); }
.product-breadcrumb span { opacity: 0.55; }
.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
}
.product-gallery {
  position: sticky;
  top: 6.5rem;
}
.product-gallery-main {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  max-height: min(78vh, 720px);
  background:
    linear-gradient(145deg, hsl(38 30% 90%), hsl(30 18% 86%));
  overflow: hidden;
  box-shadow:
    0 18px 40px hsl(25 30% 18% / 0.12),
    0 0 0 1px hsl(38 30% 80% / 0.45);
}
.product-gallery-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, hsl(38 80% 70% / 0.12), transparent 40%, transparent 70%, hsl(25 40% 20% / 0.08));
  pointer-events: none;
  z-index: 2;
  mix-blend-mode: soft-light;
}
.product-gallery-main img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.55s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 1;
}
.product-gallery-main img.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
  animation: galleryKen 14s ease-in-out infinite alternate;
}
@keyframes galleryKen {
  from { transform: scale(1) translate3d(0, 0, 0); }
  to { transform: scale(1.05) translate3d(-1.2%, -0.8%, 0); }
}
.product-gallery-main.is-swapping img.is-active {
  animation: none;
}
.product-thumbs {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
  overflow-x: auto;
  padding: 0.15rem 0.1rem 0.35rem;
}
.product-thumb {
  position: relative;
  flex: 0 0 auto;
  width: 68px;
  height: 84px;
  padding: 0;
  border: 2px solid transparent;
  background: hsl(30 16% 88%);
  cursor: pointer;
  overflow: hidden;
  opacity: 0.72;
  transition: opacity 0.25s, border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.product-thumb:hover {
  opacity: 1;
  transform: translateY(-3px);
  box-shadow: 0 8px 16px hsl(25 30% 20% / 0.12);
}
.product-thumb.is-active {
  opacity: 1;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px hsl(38 70% 50% / 0.2);
  transform: translateY(-2px);
}
.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.product-thumb:hover img,
.product-thumb.is-active img {
  transform: scale(1.08);
}
.product-info {
  padding-top: 0.25rem;
  max-width: 28rem;
  animation: shopIntroIn 0.75s 0.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.product-info .eyebrow {
  color: hsl(32 45% 38%);
}
.product-info h1 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.55rem, 2.8vw, 2.1rem);
  line-height: 1.2;
  margin: 0.45rem 0 0.65rem;
}
.product-sku {
  color: var(--muted-foreground);
  font-size: 0.88rem;
  margin: 0;
}
.product-price {
  font-size: 1.55rem;
  font-weight: 700;
  margin: 1.25rem 0 0.35rem;
  letter-spacing: 0.02em;
  background: linear-gradient(120deg, hsl(32 50% 30%), hsl(38 60% 40%));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.product-stock {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2d6a4f;
  background: hsl(150 35% 92%);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  margin: 0.35rem 0 1.25rem;
}
.product-stock::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 0 currentColor;
  animation: stockPulse 2s ease-out infinite;
}
@keyframes stockPulse {
  0% { box-shadow: 0 0 0 0 hsl(150 45% 35% / 0.45); }
  70% { box-shadow: 0 0 0 8px hsl(150 45% 35% / 0); }
  100% { box-shadow: 0 0 0 0 hsl(150 45% 35% / 0); }
}
.product-stock--out {
  color: #9b3b3b;
  background: hsl(8 45% 94%);
}
.product-stock--out::before { animation: none; }
.product-desc {
  border-top: 1px solid hsl(38 25% 84%);
  padding-top: 1.15rem;
  color: var(--muted-foreground);
  line-height: 1.65;
  font-size: 0.98rem;
}
.product-desc p { margin: 0; }
.product-share {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 0.85rem;
  margin-top: 1.35rem;
  padding-top: 1.1rem;
  border-top: 1px solid hsl(38 25% 84%);
}
.product-share-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}
.product-share-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid hsl(38 22% 82%);
  border-radius: 999px;
  background: rgba(255,255,255,0.65);
  color: var(--warm-brown);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}
.share-btn svg { width: 16px; height: 16px; }
.share-btn:hover {
  background: hsl(38 60% 92%);
  border-color: hsl(38 45% 68%);
  color: hsl(25 30% 18%);
  transform: translateY(-1px);
}
.product-share-toast {
  position: absolute;
  right: 0;
  top: -0.15rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #1a5c36;
  background: #eaf7ef;
  border: 1px solid #b9e0c5;
  padding: 0.25rem 0.55rem;
  border-radius: 6px;
}
.product-share-toast[hidden] { display: none !important; }

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.75rem;
}
.product-actions .btn-gold {
  box-shadow: 0 8px 22px hsl(38 55% 40% / 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s;
}
.product-actions .btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px hsl(38 55% 40% / 0.35);
}

@media (prefers-reduced-motion: reduce) {
  .shop-page::before,
  .product-gallery-main img.is-active,
  .product-stock::before,
  .product-card-media::before,
  .product-grid .product-card,
  .product-grid--home .product-card {
    animation: none !important;
  }
  .product-grid .product-card,
  .product-grid--home .product-card {
    opacity: 1 !important;
    transform: none !important;
  }
  .product-card:hover,
  .product-card:hover .product-card-media img,
  .shop-cats a:hover {
    transform: none;
  }
}

@media (max-width: 1100px) {
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .product-grid .product-card:nth-child(3n + 1) { --stagger: 0ms; }
  .product-grid .product-card:nth-child(3n + 2) { --stagger: 80ms; }
  .product-grid .product-card:nth-child(3n + 3) { --stagger: 160ms; }
}
@media (max-width: 800px) {
  .product-grid,
  .product-grid--home { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem 0.85rem; }
  .product-detail-grid { grid-template-columns: 1fr; }
  .product-gallery { position: static; }
  .product-info { max-width: none; }
  .shop-page-top { padding-top: 1.5rem; }
}
@media (max-width: 480px) {
  .product-card-title { font-size: 0.95rem; }
}

/* Carrito header + checkout */
.cart-link,
.account-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--warm-brown);
  border-radius: 999px;
  transition: background .2s, color .2s;
}
.cart-link:hover,
.account-link:hover,
.account-link.is-on { background: hsl(38 60% 92%); color: var(--foreground); }

/* Auth / cuenta cliente */
.auth-page {
  padding: 2.5rem 0 4rem;
  background:
    radial-gradient(ellipse 60% 40% at 80% 0%, hsl(38 60% 88% / 0.45), transparent 55%),
    linear-gradient(180deg, hsl(32 28% 95%) 0%, var(--background) 220px);
}
.auth-wrap {
  display: grid;
  place-items: center;
}
.auth-card {
  width: min(100%, 440px);
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--border);
  padding: 1.6rem 1.45rem 1.75rem;
}
.auth-page--account .auth-card { width: auto; }
.auth-card h1 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  margin: 0.25rem 0 0.45rem;
  color: var(--warm-brown);
}
.auth-card h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.25rem;
  margin: 0 0 1rem;
  color: var(--warm-brown);
}
.auth-lead {
  color: var(--muted-foreground);
  font-size: 0.92rem;
  margin: 0 0 1.15rem;
  line-height: 1.5;
}
.auth-form {
  display: grid;
  gap: 0.75rem;
}
.auth-form label {
  display: grid;
  gap: 0.3rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted-foreground);
}
.auth-form input {
  border: 1px solid var(--border);
  padding: 0.7rem 0.8rem;
  font: inherit;
  background: #fff;
  color: var(--foreground);
}
.auth-form .btn { width: 100%; justify-content: center; margin-top: 0.35rem; }
.auth-alert {
  background: #fdecea;
  color: #8a2b22;
  border: 1px solid #f0c2bc;
  padding: 0.7rem 0.85rem;
  margin-bottom: 0.85rem;
  font-size: 0.9rem;
}
.auth-switch {
  margin: 1.1rem 0 0;
  font-size: 0.9rem;
  color: var(--muted-foreground);
}
.auth-switch a { color: var(--warm-brown); text-decoration: underline; text-underline-offset: 2px; }
.account-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1rem;
  align-items: start;
}
.account-meta {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}
.account-meta li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.5rem;
}
.account-meta span { color: var(--muted-foreground); font-size: 0.8rem; }
.account-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.25rem;
}
.account-orders { display: grid; gap: 0.65rem; }
.account-order {
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.65rem;
  display: grid;
  gap: 0.2rem;
}
.account-order div {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.92rem;
}
.account-order span { color: var(--muted-foreground); }
.account-order em { font-style: normal; text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.72rem; font-weight: 700; color: var(--gold); }
.account-order small { color: var(--muted-foreground); }
@media (max-width: 800px) {
  .account-grid { grid-template-columns: 1fr; }
}
.cart-count {
  position: absolute;
  top: 2px;
  right: 0;
  min-width: 1.15rem;
  height: 1.15rem;
  padding: 0 0.28rem;
  border-radius: 999px;
  background: var(--gold);
  color: hsl(25 20% 12%);
  font-size: 0.68rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.product-add-btn {
  margin-top: 0.55rem;
  width: 100%;
  padding: 0.55rem 0.75rem;
  font-size: 0.68rem;
}
.product-add-btn.is-added { background: #2d6a4f; }

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.7fr);
  gap: 1.5rem;
  align-items: start;
}
.cart-section-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  margin: 0 0 0.85rem;
}
.later-box {
  margin-top: 2.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.later-hint { margin: -0.35rem 0 1rem; }
.later-box .cart-line { opacity: 0.92; }
.later-box .linkish { color: var(--muted-foreground); }
.cart-lines { display: grid; gap: 0.85rem; }
.cart-line {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 0.9rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--border);
}
.cart-line-media {
  display: block;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: hsl(30 16% 88%);
}
.cart-line-media img { width: 100%; height: 100%; object-fit: cover; }
.cart-line-body h2 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
  margin: 0 0 0.25rem;
}
.cart-line-body h2 a { text-decoration: none; }
.cart-line-body .muted { color: var(--muted-foreground); font-size: 0.85rem; margin: 0 0 0.55rem; }
.cart-line-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
.cart-line-controls input {
  width: 4.5rem;
  border: 1px solid var(--border);
  padding: 0.35rem 0.45rem;
  margin-left: 0.35rem;
}
.cart-line-controls .linkish {
  border: none;
  background: none;
  color: #a33;
  cursor: pointer;
  font: inherit;
  text-decoration: underline;
}
.panel-like, .checkout-block, .checkout-aside {
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--border);
  padding: 1.15rem 1.2rem 1.3rem;
}
.cart-summary h2, .checkout-aside h2, .checkout-block h2 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0 0 0.85rem;
}
.cart-sum-row {
  display: flex;
  justify-content: space-between;
  margin: 0.4rem 0;
}
.cart-sum-total {
  border-top: 1px solid var(--border);
  margin-top: 0.65rem;
  padding-top: 0.65rem;
  font-size: 1.15rem;
}
.cart-summary .btn, .checkout-aside .btn { width: 100%; justify-content: center; margin-top: 0.55rem; }

.checkout-user-banner {
  margin: 0 0 1.1rem;
  font-size: 0.92rem;
  color: var(--muted-foreground);
}
.checkout-user-banner a { color: inherit; text-underline-offset: 2px; }
.checkout-account .account-opt {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  margin: 0.65rem 0 0.85rem;
  cursor: pointer;
}
.checkout-account .account-opt input { margin-top: 0.2rem; }
.cuenta-pass-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.cuenta-pass-wrap label { display: grid; gap: 0.35rem; font-size: 0.88rem; }
.cuenta-pass-wrap input {
  border: 1px solid var(--border);
  padding: 0.55rem 0.65rem;
  font: inherit;
  background: #fff;
}

.checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.75fr);
  gap: 1.25rem;
  align-items: start;
}
.checkout-main { display: grid; gap: 1rem; }
.checkout-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.checkout-fields label {
  display: grid;
  gap: 0.3rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted-foreground);
}
.checkout-fields label.full { grid-column: 1 / -1; }
.checkout-fields input,
.checkout-fields select,
.checkout-fields textarea {
  border: 1px solid var(--border);
  padding: 0.65rem 0.75rem;
  font: inherit;
  background: #fff;
  color: var(--foreground);
  font-weight: 400;
}
.pay-option {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  padding: 0.75rem;
  border: 1px solid var(--border);
  margin-bottom: 0.55rem;
  cursor: pointer;
  background: #fff;
}
.pay-option strong { display: block; }
.pay-option small { color: var(--muted-foreground); }
.checkout-lines { display: grid; gap: 0.45rem; margin-bottom: 0.75rem; }
.ck-line {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.9rem;
}
.transfer-box {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}
.transfer-box li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.35rem;
}
.transfer-box span { color: var(--muted-foreground); }

@media (max-width: 900px) {
  .cart-layout, .checkout-grid { grid-template-columns: 1fr; }
  .checkout-fields { grid-template-columns: 1fr; }
  .cuenta-pass-wrap { grid-template-columns: 1fr; }
  .cart-summary, .checkout-aside { position: static; }
}

@media (max-width: 720px) {
  .top-bar {
    font-size: 0.72rem;
    padding: 0.45rem 0.75rem;
    line-height: 1.35;
  }
  .top-bar a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .shop-search {
    max-width: none;
    flex-wrap: wrap;
  }
  .shop-search .btn {
    width: 100%;
    justify-content: center;
  }
  .shop-cats {
    mask-image: none;
    gap: 0.4rem;
    padding-bottom: 0.5rem;
  }
  .cart-line {
    grid-template-columns: 72px 1fr;
    gap: 0.7rem;
  }
  .cart-line-body h2 { font-size: 0.98rem; }
  .cart-line-controls {
    gap: 0.55rem;
    font-size: 0.88rem;
  }
  .panel-like, .checkout-block, .checkout-aside {
    padding: 1rem;
  }
  .product-add-btn {
    padding: 0.7rem 0.75rem;
    font-size: 0.72rem;
    min-height: 44px;
  }
  .transfer-box li {
    flex-direction: column;
    gap: 0.15rem;
  }
  .pay-option { padding: 0.85rem 0.75rem; }
}

@media (max-width: 480px) {
  .product-grid,
  .product-grid--home {
    gap: 1rem 0.65rem;
  }
  .header-sales .logo img {
    max-height: 42px;
  }
  .cart-link {
    width: 40px;
    height: 40px;
  }
}
