/* ═══════════════════════════════════════════════
   BELLADONA — Estilos principales
   ═══════════════════════════════════════════════ */

/* ── Base ── */
* { margin: 0; padding: 0; box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: #fbf7ee;
  color: #521f49;
}
.font-serif { font-family: 'Playfair Display', Georgia, serif; }

/* Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #fbf7ee; }
::-webkit-scrollbar-thumb { background: #d0b5cc; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #ac7dbb; }


/* ═══════════════════════════════════════════════
   ANIMACIONES
   ═══════════════════════════════════════════════ */
@keyframes heroIn {
  from { opacity: 0; transform: translateY(60px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes floatA {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-14px) rotate(2deg); }
}
@keyframes floatB {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-9px) rotate(-1.5deg); }
}
@keyframes pulseSoft {
  0%, 100% { opacity: var(--pulse-from, 0.2); }
  50%      { opacity: var(--pulse-to, 0.45); }
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Reveal on scroll ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .15s; }
.reveal-d2 { transition-delay: .3s; }
.reveal-d3 { transition-delay: .45s; }
.reveal-d4 { transition-delay: .6s; }

/* ── Hero entrance ── */
.hero-r {
  opacity: 0;
  transform: translateY(60px);
  animation: heroIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-r:nth-child(2) { animation-delay: .2s; }
.hero-r:nth-child(3) { animation-delay: .4s; }
.hero-r:nth-child(4) { animation-delay: .6s; }
.hero-r:nth-child(5) { animation-delay: .85s; }
.hero-r:nth-child(6) { animation-delay: 1.05s; }


/* ═══════════════════════════════════════════════
   COMPONENTES REUTILIZABLES
   ═══════════════════════════════════════════════ */

/* ── Botones ── */
.btn-p {
  background: #9559a8;
  color: #fbf7ee;
  transition: all .4s cubic-bezier(.16,1,.3,1);
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-p::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent);
  transition: left .6s ease;
}
.btn-p:hover::after { left: 100%; }
.btn-p:hover {
  background: #7c4776;
  transform: translateY(-2px);
  box-shadow: 0 10px 35px rgba(149,89,168,.35);
}

.btn-o {
  border: 1px solid #d0b5cc;
  color: #9559a8;
  transition: all .4s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-o:hover {
  background: #9559a8;
  color: #fbf7ee;
  border-color: #9559a8;
}

.btn-d {
  background: #521f49;
  color: #fbf7ee;
  transition: all .4s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-d:hover {
  background: #3d1735;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(82,31,73,.3);
}

/* ── Section label ── */
.section-label {
  display: inline-block;
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  margin-bottom: 1rem;
}
.section-label.purp      { color: #9559a8; }
.section-label.verde     { color: #808b69; }
.section-label.muted-purp { color: #7c4776; }

/* ── Link underline ── */
.link-u {
  position: relative;
  display: inline-block;
}
.link-u::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 0; height: 1px;
  background: currentColor;
  transition: width .4s cubic-bezier(.16,1,.3,1);
}
.link-u:hover::after { width: 100%; }

/* ── Section glows ── */
.section-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  animation: pulseSoft 5s ease-in-out infinite;
}
.section-glow-1 { top: 5%;  right: -5%;  width: 320px; height: 320px; background: rgba(232,213,228,.2); }
.section-glow-2 { bottom: 5%; left: -5%;   width: 380px; height: 380px; background: rgba(205,221,209,.15); animation-delay: 2.5s; }
.section-glow-5 { top: 40%; left: 45%;      width: 260px; height: 260px; background: rgba(208,181,204,.1);  animation-delay: 4s; }


/* ═══════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: all .5s ease;
}
.navbar.scrolled {
  background: rgba(251,247,238,.93);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(208,181,204,.25);
}

.nav-link {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #917389;
  font-weight: 300;
  transition: color .3s ease;
}
.nav-link:hover { color: #9559a8; }
.nav-item {
  position: relative;
  padding: .8rem 0;
}
.nav-item::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 1;
  width: calc(100% + 92px);
  height: 1rem;
  transform: translateX(-50%);
}
.nav-link-trigger::after {
  content: "";
  width: 5px;
  height: 5px;
  margin-left: .5rem;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}
.nav-dropdown {
  position: absolute;
  top: calc(100% + .5rem);
  left: 50%;
  z-index: 20;
  display: none;
  min-width: 190px;
  padding: .65rem;
  border: 1px solid rgba(208,181,204,.28);
  border-radius: 8px;
  background: rgba(251,247,238,.97);
  box-shadow: 0 18px 46px rgba(82,31,73,.14);
  transform: translate(-50%, 0);
  opacity: 0;
  pointer-events: none;
  transition: opacity .04s linear;
}
.nav-dropdown[hidden] {
  display: none !important;
}
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown,
.nav-item.is-dropdown-open .nav-dropdown {
  display: block;
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.nav-dropdown a {
  display: block;
  padding: .62rem .75rem;
  border-radius: 6px;
  color: #521f49;
  font-size: 13px;
  text-decoration: none;
  transition: background .2s ease, color .2s ease;
}
.nav-dropdown a:hover {
  background: rgba(232,213,228,.38);
  color: #9559a8;
}

.nav-icon {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #917389;
  transition: color .3s ease;
}
.nav-icon:hover { color: #9559a8; }

.header-search {
  position: relative;
  align-items: center;
  width: min(26vw, 320px);
  min-width: 220px;
  border: 1px solid rgba(208,181,204,.34);
  border-radius: 999px;
  background: rgba(251,247,238,.58);
  color: #917389;
}
.header-search-icon {
  margin-left: .85rem;
  color: #917389;
  flex-shrink: 0;
}
.header-search input {
  width: 100%;
  min-width: 0;
  padding: .62rem .95rem .62rem .45rem;
  background: transparent;
  border: 0;
  outline: 0;
  color: #521f49;
  font-size: 13px;
}
.header-search input::placeholder {
  color: #917389;
}
.search-suggestions {
  position: absolute;
  top: calc(100% + .45rem);
  left: 0;
  right: 0;
  z-index: 220;
  padding: .55rem;
  border: 1px solid rgba(208,181,204,.28);
  border-radius: 16px;
  background: rgba(251,247,238,.96);
  box-shadow: 0 18px 48px rgba(82,31,73,.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.search-suggestions a {
  display: grid;
  gap: .15rem;
  padding: .65rem .75rem;
  border-radius: 12px;
  color: #521f49;
  text-decoration: none;
  font-size: 13px;
}
.search-suggestions a:hover {
  background: rgba(232,213,228,.35);
}
.search-suggestions span {
  color: #917389;
  font-size: 12px;
}
.nav-search-panel {
  position: fixed;
  left: 0;
  right: 0;
  top: 5.25rem;
  z-index: 180;
  padding: 0 1.25rem;
  pointer-events: none;
}
.nav-search-form {
  position: relative;
  display: flex;
  align-items: center;
  width: min(520px, 100%);
  margin: 0 auto;
  border: 1px solid rgba(208,181,204,.36);
  border-radius: 999px;
  background: rgba(251,247,238,.98);
  box-shadow: 0 18px 48px rgba(82,31,73,.13);
  pointer-events: auto;
}
.nav-search-form input {
  width: 100%;
  min-width: 0;
  padding: .82rem .55rem;
  background: transparent;
  border: 0;
  outline: 0;
  color: #521f49;
  font-size: 14px;
}
.nav-search-form button {
  width: 40px;
  height: 40px;
  margin-right: .25rem;
  display: grid;
  place-items: center;
  color: #917389;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
}
.brand-photo {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(149,89,168,.35);
  box-shadow: 0 4px 14px rgba(82,31,73,.08);
}


/* ═══════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.watercolor-hero {
  background: linear-gradient(
    160deg,
    #f9f4fb 0%,
    #f0e4f5 30%,
    #e8d5e4 55%,
    #ddd0e8 70%,
    #f3eaf6 100%
  );
}

/* Blobs acuarela */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-blob-1 { top: -10%; left: -5%;   width: 500px; height: 500px; background: rgba(232,213,228,.4);  filter: blur(100px); animation: floatA 7s ease-in-out infinite; }
.hero-blob-2 { bottom: -10%; right: -8%; width: 600px; height: 600px; background: rgba(208,181,204,.3);  filter: blur(120px); animation: floatB 9s ease-in-out 1.5s infinite; }
.hero-blob-3 { top: 30%; right: 10%;      width: 300px; height: 300px; background: rgba(205,221,209,.2);  filter: blur(80px);  animation: pulseSoft 5s ease-in-out infinite; }
.hero-blob-4 { bottom: 20%; left: 15%;    width: 250px; height: 250px; background: rgba(172,125,187,.15); filter: blur(80px);  animation: pulseSoft 5s ease-in-out 2s infinite; }

/* Flores SVG */
.hero-flower {
  position: absolute;
  opacity: .07;
  pointer-events: none;
}
.hero-flower-1 { top: 16%; left: 8%;  width: 40px;  animation: floatA 7s ease-in-out infinite; }
.hero-flower-2 { bottom: 20%; right: 20%; width: 36px; animation: floatB 9s ease-in-out 1.5s infinite; }
@media (min-width: 768px) {
  .hero-flower-1 { width: 56px; left: 6%; }
  .hero-flower-2 { width: 48px; right: 8%; }
}

/* Puntos decorativos */
.hero-dot {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-dot-1 { top: 18%; right: 22%; width: 12px; height: 12px; background: rgba(172,125,187,.3); animation: floatA 7s ease-in-out 1s infinite; }
.hero-dot-2 { top: 60%; left: 12%;  width: 8px;  height: 8px;  background: rgba(149,89,168,.25);  animation: floatB 9s ease-in-out infinite; }
.hero-dot-3 { top: 35%; left: 30%;  width: 10px; height: 10px; background: rgba(128,139,105,.2);   animation: floatA 7s ease-in-out 3s infinite; }
.hero-dot-4 { bottom: 30%; right: 35%; width: 8px; height: 8px; background: rgba(124,71,118,.2);    animation: floatB 9s ease-in-out 2s infinite; }

/* Badge superior */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #7c4776;
  font-weight: 500;
}
@media (min-width: 768px) {
  .hero-badge { font-size: 12px; }
}
.hero-badge-line {
  display: inline-block;
  width: 24px;
  height: 1px;
  background: #7c4776;
}

/* Feature cards del banner */
.hero-feature-card {
  background: rgba(255,255,255,.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 1rem;
  border: 1px solid rgba(208,181,204,.3);
  transition: all .3s ease;
}
.hero-feature-card:hover {
  background: rgba(255,255,255,.55);
  border-color: rgba(208,181,204,.5);
  transform: translateY(-2px);
}
.hero-feature-label {
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #521f49;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
}
@media (min-width: 768px) {
  .hero-feature-label { font-size: 12px; }
  .hero-feature-card { padding: 1.25rem; }
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
}
@media (min-width: 768px) {
  .hero-scroll-indicator { display: flex; }
}
.hero-scroll-indicator span {
  font-size: 9px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: #917389;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, #d0b5cc, transparent);
}

/* ── Hero acuarela, sin imagen de fondo ── */
.watercolor-hero {
  min-height: 100vh;
  padding-top: 5.5rem;
  background:
    radial-gradient(ellipse at 18% 18%, rgba(208,181,204,.42), transparent 30%),
    radial-gradient(ellipse at 82% 20%, rgba(205,221,209,.42), transparent 28%),
    radial-gradient(ellipse at 50% 68%, rgba(172,125,187,.2), transparent 34%),
    linear-gradient(160deg, #fbf7ee 0%, #f9f4fb 42%, #e8d5e4 100%);
  isolation: isolate;
}
.watercolor-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(82,31,73,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(82,31,73,.02) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: .45;
  pointer-events: none;
}
.watercolor-hero::after {
  content: none;
}
.watercolor-hero > .relative {
  max-width: 64rem;
  padding-top: 2rem;
  padding-bottom: 3rem;
}
.watercolor-hero .hero-flower {
  opacity: .1;
}
.hero-logo-frame {
  width: min(13.5rem, 42vw);
  aspect-ratio: 1;
  margin: 0 auto -1.2rem;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(82,31,73,.08);
  opacity: .96;
}
.hero-logo-art {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-wordmark {
  font-size: clamp(3.4rem, 8vw, 6.8rem) !important;
  margin-bottom: .65rem !important;
  color: #521f49;
  text-shadow: 0 1px 0 rgba(251,247,238,.65);
}
.hero-badge {
  color: #521f49;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 13px;
  letter-spacing: .2em;
  font-weight: 700;
}
.hero-badge-line {
  width: 42px;
  background: #808b69;
}
.watercolor-hero p.hero-r:not(.hero-feature-label) {
  color: #917389;
}
.hero-feature-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: .9rem;
  min-height: 5rem;
  padding: .9rem 1rem;
  background: rgba(251,247,238,.62);
  border: 1px solid rgba(208,181,204,.32);
  border-radius: 999px;
  box-shadow: 0 12px 34px rgba(82,31,73,.06);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero-feature-card .iconify {
  width: 3.1rem !important;
  height: 3.1rem !important;
  padding: .78rem;
  border-radius: 50%;
  background: rgba(208,181,204,.42);
  color: #521f49 !important;
  margin: 0 !important;
}
.hero-feature-label {
  text-align: left;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 12px;
  letter-spacing: .08em;
  line-height: 1.25;
  color: #521f49;
  font-weight: 700;
}
.watercolor-hero .btn-p {
  background: #9559a8;
  box-shadow: 0 10px 30px rgba(82,31,73,.16);
}
.watercolor-hero .btn-o {
  background: rgba(251,247,238,.56);
  border-color: rgba(124,71,118,.22);
}
@media (min-width: 768px) {
  .watercolor-hero .grid.md\:grid-cols-4 {
    max-width: 64rem;
    gap: 1rem;
  }
}
@media (max-width: 767px) {
  .watercolor-hero {
    min-height: auto;
    padding-top: 5rem;
  }
  .watercolor-hero::after {
    content: none;
  }
  .watercolor-hero > .relative {
    padding-top: 1rem;
    padding-bottom: 2.75rem;
  }
  .hero-logo-frame {
    width: min(11rem, 54vw);
    margin-bottom: -.7rem;
  }
  .hero-wordmark {
    font-size: clamp(3rem, 14vw, 4.4rem) !important;
  }
  .watercolor-hero .grid.grid-cols-2 {
    gap: .55rem;
  }
  .hero-feature-card {
    grid-template-columns: 2.45rem 1fr;
    min-height: 3.9rem;
    padding: .45rem .5rem;
  }
  .hero-feature-card .iconify {
    width: 2.45rem !important;
    height: 2.45rem !important;
    padding: .62rem;
  }
  .hero-feature-label {
    font-size: 10px;
  }
  .watercolor-hero .hero-r.mt-12 {
    margin-top: 1.6rem !important;
  }
}


/* ═══════════════════════════════════════════════
   MARQUEE
   ═══════════════════════════════════════════════ */
.marquee-band {
  padding: 1.25rem 0;
  background: rgba(232,213,228,.3);
  border-top: 1px solid rgba(208,181,204,.3);
  border-bottom: 1px solid rgba(208,181,204,.3);
  overflow: hidden;
}
.marquee-track {
  display: flex;
  animation: marquee 35s linear infinite;
  width: max-content;
}
.marquee-items {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding: 0 1.25rem;
}
.marquee-items span {
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #917389;
  white-space: nowrap;
}
.marquee-sep {
  font-size: 12px !important;
  color: #d0b5cc !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}
.marquee-sep.green { color: #808b69 !important; }


/* ═══════════════════════════════════════════════
   PRODUCT CARDS
   ═══════════════════════════════════════════════ */
.p-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  transition: all .6s cubic-bezier(.16,1,.3,1);
  cursor: pointer;
}
.p-card:hover { transform: translateY(-5px); }
.p-card:hover .p-img { transform: scale(1.06); }

.p-card-img-wrap {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.p-card-img-sm { aspect-ratio: 3 / 4; }
.p-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.16,1,.3,1);
}

.p-card-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(82,31,73,.72) 0%, rgba(82,31,73,.34) 58%, rgba(82,31,73,.08) 100%);
}
@media (min-width: 768px) {
  .p-card-overlay { padding: 2rem; }
}

.p-card-cat {
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(249,244,251,.8);
  text-shadow: 0 1px 8px rgba(34,16,31,.45);
}
.p-card-title {
  font-family: 'Playfair Display', serif;
  color: #fbf7ee;
  margin-top: .25rem;
  text-shadow: 0 2px 14px rgba(34,16,31,.55);
}
.p-card-desc {
  font-size: 14px;
  color: rgba(251,247,238,.7);
  margin-top: .5rem;
  font-weight: 300;
  text-shadow: 0 1px 10px rgba(34,16,31,.48);
}
.p-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
}
.p-card-price {
  font-family: 'Playfair Display', serif;
  color: #fbf7ee;
  text-shadow: 0 2px 12px rgba(34,16,31,.5);
}
.p-card-link {
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(251,247,238,.6);
  display: flex;
  align-items: center;
  gap: .25rem;
  transition: color .3s ease;
  text-shadow: 0 1px 8px rgba(34,16,31,.45);
}
.p-card:hover .p-card-link { color: #fbf7ee; }
.p-card-link.icon-only .iconify { transition: transform .3s ease; }
.p-card:hover .p-card-link.icon-only .iconify { transform: translateX(3px); }


/* ── Scenario tabs ── */
.s-tab {
  font-size: 13px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #917389;
  font-weight: 300;
  padding-bottom: 4px;
  position: relative;
  transition: color .4s ease;
  background: none;
  border: none;
  cursor: pointer;
}
.s-tab::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: #9559a8;
  transition: width .4s cubic-bezier(.16,1,.3,1);
}
.s-tab:hover::after,
.s-tab.active::after { width: 100%; }
.s-tab.active {
  color: #9559a8;
  font-weight: 500;
}


/* ═══════════════════════════════════════════════
   INTERSTITIAL
   ═══════════════════════════════════════════════ */
.interstitial {
  position: relative;
  height: 45vh;
  overflow: hidden;
}
@media (min-width: 768px) {
  .interstitial { height: 65vh; }
}
.interstitial img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.interstitial-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(82,31,73,.42), rgba(82,31,73,.22));
}
.interstitial-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: 0 3px 22px rgba(34,16,31,.58);
}


/* ═══════════════════════════════════════════════
   SOSTENIBILIDAD — Tarjetas + Timeline
   ═══════════════════════════════════════════════ */
.sust-card {
  background: var(--card-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 24px;
  padding: 2rem;
  border: 1px solid var(--card-border);
  transition: all .5s ease;
}
.sust-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 50px rgba(149,89,168,.08);
  border-color: #d0b5cc;
}

.sust-icon-wrap {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--icon-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

/* Timeline */
.process-timeline {
  position: relative;
}
.process-timeline::before {
  content: '';
  position: absolute;
  left: 22px;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, #d0b5cc, #cdddd1, #808b69, #d0b5cc);
}
@media (min-width: 768px) {
  .process-timeline::before {
    left: 50%;
    transform: translateX(-.5px);
  }
}

.process-step {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .process-step { flex-direction: row; align-items: flex-start; }
}

.process-step-left {
  padding-left: 3.5rem;
}
.process-step-right {
  padding-left: 3.5rem;
}
@media (min-width: 768px) {
  .process-step-left  { width: 50%; padding-right: 4rem; padding-left: 0; text-align: right; }
  .process-step-right { width: 50%; padding-left: 4rem; }
  .process-step-img.process-step-left img { margin-left: auto; }
}

.process-step-img {
  display: none;
}
@media (min-width: 768px) {
  .process-step-img { display: block; }
}

.process-dot {
  position: absolute;
  left: 14px;
  top: .25rem;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--dot-color);
  border: 4px solid #fbf7ee;
  z-index: 2;
}
@media (min-width: 768px) {
  .process-dot {
    left: 50%;
    transform: translateX(-50%);
  }
}

.process-step-num {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #9559a8;
  font-weight: 500;
}


/* ═══════════════════════════════════════════════
   HISTORIA — Imágenes compuestas
   ═══════════════════════════════════════════════ */
.story-img-group {
  position: relative;
}
.story-img-main {
  display: block;
}
.story-img-overlap {
  position: absolute;
  bottom: -1.5rem;
  right: -.75rem;
  width: 9rem;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 16px;
  border: 4px solid rgba(249,244,251,.4);
  box-shadow: 0 10px 40px rgba(82,31,73,.12);
}
@media (min-width: 768px) {
  .story-img-overlap { width: 12rem; right: -2rem; }
}
.story-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.story-blob-1 { top: -1rem; left: -1rem; width: 7rem; height: 7rem; background: rgba(232,213,228,.4); filter: blur(32px); }
.story-blob-2 { bottom: -1rem; left: 33%;   width: 5rem; height: 5rem; background: rgba(205,221,209,.3); filter: blur(24px); }


/* ═══════════════════════════════════════════════
   STATS BAND
   ═══════════════════════════════════════════════ */
.stats-band {
  padding: 4rem 0;
  background: #521f49;
  position: relative;
  overflow: hidden;
}
.stats-glow-1 {
  position: absolute;
  top: 0; left: 0;
  width: 24rem; height: 24rem;
  background: #9559a8;
  border-radius: 50%;
  filter: blur(120px);
  opacity: .1;
}
.stats-glow-2 {
  position: absolute;
  bottom: 0; right: 0;
  width: 20rem; height: 20rem;
  background: #808b69;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .1;
}
.stats-sub {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #d0b5cc;
  margin-top: .5rem;
}


/* ═══════════════════════════════════════════════
   COMUNIDAD
   ═══════════════════════════════════════════════ */
.c-card:hover .c-img { transform: scale(1.04); }

.c-card-img-wrap {
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 1.25rem;
  background: var(--wrap-bg);
}
.c-card-img-wrap .c-img-wrap-inner {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.c-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.16,1,.3,1);
}

.c-card-body { padding: 0 .25rem; }

.c-card-avatar {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .75rem;
}
.c-card-avatar img {
  width: 32px; height: 32px;
  border-radius: 50%;
  object-fit: cover;
}
.c-card-name {
  font-size: 14px;
  font-weight: 500;
  color: #521f49;
}
.c-card-loc {
  font-size: 12px;
  color: #917389;
}
.c-card-quote {
  font-size: 14px;
  color: #917389;
  line-height: 1.6;
  font-weight: 300;
  font-style: italic;
}
.c-card-wearing {
  font-size: 11px;
  color: #d0b5cc;
  letter-spacing: .05em;
  margin-top: .625rem;
}


/* ═══════════════════════════════════════════════
   DIARIO / JOURNAL
   ═══════════════════════════════════════════════ */
.journal-card {
  cursor: pointer;
}
.journal-card:hover .journal-img { transform: scale(1.05); }

.journal-img-wrap {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 1.25rem;
  background: var(--wrap-bg);
}
.journal-img-wrap .journal-img-inner {
  aspect-ratio: 3 / 2;
  overflow: hidden;
}
.journal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.16,1,.3,1);
}

.journal-meta {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .75rem;
}
.journal-cat {
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 500;
}
.journal-cat.verde      { color: #808b69; }
.journal-cat.purp       { color: #9559a8; }
.journal-cat.muted-purp { color: #7c4776; }
.journal-sep { color: rgba(208,181,204,.5); }
.journal-date {
  font-size: 12px;
  color: #917389;
}

.journal-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: #521f49;
  line-height: 1.35;
  margin-bottom: .5rem;
  transition: color .3s ease;
}
.journal-card:hover .journal-title { color: #9559a8; }

.journal-excerpt {
  font-size: 14px;
  color: #917389;
  line-height: 1.6;
  font-weight: 300;
}


/* ═══════════════════════════════════════════════
   NEWSLETTER
   ═══════════════════════════════════════════════ */
.newsletter {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}
.newsletter img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.newsletter-overlay {
  position: absolute;
  inset: 0;
  background: rgba(251,247,238,.92);
}
.newsletter-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.newsletter-blob-1 { top: 2.5rem; right: 5rem;  width: 16rem; height: 16rem; background: rgba(232,213,228,.25); filter: blur(48px); animation: floatA 7s ease-in-out infinite; }
.newsletter-blob-2 { bottom: 2.5rem; left: 4rem; width: 12rem; height: 12rem; background: rgba(205,221,209,.2);  filter: blur(40px); animation: floatB 9s ease-in-out 1.5s infinite; }

.newsletter-input {
  flex: 1;
  padding: .875rem 1.25rem;
  border-radius: 9999px;
  background: rgba(255,255,255,.6);
  border: 1px solid rgba(208,181,204,.4);
  color: #521f49;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: all .3s ease;
}
.newsletter-input::placeholder { color: #917389; }
.newsletter-input:focus {
  border-color: #9559a8;
  background: rgba(255,255,255,.8);
}


/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
.footer-heading {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #fbf7ee;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.footer-links a {
  font-size: 14px;
  font-weight: 300;
  color: rgba(208,181,204,.6);
  text-decoration: none;
  transition: color .3s ease;
}
.footer-links a:hover { color: #d0b5cc; }
.footer-contact li {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
}

.footer-social {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(208,181,204,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(208,181,204,.6);
  text-decoration: none;
  transition: all .3s ease;
}
.footer-social:hover {
  border-color: #ac7dbb;
  color: #ac7dbb;
}

.footer-bottom-link {
  font-size: 12px;
  font-weight: 300;
  color: rgba(208,181,204,.3);
  text-decoration: none;
  transition: color .3s ease;
}
.footer-bottom-link:hover { color: rgba(208,181,204,.6); }


/* ═══════════════════════════════════════════════
   COOKIES + CART
   ═══════════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 1.15rem;
  z-index: 300;
  width: min(720px, calc(100vw - 2rem));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(208,181,204,.42);
  border-radius: 8px;
  background: rgba(251,247,238,.97);
  box-shadow: 0 18px 50px rgba(82,31,73,.16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transform: translateX(-50%);
}
.cookie-title {
  font-family: 'Playfair Display', Georgia, serif;
  color: #521f49;
  font-size: 1.1rem;
  margin-bottom: .2rem;
}
.cookie-copy {
  color: #917389;
  font-size: 13px;
  line-height: 1.45;
}
.cookie-actions {
  display: flex;
  gap: .5rem;
  flex-shrink: 0;
}
.cookie-primary,
.cookie-secondary {
  border-radius: 999px;
  padding: .65rem 1rem;
  border: 0;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.cookie-primary {
  background: #9559a8;
  color: #fbf7ee;
}
.cookie-secondary {
  border: 1px solid rgba(124,71,118,.24);
  background: transparent;
  color: #7c4776;
}
.cart-count {
  position: absolute;
  top: 3px;
  right: 1px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: #9559a8;
  color: #fbf7ee;
  font-size: 10px;
  line-height: 16px;
  text-align: center;
}
.cart-card {
  max-width: 860px;
}
.cart-items {
  display: grid;
  gap: .9rem;
  margin: 2rem 0;
}
.cart-line {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: .75rem;
  border-radius: 16px;
  background: rgba(255,255,255,.42);
  border: 1px solid rgba(208,181,204,.22);
}
.cart-line img {
  width: 72px;
  height: 88px;
  object-fit: cover;
  border-radius: 12px;
}
.cart-line h2 {
  font-family: 'Playfair Display', Georgia, serif;
  color: #521f49;
  font-size: 1.2rem;
}
.cart-line p {
  color: #917389;
  font-size: 14px;
}
.cart-line button {
  color: #9559a8;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(208,181,204,.28);
  color: #521f49;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
}
.payment-recovery {
  border: 1px solid rgba(149,89,168,.2);
  border-radius: 8px;
  background: rgba(149,89,168,.08);
  color: #521f49;
  margin: 1.25rem 0;
  padding: 1rem;
}
.payment-recovery p {
  color: #917389;
  line-height: 1.6;
  margin: 0 0 .8rem;
}
.checkout-form {
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(208,181,204,.28);
}
.checkout-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.checkout-grid label {
  display: grid;
  gap: .45rem;
  color: #808b69;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.checkout-grid input,
.checkout-grid textarea {
  width: 100%;
  border: 1px solid rgba(208,181,204,.4);
  border-radius: 8px;
  background: rgba(255,255,255,.5);
  padding: .8rem .9rem;
  color: #521f49;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  outline: none;
}
.checkout-grid input:focus,
.checkout-grid textarea:focus {
  border-color: #9559a8;
  background: rgba(255,255,255,.76);
}
.checkout-wide {
  grid-column: 1 / -1;
}
.checkout-status {
  min-height: 1.4rem;
  margin-top: 1rem;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.order-code {
  margin-top: 1.4rem;
  color: #521f49;
  font-size: 14px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.newsletter-consent {
  display: block;
  margin-top: .8rem;
  color: #917389;
  font-size: 12px;
}
.newsletter-consent a {
  color: #9559a8;
  text-decoration: underline;
  text-underline-offset: 2px;
}
@media (max-width: 640px) {
  .cookie-banner {
    align-items: stretch;
    flex-direction: column;
  }
  .cookie-actions {
    width: 100%;
  }
  .cookie-actions button {
    flex: 1;
  }
  .cart-line {
    grid-template-columns: 56px 1fr;
  }
  .cart-line button {
    grid-column: 2;
    justify-self: start;
  }
  .checkout-grid {
    grid-template-columns: 1fr;
  }
}


/* ═══════════════════════════════════════════════
   TOAST
   ═══════════════════════════════════════════════ */
.toast {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 200;
  background: #521f49;
  color: #fbf7ee;
  padding: 1rem 1.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(82,31,73,.25);
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  transform: translateY(20px);
  opacity: 0;
  transition: all .4s cubic-bezier(.16,1,.3,1);
}
.toast.show {
  transform: translateY(0);
  opacity: 1;
}


/* ═══════════════════════════════════════════════
   MENÚ MÓVIL
   ═══════════════════════════════════════════════ */
.mob-menu {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: #fbf7ee;
  transform: translateX(100%);
  transition: transform .5s cubic-bezier(.16,1,.3,1);
}
.mob-menu.open {
  transform: translateX(0);
}
.mob-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
  padding-top: 2.5rem;
}
.mob-nav-group {
  width: min(82vw, 340px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .45rem .7rem;
  text-align: center;
}
.mob-nav-group p {
  grid-column: 1 / -1;
  margin-bottom: .25rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.45rem;
  color: #521f49;
}
.mob-nav-group a {
  padding: .55rem .35rem;
  border: 1px solid rgba(208,181,204,.32);
  border-radius: 8px;
  color: #7c4776;
  font-size: 13px;
  text-decoration: none;
}


/* ═══════════════════════════════════════════════
   PÁGINAS INTERNAS
   ═══════════════════════════════════════════════ */
.page-shell {
  min-height: 100vh;
  background:
    radial-gradient(ellipse at 20% 10%, rgba(208,181,204,.25), transparent 28%),
    radial-gradient(ellipse at 80% 0%, rgba(205,221,209,.22), transparent 28%),
    #fbf7ee;
  color: #521f49;
}
.simple-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251,247,238,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(208,181,204,.22);
}
.simple-nav {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 66px;
}
.simple-search {
  display: flex;
  width: min(100%, 380px);
}
.simple-nav-actions {
  display: flex;
  align-items: center;
  gap: .8rem;
  flex-wrap: nowrap;
}
.simple-cart-link {
  margin-left: .15rem;
  flex: 0 0 36px;
  display: flex !important;
  visibility: visible !important;
}
.simple-nav-link {
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #917389;
  text-decoration: none;
  transition: color .25s ease;
}
.simple-nav-link:hover { color: #9559a8; }
.page-main {
  max-width: 1120px;
  margin: 0 auto;
  padding: 5rem 1.25rem 6rem;
}
.search-page-main {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}
.search-page-hero {
  max-width: 920px;
  margin: 0 auto;
  padding: 1rem 1.25rem 0;
  text-align: center;
}
.search-page-hero .page-copy {
  margin-left: auto;
  margin-right: auto;
}
.page-kicker {
  display: block;
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: #808b69;
  font-weight: 600;
  margin-bottom: 1rem;
}
.page-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.7rem, 7vw, 5.4rem);
  line-height: 1.02;
  font-weight: 500;
  color: #521f49;
}
.page-copy {
  color: #917389;
  line-height: 1.8;
  font-weight: 300;
}
.legal-card,
.thanks-card {
  max-width: 780px;
  background: rgba(255,255,255,.38);
  border: 1px solid rgba(208,181,204,.26);
  border-radius: 18px;
  padding: clamp(1.4rem, 4vw, 2.5rem);
}
.legal-card h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.45rem;
  margin-top: 2rem;
  margin-bottom: .65rem;
  color: #521f49;
}
.legal-card h2:first-child { margin-top: 0; }
.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .9fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.product-media {
  border-radius: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 20%, rgba(208,181,204,.5), transparent 28%),
    radial-gradient(circle at 78% 72%, rgba(205,221,209,.45), transparent 28%),
    linear-gradient(145deg, rgba(251,247,238,.9), rgba(243,234,246,.8));
  box-shadow: 0 18px 60px rgba(82,31,73,.12);
}
.product-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}
.product-gallery {
  overflow: visible;
  background: transparent;
  box-shadow: none;
}
.product-gallery-main {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background:
    radial-gradient(circle at 30% 20%, rgba(208,181,204,.5), transparent 28%),
    radial-gradient(circle at 78% 72%, rgba(205,221,209,.45), transparent 28%),
    linear-gradient(145deg, rgba(251,247,238,.9), rgba(243,234,246,.8));
  box-shadow: 0 18px 60px rgba(82,31,73,.12);
}
.product-gallery-main img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}
.product-gallery-arrow {
  position: absolute;
  top: 50%;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #521f49;
  background: rgba(251,247,238,.78);
  border: 1px solid rgba(208,181,204,.45);
  box-shadow: 0 10px 30px rgba(82,31,73,.14);
  transform: translateY(-50%);
  transition: background .25s ease, transform .25s ease;
}
.product-gallery-arrow:hover {
  background: #fbf7ee;
  transform: translateY(-50%) scale(1.04);
}
.product-gallery-prev { left: 1rem; }
.product-gallery-next { right: 1rem; }
.product-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(64px, 1fr));
  gap: .75rem;
  margin-top: .85rem;
}
.product-gallery-thumb {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(208,181,204,.36);
  background: rgba(251,247,238,.74);
  opacity: .68;
  transition: opacity .25s ease, border-color .25s ease, transform .25s ease;
}
.product-gallery-thumb img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}
.product-gallery-thumb:hover,
.product-gallery-thumb.is-active {
  opacity: 1;
  border-color: #9559a8;
  transform: translateY(-1px);
}
.product-meta {
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #808b69;
  font-weight: 600;
  margin-bottom: .9rem;
}
.product-price {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  color: #521f49;
  margin: 1.25rem 0;
}
.product-variant-field {
  display: grid;
  gap: .55rem;
  max-width: 360px;
  margin: 1.5rem 0 0;
  color: #808b69;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.product-variant-field select {
  width: 100%;
  border: 1px solid rgba(208,181,204,.52);
  border-radius: 999px;
  background: rgba(255,255,255,.62);
  color: #521f49;
  font: inherit;
  letter-spacing: 0;
  padding: .9rem 1rem;
  text-transform: none;
}
.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin: 1.8rem 0 2rem;
}
.product-facts {
  display: grid;
  gap: .75rem;
  margin-top: 2rem;
  color: #917389;
  font-size: 14px;
}
.product-grid-page {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
  margin-top: 2.5rem;
}
.search-hero-form {
  position: relative;
  display: flex;
  align-items: center;
  gap: .75rem;
  width: min(760px, 100%);
  margin: 2rem auto 0;
  padding: .45rem;
  border: 1px solid rgba(208,181,204,.36);
  border-radius: 999px;
  background: rgba(251,247,238,.86);
  box-shadow: 0 18px 55px rgba(82,31,73,.08);
}
.search-hero-form input {
  flex: 1;
  min-width: 0;
  padding: .9rem .4rem;
  background: transparent;
  border: 0;
  outline: 0;
  color: #521f49;
}
.search-chip-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .65rem;
  margin-top: .65rem;
}
.search-chip-row a {
  padding: .55rem .9rem;
  border: 1px solid rgba(208,181,204,.34);
  border-radius: 8px;
  color: #7c4776;
  background: rgba(255,255,255,.32);
  text-decoration: none;
  font-size: 13px;
}
.search-chip-row a.active {
  border-color: rgba(149,89,168,.5);
  background: rgba(149,89,168,.12);
  color: #521f49;
}
.search-filter-panel {
  width: min(780px, 100%);
  margin: 1.4rem auto 0;
  display: grid;
  gap: 1rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(208,181,204,.24);
}
.search-filter-panel p {
  margin: 0;
  color: #808b69;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: 1.6rem;
}
.category-tabs a + a {
  margin-left: .65rem;
}
.category-tabs a {
  display: inline-block;
  padding: .65rem .95rem;
  border: 1px solid rgba(208,181,204,.34);
  border-radius: 8px;
  background: rgba(255,255,255,.34);
  color: #7c4776;
  font-size: 13px;
  text-decoration: none;
}
.search-results-wrap {
  max-width: 1120px;
  margin: 3.6rem auto 0;
  padding: 0 1.25rem;
}
.search-results-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}
.product-list-card {
  display: block;
  text-decoration: none;
  color: inherit;
}
.product-list-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 18px;
  display: block;
  margin-bottom: .9rem;
}
.product-list-card h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  color: #521f49;
}
.product-list-card p {
  color: #917389;
  font-size: 14px;
}
@media (max-width: 820px) {
  .product-detail,
  .product-grid-page {
    grid-template-columns: 1fr;
  }
  .simple-nav {
    align-items: center;
    flex-direction: row;
    gap: .75rem;
  }
  .simple-nav .brand-lockup span {
    font-size: 1.05rem;
  }
  .simple-nav-actions {
    gap: .35rem;
    margin-left: auto;
  }
  .simple-nav-actions .simple-nav-link {
    display: none;
  }
  .simple-nav-actions .simple-cart-link {
    display: flex !important;
  }
  .search-hero-form {
    width: 100%;
  }
  .search-hero-form {
    align-items: stretch;
    flex-direction: column;
    border-radius: 18px;
    padding: .9rem;
  }
  .search-hero-form .header-search-icon {
    display: none;
  }
  .search-suggestions {
    position: static;
    margin-top: .4rem;
  }
  .search-results-head {
    align-items: flex-start;
    flex-direction: column;
  }
}


/* ═══════════════════════════════════════════════
   ASPECT RATIOS (para imgs dentro de wraps)
   ═══════════════════════════════════════════════ */
.c-card-img-wrap { aspect-ratio: 4 / 5; }
.journal-img-wrap { aspect-ratio: 3 / 2; }
