
:root {
  --verde: #6b874c;
  --beige: #d7caa9;
  --beige-light: #f5f0e8;
  --lila: #e3cae3;
  --morado: #6a4f70;
  --morado-dark: #4a3450;
  --rosa-polvo: #e8c4c4;
  --cream: #fdfaf5;
  --ink: #2a1f2e;
  --ink-light: #6b5f72;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; background: var(--cream); color: var(--ink); cursor: none; overflow-x: hidden; }

/* CURSOR */
.cursor { width: 12px; height: 12px; background: var(--morado); border-radius: 50%; position: fixed; pointer-events: none; z-index: 9999; transform: translate(-50%,-50%); transition: transform 0.1s, background 0.3s; mix-blend-mode: multiply; }
.cursor-ring { width: 36px; height: 36px; border: 1px solid var(--morado); border-radius: 50%; position: fixed; pointer-events: none; z-index: 9998; transform: translate(-50%,-50%); transition: transform 0.18s ease-out; opacity: 0.5; }

body::before { content: ''; position: fixed; inset: 0; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E"); pointer-events: none; z-index: 1000; opacity: 0.6; }

/* ── FRANJA AVISO ─────────────────────────────────────────── */
.aviso-strip { position: fixed; top: 0; left: 0; right: 0; z-index: 600; background: var(--morado-dark); height: 34px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.aviso-inner { display: flex; align-items: center; gap: 3rem; white-space: nowrap; animation: avisoScroll 28s linear infinite; }
@keyframes avisoScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.aviso-strip:hover .aviso-inner { animation-play-state: paused; }
.aviso-item { display: flex; align-items: center; gap: 0.5rem; font-family: 'Poppins', sans-serif; font-weight: 300; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--lila); }
.aviso-item strong { color: var(--cream); font-weight: 400; }
.aviso-sep { color: rgba(227,202,227,0.3); font-size: 12px; }
.aviso-close { position: absolute; right: 1rem; background: none; border: none; color: rgba(227,202,227,0.45); font-size: 13px; cursor: none; padding: 2px 6px; transition: color 0.2s; line-height: 1; }
.aviso-close:hover { color: var(--cream); }
.aviso-strip.hidden { display: none; }
body.has-aviso nav { top: 34px; }
@media (max-width: 600px) {
  .aviso-strip { height: 26px; }
  .aviso-item { font-size: 9px; letter-spacing: 1.5px; }
  body.has-aviso nav { top: 26px; }
}
@media (prefers-reduced-motion: reduce) { .aviso-inner { animation: none; } }

/* ── SLIDER HERO — Swiper.js ── */
.hero-slider {
  width: 100%;
  height: calc(100vh - 90px);
  min-height: 400px;
  margin-top: 98px;
  overflow: hidden;
}

/* Swiper internos heredan altura del contenedor */
.hero-slider .swiper-wrapper {
  height: 100%;
}

.hero-slider .swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-slider .swiper-slide a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

/* La imagen de fondo ocupa todo el slide */
.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}

/* Flechas — estilo Bellísimo */
.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next {
  color: var(--cream);
  background: rgba(253,250,245,0.15);
  width: 44px;
  height: 44px;
  border-radius: 0;
  backdrop-filter: blur(4px);
  transition: background 0.25s;
}
.hero-slider .swiper-button-prev:hover,
.hero-slider .swiper-button-next:hover {
  background: rgba(106,79,112,0.5);
}
.hero-slider .swiper-button-prev::after,
.hero-slider .swiper-button-next::after {
  font-size: 18px;
  font-weight: 600;
}

/* Dots — estilo Bellísimo */
.hero-slider .swiper-pagination-bullet {
  background: rgba(253,250,245,0.5);
  opacity: 1;
  width: 8px;
  height: 8px;
  transition: width 0.3s, background 0.3s;
  border-radius: 4px;
}
.hero-slider .swiper-pagination-bullet-active {
  background: var(--cream);
  width: 24px;
  border-radius: 4px;
}


/* Mobile */
@media (max-width: 600px) {
  .hero-slider { height: calc(100vh - 90px); min-height: 300px; margin-top: 90px; }
  .slide-btn-wrap { bottom: 1.2rem; right: 1.2rem; }
  .slide-btn { font-size: 9px; padding: 9px 16px; letter-spacing: 1.5px; }
  .slider-arrow { width: 34px; height: 34px; font-size: 17px; }
  .slider-arrow.prev { left: 0.5rem; }
  .slider-arrow.next { right: 0.5rem; }
}
@media (max-width: 900px) { .hero-slider { height: calc(100vh - 98px); margin-top: 98px; } }
@media (prefers-reduced-motion: reduce) {
  .slide { transition: opacity 0.3s; }
  .slide-bg { transition: none; transform: scale(1); }
  .slide-btn-wrap { transition: opacity 0.3s; }
}


.cat-card { cursor: none; }
.cat-img { pointer-events: none; }
/* ── SECCIÓN ¿CÓMO FUNCIONA? ──────────────────────────────── */
.section-como { padding: 6rem 4rem; background: var(--beige-light); position: relative; overflow: hidden; }
.section-como::before { content: '❀'; position: absolute; font-size: 300px; color: rgba(215,202,169,0.22); right: -50px; top: 50%; transform: translateY(-50%); pointer-events: none; line-height: 1; }
.como-header { text-align: center; margin-bottom: 3.5rem; }
.como-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(30px,4vw,48px); font-weight: 400; font-style: italic; color: var(--ink); line-height: 1.2; margin-top: 0.5rem; }
.como-title em { color: var(--morado); }
.como-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; max-width: 1000px; margin: 0 auto; }
.como-grid::before { content: ''; position: absolute; top: 40px; left: calc(12.5% + 20px); right: calc(12.5% + 20px); height: 1px; background: linear-gradient(to right, var(--beige), var(--morado), var(--verde), var(--beige)); opacity: 0.35; z-index: 0; }
.como-paso { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 1.5rem; position: relative; z-index: 1; }
.como-paso-icono { width: 80px; height: 80px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; margin-bottom: 1.2rem; position: relative; flex-shrink: 0; transition: transform 0.35s ease; }
.como-paso:hover .como-paso-icono { transform: scale(1.08) translateY(-4px); }
.como-paso:nth-child(1) .como-paso-icono { background: var(--lila); }
.como-paso:nth-child(2) .como-paso-icono { background: var(--rosa-polvo); }
.como-paso:nth-child(3) .como-paso-icono { background: var(--beige); }
.como-paso:nth-child(4) .como-paso-icono { background: rgba(107,135,76,0.2); }
.como-paso-num { position: absolute; top: -4px; right: -4px; width: 22px; height: 22px; background: var(--morado); color: var(--cream); border-radius: 50%; font-family: 'Poppins', sans-serif; font-size: 9px; font-weight: 400; display: flex; align-items: center; justify-content: center; }
.como-paso-nombre { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 500; color: var(--ink); margin-bottom: 0.5rem; line-height: 1.2; }
.como-paso-desc { font-family: 'Poppins', sans-serif; font-weight: 300; font-size: 11.5px; color: var(--ink-light); line-height: 1.7; }
.como-cta { text-align: center; margin-top: 3rem; }
.como-cta-frase { font-family: 'Sacramento', cursive; font-size: 22px; color: var(--morado); margin-bottom: 1.2rem; }
@media (max-width: 900px) { .como-grid { grid-template-columns: repeat(2,1fr); gap: 2.5rem 1rem; } .como-grid::before { display: none; } .section-como { padding: 4rem 2rem; } }
@media (max-width: 600px) { .como-grid { grid-template-columns: 1fr 1fr; gap: 2rem 0.5rem; } .como-paso { padding: 0 0.8rem; } .como-paso-icono { width: 64px; height: 64px; font-size: 22px; } .como-paso-nombre { font-size: 17px; } .como-paso-desc { font-size: 10.5px; } .section-como { padding: 3.5rem 1.2rem; } .section-como::before { display: none; } }

/* ── SECCIÓN RESEÑAS ──────────────────────────────────────── */
.section-resenas { padding: 6rem 4rem; background: var(--cream); overflow: hidden; }
.resenas-header { text-align: center; margin-bottom: 3rem; }
.resenas-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(30px,4vw,48px); font-weight: 400; font-style: italic; color: var(--ink); line-height: 1.2; margin-top: 0.5rem; }
.resenas-title em { color: var(--morado); }
.resenas-sub { font-family: 'Sacramento', cursive; font-size: 20px; color: var(--verde); margin-top: 0.4rem; }
.resenas-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; max-width: 1100px; margin: 0 auto 2rem; }
.resena-card { background: #fff; border: 1px solid rgba(215,202,169,0.5); padding: 1.8rem 1.6rem; position: relative; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.resena-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(106,79,112,0.1); }
.resena-card::before { content: '"'; position: absolute; top: 1rem; right: 1.4rem; font-family: 'Cormorant Garamond', serif; font-size: 64px; color: var(--lila); line-height: 1; opacity: 0.5; }
.resena-estrellas { color: #c8a820; font-size: 12px; letter-spacing: 2px; margin-bottom: 0.8rem; }
.resena-texto { font-family: 'Poppins', sans-serif; font-weight: 300; font-size: 12.5px; color: var(--ink); line-height: 1.8; margin-bottom: 1.4rem; position: relative; z-index: 1; }
.resena-autor { display: flex; align-items: center; gap: 0.8rem; border-top: 1px solid rgba(215,202,169,0.4); padding-top: 1rem; }
.resena-foto { width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 18px; font-style: italic; color: var(--cream); font-weight: 600; }
.resena-card:nth-child(1) .resena-foto { background: var(--morado); }
.resena-card:nth-child(2) .resena-foto { background: var(--verde); }
.resena-card:nth-child(3) .resena-foto { background: var(--morado-dark); }
.resena-card:nth-child(4) .resena-foto { background: #b85c6e; }
.resena-card:nth-child(5) .resena-foto { background: var(--morado); }
.resena-info { flex: 1; }
.resena-nombre { font-family: 'Poppins', sans-serif; font-weight: 400; font-size: 12px; color: var(--ink); margin-bottom: 2px; }
.resena-producto { font-family: 'Poppins', sans-serif; font-weight: 300; font-size: 10.5px; color: var(--morado); letter-spacing: 0.5px; }
.resena-badge { font-size: 9px; letter-spacing: 1px; text-transform: uppercase; color: var(--verde); font-family: 'Poppins', sans-serif; font-weight: 300; }
.resena-nota { text-align: center; font-family: 'Poppins', sans-serif; font-weight: 300; font-size: 11px; color: var(--ink-light); margin-top: 1rem; }
.resena-nota a { color: var(--verde); text-decoration: none; border-bottom: 1px solid var(--verde); }
.resena-invite { background: var(--beige-light) !important; border: 1.5px dashed rgba(106,79,112,0.22) !important; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; min-height: 200px; }
.resena-invite::before { display: none !important; }
.resena-invite-emoji { font-size: 34px; margin-bottom: 0.8rem; }
.resena-invite-title { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-style: italic; color: var(--morado); margin-bottom: 0.5rem; }
.resena-invite-desc { font-family: 'Poppins', sans-serif; font-weight: 300; font-size: 11.5px; color: var(--ink-light); line-height: 1.6; margin-bottom: 1rem; }
@media (max-width: 900px) { .resenas-grid { grid-template-columns: repeat(2,1fr); gap: 1rem; } .section-resenas { padding: 4rem 2rem; } }
@media (max-width: 600px) { .resenas-grid { grid-template-columns: 1fr; } .section-resenas { padding: 3.5rem 1.2rem; } .resena-card { padding: 1.4rem 1.2rem; } }

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 500; display: flex; justify-content: space-between; align-items: center; padding: 1.2rem 4rem; background: rgba(253,250,245,0.92); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(106,79,112,0.1); }
.nav-logo { text-decoration: none; display: flex; flex-direction: column; align-items: flex-start; }
.nav-logo-main { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--morado); line-height: 1; }
.nav-logo-sub { font-family: 'Sacramento', cursive; font-size: 14px; color: var(--verde); letter-spacing: 1px; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { font-family: 'Poppins', sans-serif; font-size: 10.5px; font-weight: 400; letter-spacing: 2px; text-transform: uppercase; color: var(--ink-light); text-decoration: none; transition: color 0.3s; padding-bottom: 2px; border-bottom: 1px solid transparent; }
.nav-links a:hover, .nav-links a.active { color: var(--morado); border-bottom-color: var(--morado); }
.nav-cta { font-family: 'Poppins', sans-serif; font-size: 10.5px; letter-spacing: 2px; text-transform: uppercase; color: var(--cream); background: var(--morado); padding: 10px 22px; border: none; cursor: none; transition: background 0.3s; text-decoration: none; }
.nav-cta:hover { background: var(--morado-dark); }

.nav-hamburger { display: none; }

@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .nav-cta { display: none; }

  .nav-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1000;
  }
  .nav-hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--morado);
    transition: all 0.3s;
  }
  .nav-hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  .nav-links.open {
    padding-top: 150px;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #fdfaf5;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    z-index: 499;
    margin: 0;
  }
  .nav-links.open a { font-size: 14px; letter-spacing: 3px; }
}

/* PAGE SYSTEM */
.page { display: none; }
.page.active { display: block; }

/* ═══════════════════════════════
   HOME PAGE
═══════════════════════════════ */

/* HERO */
.hero { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; padding-top: 98px; position: relative; overflow: hidden; }
.hero-left { display: flex; flex-direction: column; justify-content: center; padding: 5rem 4rem 5rem 6rem; position: relative; z-index: 2; }
.botanical-bg { position: absolute; top: 0; right: 0; width: 55%; height: 100%; overflow: hidden; z-index: 1; }
.botanical-bg::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, #e8dff0 0%, #d4c8e0 40%, #c9bdd8 100%); z-index: 0; }
.botanical-bg svg { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.15; z-index: 1; }
.hero-image-placeholder { position: absolute; inset: 0; z-index: 2; display: flex; align-items: center; justify-content: center; }
.floral-frame { width: 360px; height: 460px; border: 1px solid rgba(106,79,112,0.3); position: relative; display: flex; align-items: center; justify-content: center; }
.floral-frame::before, .floral-frame::after { content: ''; position: absolute; width: 60px; height: 60px; border-color: var(--morado); border-style: solid; opacity: 0.5; }
.floral-frame::before { top: -8px; left: -8px; border-width: 2px 0 0 2px; }
.floral-frame::after { bottom: -8px; right: -8px; border-width: 0 2px 2px 0; }
.frame-inner { width: 320px; height: 420px; background: linear-gradient(160deg, #ede5f5 0%, #ddd0e8 60%, #cfc0dc 100%); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; position: relative; overflow: hidden; }
.frame-inner::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 60%; background: linear-gradient(to top, rgba(106,79,112,0.15), transparent); }
.frame-flowers {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.frame-flowers img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.frame-caption { font-family: 'Sacramento', cursive; font-size: 26px; color: var(--morado); opacity: 0.8; z-index: 1; }
.float-tag { position: absolute; background: var(--cream); border: 1px solid rgba(106,79,112,0.2); padding: 10px 18px; font-family: 'Poppins', sans-serif; font-size: 10px; letter-spacing: 1px; color: var(--morado); animation: float 6s ease-in-out infinite; }
.float-tag-1 { top: 15%; left: -20px; animation-delay: 0s; }
.float-tag-2 { bottom: 20%; right: -10px; animation-delay: 3s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.hero-logo-block { display: flex; flex-direction: column; align-items: flex-start; margin-bottom: 1.5rem; opacity: 0; animation: fadeUp 0.8s ease forwards 0.2s; }
.hero-logo-main { font-family: 'Cormorant Garamond', serif; font-size: clamp(36px, 5vw, 58px); font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--morado); line-height: 1; }
.hero-logo-main::after { content: ''; display: block; width: 100%; height: 1px; background: linear-gradient(to right, var(--morado), transparent); margin-top: 4px; opacity: 0.3; }
.hero-logo-sub { font-family: 'Sacramento', cursive; font-size: clamp(18px, 2vw, 26px); color: var(--verde); letter-spacing: 2px; line-height: 1.3; margin-top: 4px; }
.hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(32px, 4vw, 56px); font-weight: 300; line-height: 1.1; color: var(--ink); margin-bottom: 1.2rem; opacity: 0; animation: fadeUp 0.8s ease forwards 0.4s; }
.hero-title em { font-style: italic; color: var(--morado); }
.hero-subtitle { font-size: 12.5px; font-weight: 300; line-height: 1.9; color: var(--ink-light); max-width: 380px; margin-bottom: 2rem; opacity: 0; animation: fadeUp 0.8s ease forwards 0.6s; }
.hero-actions { display: flex; gap: 1.5rem; align-items: center; opacity: 0; animation: fadeUp 0.8s ease forwards 0.8s; }

.btn-primary { background: var(--morado); color: var(--cream); padding: 13px 32px; font-family: 'Poppins', sans-serif; font-size: 10.5px; letter-spacing: 2px; text-transform: uppercase; border: none; cursor: none; text-decoration: none; transition: background 0.3s, transform 0.2s; display: inline-block; }
.btn-primary:hover { background: var(--morado-dark); transform: translateY(-2px); }
.btn-ghost { color: var(--morado); font-family: 'Poppins', sans-serif; font-size: 10.5px; letter-spacing: 2px; text-transform: uppercase; text-decoration: none; border-bottom: 1px solid var(--morado); padding-bottom: 2px; transition: opacity 0.3s; cursor: none; }
.btn-ghost:hover { opacity: 0.6; }

.scroll-hint { position: absolute; bottom: 2rem; left: 6rem; display: flex; align-items: center; gap: 10px; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--ink-light); opacity: 0; animation: fadeUp 1s ease forwards 1.2s; }
.scroll-line { width: 40px; height: 1px; background: var(--beige); position: relative; overflow: hidden; }
.scroll-line::after { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: var(--morado); animation: scanLine 2s ease-in-out infinite 1.5s; }
@keyframes scanLine { 0% { left: -100%; } 100% { left: 100%; } }

/* MARQUEE */
.quote-strip { background: var(--morado); padding: 1.4rem 4rem; overflow: hidden; }
.quote-scroll { display: flex; gap: 4rem; animation: marquee 22s linear infinite; white-space: nowrap; }
.quote-item { display: flex; align-items: center; gap: 1.5rem; font-family: 'Sacramento', cursive; font-size: 21px; color: var(--lila); flex-shrink: 0; }
.quote-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--beige); flex-shrink: 0; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* STORY SECTION */
.section-story { padding: 7rem 6rem; min-height: 100vh; display: grid; grid-template-columns: 1fr 1.2fr; gap: 6rem; align-items: center; position: relative; box-sizing: border-box; }
.section-story::before { content: ''; position: absolute; top: 4rem; right: 0; width: 40%; height: 70%; background: var(--beige-light); z-index: 0; }
.story-text { position: relative; z-index: 1; }
.section-label { font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: var(--verde); margin-bottom: 1rem; display: flex; align-items: center; gap: 12px; }
.section-label::before { content: ''; display: block; width: 30px; height: 1px; background: var(--verde); }
.story-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(32px, 3.5vw, 48px); font-weight: 400; line-height: 1.15; margin-bottom: 2rem; color: var(--ink); }
.story-title em { font-style: italic; color: var(--morado); }
.story-body { font-size: 12.5px; font-weight: 300; line-height: 2; color: var(--ink-light); margin-bottom: 1.5rem; }
.story-signature { font-family: 'Sacramento', cursive; font-size: 30px; color: var(--morado); margin-top: 2rem; }
.story-visual { position: relative; z-index: 1; display: flex; justify-content: center; }
.letter-card { width: 330px; background: #fefcf8; border: 1px solid rgba(215,202,169,0.6); padding: 2.5rem 2rem; position: relative; box-shadow: 8px 8px 0 rgba(106,79,112,0.08), 16px 16px 0 rgba(106,79,112,0.04); transform: rotate(-1.5deg); }
.letter-stamp { position: absolute; top: 1.5rem; right: 1.5rem; width: 48px; height: 58px; border: 2px solid rgba(106,79,112,0.3); display: flex; flex-direction: column; align-items: center; justify-content: center; font-size: 16px; gap: 2px; }
.letter-stamp span { font-family: 'Cormorant Garamond', serif; font-size: 6.5px; letter-spacing: 0.5px; color: var(--morado); text-align: center; line-height: 1.3; }
.letter-date { font-family: 'Poppins', sans-serif; font-size: 10px; letter-spacing: 2px; color: var(--ink-light); margin-bottom: 1.5rem; }
.letter-body { font-family: 'Cormorant Garamond', serif; font-size: 15px; font-style: italic; line-height: 1.9; color: var(--ink); margin-bottom: 2rem; }
.letter-closing { font-family: 'Sacramento', cursive; font-size: 26px; color: var(--morado); }
.wax-seal { position: absolute; bottom: -18px; left: 50%; transform: translateX(-50%); width: 44px; height: 44px; background: var(--morado); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; box-shadow: 0 2px 8px rgba(106,79,112,0.3); border: 3px solid #fefcf8; color: var(--beige); }

/* FEATURED PRODUCTS (home) */
.section-featured { padding: 7rem 6rem; background: var(--beige-light); }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(32px, 3.5vw, 48px); font-weight: 300; color: var(--ink); margin-bottom: 0.5rem; line-height: 1.2; }
.section-title em { font-style: italic; color: var(--morado); }
.section-sub { font-family: 'Sacramento', cursive; font-size: 22px; color: var(--verde); }

.featured-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; margin-bottom: 3rem; }
.product-card { background: var(--cream); border: 1px solid rgba(215,202,169,0.5); overflow: hidden; transition: transform 0.4s, box-shadow 0.4s; cursor: none; }
.product-card:hover { transform: translateY(-7px); box-shadow: 0 20px 40px rgba(106,79,112,0.12); }
.product-img { width: 100%; aspect-ratio: 1 / 1; display: flex; align-items: center; justify-content: center; font-size: 60px; position: relative; overflow: hidden; }
.product-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.product-img.c1 { background: linear-gradient(135deg,#ede5f5,#ddd0e8); }
.product-img.c2 { background: linear-gradient(135deg,#e8f0e0,#d4e4c8); }
.product-img.c3 { background: linear-gradient(135deg,#f5ede8,#ead8d0); }
.product-img.c4 { background: linear-gradient(135deg,#fef5e0,#f5e8c0); }
.product-img.c5 { background: linear-gradient(135deg,#e0eaf5,#c8d8ea); }
.product-img.c6 { background: linear-gradient(135deg,#f5e0ea,#ead0de); }
.product-tag-badge { position: absolute; top: 1rem; left: 1rem; z-index: 2; background: var(--morado); color: var(--cream); font-size: 9px; letter-spacing: 2px; text-transform: uppercase; padding: 4px 10px; }
.product-tag-badge.verde { background: var(--verde); }
.product-info { padding: 1.4rem; }
.product-name { font-family: 'Cormorant Garamond', serif; font-size: 21px; font-weight: 500; color: var(--ink); margin-bottom: 5px; }
.product-desc { font-size: 11.5px; font-weight: 300; color: var(--ink-light); line-height: 1.7; margin-bottom: 1.1rem; }
.product-footer { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(215,202,169,0.5); padding-top: 1rem; }
.product-price { font-family: 'Cormorant Garamond', serif; font-size: 19px; font-weight: 400; color: var(--morado); }
.product-btn { font-size: 9.5px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--verde); text-decoration: none; border-bottom: 1px solid var(--verde); padding-bottom: 1px; transition: opacity 0.3s; cursor: none; }
.product-btn:hover { opacity: 0.6; }

.ver-catalogo-wrap { text-align: center; }
.btn-ver-catalogo { display: inline-block; background: transparent; border: 1.5px solid var(--morado); color: var(--morado); padding: 13px 40px; font-family: 'Poppins', sans-serif; font-size: 10.5px; letter-spacing: 2px; text-transform: uppercase; text-decoration: none; cursor: none; transition: background 0.3s, color 0.3s; }
.btn-ver-catalogo:hover { background: var(--morado); color: var(--cream); }

/* TESTIMONIALS */
.section-testimonial { padding: 7rem 6rem; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.testimonial-visual { position: relative; height: 380px; }
.postcard { position: absolute; background: #fefcf8; border: 1px solid rgba(215,202,169,0.5); padding: 1.8rem; box-shadow: 6px 6px 0 rgba(106,79,112,0.06); }
.postcard-1 { width: 270px; top: 0; left: 0; transform: rotate(2deg); z-index: 1; }
.postcard-2 { width: 250px; bottom: 0; right: 0; transform: rotate(-3deg); z-index: 2; background: var(--lila); }
.postcard-quote { font-family: 'Cormorant Garamond', serif; font-size: 15px; font-style: italic; line-height: 1.7; color: var(--ink); margin-bottom: 1rem; }
.postcard-author { font-family: 'Sacramento', cursive; font-size: 20px; color: var(--morado); }
.big-quote { font-family: 'Cormorant Garamond', serif; font-size: 110px; color: var(--lila); line-height: 0.6; margin-bottom: 1.5rem; }
.testimonial-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(28px, 3vw, 42px); font-weight: 300; line-height: 1.2; color: var(--ink); margin-bottom: 1.5rem; }
.testimonial-title em { font-style: italic; color: var(--morado); }
.testimonial-body { font-size: 12.5px; font-weight: 300; line-height: 2; color: var(--ink-light); }

/* CTA */
.section-cta { padding: 7rem 6rem; background: var(--morado); text-align: center; position: relative; overflow: hidden; }
.section-cta::before { content: ''; position: absolute; top: -60px; left: -60px; width: 300px; height: 300px; border-radius: 50%; border: 1px solid rgba(227,202,227,0.15); }
.section-cta::after { content: ''; position: absolute; bottom: -80px; right: -80px; width: 400px; height: 400px; border-radius: 50%; border: 1px solid rgba(227,202,227,0.1); }
.cta-eyebrow { font-family: 'Sacramento', cursive; font-size: 30px; color: var(--lila); margin-bottom: 1rem; }
.cta-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(34px, 4.5vw, 58px); font-weight: 300; color: var(--cream); line-height: 1.2; margin-bottom: 1rem; }
.cta-title em { font-style: italic; }
.cta-sub { font-size: 12.5px; font-weight: 300; color: rgba(227,202,227,0.8); margin-bottom: 2.5rem; max-width: 480px; margin-left: auto; margin-right: auto; line-height: 1.9; }
.cta-actions { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
.btn-light { background: var(--cream); color: var(--morado); padding: 13px 34px; font-family: 'Poppins', sans-serif; font-size: 10.5px; letter-spacing: 2px; text-transform: uppercase; text-decoration: none; transition: transform 0.2s; display: inline-block; cursor: none; }
.btn-light:hover { transform: translateY(-2px); }
.btn-outline-light { color: var(--lila); padding: 12px 34px; font-family: 'Poppins', sans-serif; font-size: 10.5px; letter-spacing: 2px; text-transform: uppercase; text-decoration: none; border: 1px solid rgba(227,202,227,0.4); transition: border-color 0.3s; display: inline-block; cursor: none; }
.btn-outline-light:hover { border-color: var(--lila); }

/* PALETTE STRIP */
.palette-strip { display: flex; height: 7px; }
.palette-strip div { flex: 1; }

/* FOOTER */
footer { background: var(--ink); padding: 4rem 6rem; display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 4rem; }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--beige); line-height: 1; margin-bottom: 2px; }
.footer-tagline { font-family: 'Sacramento', cursive; font-size: 20px; color: var(--lila); margin-bottom: 1.5rem; }
.footer-desc { font-size: 11.5px; font-weight: 300; color: rgba(215,202,169,0.6); line-height: 1.9; }
.footer-col-title { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--beige); margin-bottom: 1.5rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-links a { font-size: 11.5px; font-weight: 300; color: rgba(215,202,169,0.6); text-decoration: none; transition: color 0.3s; cursor: none; }
.footer-links a:hover { color: var(--beige); }
.footer-bottom { background: var(--ink); padding: 1.5rem 6rem; border-top: 1px solid rgba(215,202,169,0.1); display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 10.5px; font-weight: 300; color: rgba(215,202,169,0.4); }
.footer-heart { font-family: 'Sacramento', cursive; font-size: 17px; color: var(--lila); }

/* ═══════════════════════════════
   CATALOG PAGE
═══════════════════════════════ */
.catalog-hero { background: linear-gradient(135deg, var(--morado-dark) 0%, var(--morado) 100%); padding: 7rem 6rem 4rem; text-align: center; position: relative; overflow: hidden; margin-top: 0; padding-top: 8rem; }
.catalog-hero::before { content: ''; position: absolute; top: -80px; left: -80px; width: 400px; height: 400px; border-radius: 50%; border: 1px solid rgba(227,202,227,0.1); }
.catalog-hero::after { content: ''; position: absolute; bottom: -60px; right: -60px; width: 300px; height: 300px; border-radius: 50%; border: 1px solid rgba(227,202,227,0.08); }
.catalog-hero-label { font-family: 'Poppins', sans-serif; font-weight: 300; font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: var(--beige); opacity: 0.7; margin-bottom: 0.8rem; }
.catalog-hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(38px, 5vw, 62px); font-style: italic; color: var(--cream); margin-bottom: 0.5rem; line-height: 1.1; }
.catalog-hero-sub { font-family: 'Sacramento', cursive; font-size: 24px; color: var(--lila); }

/* CATEGORY FILTER BAR */
.filter-bar-wrap { background: var(--cream); border-bottom: 1px solid rgba(106,79,112,0.12); padding: 0 4rem; position: sticky; top: 72px; z-index: 200; }
.filter-bar { display: flex; gap: 0; overflow-x: auto; scrollbar-width: none; }
.filter-bar::-webkit-scrollbar { display: none; }
.filter-btn { flex-shrink: 0; font-family: 'Poppins', sans-serif; font-size: 10.5px; font-weight: 300; letter-spacing: 1.5px; text-transform: uppercase; color: var(--ink-light); background: transparent; border: none; border-bottom: 2px solid transparent; padding: 1.1rem 1.4rem; cursor: none; transition: color 0.25s, border-color 0.25s; white-space: nowrap; }
.filter-btn:hover { color: var(--morado); }
.filter-btn.active { color: var(--morado); border-bottom-color: var(--morado); font-weight: 400; }

/* CATALOG GRID */
.catalog-body { padding: 4rem 6rem 7rem; }
.catalog-category-title { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-style: italic; color: var(--morado); margin-bottom: 0.3rem; }
.catalog-category-desc { font-family: 'Poppins', sans-serif; font-weight: 300; font-size: 12px; color: var(--ink-light); margin-bottom: 2rem; letter-spacing: 0.5px; }
.catalog-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-bottom: 4rem; }
.catalog-section { display: none; }
.catalog-section.visible { display: block; }

/* Product card same as before */
.cat-card { background: var(--cream); border: 1px solid rgba(215,202,169,0.5); overflow: hidden; transition: transform 0.35s, box-shadow 0.35s; cursor: none; }
.cat-card:hover { transform: translateY(-6px); box-shadow: 0 16px 32px rgba(106,79,112,0.1); }
.cat-img { width: 100%; aspect-ratio: 1 / 1; display: flex; align-items: center; justify-content: center; font-size: 52px; position: relative; overflow: hidden; }
.cat-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.cat-img.c1 { background: linear-gradient(135deg,#ede5f5,#ddd0e8); }
.cat-img.c2 { background: linear-gradient(135deg,#e8f0e0,#d4e4c8); }
.cat-img.c3 { background: linear-gradient(135deg,#f5ede8,#ead8d0); }
.cat-img.c4 { background: linear-gradient(135deg,#fef5e0,#f5e8c0); }
.cat-img.c5 { background: linear-gradient(135deg,#e0eaf5,#c8d8ea); }
.cat-img.c6 { background: linear-gradient(135deg,#f5e0ea,#ead0de); }
.cat-img.c7 { background: linear-gradient(135deg,#e8f5e0,#d0eacc); }
.cat-img.c8 { background: linear-gradient(135deg,#f0f0f5,#e0e0f0); }
.cat-badge { position: absolute; top: 0.8rem; left: 0.8rem; z-index: 2; background: var(--morado); color: var(--cream); font-size: 8px; letter-spacing: 1.5px; text-transform: uppercase; padding: 3px 8px; }
.cat-badge.v { background: var(--verde); }
.cat-badge.r { background: #b85c6e; }
.cat-info { padding: 1.2rem; }
.cat-name { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 500; color: var(--ink); margin-bottom: 4px; }
.cat-desc { font-size: 11px; font-weight: 300; color: var(--ink-light); line-height: 1.6; margin-bottom: 1rem; }
.cat-footer { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(215,202,169,0.4); padding-top: 0.8rem; }
.cat-price { font-family: 'Cormorant Garamond', serif; font-size: 17px; color: var(--morado); }
.cat-cta { font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--verde); text-decoration: none; border-bottom: 1px solid var(--verde); cursor: none; transition: opacity 0.3s; }
.cat-cta:hover { opacity: 0.6; }

/* CTA banner in catalog */
.catalog-cta-banner { background: var(--morado); padding: 3.5rem 4rem; text-align: center; margin-top: 2rem; border-radius: 2px; position: relative; z-index: 1; }
.catalog-cta-banner .cta-eyebrow { font-size: 26px; }
.catalog-cta-banner .cta-title { font-size: clamp(28px, 3vw, 42px); margin-bottom: 0.8rem; }
.catalog-cta-banner .cta-sub { margin-bottom: 2rem; }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 5rem 1.5rem 3rem; }
  .botanical-bg { display: none; }
  .section-story, .section-testimonial { grid-template-columns: 1fr; padding: 4rem 1.5rem; gap: 3rem; }
  .section-story::before { display: none; }
  .featured-grid, .catalog-grid { grid-template-columns: 1fr 1fr; }
  .section-featured, .catalog-body { padding: 4rem 1.5rem; }
  .section-cta, .catalog-hero { padding: 4rem 1.5rem; }
  footer { grid-template-columns: 1fr; padding: 3rem 1.5rem; gap: 2rem; }
  .footer-bottom { padding: 1.5rem; flex-direction: column; gap: 0.5rem; text-align: center; }
  .filter-bar-wrap { padding: 0 1rem; }
}
@media (max-width: 600px) {
  .featured-grid, .catalog-grid { grid-template-columns: 1fr; }
}



/* ══════════════════════════════════════════
   CARRITO — ICONO NAV + BADGE + NOTIF
══════════════════════════════════════════ */
.nav-carrito-wrap { position: relative; margin-left: 1rem; }
.nav-carrito-btn {
  background: none; border: none; cursor: none;
  position: relative; display: flex; align-items: center;
  padding: 4px; transition: transform 0.25s;
  line-height: 0;
}
.nav-carrito-btn:hover { transform: scale(1.08); }
.nav-carrito-btn svg { display: block; }
.nav-carrito-btn svg path, .nav-carrito-btn svg circle {
  transition: stroke 0.2s, fill 0.2s;
}
.nav-carrito-btn:hover svg path[stroke="#6a4f70"],
.nav-carrito-btn:hover svg circle[stroke="#6a4f70"] { stroke: var(--morado-dark); }
.nav-carrito-btn:hover svg path[fill="#f4a7c0"] { fill: #e88eb0; }
#carrito-badge {
  position: absolute; top: -4px; right: -4px;
  background: var(--morado); color: var(--cream);
  width: 18px; height: 18px; border-radius: 50%;
  font-family: 'Poppins', sans-serif; font-size: 9px;
  font-weight: 400; display: none;
  align-items: center; justify-content: center;
}
#carrito-notif {
  position: fixed; bottom: 2rem; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--morado-dark); color: var(--cream);
  font-family: 'Poppins', sans-serif; font-size: 11px;
  font-weight: 300; padding: 10px 24px;
  border-radius: 2px; z-index: 9999;
  opacity: 0; transition: opacity 0.3s, transform 0.3s;
  pointer-events: none; white-space: nowrap;
}
#carrito-notif.visible { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ══════════════════════════════════════════
   MODAL CARRITO
══════════════════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(42,31,46,0.45); backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }

.carrito-panel {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: min(420px, 100vw);
  background: var(--cream); display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -8px 0 32px rgba(42,31,46,0.15);
}
.modal-overlay.open .carrito-panel { transform: translateX(0); }

.carrito-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 1.8rem; border-bottom: 1px solid rgba(215,202,169,0.5);
}
.carrito-header-title {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 24px; color: var(--morado);
}
.carrito-close {
  background: none; border: none; font-size: 20px;
  color: var(--ink-light); cursor: none; padding: 4px 8px;
  transition: color 0.2s;
}
.carrito-close:hover { color: var(--morado); }

.carrito-body { flex: 1; overflow-y: auto; padding: 1.2rem 1.8rem; }
.carrito-vacio { text-align: center; padding: 3rem 1rem; color: var(--ink-light); font-family: 'Poppins', sans-serif; font-weight: 300; font-size: 13px; }

.carrito-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 0; border-bottom: 1px solid rgba(215,202,169,0.3);
}
.carrito-item-img {
  width: 52px; height: 52px; flex-shrink: 0;
  background: var(--beige-light); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; overflow: hidden;
}
.carrito-item-img img { width: 100%; height: 100%; object-fit: cover; }
.carrito-item-info { flex: 1; min-width: 0; }
.carrito-item-nombre {
  font-family: 'Poppins', sans-serif; font-weight: 400;
  font-size: 12.5px; color: var(--ink); margin-bottom: 2px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.carrito-item-precio {
  font-family: 'Poppins', sans-serif; font-weight: 300;
  font-size: 11px; color: var(--morado);
}
.carrito-item-controles { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.carrito-qty-btn {
  width: 26px; height: 26px; border: 1px solid rgba(106,79,112,0.3);
  background: none; color: var(--morado); cursor: none;
  font-size: 16px; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s; border-radius: 0;
}
.carrito-qty-btn:hover { background: var(--lila); }
.carrito-qty {
  font-family: 'Poppins', sans-serif; font-size: 13px;
  color: var(--ink); min-width: 20px; text-align: center;
}
.carrito-quitar {
  background: none; border: none; color: rgba(106,79,112,0.4);
  font-size: 12px; cursor: none; padding: 4px; transition: color 0.2s; margin-left: 2px;
}
.carrito-quitar:hover { color: #b85c6e; }

#carrito-footer {
  padding: 1.2rem 1.8rem; border-top: 1px solid rgba(215,202,169,0.5);
}
.carrito-footer-note {
  font-family: 'Poppins', sans-serif; font-weight: 300;
  font-size: 10.5px; color: var(--ink-light); text-align: center;
  margin-bottom: 1rem; line-height: 1.6;
}
.carrito-checkout-btn {
  width: 100%; padding: 14px; background: var(--morado);
  color: var(--cream); border: none; cursor: none;
  font-family: 'Poppins', sans-serif; font-weight: 300;
  font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
  transition: background 0.3s;
}
.carrito-checkout-btn:hover { background: var(--morado-dark); }

/* ══════════════════════════════════════════
   MODAL DETALLE DE PRODUCTO
══════════════════════════════════════════ */
.producto-modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(42,31,46,0.5); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
  padding: 1rem;
}
.producto-modal-overlay.open { opacity: 1; pointer-events: auto; }

.producto-modal-card {
  background: var(--cream); width: 100%; max-width: 640px;
  max-height: 90vh; overflow-y: auto;
  transform: translateY(30px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  position: relative;
}
.producto-modal-overlay.open .producto-modal-card {
  transform: translateY(0) scale(1);
}

.pm-close {
  position: absolute; top: 1rem; right: 1rem;
  background: rgba(253,250,245,0.9); border: none;
  width: 32px; height: 32px; display: flex;
  align-items: center; justify-content: center;
  cursor: none; font-size: 16px; color: var(--ink);
  transition: background 0.2s; z-index: 2; border-radius: 50%;
}
.pm-close:hover { background: var(--lila); }

.pm-img-wrap {
  width: 100%;
  height: 260px;
  background: var(--beige-light);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pm-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 1rem;
}

@media (max-width: 600px) {
  .pm-img-wrap { height: 220px; }
}

.pm-body { padding: 2rem; }
.pm-precio-tag {
  display: inline-block;
  font-family: 'Poppins', sans-serif; font-weight: 300;
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--cream); background: var(--verde);
  padding: 4px 12px; margin-bottom: 1rem;
}
.pm-nombre {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: clamp(28px,4vw,38px); color: var(--morado);
  font-weight: 400; line-height: 1.1; margin-bottom: 1rem;
}
.pm-desc {
  font-family: 'Poppins', sans-serif; font-weight: 300;
  font-size: 13px; color: var(--ink); line-height: 1.8;
  margin-bottom: 1.5rem;
}
.pm-meta-label {
  font-family: 'Poppins', sans-serif; font-weight: 400;
  font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--morado); margin-bottom: 0.4rem;
}
.pm-meta-val {
  font-family: 'Poppins', sans-serif; font-weight: 300;
  font-size: 12px; color: var(--ink-light); line-height: 1.6;
  margin-bottom: 1.2rem;
}
.pm-actions { display: flex; gap: 1rem; margin-top: 1.5rem; }
.pm-btn-agregar {
  flex: 1; padding: 14px; background: var(--morado);
  color: var(--cream); border: none; cursor: none;
  font-family: 'Poppins', sans-serif; font-weight: 300;
  font-size: 10.5px; letter-spacing: 2px; text-transform: uppercase;
  transition: background 0.3s;
}
.pm-btn-agregar:hover { background: var(--morado-dark); }
.pm-btn-wa {
  padding: 14px 20px; background: none;
  border: 1px solid rgba(106,79,112,0.3); color: var(--morado);
  cursor: none; font-family: 'Poppins', sans-serif; font-weight: 300;
  font-size: 10.5px; letter-spacing: 1.5px; text-transform: uppercase;
  text-decoration: none; display: flex; align-items: center; gap: 6px;
  transition: border-color 0.2s, background 0.2s;
}
.pm-btn-wa:hover { background: var(--lila); border-color: var(--morado); }

/* ══════════════════════════════════════════
   RESUMEN PEDIDO (dentro de página pedido)
══════════════════════════════════════════ */
.pedido-resumen-box {
  background: var(--beige-light); border: 1px solid rgba(215,202,169,0.6);
  padding: 1.5rem; margin-bottom: 2rem;
}
.pedido-resumen-title {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 22px; color: var(--morado); margin-bottom: 1rem;
}
.resumen-item {
  display: flex; align-items: center; gap: 0.8rem;
  padding: 0.6rem 0; border-bottom: 1px solid rgba(215,202,169,0.4);
  font-family: 'Poppins', sans-serif; font-weight: 300; font-size: 12px;
}
.resumen-item:last-of-type { border-bottom: none; }
.resumen-item-emoji { font-size: 22px; flex-shrink: 0; }
.resumen-item-nombre { flex: 1; color: var(--ink); }
.resumen-item-precio { color: var(--morado); white-space: nowrap; }
.resumen-add { padding-top: 0.8rem; }
.resumen-add-btn {
  background: none; border: 1px dashed rgba(106,79,112,0.3);
  color: var(--morado); font-family: 'Poppins', sans-serif;
  font-weight: 300; font-size: 10.5px; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 8px 16px; cursor: none;
  transition: border-color 0.2s, background 0.2s; width: 100%;
}
.resumen-add-btn:hover { background: var(--lila); border-color: var(--morado); }

/* Ajuste cat-cta para que abra modal en vez de ir a pedido */
.cat-cta { cursor: none !important; }

@media (max-width: 600px) {
  .carrito-panel { width: 100vw; }
  .pm-actions { flex-direction: column; }
  .pm-img-wrap { height: 200px; }
}



/* Reset de scroll — las páginas no crean su propio contexto de scroll */
html { scroll-behavior: auto !important; }
body { scroll-behavior: auto !important; overflow-x: hidden; }
.page { overflow: visible; }
/* Al activar una página, forzar que el scroll vuelva al nav */
.page.active { display: block; }



/* ── ORDER PAGE STYLES ── */
.order-wrap { max-width: 900px; margin: 0 auto; padding: 6rem 2rem 4rem; }
.order-hero { text-align: center; margin-bottom: 3rem; padding-top: 1rem; }
.order-hero-label { font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: var(--verde); margin-bottom: 0.6rem; display: flex; align-items: center; justify-content: center; gap: 10px; }
.order-hero-label::before,.order-hero-label::after { content:''; display:block; width:24px; height:1px; background:var(--verde); }
.order-hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(30px,4vw,46px); font-style: italic; color: var(--morado); line-height: 1.2; margin-bottom: 0.4rem; }
.order-hero-sub { font-family: 'Sacramento', cursive; font-size: 20px; color: var(--verde); }

/* Notice banner */
.order-notice { background: #fff8e8; border: 1px solid #e8d88a; border-left: 4px solid #c8a820; padding: 1rem 1.4rem; border-radius: 2px; margin-bottom: 2rem; display: flex; gap: 12px; align-items: flex-start; }
.order-notice-icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.order-notice-text { font-family: 'Poppins', sans-serif; font-weight: 300; font-size: 12px; color: #6b5800; line-height: 1.6; }
.order-notice-text strong { font-weight: 500; color: #4a3d00; }

/* Selected product card */
.selected-product { background: var(--cream); border: 1.5px solid var(--morado); border-radius: 2px; padding: 1.2rem 1.5rem; margin-bottom: 2rem; display: flex; gap: 1.2rem; align-items: center; position: relative; }
.selected-product-emoji { font-size: 40px; flex-shrink: 0; }
.selected-product-info { flex: 1; }
.selected-product-name { font-family: 'Cormorant Garamond', serif; font-size: 20px; color: var(--ink); margin-bottom: 2px; }
.selected-product-price { font-family: 'Poppins', sans-serif; font-weight: 300; font-size: 12px; color: var(--morado); }
.selected-product-change { font-family: 'Poppins', sans-serif; font-weight: 300; font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--verde); text-decoration: none; border-bottom: 1px solid var(--verde); cursor: none; }
.no-product-selected { background: var(--beige-light); border: 1px dashed var(--beige); padding: 1.5rem; text-align: center; margin-bottom: 2rem; }
.no-product-selected p { font-family: 'Poppins', sans-serif; font-weight: 300; font-size: 12px; color: var(--ink-light); margin-bottom: 0.8rem; }

/* Form layout */
.order-form { display: flex; flex-direction: column; gap: 2rem; }
.form-section { background: #fff; border: 1px solid rgba(215,202,169,0.5); border-radius: 2px; padding: 1.8rem 2rem; }
.form-section-title { font-family: 'Cormorant Garamond', serif; font-size: 20px; color: var(--morado); margin-bottom: 0.2rem; display: flex; align-items: center; gap: 10px; }
.form-section-title span { font-size: 14px; }
.form-section-sub { font-family: 'Poppins', sans-serif; font-weight: 300; font-size: 11px; color: var(--ink-light); margin-bottom: 1.4rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-row.full { grid-template-columns: 1fr; }
.form-row.three { grid-template-columns: 1fr 1fr 1fr; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
label { font-family: 'Poppins', sans-serif; font-weight: 400; font-size: 10.5px; letter-spacing: 1px; text-transform: uppercase; color: var(--ink-light); }
label .req { color: var(--morado); }
input[type=text], input[type=tel], input[type=email], input[type=date], input[type=number], select, textarea {
  font-family: 'Poppins', sans-serif; font-weight: 300; font-size: 12.5px; color: var(--ink);
  background: var(--cream); border: 1px solid rgba(215,202,169,0.8); padding: 10px 14px;
  border-radius: 1px; outline: none; transition: border-color 0.25s, box-shadow 0.25s;
  width: 100%; cursor: text;
}
input:focus, select:focus, textarea:focus { border-color: var(--morado); box-shadow: 0 0 0 3px rgba(106,79,112,0.08); }
input.error, select.error, textarea.error { border-color: #b85c6e !important; }
textarea { resize: vertical; min-height: 90px; }
select { cursor: none; }

/* Date picker highlight */
input[type=date]::-webkit-calendar-picker-indicator { opacity: 0.5; cursor: pointer; }

/* Photo upload */
.photo-upload-area { border: 2px dashed rgba(106,79,112,0.25); border-radius: 2px; padding: 2rem; text-align: center; background: #fdfaf5; transition: border-color 0.25s, background 0.25s; cursor: pointer; position: relative; }
.photo-upload-area:hover { border-color: var(--morado); background: #f5eef8; }
.photo-upload-area input[type=file] { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; }
.photo-upload-icon { font-size: 30px; margin-bottom: 8px; }
.photo-upload-text { font-family: 'Poppins', sans-serif; font-weight: 300; font-size: 12px; color: var(--ink-light); line-height: 1.6; }
.photo-upload-text strong { color: var(--morado); font-weight: 400; }
.photo-preview { display: none; margin-top: 1rem; }
.photo-preview img { max-width: 100%; max-height: 160px; border: 1px solid var(--beige); border-radius: 2px; object-fit: cover; }
.photo-preview-name { font-size: 11px; color: var(--verde); margin-top: 5px; font-family: 'Poppins', sans-serif; font-weight: 300; }

/* Message char counter */
.char-count { font-family: 'Poppins', sans-serif; font-weight: 300; font-size: 10px; color: var(--ink-light); text-align: right; margin-top: 3px; }

/* Delivery options */
.delivery-options { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; margin-bottom: 1rem; }
.delivery-opt { border: 1.5px solid rgba(215,202,169,0.8); padding: 1rem 1.2rem; cursor: pointer; transition: border-color 0.2s, background 0.2s; position: relative; }
.delivery-opt:hover { border-color: var(--morado); }
.delivery-opt.selected { border-color: var(--morado); background: #f5eef8; }
.delivery-opt input[type=radio] { position: absolute; opacity: 0; }
.delivery-opt-title { font-family: 'Cormorant Garamond', serif; font-size: 16px; color: var(--ink); margin-bottom: 3px; }
.delivery-opt-desc { font-family: 'Poppins', sans-serif; font-weight: 300; font-size: 10.5px; color: var(--ink-light); }
.delivery-opt-price { font-family: 'Cormorant Garamond', serif; font-size: 14px; color: var(--morado); margin-top: 5px; }
.delivery-address { display: none; margin-top: 0.8rem; }
.delivery-address.show { display: block; }

/* Payment methods */
.payment-methods { display: grid; grid-template-columns: repeat(3,1fr); gap: 0.8rem; }
.pay-opt { border: 1.5px solid rgba(215,202,169,0.8); padding: 1rem; cursor: pointer; text-align: center; transition: border-color 0.2s, background 0.2s; position: relative; }
.pay-opt:hover { border-color: var(--morado); }
.pay-opt.selected { border-color: var(--morado); background: #f5eef8; }
.pay-opt input[type=radio] { position: absolute; opacity: 0; }
.pay-opt-icon { font-size: 26px; margin-bottom: 5px; }
.pay-opt-name { font-family: 'Cormorant Garamond', serif; font-size: 15px; color: var(--ink); margin-bottom: 3px; }
.pay-opt-desc { font-family: 'Poppins', sans-serif; font-weight: 300; font-size: 9.5px; color: var(--ink-light); line-height: 1.4; }

/* Order summary */
.order-summary { background: var(--morado-dark); color: var(--cream); padding: 1.8rem 2rem; border-radius: 2px; }
.summary-title { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-style: italic; color: var(--lila); margin-bottom: 1.2rem; }
.summary-row { display: flex; justify-content: space-between; align-items: center; padding: 0.5rem 0; border-bottom: 1px solid rgba(215,202,169,0.12); font-family: 'Poppins', sans-serif; font-weight: 300; font-size: 12px; }
.summary-row:last-of-type { border-bottom: none; }
.summary-row-label { color: rgba(215,202,169,0.7); }
.summary-row-val { color: var(--beige); font-weight: 400; }
.summary-total { display: flex; justify-content: space-between; align-items: center; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(215,202,169,0.3); }
.summary-total-label { font-family: 'Cormorant Garamond', serif; font-size: 18px; color: var(--lila); }
.summary-total-val { font-family: 'Cormorant Garamond', serif; font-size: 22px; color: var(--cream); }

/* Submit button */
.submit-wrap { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.btn-submit { background: var(--morado); color: var(--cream); padding: 16px 50px; font-family: 'Poppins', sans-serif; font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase; border: none; cursor: none; transition: background 0.3s, transform 0.2s; width: 100%; text-align: center; }
.btn-submit:hover { background: var(--morado-dark); transform: translateY(-2px); }
.btn-submit:disabled { background: #c0afc8; cursor: not-allowed; transform: none; }
.submit-note { font-family: 'Poppins', sans-serif; font-weight: 300; font-size: 11px; color: var(--ink-light); text-align: center; line-height: 1.6; }

/* Error message */
.field-error { font-family: 'Poppins', sans-serif; font-weight: 300; font-size: 10.5px; color: #b85c6e; margin-top: 3px; display: none; }
.field-error.show { display: block; }

/* Success overlay */
.success-overlay { display: none; position: fixed; inset: 0; background: rgba(74,52,80,0.96); z-index: 2000; align-items: center; justify-content: center; padding: 2rem; }
.success-overlay.show { display: flex; }
.success-card { background: var(--cream); max-width: 520px; width: 100%; padding: 3rem 2.5rem; text-align: center; position: relative; }
.success-icon { font-size: 50px; margin-bottom: 1rem; }
.success-title { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-style: italic; color: var(--morado); margin-bottom: 0.5rem; }
.success-sub { font-family: 'Sacramento', cursive; font-size: 22px; color: var(--verde); margin-bottom: 1.5rem; }
.success-body { font-family: 'Poppins', sans-serif; font-weight: 300; font-size: 12px; color: var(--ink-light); line-height: 1.8; margin-bottom: 2rem; }
.success-actions { display: flex; flex-direction: column; gap: 0.8rem; }
.btn-whatsapp { background: #25D366; color: #fff; padding: 14px 30px; font-family: 'Poppins', sans-serif; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; border: none; cursor: none; text-decoration: none; display: flex; align-items: center; justify-content: center; gap: 8px; transition: background 0.3s; }
.btn-whatsapp:hover { background: #1dba57; }
.btn-nequi { background: #7B2FBE; color: #fff; padding: 14px 30px; font-family: 'Poppins', sans-serif; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; border: none; cursor: none; text-decoration: none; display: flex; align-items: center; justify-content: center; gap: 8px; transition: background 0.3s; }
.btn-nequi:hover { background: #6222a0; }
.btn-bancolombia { background: #FDDA24; color: #333; padding: 14px 30px; font-family: 'Poppins', sans-serif; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; border: none; cursor: none; text-decoration: none; display: flex; align-items: center; justify-content: center; gap: 8px; transition: opacity 0.3s; }
.btn-bancolombia:hover { opacity: 0.85; }
.btn-efectivo { background: var(--verde); color: #fff; padding: 14px 30px; font-family: 'Poppins', sans-serif; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; border: none; cursor: none; text-decoration: none; display: flex; align-items: center; justify-content: center; gap: 8px; }
.success-back { font-family: 'Poppins', sans-serif; font-weight: 300; font-size: 11px; color: var(--ink-light); cursor: none; background: none; border: none; text-decoration: underline; margin-top: 0.5rem; }

/* Floating cart button */
.cart-fab { position: fixed; bottom: 2rem; right: 2rem; background: var(--morado); color: var(--cream); width: 56px; height: 56px; border-radius: 50%; display: none; align-items: center; justify-content: center; font-size: 22px; cursor: none; z-index: 400; box-shadow: 0 4px 16px rgba(106,79,112,0.35); border: none; transition: transform 0.2s, background 0.3s; }
.cart-fab:hover { transform: scale(1.1); background: var(--morado-dark); }
.cart-fab.show { display: flex; }
.cart-fab-badge { position: absolute; top: -4px; right: -4px; background: #b85c6e; color: #fff; width: 20px; height: 20px; border-radius: 50%; font-size: 10px; font-family: 'Poppins', sans-serif; font-weight: 400; display: flex; align-items: center; justify-content: center; }

@media(max-width:700px){
  .order-wrap { padding: 5rem 1rem 3rem; }
  .form-row { grid-template-columns: 1fr; }
  .form-row.three { grid-template-columns: 1fr; }
  .delivery-options, .payment-methods { grid-template-columns: 1fr; }
  .form-section { padding: 1.4rem 1.2rem; }
}


/* ── FORMULARIO OPCIÓN B ── */
/* ══════════════════════════════════════════════
   FORMULARIO OPCIÓN B — CSS NUEVO
══════════════════════════════════════════════ */

/* Bloque de destinatario */
.destinatario-bloque {
  background: #fff;
  border: 1px solid rgba(215,202,169,0.55);
  padding: 1.6rem;
  margin-bottom: 1.2rem;
  position: relative;
  transition: box-shadow 0.25s;
}
.destinatario-bloque:hover { box-shadow: 0 4px 20px rgba(106,79,112,0.08); }

.dest-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.2rem; padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(215,202,169,0.4);
}
.dest-num {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 20px; color: var(--morado);
}
.dest-producto-tag {
  font-family: 'Poppins', sans-serif; font-weight: 300;
  font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--verde); background: rgba(107,135,76,0.1);
  padding: 3px 10px; border-radius: 2px;
}
.btn-quitar-dest {
  background: none; border: none; color: rgba(106,79,112,0.35);
  font-size: 13px; cursor: none; padding: 4px 8px;
  transition: color 0.2s; margin-left: auto;
}
.btn-quitar-dest:hover { color: #b85c6e; }

/* Selector de producto del carrito dentro del bloque */
.dest-product-select {
  background: var(--beige-light);
  border: 1px solid rgba(215,202,169,0.5);
  padding: 0.8rem 1rem; margin-bottom: 1rem;
  font-family: 'Poppins', sans-serif; font-weight: 300;
  font-size: 12px; color: var(--ink); width: 100%;
  cursor: none; appearance: auto;
}

/* Botón agregar destinatario */
.btn-add-destinatario {
  width: 100%; padding: 12px;
  border: 1.5px dashed rgba(106,79,112,0.3);
  background: none; color: var(--morado);
  font-family: 'Poppins', sans-serif; font-weight: 300;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  cursor: none; transition: background 0.25s, border-color 0.25s;
  margin-top: 0.5rem;
}
.btn-add-destinatario:hover { background: var(--lila); border-color: var(--morado); }
.btn-add-destinatario:disabled { opacity: 0.4; pointer-events: none; }

/* Botón enviar */
.form-submit-wrap { text-align: center; margin-top: 2.5rem; }
.btn-submit-pedido {
  background: var(--morado); color: var(--cream);
  border: none; cursor: none; padding: 16px 48px;
  font-family: 'Poppins', sans-serif; font-weight: 300;
  font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase;
  transition: background 0.3s; width: 100%; max-width: 420px;
}
.btn-submit-pedido:hover { background: var(--morado-dark); }
.form-submit-note {
  font-family: 'Poppins', sans-serif; font-weight: 300;
  font-size: 11px; color: var(--ink-light); margin-top: 0.8rem;
  line-height: 1.6;
}

/* Payment grid */
.payment-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.8rem;
  margin-top: 1rem;
}
.payment-option { cursor: none; }
.payment-option input { display: none; }
.payment-card {
  display: flex; flex-direction: column; align-items: center;
  gap: 6px; padding: 1rem 0.5rem;
  border: 1.5px solid rgba(215,202,169,0.5);
  background: #fff; transition: border-color 0.2s, background 0.2s;
  cursor: none;
}
.payment-option input:checked + .payment-card {
  border-color: var(--morado);
  background: rgba(227,202,227,0.2);
}
.payment-icon { font-size: 22px; }
.payment-name {
  font-family: 'Poppins', sans-serif; font-weight: 300;
  font-size: 10.5px; color: var(--ink); letter-spacing: 0.5px;
}

@media (max-width: 600px) {
  .payment-grid { grid-template-columns: repeat(2, 1fr); }
  .destinatario-bloque { padding: 1.2rem; }
}

/* ═══════════════════════════════════════
   MODALES LEGALES
═══════════════════════════════════════ */
.legal-modal-overlay {
  position: fixed; inset: 0; z-index: 3000;
  background: rgba(42,31,46,0.55); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
  padding: 1rem;
}
.legal-modal-overlay.open { opacity: 1; pointer-events: auto; }

.legal-modal-card {
  background: var(--cream); width: 100%; max-width: 620px;
  max-height: 88vh; overflow-y: auto; position: relative;
  transform: translateY(24px); transition: transform 0.3s ease;
}
.legal-modal-overlay.open .legal-modal-card { transform: translateY(0); }

.legal-close {
  position: absolute; top: 1rem; right: 1rem;
  background: none; border: none; font-size: 18px;
  color: var(--ink-light); cursor: pointer; padding: 4px 8px;
  transition: color 0.2s; z-index: 2;
}
.legal-close:hover { color: var(--morado); }

.legal-header {
  background: linear-gradient(135deg, var(--morado-dark), var(--morado));
  padding: 2.5rem 2rem 2rem; text-align: center;
}
.legal-icon { font-size: 36px; margin-bottom: 0.6rem; }
.legal-title {
  font-family: 'Cormorant Garamond', serif; font-size: 28px;
  font-style: italic; color: var(--cream); margin-bottom: 0.3rem;
}
.legal-sub {
  font-family: 'Poppins', sans-serif; font-weight: 300;
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--lila);
}

.legal-body {
  padding: 2rem;
  font-family: 'Poppins', sans-serif; font-weight: 300;
  font-size: 12.5px; color: var(--ink); line-height: 1.9;
}
.legal-body h3 {
  font-family: 'Cormorant Garamond', serif; font-size: 18px;
  color: var(--morado); margin: 1.5rem 0 0.5rem; font-style: italic;
}
.legal-body p { margin-bottom: 0.8rem; color: var(--ink-light); }
.legal-body strong { color: var(--ink); font-weight: 400; }

/* Nota legal en formulario */
.legal-form-note {
  font-family: 'Poppins', sans-serif; font-weight: 300;
  font-size: 11px; color: var(--ink-light); text-align: center;
  margin-bottom: 1rem; line-height: 1.6;
}
.legal-form-note a {
  color: var(--morado); text-decoration: none;
  border-bottom: 1px solid rgba(106,79,112,0.3);
}

/* ═══════════════════════════════════════
   BANNER COOKIES
═══════════════════════════════════════ */
.cookies-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--ink); color: var(--beige);
  padding: 1rem 2rem; display: flex;
  align-items: center; justify-content: space-between;
  gap: 1.5rem; z-index: 2500;
  transform: translateY(100%); transition: transform 0.4s ease;
  flex-wrap: wrap;
}
.cookies-banner.show { transform: translateY(0); }
.cookies-text {
  font-family: 'Poppins', sans-serif; font-weight: 300;
  font-size: 11.5px; color: rgba(215,202,169,0.8); line-height: 1.6;
  flex: 1;
}
.cookies-text a {
  color: var(--lila); text-decoration: none;
  border-bottom: 1px solid rgba(179,157,188,0.4);
  margin-left: 4px;
}
.cookies-aceptar {
  background: var(--morado); color: var(--cream);
  border: none; padding: 8px 24px; cursor: pointer;
  font-family: 'Poppins', sans-serif; font-weight: 300;
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  transition: background 0.2s; white-space: nowrap; flex-shrink: 0;
}
.cookies-aceptar:hover { background: var(--morado-dark); }

@media (max-width: 600px) {
  .legal-body { padding: 1.5rem; }
  .legal-header { padding: 2rem 1.5rem 1.5rem; }
  .cookies-banner { padding: 1rem; }
}