:root {
  --purple: #2a073d;
  --purple-2: #4e0b64;
  --pink: #f214a6;
  --pink-2: #ff4cc3;
  --rose: #ff8bd5;
  --orange: #ff9f05;
  --orange-2: #ffc233;
  --cream: #fff8f2;
  --blush: #fff0f8;
  --lavender: #f8efff;
  --ink: #2f1938;
  --muted: #755f7b;
  --white: #fff;
  --line: rgba(78, 11, 100, .12);
  --shadow: 0 22px 60px rgba(69, 7, 83, .13);
  --shadow-strong: 0 28px 90px rgba(58, 6, 77, .22);
  --radius-sm: 16px;
  --radius: 26px;
  --radius-lg: 42px;
  --container: min(1180px, calc(100% - 40px));
  --ease: 240ms cubic-bezier(.2,.8,.2,1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 112px; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.welcome-open { overflow: hidden; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, p, figure, dl, dd { margin: 0; }
h1, h2, h3 { text-wrap: balance; }
h1, h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: -.045em;
  line-height: .98;
}
h2 { font-size: clamp(2.45rem, 5vw, 4.7rem); }
.container { width: var(--container); margin-inline: auto; }

.skip-link {
  position: fixed; z-index: 9999; top: 12px; left: 12px;
  transform: translateY(-150%); border-radius: 12px;
  background: var(--purple); color: #fff; padding: 10px 16px;
}
.skip-link:focus { transform: translateY(0); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  color: var(--pink); font-size: .75rem; font-weight: 900;
  letter-spacing: .17em; line-height: 1.2; text-transform: uppercase;
}
.eyebrow::before { width: 26px; height: 3px; border-radius: 99px; background: var(--orange); content: ""; }
.eyebrow--light { color: #ffd8f3; }

.button {
  display: inline-flex; min-height: 48px; align-items: center; justify-content: center;
  gap: 11px; border: 1px solid transparent; border-radius: 999px; padding: 11px 23px;
  cursor: pointer; font-size: .88rem; font-weight: 900;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease);
}
.button:hover { transform: translateY(-3px) scale(1.01); }
.button:focus-visible, .filter:focus-visible, .carousel-controls button:focus-visible,
.menu-toggle:focus-visible, .floating-contact:focus-visible, .modal-close:focus-visible,
.product-card__image:focus-visible { outline: 4px solid rgba(242, 20, 166, .25); outline-offset: 3px; }
.button--primary {
  background: linear-gradient(135deg, var(--pink), #c80fc5 55%, var(--purple-2));
  box-shadow: 0 14px 30px rgba(221, 16, 164, .28); color: #fff;
}
.button--primary:hover { box-shadow: 0 20px 40px rgba(221, 16, 164, .36); }
.button--outline { border-color: rgba(242, 20, 166, .28); background: #fff; color: var(--purple-2); }
.button--outline:hover { border-color: var(--pink); box-shadow: 0 12px 28px rgba(78, 11, 100, .1); }
.button--light { background: #fff; box-shadow: 0 14px 36px rgba(50, 5, 70, .24); color: var(--purple); }
.button--large { min-height: 58px; padding-inline: 29px; }

.brand { display: inline-flex; flex: 0 0 auto; align-items: center; }
.brand-logo { width: 176px; height: auto; border-radius: 24px; mix-blend-mode: multiply; }
.brand-logo--nav { width: 126px; border-radius: 16px; }
.brand-logo--footer { width: 160px; mix-blend-mode: normal; box-shadow: 0 10px 28px rgba(0,0,0,.16); }

/* Pantalla de entrada */
.welcome-screen {
  position: fixed; z-index: 1000; inset: 0; display: grid; min-height: 100dvh;
  place-items: center; overflow: auto; padding: 26px;
  background:
    radial-gradient(circle at 8% 12%, rgba(255,255,255,.9), transparent 27%),
    radial-gradient(circle at 90% 90%, rgba(255,172,54,.23), transparent 30%),
    linear-gradient(135deg, #fff8f2 0%, #ffe4f6 48%, #f5c4ff 100%);
  transition: opacity 500ms ease, visibility 500ms ease;
}
.welcome-screen::before, .welcome-screen::after {
  position: absolute; width: 250px; height: 250px; border-radius: 50%;
  border: 42px solid rgba(242,20,166,.055); content: "";
}
.welcome-screen::before { top: -100px; left: -90px; }
.welcome-screen::after { right: -80px; bottom: -100px; }
.welcome-screen.is-leaving { visibility: hidden; opacity: 0; }
.welcome-decoration { display: none; }
.welcome-card {
  position: relative; z-index: 1; display: grid; width: min(1210px, 100%);
  min-height: min(720px, calc(100dvh - 52px)); overflow: hidden;
  grid-template-columns: .9fr 1.1fr; border: 1px solid rgba(255,255,255,.88);
  border-radius: 44px; background: rgba(255,255,255,.82); box-shadow: var(--shadow-strong);
  backdrop-filter: blur(18px);
}
.welcome-copy {
  position: relative; z-index: 2; display: flex; align-items: flex-start; justify-content: center;
  flex-direction: column; padding: clamp(34px, 5vw, 70px);
}
.brand--welcome { margin-bottom: clamp(24px, 4vh, 42px); }
.welcome-copy h1 { max-width: 610px; margin-top: 17px; color: var(--purple); font-size: clamp(2.75rem, 5vw, 5.4rem); }
.welcome-copy h1 em { color: var(--pink); font-weight: inherit; }
.welcome-copy > p { max-width: 570px; margin-top: 22px; color: var(--muted); font-size: 1.02rem; }
.welcome-copy > .button { margin-top: 30px; }
.welcome-benefits { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.welcome-benefits span {
  border: 1px solid rgba(242,20,166,.14); border-radius: 999px; background: #fff;
  color: var(--purple-2); padding: 7px 12px; font-size: .7rem; font-weight: 900;
}
.welcome-benefits span::before { margin-right: 6px; color: var(--orange); content: "✦"; }
.welcome-gallery {
  position: relative; display: flex; min-width: 0; justify-content: center; flex-direction: column;
  gap: 18px; overflow: hidden; background: linear-gradient(150deg, var(--purple), #7d0a82 54%, var(--pink));
  padding: 56px 0;
}
.welcome-gallery::before, .welcome-gallery::after {
  position: absolute; z-index: 4; top: 0; bottom: 0; width: 88px; content: ""; pointer-events: none;
}
.welcome-gallery::before { left: 0; background: linear-gradient(90deg, var(--purple), transparent); }
.welcome-gallery::after { right: 0; background: linear-gradient(-90deg, var(--pink), transparent); }
.welcome-gallery__glow {
  position: absolute; inset: 14% 10%; border-radius: 50%; background: rgba(255,168,23,.3);
  filter: blur(80px); animation: glowPulse 4s ease-in-out infinite alternate;
}
.gift-stream { position: relative; z-index: 2; width: 100%; overflow: hidden; transform: rotate(-3deg) scale(1.05); }
.gift-stream--two { transform: rotate(3deg) scale(1.05); }
.gift-stream__track { display: flex; width: max-content; gap: 16px; animation: streamLeft 28s linear infinite; will-change: transform; }
.gift-stream--two .gift-stream__track { animation-name: streamRight; animation-duration: 32s; }
.gift-stream img {
  width: clamp(150px, 15vw, 205px); aspect-ratio: 4 / 5; flex: 0 0 auto;
  border: 5px solid rgba(255,255,255,.88); border-radius: 26px; object-fit: cover;
  box-shadow: 0 18px 38px rgba(31,1,44,.34);
}
.welcome-badge {
  position: absolute; z-index: 6; right: 28px; bottom: 24px; display: flex; align-items: center; gap: 9px;
  border: 1px solid rgba(255,255,255,.6); border-radius: 999px; background: rgba(255,255,255,.9);
  color: var(--purple); padding: 9px 16px; box-shadow: 0 12px 32px rgba(38,4,52,.25);
  font-size: .72rem; font-weight: 900; backdrop-filter: blur(10px);
}
.welcome-badge span { color: var(--pink); font-family: Georgia, serif; font-size: 1.5rem; }
@keyframes streamLeft { to { transform: translateX(calc(-50% - 8px)); } }
@keyframes streamRight { from { transform: translateX(calc(-50% - 8px)); } to { transform: translateX(0); } }
@keyframes glowPulse { to { transform: scale(1.2); opacity: .6; } }

/* Navegación */
.announcement { background: linear-gradient(90deg, var(--purple), #5e0b70, var(--pink)); color: #fff; }
.announcement__content { display: flex; min-height: 36px; align-items: center; justify-content: space-between; gap: 20px; font-size: .7rem; font-weight: 800; letter-spacing: .05em; }
.site-header { position: sticky; z-index: 90; top: 0; transition: box-shadow var(--ease); }
.site-header.is-scrolled { box-shadow: 0 12px 34px rgba(50,5,66,.12); }
.navbar { display: flex; min-height: 82px; align-items: center; justify-content: space-between; gap: 22px; }
.site-header .navbar { width: 100%; padding-inline: max(20px, calc((100vw - 1180px)/2)); background: rgba(255,250,247,.94); backdrop-filter: blur(18px); }
.nav-menu { display: flex; align-items: center; justify-content: center; gap: 30px; }
.nav-menu a { position: relative; color: #5e4766; font-size: .82rem; font-weight: 900; }
.nav-menu a::after { position: absolute; right: 0; bottom: -9px; left: 0; height: 3px; border-radius: 9px; background: linear-gradient(90deg,var(--orange),var(--pink)); content: ""; transform: scaleX(0); transition: transform var(--ease); }
.nav-menu a:hover, .nav-menu a.is-active { color: var(--purple); }
.nav-menu a:hover::after, .nav-menu a.is-active::after { transform: scaleX(1); }
.menu-toggle { display: none; width: 46px; height: 46px; border: 0; border-radius: 50%; background: var(--blush); cursor: pointer; }
.menu-toggle span { display: block; width: 20px; height: 2px; margin: 4px auto; border-radius: 3px; background: var(--purple); transition: var(--ease); }

/* Hero */
.hero { position: relative; overflow: hidden; padding: clamp(76px, 9vw, 135px) 0 105px; background: linear-gradient(145deg, #fffaf5, #ffeef8 57%, #f8eaff); }
.hero::before { position: absolute; width: 520px; height: 520px; right: -210px; top: -190px; border: 95px solid rgba(242,20,166,.055); border-radius: 50%; content: ""; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(3px); }
.hero-orb--left { width: 180px; height: 180px; left: -90px; bottom: 35px; background: rgba(255,168,5,.14); }
.hero-orb--right { width: 90px; height: 90px; right: 40%; top: 70px; background: rgba(242,20,166,.12); }
.hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: clamp(55px,7vw,100px); }
.hero__copy h1 { max-width: 660px; margin-top: 18px; color: var(--purple); font-size: clamp(3.3rem, 6.2vw, 6.9rem); }
.hero__copy h1 em { position: relative; color: var(--pink); font-weight: inherit; }
.hero__copy > p { max-width: 610px; margin-top: 27px; color: var(--muted); font-size: 1.07rem; }
.hero__actions { display: flex; align-items: center; flex-wrap: wrap; gap: 25px; margin-top: 34px; }
.text-link { color: var(--purple-2); font-size: .86rem; font-weight: 900; border-bottom: 2px solid var(--orange); }
.hero__stats { display: flex; gap: 34px; margin-top: 45px; }
.hero__stats div { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 8px; }
.hero__stats dt { color: var(--pink); font-family: Georgia, serif; font-size: 1.8rem; font-weight: 800; line-height: 1; }
.hero__stats dd { max-width: 98px; color: var(--muted); font-size: .65rem; font-weight: 900; line-height: 1.25; text-transform: uppercase; }
.hero__visual { position: relative; min-height: 590px; }
.hero-card { position: absolute; overflow: hidden; border: 8px solid #fff; border-radius: 36px; background: #fff; box-shadow: var(--shadow-strong); }
.hero-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 800ms ease; }
.hero-card:hover img { transform: scale(1.05); }
.hero-card--large { inset: 5% 18% 8% 2%; transform: rotate(-3deg); }
.hero-card--small { width: 43%; height: 47%; right: 0; bottom: 2%; transform: rotate(5deg); }
.hero-card figcaption { position: absolute; right: 12px; bottom: 12px; left: 12px; display: flex; align-items: center; justify-content: space-between; gap: 12px; border-radius: 18px; background: rgba(43,6,60,.84); color: #fff; padding: 12px 14px; backdrop-filter: blur(9px); font-size: .69rem; }
.hero-card figcaption strong { color: #ffd05a; font-size: .85rem; }
.hero-note { position: absolute; z-index: 3; top: 2%; right: 0; display: flex; align-items: center; gap: 11px; border-radius: 20px; background: #fff; padding: 12px 16px; box-shadow: var(--shadow); transform: rotate(3deg); }
.hero-note > span { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 50%; background: linear-gradient(135deg,var(--orange),var(--pink)); color:#fff; }
.hero-note p { color: var(--muted); font-size: .66rem; line-height: 1.35; }
.hero-note strong { display: block; color: var(--purple); font-size: .78rem; }

/* Secciones */
.section { padding: clamp(86px, 10vw, 145px) 0; }
.section-heading { margin-bottom: 48px; }
.section-heading h2 { margin-top: 13px; color: var(--purple); }
.section-heading p { max-width: 630px; margin-top: 17px; color: var(--muted); }
.section-heading--split { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; }
.section-heading--center { max-width: 750px; margin-inline: auto; margin-bottom: 54px; text-align: center; }
.section-heading--center .eyebrow { justify-content: center; }
.section-heading--center p { margin-inline: auto; }

/* Destacados */
.section--featured { position: relative; overflow: hidden; background: var(--purple); }
.section--featured::before { position: absolute; inset: 0; background: radial-gradient(circle at 85% 15%, rgba(242,20,166,.45), transparent 28%), radial-gradient(circle at 8% 95%, rgba(255,159,5,.2), transparent 25%); content: ""; }
.section--featured .container { position: relative; z-index: 1; }
.section--featured h2, .section--featured .section-heading p { color: #fff; }
.section--featured .eyebrow { color: #ff86d5; }
.carousel-controls { display: flex; gap: 10px; }
.carousel-controls button { display: grid; width: 50px; height: 50px; place-items: center; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; background: rgba(255,255,255,.12); color:#fff; cursor:pointer; font-size:1.25rem; transition: var(--ease); }
.carousel-controls button:hover { background:#fff; color:var(--purple); transform: translateY(-2px); }
.carousel { overflow-x: auto; padding: 12px 2px 25px; scrollbar-width: none; scroll-snap-type: x mandatory; }
.carousel::-webkit-scrollbar { display:none; }
.carousel__track { display:flex; gap:22px; width:max-content; }
.carousel-card { width: min(345px, 78vw); overflow:hidden; flex:0 0 auto; border:1px solid rgba(255,255,255,.16); border-radius:28px; background:rgba(255,255,255,.98); box-shadow:0 20px 48px rgba(15,0,26,.25); scroll-snap-align:start; transition: transform var(--ease); }
.carousel-card:hover { transform: translateY(-8px); }
.carousel-card__image { position:relative; width:100%; height:330px; overflow:hidden; border:0; padding:0; background:#f8d9ea; cursor:pointer; }
.carousel-card__image img { width:100%; height:100%; object-fit:cover; transition:transform 700ms ease; }
.carousel-card:hover img { transform:scale(1.06); }
.product-badge { position:absolute; z-index:2; top:14px; left:14px; border-radius:999px; background:linear-gradient(135deg,var(--orange),#ff7f00); color:#fff; padding:7px 11px; box-shadow:0 8px 20px rgba(91,38,0,.18); font-size:.63rem; font-weight:900; text-transform:uppercase; }
.carousel-card__content { padding:22px 22px 25px; }
.carousel-card__content > span { color:var(--pink); font-size:.65rem; font-weight:900; letter-spacing:.1em; text-transform:uppercase; }
.carousel-card__row { display:flex; align-items:flex-start; justify-content:space-between; gap:14px; margin-top:7px; }
.carousel-card__row h3 { color:var(--purple); font-family:Georgia,serif; font-size:1.28rem; line-height:1.1; }
.carousel-card__row strong { flex:0 0 auto; color:var(--pink); font-size:.9rem; }
.carousel-progress { height:4px; overflow:hidden; border-radius:9px; background:rgba(255,255,255,.16); }
.carousel-progress span { display:block; width:12%; height:100%; border-radius:9px; background:linear-gradient(90deg,var(--orange),var(--pink-2)); transition:width 200ms ease; }

/* Catálogo */
.catalog-section { position:relative; background:linear-gradient(180deg,#fff9f4 0%,#fff1fa 100%); }
.catalog-toolbar { display:flex; align-items:center; justify-content:space-between; gap:20px; border:1px solid rgba(242,20,166,.11); border-radius:24px; background:#fff; padding:13px; box-shadow:0 15px 45px rgba(68,9,80,.08); }
.search-box { display:flex; min-width:260px; flex:1; align-items:center; gap:10px; border-radius:16px; background:var(--lavender); padding:0 16px; }
.search-box svg { width:19px; fill:none; stroke:var(--pink); stroke-linecap:round; stroke-width:2; }
.search-box input { width:100%; height:48px; border:0; outline:0; background:transparent; color:var(--ink); }
.filters { display:flex; flex-wrap:wrap; gap:8px; }
.filter { min-height:42px; border:0; border-radius:999px; background:#fff2f8; color:#78546f; padding:8px 15px; cursor:pointer; font-size:.73rem; font-weight:900; transition:var(--ease); }
.filter:hover, .filter.is-active { background:linear-gradient(135deg,var(--pink),#bd17c2); box-shadow:0 10px 20px rgba(222,19,170,.2); color:#fff; }
.catalog-summary { display:flex; justify-content:space-between; gap:20px; margin:24px 3px 18px; color:var(--muted); font-size:.72rem; font-weight:800; }
.product-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:25px; }
.product-card { overflow:hidden; border:1px solid rgba(78,11,100,.09); border-radius:30px; background:#fff; box-shadow:0 15px 44px rgba(68,9,80,.08); transition:transform var(--ease), box-shadow var(--ease); }
.product-card:hover { transform:translateY(-9px); box-shadow:0 25px 58px rgba(68,9,80,.16); }
.product-card__image { position:relative; width:100%; aspect-ratio:1/.93; overflow:hidden; border:0; padding:0; background:#f5ddeb; cursor:pointer; }
.product-card__image::after { position:absolute; inset:auto 0 0; height:28%; background:linear-gradient(transparent,rgba(42,7,61,.28)); content:""; }
.product-card__image img { width:100%; height:100%; object-fit:cover; transition:transform 750ms ease; }
.product-card:hover .product-card__image img { transform:scale(1.06); }
.product-card__quick { position:absolute; z-index:3; right:14px; bottom:14px; display:grid; width:43px; height:43px; place-items:center; border-radius:50%; background:#fff; color:var(--pink); box-shadow:0 10px 26px rgba(41,4,53,.2); font-size:1.35rem; }
.product-card__content { padding:24px; }
.product-card__meta { display:flex; align-items:center; justify-content:space-between; gap:10px; color:var(--pink); font-size:.68rem; font-weight:900; text-transform:uppercase; }
.product-card__meta strong { color:var(--orange); font-size:.85rem; }
.product-card h3 { margin-top:10px; color:var(--purple); font-family:Georgia,serif; font-size:1.55rem; line-height:1.1; }
.product-card p { margin-top:10px; color:var(--muted); font-size:.82rem; }
.product-card__link { display:inline-flex; align-items:center; gap:8px; margin-top:18px; border:0; border-bottom:2px solid #ffc9e9; background:transparent; color:var(--purple-2); padding:0 0 3px; cursor:pointer; font-size:.76rem; font-weight:900; }
.empty-state { border:2px dashed rgba(242,20,166,.2); border-radius:28px; background:#fff; padding:55px 20px; text-align:center; }
.empty-state > span { color:var(--pink); font-size:2.5rem; }
.empty-state h3 { color:var(--purple); font-family:Georgia,serif; font-size:1.8rem; }
.empty-state p { margin:8px 0 20px; color:var(--muted); }

.occasions { background:linear-gradient(90deg,var(--orange),#ff7c27,var(--pink)); color:#fff; }
.occasions__content { display:flex; min-height:94px; align-items:center; justify-content:space-between; gap:25px; }
.occasions__content > p { font-family:Georgia,serif; font-size:1.2rem; font-style:italic; }
.occasions__content > div { display:flex; flex-wrap:wrap; justify-content:flex-end; gap:9px; }
.occasions span { border:1px solid rgba(255,255,255,.42); border-radius:999px; background:rgba(255,255,255,.14); padding:7px 13px; font-size:.68rem; font-weight:900; }

/* Cómo comprar */
.process-section { position:relative; overflow:hidden; background:#fff; }
.process-section::before { position:absolute; width:480px; height:480px; top:-280px; left:50%; border:85px solid rgba(242,20,166,.045); border-radius:50%; content:""; transform:translateX(-50%); }
.process-section .container { position:relative; z-index:1; }
.process-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.process-card { position:relative; min-height:310px; overflow:hidden; border:1px solid rgba(78,11,100,.09); border-radius:32px; background:linear-gradient(145deg,#fff,#fff4fa); padding:36px 31px; box-shadow:0 16px 45px rgba(69,8,82,.08); transition:transform var(--ease),box-shadow var(--ease); }
.process-card:nth-child(2) { background:linear-gradient(145deg,var(--purple),#681075); color:#fff; transform:translateY(-18px); }
.process-card:hover { transform:translateY(-8px); box-shadow:0 26px 58px rgba(69,8,82,.15); }
.process-card:nth-child(2):hover { transform:translateY(-26px); }
.process-number { position:absolute; right:21px; top:12px; color:rgba(242,20,166,.12); font-family:Georgia,serif; font-size:5rem; font-weight:900; line-height:1; }
.process-card:nth-child(2) .process-number { color:rgba(255,255,255,.1); }
.process-icon { display:grid; width:64px; height:64px; place-items:center; border-radius:21px; background:linear-gradient(135deg,var(--orange),var(--pink)); box-shadow:0 12px 28px rgba(227,27,154,.25); color:#fff; font-size:1.6rem; }
.process-card h3 { margin-top:32px; color:var(--purple); font-family:Georgia,serif; font-size:1.75rem; }
.process-card p { margin-top:12px; color:var(--muted); font-size:.88rem; }
.process-card:nth-child(2) h3, .process-card:nth-child(2) p { color:#fff; }

/* Nosotros y cierre */
.story-section { background:linear-gradient(145deg,#f9efff,#fff6ef); }
.story__grid { display:grid; grid-template-columns:1fr 1fr; align-items:center; gap:clamp(60px,8vw,110px); }
.story__visual { position:relative; min-height:570px; }
.story-image { position:absolute; overflow:hidden; border:8px solid #fff; border-radius:34px; box-shadow:var(--shadow-strong); }
.story-image img { width:100%; height:100%; object-fit:cover; }
.story-image--primary { inset:0 23% 8% 0; transform:rotate(-3deg); }
.story-image--secondary { width:45%; height:52%; right:0; bottom:0; transform:rotate(5deg); }
.story-seal { position:absolute; z-index:3; top:7%; right:2%; display:grid; width:115px; height:115px; place-items:center; border:4px solid #fff; border-radius:50%; background:linear-gradient(135deg,var(--orange),var(--pink)); box-shadow:var(--shadow); color:#fff; font-size:.72rem; font-weight:900; text-align:center; transform:rotate(9deg); }
.story-seal span { display:block; font-family:Georgia,serif; font-size:1.5rem; line-height:1; }
.story__copy h2 { margin-top:16px; color:var(--purple); }
.story__copy > p { margin-top:23px; color:var(--muted); }
.check-list { display:grid; gap:12px; margin:28px 0 32px; padding:0; list-style:none; }
.check-list li { display:flex; align-items:center; gap:12px; color:#5d4963; font-size:.86rem; font-weight:800; }
.check-list span { display:grid; width:26px; height:26px; flex:0 0 auto; place-items:center; border-radius:50%; background:#ffe2f3; color:var(--pink); }
.cta-section { padding:0 0 110px; background:linear-gradient(145deg,#f9efff,#fff6ef); }
.cta-card { position:relative; display:flex; overflow:hidden; align-items:center; justify-content:space-between; gap:40px; border-radius:38px; background:linear-gradient(120deg,var(--purple),#77107d 62%,var(--pink)); padding:clamp(38px,6vw,70px); box-shadow:var(--shadow-strong); }
.cta-card::after { position:absolute; width:260px; height:260px; right:-80px; top:-110px; border:50px solid rgba(255,255,255,.08); border-radius:50%; content:""; }
.cta-card > * { position:relative; z-index:1; }
.cta-card h2 { max-width:750px; margin-top:14px; color:#fff; font-size:clamp(2.2rem,4vw,4.1rem); }
.cta-card p { margin-top:14px; color:#f9dff7; }

/* Footer */
.site-footer { background:#1f062d; color:#d9bfdc; padding:70px 0 24px; }
.footer__grid { display:grid; grid-template-columns:1.5fr .7fr 1fr; gap:70px; }
.footer__grid > div:first-child > p { max-width:380px; margin-top:18px; }
.footer__grid h3 { margin-bottom:15px; color:#fff; font-size:.8rem; letter-spacing:.08em; text-transform:uppercase; }
.footer__grid a:not(.brand), .footer__grid p { display:block; margin:8px 0; font-size:.77rem; }
.footer__grid a:not(.brand):hover { color:#ff80d1; }
.footer__bottom { display:flex; justify-content:space-between; gap:20px; margin-top:50px; border-top:1px solid rgba(255,255,255,.1); padding-top:22px; font-size:.68rem; }

.floating-contact { position:fixed; z-index:80; right:22px; bottom:22px; display:flex; align-items:center; gap:9px; border:0; border-radius:999px; background:linear-gradient(135deg,var(--orange),var(--pink)); box-shadow:0 14px 36px rgba(126,8,104,.32); color:#fff; padding:13px 18px; cursor:pointer; transition:var(--ease); }
.floating-contact:hover { transform:translateY(-4px); }
.floating-contact strong { font-size:.76rem; }

/* Modal */
.product-modal { width:min(950px,calc(100% - 30px)); max-height:calc(100dvh - 30px); overflow:auto; border:0; border-radius:34px; background:#fff; padding:0; box-shadow:0 40px 120px rgba(25,2,35,.45); }
.product-modal::backdrop { background:rgba(31,4,40,.72); backdrop-filter:blur(6px); }
.modal-close { position:absolute; z-index:4; top:16px; right:16px; display:grid; width:43px; height:43px; place-items:center; border:0; border-radius:50%; background:rgba(255,255,255,.94); box-shadow:0 8px 22px rgba(30,2,39,.18); cursor:pointer; color:var(--purple); font-size:1.6rem; }
.modal-layout { display:grid; grid-template-columns:1fr 1fr; min-height:600px; }
.modal-image-wrap { position:relative; min-height:550px; background:#f7dcec; }
.modal-image-wrap img { width:100%; height:100%; object-fit:cover; }
.modal-tag { position:absolute; left:18px; top:18px; border-radius:999px; background:linear-gradient(135deg,var(--orange),var(--pink)); color:#fff; padding:7px 12px; font-size:.66rem; font-weight:900; text-transform:uppercase; }
.modal-content { display:flex; justify-content:center; flex-direction:column; padding:clamp(32px,5vw,58px); }
.modal-content h2 { margin-top:14px; color:var(--purple); font-size:clamp(2.2rem,4vw,4rem); }
.modal-price { margin-top:15px; color:var(--pink); font-family:Georgia,serif; font-size:1.7rem; font-weight:800; }
.modal-description { margin-top:18px; color:var(--muted); font-size:.88rem; }
.modal-content h3 { margin-top:24px; color:var(--purple); font-size:.85rem; text-transform:uppercase; }
.modal-content ul { display:grid; grid-template-columns:1fr 1fr; gap:8px 18px; margin:13px 0 0; padding:0; list-style:none; }
.modal-content li { color:#68536d; font-size:.75rem; }
.modal-content li::before { margin-right:7px; color:var(--pink); content:"✓"; font-weight:900; }
.modal-note { margin:18px 0 22px; border-radius:14px; background:var(--blush); color:#795b70; padding:12px; font-size:.67rem; }
.toast { position:fixed; z-index:3000; left:50%; bottom:25px; max-width:min(440px,calc(100% - 30px)); border-radius:18px; background:var(--purple); color:#fff; padding:13px 19px; box-shadow:var(--shadow-strong); font-size:.77rem; font-weight:800; opacity:0; pointer-events:none; transform:translate(-50%,25px); transition:var(--ease); }
.toast.is-visible { opacity:1; transform:translate(-50%,0); }

.reveal { opacity:0; transform:translateY(25px); transition:opacity 700ms ease,transform 700ms ease; }
.reveal.is-visible { opacity:1; transform:translateY(0); }

@media (max-width: 1020px) {
  .nav-cta { display:none; }
  .nav-menu { gap:20px; }
  .hero__grid { grid-template-columns:1fr 1fr; gap:45px; }
  .hero__visual { min-height:500px; }
  .product-grid { grid-template-columns:repeat(2,1fr); }
  .welcome-card { grid-template-columns:1fr 1fr; }
}

@media (max-width: 800px) {
  :root { --container:min(100% - 28px, 680px); }
  .welcome-screen { padding:12px; }
  .welcome-card { grid-template-columns:1fr; min-height:calc(100dvh - 24px); border-radius:30px; }
  .welcome-copy { padding:28px 25px 22px; }
  .brand--welcome { margin-bottom:18px; }
  .brand-logo { width:132px; border-radius:18px; }
  .welcome-copy h1 { font-size:clamp(2.35rem,11vw,4rem); }
  .welcome-copy > p { font-size:.88rem; }
  .welcome-copy > .button { width:100%; margin-top:22px; }
  .welcome-benefits { display:none; }
  .welcome-gallery { min-height:300px; gap:12px; padding:35px 0; }
  .gift-stream img { width:135px; border-width:4px; border-radius:20px; }
  .welcome-badge { right:16px; bottom:13px; }
  .announcement__content { justify-content:center; }
  .announcement__content p:last-child { display:none; }
  .navbar { min-height:72px; }
  .brand-logo--nav { width:100px; }
  .menu-toggle { display:block; }
  .nav-menu { position:absolute; top:108px; right:14px; left:14px; display:grid; gap:0; overflow:hidden; border:1px solid var(--line); border-radius:22px; background:#fff; box-shadow:var(--shadow); opacity:0; pointer-events:none; transform:translateY(-10px); transition:var(--ease); }
  .nav-menu.is-open { opacity:1; pointer-events:auto; transform:translateY(0); }
  .nav-menu a { padding:15px 20px; border-bottom:1px solid var(--line); }
  .nav-menu a::after { display:none; }
  .menu-toggle.is-active span:nth-child(1) { transform:translateY(6px) rotate(45deg); }
  .menu-toggle.is-active span:nth-child(2) { opacity:0; }
  .menu-toggle.is-active span:nth-child(3) { transform:translateY(-6px) rotate(-45deg); }
  .hero { padding:70px 0 85px; }
  .hero__grid, .story__grid { grid-template-columns:1fr; }
  .hero__copy { text-align:center; }
  .hero__copy .eyebrow, .hero__actions { justify-content:center; }
  .hero__copy > p { margin-inline:auto; }
  .hero__stats { justify-content:center; }
  .hero__visual { min-height:520px; }
  .section-heading--split { align-items:flex-start; flex-direction:column; }
  .catalog-toolbar { align-items:stretch; flex-direction:column; }
  .filters { justify-content:center; }
  .process-grid { grid-template-columns:1fr; }
  .process-card, .process-card:nth-child(2) { min-height:0; transform:none; }
  .process-card:hover, .process-card:nth-child(2):hover { transform:translateY(-7px); }
  .story__visual { min-height:520px; }
  .cta-card { align-items:flex-start; flex-direction:column; }
  .footer__grid { grid-template-columns:1fr 1fr; }
  .footer__grid > div:first-child { grid-column:1/-1; }
  .modal-layout { grid-template-columns:1fr; }
  .modal-image-wrap { min-height:370px; }
}

@media (max-width: 560px) {
  h2 { font-size:clamp(2.25rem,12vw,3.4rem); }
  .announcement__content { font-size:.62rem; }
  .hero__copy h1 { font-size:clamp(3rem,15vw,4.8rem); }
  .hero__actions { flex-direction:column; }
  .hero__actions .button { width:100%; }
  .hero__stats { gap:15px; }
  .hero__stats div { grid-template-columns:1fr; gap:3px; text-align:center; }
  .hero__stats dd { max-width:80px; }
  .hero__visual { min-height:420px; }
  .hero-card--large { inset:3% 14% 8% 0; }
  .hero-card--small { width:44%; height:42%; }
  .hero-note { top:-2%; right:0; }
  .product-grid { grid-template-columns:1fr; }
  .catalog-summary { align-items:flex-start; flex-direction:column; gap:4px; }
  .occasions__content { align-items:flex-start; flex-direction:column; padding:24px 0; }
  .occasions__content > div { justify-content:flex-start; }
  .story__visual { min-height:430px; }
  .story-image--primary { inset:0 15% 8% 0; }
  .story-image--secondary { width:44%; }
  .story-seal { width:90px; height:90px; right:0; }
  .footer__grid { grid-template-columns:1fr; gap:35px; }
  .footer__grid > div:first-child { grid-column:auto; }
  .footer__bottom { align-items:flex-start; flex-direction:column; }
  .floating-contact strong { display:none; }
  .floating-contact { width:52px; height:52px; justify-content:center; padding:0; }
  .modal-content ul { grid-template-columns:1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior:auto; }
  *, *::before, *::after { transition-duration:.01ms !important; }
  .reveal { opacity:1; transform:none; }
}

/* Navegación por vistas: una sección visible a la vez */
body:not(.welcome-open) {
  height: 100dvh;
  overflow: hidden;
  background: #fff7fb;
}

.app-header {
  position: fixed;
  z-index: 120;
  top: 18px;
  right: 22px;
  left: 138px;
  display: flex;
  min-height: 72px;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, .82);
  border-radius: 25px;
  background: rgba(255, 255, 255, .88);
  padding: 9px 12px 9px 16px;
  box-shadow: 0 14px 42px rgba(78, 11, 100, .11);
  backdrop-filter: blur(20px);
}

.mini-brand {
  display: grid;
  width: 58px;
  height: 52px;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  border: 0;
  border-radius: 17px;
  background: #fff5fa;
  padding: 3px;
  cursor: pointer;
}

.mini-brand img {
  width: 100%;
  height: 100%;
  border-radius: 14px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.app-header__message {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  line-height: 1.25;
}

.app-header__message span {
  color: var(--pink);
  font-size: .64rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.app-header__message strong {
  overflow: hidden;
  color: var(--purple);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.header-order {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 9px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff9f05, #f214a6 58%, #7b168e);
  color: #fff;
  padding: 10px 20px;
  box-shadow: 0 12px 26px rgba(217, 20, 164, .25);
  cursor: pointer;
  font-size: .75rem;
  font-weight: 900;
}

.section-switcher {
  position: fixed;
  z-index: 130;
  top: 50%;
  left: 18px;
  display: grid;
  width: 102px;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: 32px;
  background: linear-gradient(160deg, rgba(60, 7, 76, .96), rgba(111, 13, 120, .96));
  padding: 13px 9px;
  box-shadow: 0 24px 55px rgba(42, 7, 61, .27);
  transform: translateY(-50%);
  backdrop-filter: blur(18px);
}

.section-switcher__item {
  display: grid;
  min-height: 70px;
  place-items: center;
  gap: 3px;
  border: 0;
  border-radius: 22px;
  background: transparent;
  color: #efdaf3;
  padding: 8px 4px;
  cursor: pointer;
  font-size: .61rem;
  font-weight: 900;
  transition: transform var(--ease), background var(--ease), color var(--ease);
}

.section-switcher__item:hover {
  background: rgba(255, 255, 255, .1);
  transform: translateY(-2px);
}

.section-switcher__item.is-active {
  background: linear-gradient(135deg, #ffad18, #f214a6);
  box-shadow: 0 10px 24px rgba(242, 20, 166, .32);
  color: #fff;
}

.section-switcher__icon {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 11px;
  background: rgba(255, 255, 255, .1);
  font-size: 1.05rem;
}

.section-switcher__item.is-active .section-switcher__icon {
  background: rgba(255, 255, 255, .22);
}

.section-panel {
  position: fixed !important;
  z-index: 10;
  inset: 0 0 0 120px;
  display: none !important;
  height: 100dvh;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-top: 118px !important;
  padding-bottom: 60px !important;
  scrollbar-color: rgba(242, 20, 166, .35) transparent;
}

.section-panel.is-active {
  display: block !important;
  animation: sectionEntrance 430ms cubic-bezier(.2, .8, .2, 1) both;
}

@keyframes sectionEntrance {
  from { opacity: 0; transform: translateY(14px) scale(.995); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.hero.section-panel {
  padding-bottom: 38px !important;
}

.hero.section-panel .hero__grid {
  min-height: calc(100dvh - 165px);
}

.hero.section-panel .hero__copy h1 {
  font-size: clamp(3rem, 5.5vw, 6.1rem);
}

.hero.section-panel .hero__visual {
  min-height: min(510px, calc(100dvh - 185px));
}

.section-panel .section-heading {
  margin-bottom: 34px;
}

.section-panel .section-heading h2 {
  font-size: clamp(2.35rem, 4.3vw, 4.25rem);
}

.section--featured.section-panel,
.catalog-section.section-panel,
.process-section.section-panel,
.story-section.section-panel {
  min-height: 100dvh;
}

.occasions,
.cta-section,
.site-footer {
  display: none;
}

.text-link {
  border: 0;
  border-bottom: 2px solid var(--orange);
  background: transparent;
  padding: 3px 0;
  cursor: pointer;
}

.floating-contact {
  z-index: 140;
  bottom: 24px;
}

@media (max-width: 800px) {
  .app-header {
    top: 8px;
    right: 10px;
    left: 10px;
    min-height: 60px;
    border-radius: 20px;
    padding: 7px 9px;
  }

  .mini-brand {
    width: 50px;
    height: 46px;
    border-radius: 14px;
  }

  .app-header__message span { font-size: .54rem; }
  .app-header__message strong { font-size: .82rem; }
  .header-order { width: 45px; min-height: 45px; justify-content: center; padding: 0; font-size: 0; }
  .header-order span { font-size: 1rem; }

  .section-switcher {
    top: auto;
    right: 9px;
    bottom: 8px;
    left: 9px;
    width: auto;
    grid-template-columns: repeat(5, 1fr);
    gap: 4px;
    border-radius: 23px;
    padding: 7px;
    transform: none;
  }

  .section-switcher__item {
    min-width: 0;
    min-height: 58px;
    border-radius: 17px;
    padding: 5px 2px;
    font-size: .51rem;
  }

  .section-switcher__icon { width: 27px; height: 27px; border-radius: 9px; font-size: .9rem; }

  .section-panel {
    inset: 0;
    height: calc(100dvh - 76px);
    padding-top: 86px !important;
    padding-bottom: 34px !important;
  }

  .hero.section-panel .hero__grid { min-height: auto; }
  .hero.section-panel .hero__visual { min-height: 400px; }
  .floating-contact { right: 14px; bottom: 85px; }
}

@media (max-width: 560px) {
  .section-panel { padding-top: 82px !important; }
  .hero.section-panel { padding-bottom: 26px !important; }
  .hero.section-panel .hero__copy h1 { font-size: clamp(2.75rem, 14vw, 4.3rem); }
  .hero.section-panel .hero__stats { margin-top: 28px; }
  .hero.section-panel .hero__visual { min-height: 380px; margin-top: 30px; }
  .section-panel .section-heading { margin-bottom: 28px; }
  .catalog-section.section-panel .section-heading p { display: none; }
  .catalog-section.section-panel .catalog-toolbar { margin-top: -5px; }
  .section-switcher__item > span:last-child { max-width: 58px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
}

/* Rediseño femenino solicitado: rosado, morado y blanco */
:root {
  --purple: #3d0b54;
  --purple-2: #70207f;
  --pink: #e916a8;
  --pink-2: #f34ec2;
  --rose: #ff9ddd;
  --orange: #b936c8;
  --orange-2: #f274c9;
  --cream: #fffafe;
  --blush: #fff0fa;
  --lavender: #f6edff;
  --ink: #32123d;
  --muted: #765b7c;
  --line: rgba(112, 32, 127, .13);
  --shadow: 0 20px 55px rgba(78, 18, 95, .13);
  --shadow-strong: 0 28px 85px rgba(67, 12, 86, .2);
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Aptos", "Segoe UI", "Trebuchet MS", sans-serif;
}

h1,
h2,
h3,
.app-header__message strong {
  font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
}

.eyebrow::before,
.carousel-progress span,
.product-badge,
.process-icon,
.story-seal,
.modal-tag,
.floating-contact,
.header-order {
  background: linear-gradient(135deg, var(--pink), #b326bd 58%, var(--purple-2));
}

.product-card__meta strong,
.hero-card figcaption strong,
.welcome-benefits span::before {
  color: var(--pink);
}

.text-link {
  border-bottom-color: #e384d2;
}

/* Portada completa, sin barras verticales ni laterales */
.welcome-screen {
  width: 100vw;
  height: 100dvh;
  min-height: 0;
  overflow: hidden;
  padding: clamp(10px, 2vh, 20px);
  background:
    radial-gradient(circle at 9% 12%, rgba(255, 255, 255, .98), transparent 25%),
    radial-gradient(circle at 88% 18%, rgba(230, 98, 210, .2), transparent 29%),
    radial-gradient(circle at 14% 88%, rgba(155, 69, 212, .15), transparent 29%),
    linear-gradient(135deg, #fffaff 0%, #ffeaf8 46%, #efe1ff 100%);
}

.welcome-screen::before,
.welcome-screen::after {
  border-color: rgba(190, 47, 183, .08);
  animation: welcomeFloat 8s ease-in-out infinite alternate;
}

.welcome-screen::after {
  animation-delay: -3s;
}

.welcome-card {
  width: min(1240px, calc(100vw - 24px));
  height: min(750px, calc(100dvh - 24px));
  min-height: 0;
  grid-template-columns: .92fr 1.08fr;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .94);
  border-radius: clamp(28px, 3vw, 46px);
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 30px 90px rgba(89, 25, 105, .2), inset 0 1px 0 #fff;
}

.welcome-copy {
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  padding: clamp(24px, 4.4vh, 54px) clamp(24px, 4.5vw, 62px);
}

.brand--welcome {
  margin-bottom: clamp(10px, 1.8vh, 20px);
  filter: drop-shadow(0 13px 18px rgba(89, 16, 107, .16));
}

.brand--welcome .brand-logo {
  width: clamp(118px, 14vh, 168px);
  height: clamp(118px, 14vh, 168px);
  max-width: none;
  border: 3px solid rgba(255, 255, 255, .9);
  border-radius: 28px;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: normal;
  box-shadow: 0 13px 30px rgba(179, 38, 189, .16);
}

.welcome-copy h1 {
  max-width: 610px;
  margin-top: clamp(8px, 1.5vh, 16px);
  font-size: clamp(2.25rem, 5.25vh, 4.75rem);
  line-height: .95;
}

.welcome-copy > p {
  margin-top: clamp(12px, 2vh, 20px);
  font-size: clamp(.82rem, 1.7vh, 1rem);
  line-height: 1.55;
}

.welcome-copy > .button {
  min-height: clamp(48px, 6.4vh, 58px);
  margin-top: clamp(15px, 2.7vh, 28px);
}

.welcome-benefits {
  margin-top: clamp(12px, 2.3vh, 24px);
}

.welcome-gallery {
  min-width: 0;
  min-height: 0;
  gap: clamp(10px, 2vh, 18px);
  overflow: hidden;
  padding: clamp(30px, 6vh, 58px) 0;
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 124, 220, .26), transparent 35%),
    linear-gradient(150deg, #3d0b54 0%, #7b1c8c 52%, #e916a8 100%);
}

.welcome-gallery__glow {
  background: rgba(245, 128, 222, .27);
}

.gift-stream img {
  border-color: rgba(255, 255, 255, .94);
  box-shadow: 0 18px 42px rgba(32, 3, 45, .36);
}

.welcome-badge {
  background: rgba(255, 255, 255, .94);
}

@keyframes welcomeFloat {
  to { transform: translate3d(18px, -14px, 0) rotate(8deg); }
}

/* Fondo más llamativo para las vistas interiores */
body:not(.welcome-open) {
  background:
    radial-gradient(circle at 9% 20%, rgba(238, 123, 211, .17), transparent 25%),
    radial-gradient(circle at 90% 78%, rgba(128, 67, 202, .14), transparent 27%),
    linear-gradient(135deg, #fffaff 0%, #fff1fa 52%, #f5efff 100%);
}

body:not(.welcome-open)::before,
body:not(.welcome-open)::after {
  position: fixed;
  z-index: 0;
  width: 320px;
  height: 320px;
  border: 56px solid rgba(224, 75, 190, .055);
  border-radius: 50%;
  content: "";
  pointer-events: none;
  animation: backgroundDrift 10s ease-in-out infinite alternate;
}

body:not(.welcome-open)::before { top: -170px; right: 7%; }
body:not(.welcome-open)::after { bottom: -190px; left: 4%; animation-delay: -5s; }

@keyframes backgroundDrift {
  to { transform: translate3d(22px, 18px, 0) scale(1.08); }
}

.app-header {
  top: 16px;
  right: 22px;
  left: 22px;
  min-height: 74px;
  border-color: rgba(229, 125, 208, .22);
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 17px 50px rgba(90, 25, 107, .13);
}

.mini-brand {
  width: 68px;
  height: 58px;
  overflow: visible;
  border: 1px solid rgba(230, 93, 196, .14);
  background: linear-gradient(145deg, #fff, #fff1fa);
  box-shadow: 0 9px 24px rgba(108, 31, 126, .11);
}

.mini-brand img {
  mix-blend-mode: normal;
}

.header-order {
  min-height: 48px;
  box-shadow: 0 12px 29px rgba(199, 33, 180, .24);
}

.header-order:hover,
.music-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 17px 34px rgba(133, 34, 149, .22);
}

.music-toggle {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(183, 54, 200, .2);
  border-radius: 999px;
  background: linear-gradient(145deg, #fff, #fbecff);
  color: var(--purple-2);
  padding: 9px 14px;
  box-shadow: 0 10px 26px rgba(91, 26, 108, .11);
  cursor: pointer;
  font-size: .73rem;
  font-weight: 900;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease);
}

.music-toggle__icon {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border-radius: 50%;
  background: #f4ddfb;
  color: var(--purple-2);
  font-size: 1rem;
}

.music-toggle.is-playing .music-toggle__icon {
  background: linear-gradient(135deg, var(--pink), var(--purple-2));
  color: #fff;
}

.music-toggle__waves {
  display: flex;
  height: 18px;
  align-items: center;
  gap: 2px;
}

.music-toggle__waves i {
  display: block;
  width: 2px;
  height: 4px;
  border-radius: 5px;
  background: var(--pink);
}

.music-toggle.is-playing .music-toggle__waves i {
  animation: musicWave .9s ease-in-out infinite alternate;
}

.music-toggle.is-playing .music-toggle__waves i:nth-child(2) { animation-delay: -.35s; }
.music-toggle.is-playing .music-toggle__waves i:nth-child(3) { animation-delay: -.6s; }

@keyframes musicWave {
  to { height: 16px; }
}

/* Navegación flotante tipo cápsula, centrada y profesional */
.section-switcher {
  top: auto;
  right: auto;
  bottom: 18px;
  left: 50%;
  display: flex;
  width: min(760px, calc(100vw - 44px));
  gap: 6px;
  border: 1px solid rgba(217, 92, 196, .27);
  border-radius: 30px;
  background: rgba(255, 255, 255, .9);
  padding: 8px;
  box-shadow: 0 22px 65px rgba(70, 14, 88, .22), inset 0 1px 0 #fff;
  transform: translateX(-50%);
  backdrop-filter: blur(22px);
}

.section-switcher::before {
  position: absolute;
  z-index: -1;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(233, 22, 168, .16), rgba(115, 31, 137, .1), rgba(233, 22, 168, .16));
  content: "";
  filter: blur(12px);
}

.section-switcher__item {
  min-width: 0;
  min-height: 64px;
  flex: 1 1 0;
  grid-template-columns: 34px auto;
  place-content: center;
  place-items: center;
  gap: 7px;
  border-radius: 21px;
  color: #76587c;
  padding: 7px 10px;
  font-size: .67rem;
}

.section-switcher__item:hover {
  background: #fff0fa;
  color: var(--purple-2);
}

.section-switcher__item.is-active {
  background: linear-gradient(135deg, var(--pink), #b526bd 55%, var(--purple-2));
  box-shadow: 0 11px 26px rgba(192, 37, 181, .28);
}

.section-switcher__icon {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  background: #f3e4f8;
  color: var(--purple-2);
}

.section-switcher__item.is-active .section-switcher__icon {
  background: rgba(255, 255, 255, .22);
  color: #fff;
  animation: activeIcon 1.8s ease-in-out infinite;
}

@keyframes activeIcon {
  50% { transform: translateY(-2px) scale(1.06); }
}

.section-panel {
  z-index: 10;
  inset: 0;
  height: 100dvh;
  padding-top: 118px !important;
  padding-bottom: 112px !important;
  background:
    radial-gradient(circle at 8% 12%, rgba(255, 255, 255, .96), transparent 26%),
    radial-gradient(circle at 92% 85%, rgba(224, 121, 215, .12), transparent 28%),
    linear-gradient(135deg, rgba(255, 250, 255, .94), rgba(255, 240, 250, .94) 55%, rgba(246, 239, 255, .94));
}

.section--featured.section-panel {
  background:
    radial-gradient(circle at 88% 10%, rgba(243, 78, 194, .28), transparent 30%),
    radial-gradient(circle at 8% 90%, rgba(146, 66, 194, .23), transparent 30%),
    linear-gradient(145deg, #3d0b54 0%, #6f1b7e 55%, #8e258f 100%);
}

.catalog-section.section-panel,
.process-section.section-panel,
.story-section.section-panel {
  background:
    radial-gradient(circle at 92% 12%, rgba(234, 105, 207, .13), transparent 28%),
    radial-gradient(circle at 6% 88%, rgba(132, 71, 201, .11), transparent 28%),
    linear-gradient(135deg, #fffaff, #fff2fa 52%, #f7f0ff);
}

.hero.section-panel .hero__grid {
  min-height: calc(100dvh - 230px);
}

.hero-card,
.product-card,
.process-card,
.catalog-toolbar {
  box-shadow: 0 18px 50px rgba(83, 22, 101, .1);
}

.carousel-card {
  border-color: rgba(255, 255, 255, .35);
}

.floating-contact {
  right: 24px;
  bottom: 23px;
  box-shadow: 0 15px 35px rgba(178, 36, 169, .28);
}

@media (max-width: 920px) {
  .app-header__message { display: none; }
  .app-header { justify-content: space-between; }
  .mini-brand { margin-right: auto; }
  .section-switcher__item { grid-template-columns: 1fr; gap: 2px; }
}

@media (max-width: 660px) {
  .welcome-screen { padding: 8px; }

  .welcome-card {
    width: calc(100vw - 16px);
    height: calc(100dvh - 16px);
    grid-template-columns: 1fr;
    grid-template-rows: 64% 36%;
    border-radius: 28px;
  }

  .welcome-copy {
    padding: 18px 21px 14px;
    text-align: center;
  }

  .brand--welcome {
    align-self: center;
    margin-bottom: 8px;
  }

  .brand--welcome .brand-logo {
    width: clamp(76px, 12vh, 102px);
    height: clamp(76px, 12vh, 102px);
    border-radius: 20px;
  }

  .welcome-copy .eyebrow { align-self: center; font-size: .59rem; }
  .welcome-copy h1 { max-width: 430px; align-self: center; margin-top: 8px; font-size: clamp(1.95rem, 5.2vh, 2.7rem); }
  .welcome-copy > p { max-width: 440px; align-self: center; margin-top: 10px; font-size: clamp(.72rem, 1.75vh, .86rem); }
  .welcome-copy > .button { width: min(310px, 100%); align-self: center; min-height: 48px; margin-top: 14px; }
  .welcome-gallery { gap: 9px; padding: 20px 0; }
  .gift-stream img { width: clamp(92px, 26vw, 126px); border-width: 3px; border-radius: 17px; }
  .welcome-badge { right: 12px; bottom: 9px; padding: 6px 11px; font-size: .58rem; }
  .welcome-badge span { font-size: 1.1rem; }

  .app-header {
    top: 8px;
    right: 9px;
    left: 9px;
    min-height: 61px;
    border-radius: 21px;
    padding: 7px 8px;
  }

  .mini-brand { width: 50px; height: 47px; border-radius: 14px; }
  .header-order { width: 46px; min-height: 46px; justify-content: center; padding: 0; font-size: 0; }
  .header-order span { font-size: 1rem; }
  .music-toggle { width: 46px; min-height: 46px; justify-content: center; padding: 0; }
  .music-toggle__label,
  .music-toggle__waves { display: none; }

  .section-switcher {
    right: 8px;
    bottom: 8px;
    left: 8px;
    width: auto;
    gap: 3px;
    border-radius: 23px;
    padding: 6px;
    transform: none;
  }

  .section-switcher__item {
    min-height: 58px;
    grid-template-columns: 1fr;
    gap: 2px;
    border-radius: 17px;
    padding: 4px 2px;
    font-size: .5rem;
  }

  .section-switcher__icon { width: 27px; height: 27px; border-radius: 9px; font-size: .88rem; }
  .section-panel { height: calc(100dvh - 74px); padding-top: 83px !important; padding-bottom: 30px !important; }
  .hero.section-panel .hero__grid { min-height: auto; }
  .hero.section-panel .hero__visual { min-height: 370px; }
  .floating-contact { right: 14px; bottom: 84px; }
}

@media (max-height: 650px) {
  .welcome-copy > p,
  .welcome-benefits { display: none; }
  .welcome-copy h1 { font-size: clamp(1.8rem, 5.1vh, 2.7rem); }
  .welcome-copy > .button { margin-top: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  .welcome-screen::before,
  .welcome-screen::after,
  body:not(.welcome-open)::before,
  body:not(.welcome-open)::after,
  .music-toggle__waves i,
  .section-switcher__item.is-active .section-switcher__icon {
    animation: none !important;
  }
}

/* Nueva identidad tipográfica, menú desplegable y movimiento dulce */
body,
button,
input {
  font-family: "Nunito", "Segoe UI", sans-serif;
}

h1,
h2,
h3,
.product-card h3,
.process-card h3,
.empty-state h3,
.app-header__message strong {
  font-family: "DM Serif Display", Georgia, serif;
  font-weight: 400;
  letter-spacing: -.025em;
}

.welcome-copy h1,
.hero__copy h1 {
  line-height: 1.01;
  letter-spacing: -.032em;
}

.welcome-copy h1 em,
.hero__copy h1 em {
  display: inline-block;
  color: var(--pink);
  font-family: "Parisienne", "Segoe Script", cursive;
  font-size: 1.08em;
  font-weight: 400;
  letter-spacing: 0;
  line-height: .78;
  transform: rotate(-1.5deg);
}

.brand--welcome .brand-logo {
  width: clamp(128px, 15.5vh, 180px);
  height: clamp(128px, 15.5vh, 180px);
  border-radius: 31px;
  object-fit: contain;
  object-position: center;
}

.mini-brand {
  width: 62px;
  height: 62px;
  border-radius: 20px;
  padding: 4px;
}

.mini-brand img {
  border-radius: 16px;
  object-fit: contain;
}

/* El menú permanece pequeño hasta que la persona decide abrirlo */
.section-switcher {
  position: fixed;
  z-index: 310;
  top: auto;
  right: auto;
  bottom: 17px;
  left: 50%;
  display: block;
  width: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
  transform: translateX(-50%);
  backdrop-filter: none;
}

.section-switcher::before {
  display: none;
}

.section-menu-toggle {
  position: relative;
  display: inline-flex;
  min-width: 142px;
  min-height: 49px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 999px;
  background: linear-gradient(135deg, #f125ae 0%, #b62bc3 56%, #712083 100%);
  color: #fff;
  padding: 10px 21px;
  box-shadow: 0 15px 38px rgba(103, 21, 124, .28), inset 0 1px 0 rgba(255,255,255,.36);
  cursor: pointer;
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .025em;
  transition: transform var(--ease), box-shadow var(--ease);
}

.section-menu-toggle::before {
  position: absolute;
  top: -90%;
  left: -35%;
  width: 38px;
  height: 270%;
  background: rgba(255, 255, 255, .25);
  content: "";
  transform: rotate(24deg);
  animation: menuShine 4.6s ease-in-out infinite;
}

.section-menu-toggle:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 46px rgba(103, 21, 124, .34);
}

.section-menu-toggle i {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(225deg) translate(-1px, -1px);
  transition: transform var(--ease);
}

.section-switcher.is-open .section-menu-toggle i {
  transform: rotate(45deg) translate(-1px, -1px);
}

@keyframes menuShine {
  0%, 62% { left: -35%; opacity: 0; }
  70% { opacity: .9; }
  88%, 100% { left: 125%; opacity: 0; }
}

.section-menu__panel {
  position: absolute;
  bottom: calc(100% + 13px);
  left: 50%;
  width: min(820px, calc(100vw - 34px));
  visibility: hidden;
  border: 1px solid rgba(221, 112, 208, .28);
  border-radius: 30px;
  background:
    radial-gradient(circle at 4% 0%, rgba(255, 172, 226, .32), transparent 31%),
    rgba(255, 255, 255, .94);
  padding: 15px;
  box-shadow: 0 30px 80px rgba(64, 9, 82, .27), inset 0 1px 0 #fff;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 18px) scale(.96);
  transform-origin: 50% 100%;
  transition: opacity 260ms ease, transform 360ms cubic-bezier(.2,.85,.2,1), visibility 260ms;
  backdrop-filter: blur(24px);
}

.section-switcher.is-open .section-menu__panel {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
}

.section-menu__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 2px 6px 12px 8px;
}

.section-menu__heading > div {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.section-menu__heading span {
  color: var(--pink);
  font-size: .61rem;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.section-menu__heading strong {
  color: var(--purple);
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 400;
}

.section-menu__close {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #fae8f8;
  color: var(--purple-2);
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
}

.section-menu__links {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 7px;
}

.section-switcher__item {
  display: flex;
  min-width: 0;
  min-height: 75px;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap: 3px;
  border: 1px solid transparent;
  border-radius: 19px;
  background: transparent;
  color: #6f5776;
  padding: 12px 14px;
  text-align: left;
  transition: transform var(--ease), background var(--ease), border-color var(--ease), color var(--ease);
}

.section-switcher__item strong {
  color: var(--purple);
  font-size: .76rem;
  font-weight: 900;
}

.section-switcher__item span {
  color: #907994;
  font-size: .58rem;
  font-weight: 700;
  line-height: 1.25;
}

.section-switcher__item:hover {
  border-color: rgba(223, 70, 188, .18);
  background: #fff1fa;
  transform: translateY(-3px);
}

.section-switcher__item.is-active {
  border-color: rgba(218, 78, 194, .19);
  background: linear-gradient(145deg, #fff0fa, #f4e9ff);
  box-shadow: 0 10px 25px rgba(104, 28, 123, .1);
  color: var(--purple);
}

.section-switcher__item.is-active::after {
  position: absolute;
  display: none;
  content: "";
}

.section-panel {
  padding-bottom: 88px !important;
}

/* Lluvia de caramelos: decorativa, ligera y sin bloquear la navegación */
.sweet-rain {
  position: fixed;
  z-index: 28;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.sweet-drop {
  position: absolute;
  top: -12vh;
  left: var(--sweet-left);
  color: var(--sweet-color);
  font-size: var(--sweet-size);
  line-height: 1;
  opacity: 0;
  filter: drop-shadow(0 8px 9px rgba(95, 24, 110, .16));
  animation: sweetFall var(--sweet-duration) cubic-bezier(.24,.64,.46,1) var(--sweet-delay) forwards;
  will-change: transform, opacity;
}

@keyframes sweetFall {
  0% { opacity: 0; transform: translate3d(0, -10vh, 0) rotate(0deg) scale(.75); }
  10% { opacity: .78; }
  82% { opacity: .72; }
  100% { opacity: 0; transform: translate3d(var(--sweet-drift), 112vh, 0) rotate(var(--sweet-rotate)) scale(1.05); }
}

/* Elementos nuevos que hacen cada sección más atractiva */
.sweet-choices {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.sweet-choices span {
  border: 1px solid rgba(222, 70, 188, .18);
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  color: var(--purple-2);
  padding: 8px 13px;
  box-shadow: 0 8px 20px rgba(93, 28, 108, .07);
  font-size: .67rem;
  font-weight: 900;
  animation: choiceFloat 4.5s ease-in-out infinite;
}

.sweet-choices span:nth-child(2) { animation-delay: -1.5s; }
.sweet-choices span:nth-child(3) { animation-delay: -3s; }

@keyframes choiceFloat {
  50% { transform: translateY(-5px); }
}

.featured-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: -5px 0 28px;
}

.featured-highlights article {
  display: grid;
  min-height: 108px;
  grid-template-columns: auto 1fr;
  column-gap: 11px;
  align-content: center;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 22px;
  background: rgba(255,255,255,.1);
  color: #fff;
  padding: 16px 18px;
  backdrop-filter: blur(12px);
  animation: highlightGlow 5s ease-in-out infinite alternate;
}

.featured-highlights article:nth-child(2) { animation-delay: -1.7s; }
.featured-highlights article:nth-child(3) { animation-delay: -3.4s; }
.featured-highlights article > span { grid-row: 1 / 3; color: #ffa8e1; font-family: "DM Serif Display", Georgia, serif; font-size: 1.35rem; }
.featured-highlights strong { align-self: end; font-size: .77rem; }
.featured-highlights p { color: #ead9ef; font-size: .63rem; line-height: 1.4; }

@keyframes highlightGlow {
  to { border-color: rgba(255,170,226,.48); background: rgba(255,255,255,.15); transform: translateY(-4px); }
}

.catalog-promise {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  margin: -8px auto 22px;
}

.catalog-promise span {
  border: 1px solid rgba(217, 80, 191, .16);
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  color: var(--muted);
  padding: 8px 14px;
  box-shadow: 0 8px 20px rgba(91, 21, 108, .06);
  font-size: .66rem;
}

.catalog-promise strong { color: var(--pink); }

.order-tip {
  display: grid;
  grid-template-columns: 1fr 1.25fr auto;
  align-items: center;
  gap: 25px;
  margin-top: 38px;
  overflow: hidden;
  border: 1px solid rgba(219, 94, 197, .17);
  border-radius: 28px;
  background:
    radial-gradient(circle at 0 50%, rgba(238, 66, 190, .13), transparent 34%),
    rgba(255,255,255,.8);
  padding: 24px 27px;
  box-shadow: 0 18px 46px rgba(81, 20, 100, .09);
}

.order-tip > div > span {
  color: var(--pink);
  font-family: "Parisienne", "Segoe Script", cursive;
  font-size: 1.35rem;
}

.order-tip h3 { color: var(--purple); font-size: 1.4rem; line-height: 1.05; }
.order-tip > p { color: var(--muted); font-size: .76rem; line-height: 1.55; }

.story-quote {
  margin: 0 0 26px;
  border-left: 3px solid var(--pink);
  border-radius: 0 18px 18px 0;
  background: rgba(255,255,255,.63);
  padding: 15px 18px;
}

.story-quote p {
  color: var(--purple);
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.25;
}

.story-quote span { color: var(--pink); font-size: .62rem; font-weight: 900; }

/* Movimiento interior suave */
.section-panel.is-active .hero-card--large { animation: cardFloatLarge 5.5s ease-in-out infinite; }
.section-panel.is-active .hero-card--small { animation: cardFloatSmall 6.2s ease-in-out infinite; }
.section-panel.is-active .hero-note { animation: noteFloat 4.8s ease-in-out infinite; }
.section-panel.is-active .story-image--primary { animation: storyFloatOne 6.5s ease-in-out infinite; }
.section-panel.is-active .story-image--secondary { animation: storyFloatTwo 5.8s ease-in-out infinite; }
.section-panel.is-active .process-card:nth-child(1),
.section-panel.is-active .process-card:nth-child(3) { animation: processBreathe 5s ease-in-out infinite; }

@keyframes cardFloatLarge { 50% { transform: translateY(-9px) rotate(-1deg); } }
@keyframes cardFloatSmall { 50% { transform: rotate(5deg) translateY(8px); } }
@keyframes noteFloat { 50% { transform: translateY(-8px) rotate(1deg); } }
@keyframes storyFloatOne { 50% { transform: rotate(-1.5deg) translateY(-8px); } }
@keyframes storyFloatTwo { 50% { transform: rotate(7deg) translateY(7px); } }
@keyframes processBreathe { 50% { transform: translateY(-6px); } }

.product-card {
  animation: productAppear 560ms cubic-bezier(.2,.8,.2,1) backwards;
}

.product-card:nth-child(2) { animation-delay: 70ms; }
.product-card:nth-child(3) { animation-delay: 140ms; }
.product-card:nth-child(4) { animation-delay: 210ms; }
.product-card:nth-child(5) { animation-delay: 280ms; }
.product-card:nth-child(6) { animation-delay: 350ms; }

@keyframes productAppear {
  from { opacity: 0; transform: translateY(22px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 900px) {
  .section-menu__links { grid-template-columns: repeat(3, 1fr); }
  .featured-highlights { grid-template-columns: 1fr; }
  .order-tip { grid-template-columns: 1fr; gap: 12px; text-align: center; }
  .order-tip .button { justify-self: center; }
}

@media (max-width: 660px) {
  .brand--welcome .brand-logo {
    width: clamp(82px, 12.5vh, 108px);
    height: clamp(82px, 12.5vh, 108px);
    border-radius: 23px;
  }

  .welcome-copy h1,
  .hero__copy h1 { line-height: 1.04; }

  .mini-brand { width: 50px; height: 50px; border-radius: 15px; }

  .section-switcher {
    right: auto;
    bottom: 10px;
    left: 50%;
    width: auto;
    padding: 0;
    transform: translateX(-50%);
  }

  .section-menu-toggle { min-width: 132px; min-height: 46px; }

  .section-menu__panel {
    width: calc(100vw - 20px);
    max-height: min(76vh, 590px);
    overflow-y: auto;
    border-radius: 25px;
    padding: 12px;
  }

  .section-menu__links {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .section-switcher__item {
    min-height: 58px;
    border-radius: 16px;
    padding: 9px 13px;
  }

  .section-switcher__item strong { font-size: .75rem; }
  .section-switcher__item span {
    max-width: none;
    overflow: visible;
    font-size: .57rem;
    text-overflow: clip;
    white-space: normal;
  }
  .section-panel { height: 100dvh; padding-bottom: 74px !important; }
  .floating-contact { bottom: 69px; }
  .sweet-choices { justify-content: center; }
  .featured-highlights article { min-height: 88px; }
  .catalog-promise { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 3px; }
  .catalog-promise span { flex: 0 0 auto; }
  .order-tip { margin-top: 25px; padding: 21px; }
}

@media (prefers-reduced-motion: reduce) {
  .sweet-rain { display: none; }
  .section-menu-toggle::before,
  .sweet-choices span,
  .featured-highlights article,
  .section-panel.is-active .hero-card--large,
  .section-panel.is-active .hero-card--small,
  .section-panel.is-active .hero-note,
  .section-panel.is-active .story-image--primary,
  .section-panel.is-active .story-image--secondary,
  .section-panel.is-active .process-card,
  .product-card {
    animation: none !important;
  }
}

/* Información comercial visible dentro de Nosotros */
.visit-card {
  position: relative;
  overflow: hidden;
  margin: 25px 0 24px;
  border: 1px solid rgba(215, 74, 184, .2);
  border-radius: 27px;
  background:
    radial-gradient(circle at 100% 0%, rgba(242, 115, 203, .22), transparent 35%),
    linear-gradient(145deg, rgba(255,255,255,.96), rgba(251,238,255,.94));
  padding: 22px;
  box-shadow: 0 18px 44px rgba(80, 21, 99, .11);
}

.visit-card::after {
  position: absolute;
  width: 105px;
  height: 105px;
  right: -48px;
  bottom: -58px;
  border: 20px solid rgba(226, 72, 190, .07);
  border-radius: 50%;
  content: "";
}

.visit-card__top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.visit-card__kicker {
  display: block;
  margin-bottom: 4px;
  color: var(--pink);
  font-family: "Parisienne", "Segoe Script", cursive;
  font-size: 1.35rem;
  line-height: 1;
}

.visit-card h3 {
  color: var(--purple);
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 1.42rem;
  font-weight: 400;
  line-height: 1.05;
}

.store-status {
  display: inline-flex;
  min-height: 34px;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  background: #f2eaf4;
  color: #725c79;
  padding: 7px 12px;
  font-size: .66rem;
  font-weight: 900;
}

.store-status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 4px rgba(114, 92, 121, .1);
}

.store-status.is-open {
  background: #e9fff2;
  color: #15834c;
}

.store-status.is-open i {
  box-shadow: 0 0 0 4px rgba(21, 131, 76, .12);
  animation: storePulse 1.9s ease-in-out infinite;
}

.store-status.is-closed {
  background: #fff0f6;
  color: #a43e69;
}

@keyframes storePulse {
  50% { box-shadow: 0 0 0 7px rgba(21, 131, 76, 0); }
}

.visit-card__details {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 11px;
  margin-top: 17px;
}

.visit-detail {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border: 1px solid rgba(184, 70, 173, .12);
  border-radius: 17px;
  background: rgba(255,255,255,.72);
  padding: 12px;
}

.visit-detail__icon {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 11px;
  background: linear-gradient(145deg, #ffe1f3, #eee0ff);
  color: var(--purple-2);
  font-size: 1rem;
}

.visit-detail strong {
  display: block;
  color: var(--purple);
  font-size: .68rem;
}

.visit-detail p,
.visit-detail small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: .62rem;
  line-height: 1.4;
}

.visit-detail small { color: #a43e69; font-weight: 800; }

.visit-map {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
  border-bottom: 2px solid rgba(222, 64, 180, .25);
  color: var(--purple-2);
  padding-bottom: 2px;
  font-size: .68rem;
  font-weight: 900;
  transition: gap var(--ease), color var(--ease);
}

.visit-map:hover { gap: 12px; color: var(--pink); }

@media (max-width: 660px) {
  .visit-card { margin-top: 20px; border-radius: 23px; padding: 18px; }
  .visit-card__top { flex-direction: column; gap: 11px; }
  .visit-card__details { grid-template-columns: 1fr; }
  .store-status { align-self: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  .store-status.is-open i { animation: none; }
}
