
:root{
  --bg:#f7f1ea;
  --bg-soft:#fbf7f2;
  --paper:#fffdf9;
  --card:rgba(255,255,255,.78);
  --ink:#2f201d;
  --muted:#6b5a52;
  --line:rgba(71,46,39,.10);
  --line-strong:rgba(71,46,39,.18);
  --cinnamon:#b87a4f;
  --accent:#7a2f3c;
  --accent-2:#b15f4b;
  --green:#6b7a57;
  --gold:#b89a67;
  --shadow:0 22px 60px rgba(58,34,28,.10);
  --radius:28px;
  --radius-sm:20px;
  --max:1260px;
  --header:86px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth;scroll-padding-top:110px}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--ink);
  background:
    radial-gradient(circle at top left, rgba(184,154,103,.10), transparent 24%),
    radial-gradient(circle at 85% 12%, rgba(177,95,75,.08), transparent 18%),
    linear-gradient(180deg,#f8f3ed 0%, #fbf7f2 100%);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  text-rendering:optimizeLegibility;
  font-kerning:normal;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
button,input,textarea,select{font:inherit}
.container{max-width:var(--max);margin:0 auto;padding:0 22px}
.container-narrow{max-width:980px;margin:0 auto;padding:0 22px}
.serif,h1,h2,h3,.display{font-family:"Cormorant Garamond",Georgia,"Times New Roman",serif}
main{overflow:hidden}
.topbar{
  position:relative;
  top:auto;
  z-index:60;
  background:#141212;
  border-bottom:1px solid rgba(255,240,226,.07);
  box-shadow:0 10px 26px rgba(8,5,5,.24);
  overflow:visible;
}
.topbar::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:1px;
  background:linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(139,24,35,.16) 28%, rgba(255,241,229,.14) 50%, rgba(139,24,35,.14) 72%, rgba(255,255,255,0) 100%);
  pointer-events:none;
}
.topbar-inner{
  min-height:var(--header);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  position:relative;
  z-index:1;
}
.brand{display:flex;align-items:center;gap:12px;position:relative;z-index:62}
.brand::after{
  content:"";
  position:absolute;
  left:18px;
  right:24px;
  bottom:-10px;
  height:16px;
  background:radial-gradient(circle, rgba(139,24,35,.14) 0%, rgba(139,24,35,0) 72%);
  filter:blur(14px);
  opacity:.58;
  pointer-events:none;
}
.brand img{
  height:64px;
  width:auto;
  object-fit:contain;
  content:url("/assets/images/brand/logo-w.png");
  filter:drop-shadow(0 5px 14px rgba(0,0,0,.14));
}
.nav{display:flex;align-items:center;gap:28px}
.nav-link{
  font-size:.97rem;
  color:rgba(255,247,240,.9);
  position:relative;
  font-weight:500;
  background:none;
  border:0;
  padding:0;
  min-height:auto;
  border-radius:0;
  box-shadow:none;
}
.nav-link::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-10px;
  height:1px;
  background:linear-gradient(90deg, rgba(139,24,35,.92) 0%, rgba(94,37,22,.9) 100%);
  opacity:0;
  transform:scaleX(.58);
  transform-origin:center;
  transition:transform .24s ease, opacity .24s ease;
}
.nav-link:hover,.nav-link.active,.nav-link[aria-current="page"]{color:#fffdf8}
.nav-link:hover::after,.nav-link.active::after,.nav-link[aria-current="page"]::after{opacity:1;transform:scaleX(1)}
.nav-dropdown{
  position:relative;
  display:flex;
  align-items:center;
}
.nav-dropdown::after{
  content:"";
  position:absolute;
  left:-10px;
  right:-10px;
  top:100%;
  height:22px;
  background:transparent;
}
.nav-dropdown-toggle{
  appearance:none;
  display:inline-flex;
  align-items:center;
  gap:8px;
  cursor:pointer;
}
.nav-dropdown-toggle::before{display:none}
.nav-dropdown-toggle::after{
  content:"";
  position:static;
  width:8px;
  height:8px;
  border-right:1.5px solid currentColor;
  border-bottom:1.5px solid currentColor;
  transform:rotate(45deg) translateY(-1px);
  opacity:.8;
  transition:transform .24s ease, opacity .24s ease;
  background:none;
}
.nav-dropdown:hover .nav-dropdown-toggle::after,
.nav-dropdown.open .nav-dropdown-toggle::after,
.nav-dropdown:focus-within .nav-dropdown-toggle::after{
  transform:rotate(225deg) translateY(-1px);
  opacity:1;
}
.nav-dropdown.is-active .nav-dropdown-toggle{color:#fffdf8}
.nav-dropdown.is-active .nav-dropdown-toggle::after{opacity:1}
.nav-dropdown.is-active .nav-dropdown-toggle::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-10px;
  height:1px;
  background:linear-gradient(90deg, rgba(139,24,35,.92) 0%, rgba(94,37,22,.9) 100%);
  opacity:1;
}
.nav-dropdown-menu{
  position:absolute;
  top:calc(100% + 10px);
  left:50%;
  min-width:280px;
  padding:10px;
  display:grid;
  gap:4px;
  border-radius:22px;
  border:1px solid rgba(255,240,226,.10);
  background:linear-gradient(180deg, rgba(23,18,17,.98) 0%, rgba(18,14,14,.98) 100%);
  box-shadow:0 18px 42px rgba(0,0,0,.32);
  transform:translateX(-50%) translateY(8px);
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:opacity .24s ease, transform .24s ease, visibility .24s ease;
  z-index:140;
}
.nav-dropdown-menu a{
  display:block;
  padding:12px 14px;
  border-radius:16px;
  color:rgba(255,247,240,.9);
  font-size:.94rem;
  font-weight:500;
  transition:background-color .2s ease, color .2s ease, transform .2s ease;
}
.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible{
  background:rgba(255,250,246,.07);
  color:#fffdf8;
  transform:translateX(2px);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
  transform:translateX(-50%) translateY(0);
}
.nav-actions{display:flex;align-items:center;justify-content:flex-end;gap:10px}
.topbar .nav-actions > .btn{display:none}
.topbar-social{display:flex;align-items:center;gap:8px}
.topbar-social-link{
  width:34px;
  height:34px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:rgba(255,247,240,.94);
  background:rgba(255,250,246,.05);
  border:1px solid rgba(255,241,229,.1);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.06);
  transition:transform .24s ease, border-color .24s ease, background-color .24s ease, color .24s ease;
}
.topbar-social-link svg{width:15px;height:15px;display:block;fill:currentColor}
.topbar-social-link:hover{
  transform:translateY(-1px);
  color:#fffdf8;
  background:rgba(255,250,246,.08);
  border-color:rgba(139,24,35,.24);
}
.menu-toggle{display:none;border:1px solid rgba(255,241,229,.1);background:rgba(255,250,246,.05);width:48px;height:48px;border-radius:50%;align-items:center;justify-content:center;box-shadow:inset 0 1px 0 rgba(255,255,255,.06)}
.menu-toggle span,.menu-toggle::before,.menu-toggle::after{display:block;width:18px;height:2px;background:var(--ink);border-radius:99px;transition:.2s ease;content:"";position:relative}
.menu-toggle::before{position:absolute;transform:translateY(-6px)}
.menu-toggle::after{position:absolute;transform:translateY(6px)}
.topbar .menu-toggle span,.topbar .menu-toggle::before,.topbar .menu-toggle::after{background:#fff7f0}
.menu-toggle.open span{opacity:0}.menu-toggle.open::before{transform:rotate(45deg)}.menu-toggle.open::after{transform:rotate(-45deg)}
.mobile-nav{display:none;position:absolute;inset:calc(var(--header) - 1px) 0 auto 0;background:#141212;backdrop-filter:blur(18px);border-bottom:1px solid rgba(255,240,226,.07);box-shadow:var(--shadow)}
.mobile-nav .container{display:grid;padding-top:14px;padding-bottom:22px;gap:6px}
.mobile-nav a{padding:14px 0;border-bottom:1px solid rgba(255,240,226,.07);font-weight:600;color:rgba(255,247,240,.9)}
.mobile-nav a:hover{color:#fffdf8}
.mobile-nav a:last-child{border-bottom:0}
.mobile-nav-group{
  display:grid;
  gap:0;
  padding:6px 0 2px;
  border-bottom:1px solid rgba(255,240,226,.07);
}
.mobile-nav-label{
  margin:0;
  padding:10px 0 8px;
  color:rgba(255,241,229,.58);
  font-size:.74rem;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
}
.mobile-nav-group a{
  padding:12px 0 12px 14px;
  border-bottom:0;
  font-weight:500;
}
.btn,button{
  border:0;border-radius:999px;padding:14px 24px;font-weight:700;cursor:pointer;display:inline-flex;align-items:center;justify-content:center;gap:10px;transition:.24s ease;
}
.btn-primary{
  color:#fff;
  background:linear-gradient(135deg,#2f201d 0%, #5a3328 55%, #8a4d39 100%);
  box-shadow:0 14px 32px rgba(47,32,29,.22);
}
.btn-primary:hover{transform:translateY(-1px);box-shadow:0 18px 36px rgba(47,32,29,.26)}
.btn-secondary{border:1px solid var(--line-strong);background:rgba(255,255,255,.6);color:var(--ink)}
.btn-secondary:hover{background:rgba(255,255,255,.92)}
.btn-soft{border:1px solid rgba(255,255,255,.28);background:rgba(255,255,255,.12);color:#fff;backdrop-filter:blur(8px)}
.btn-soft:hover{background:rgba(255,255,255,.18)}
.kicker{font-size:.84rem;letter-spacing:.16em;text-transform:uppercase;color:var(--accent);font-weight:800;margin:0 0 12px}
.eyebrow{display:inline-flex;align-items:center;gap:10px;padding:10px 14px;border-radius:999px;font-size:.84rem;letter-spacing:.12em;text-transform:uppercase;background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.16)}
h1,h2,h3{line-height:1.03;margin:0 0 16px;font-weight:600;letter-spacing:-.02em}
h1{font-size:clamp(2.8rem,5vw,4.6rem)}
h2{font-size:clamp(2rem,4vw,3rem);margin-top:0}
h3{font-size:clamp(1.35rem,2vw,1.9rem)}
.hero-home{padding:0 0 48px}
.hero-shell{position:relative;overflow:hidden;min-height:710px;background:#eaddcf}
.hero-home .hero-shell{border-radius:0;box-shadow:none}
.hero-media,.hero-overlay{position:absolute;inset:0}
.hero-media img{width:100%;height:100%;object-fit:cover}
.hero-mobile{display:none}
.hero-overlay{background:linear-gradient(90deg, rgba(32,17,14,.70) 0%, rgba(32,17,14,.56) 26%, rgba(32,17,14,.28) 55%, rgba(32,17,14,.10) 100%)}
.hero-content{position:relative;z-index:1;color:#fff;max-width:640px;padding:94px 0 72px}
.hero-content-card{position:relative}
.hero-copy-wrap{position:relative;z-index:1;padding-inline:22px;max-width:var(--max);margin:0 auto}
.hero-desktop-kicker,.hero-desktop-lead{display:none}
.lead{font-size:1.08rem;max-width:50ch;color:#f2e8df}
.hero-actions,.stack-actions,.actions{display:flex;gap:14px;flex-wrap:wrap;margin-top:26px}
.hero-note{display:flex;flex-wrap:wrap;gap:12px;margin-top:26px}
.hero-note .inline-pill{background:rgba(255,255,255,.12);border-color:rgba(255,255,255,.18);color:#fff}
.inline-pill{display:inline-flex;align-items:center;gap:8px;padding:10px 14px;border-radius:999px;background:#f2e8de;border:1px solid rgba(47,32,29,.08);color:var(--ink);font-size:.94rem}
.hero-home-unified{
  position:relative;
  overflow:hidden;
  padding:0 0 54px;
  background:
    linear-gradient(180deg, rgba(58,35,24,.18), rgba(58,35,24,.34)),
    radial-gradient(circle at 18% 20%, rgba(242,224,202,.22), transparent 36%),
    url("/assets/images/products/fondo-product-hero.jpg") center center / cover no-repeat;
}
.hero-home-unified::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(32,20,15,.44) 0%, rgba(32,20,15,.16) 44%, rgba(32,20,15,.28) 100%),
    linear-gradient(180deg, rgba(247,241,234,.04), rgba(247,241,234,.02));
  pointer-events:none;
}
.home-hero-slider{
  position:relative;
  z-index:1;
  padding-top:28px;
}
.home-hero-viewport{
  overflow:hidden;
}
.home-hero-track{
  display:flex;
  transition:transform .65s cubic-bezier(.22,.61,.36,1);
  will-change:transform;
}
.home-hero-slide{
  min-width:100%;
  flex:0 0 100%;
  padding:24px 0 0;
}
.home-hero-card{
  position:relative;
  display:grid;
  grid-template-columns:minmax(0, 1.02fr) minmax(340px, .9fr);
  align-items:center;
  gap:clamp(24px, 4vw, 74px);
  padding:clamp(24px, 3vw, 42px);
  min-height:clamp(560px, 66vw, 650px);
  border-radius:34px;
  background:linear-gradient(180deg, rgba(36,22,20,.58) 0%, rgba(12,8,8,.64) 100%);
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 24px 64px rgba(10,6,6,.28), inset 0 1px 0 rgba(255,255,255,.10);
  backdrop-filter:blur(10px) saturate(118%);
  -webkit-backdrop-filter:blur(10px) saturate(118%);
  isolation:isolate;
}
.home-hero-card::before{
  content:"";
  position:absolute;
  inset:1px;
  border-radius:33px;
  background:linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,0) 42%);
  pointer-events:none;
}
.home-hero-card::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:34px;
  background:
    radial-gradient(circle at 18% 14%, rgba(255,244,228,.10), transparent 22%),
    radial-gradient(circle at 88% 16%, rgba(184,154,103,.10), transparent 20%);
  pointer-events:none;
}
.home-hero-copy{
  position:relative;
  z-index:1;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  max-width:600px;
}
.home-hero-pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  width:max-content;
  min-height:40px;
  padding:0 16px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,250,244,.06);
  color:rgba(251,243,232,.84);
  font-size:.72rem;
  font-weight:600;
  letter-spacing:.18em;
  text-transform:uppercase;
  margin-bottom:18px;
}
.home-hero-copy h1,
.home-hero-copy h2{
  min-height:3em;
  margin-bottom:18px;
  color:#fff8f2;
  font-size:clamp(3.4rem, 4.8vw, 5.1rem);
  line-height:.93;
  letter-spacing:-.034em;
}
.home-hero-title-split span{
  display:block;
}
.home-hero-lead{
  min-height:5.3em;
  margin:0;
  max-width:39ch;
  color:rgba(246,238,229,.88);
  font-size:1rem;
  line-height:1.72;
}
.home-hero-meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:24px;
  min-height:46px;
}
.home-hero-meta span{
  display:inline-flex;
  align-items:center;
  min-height:38px;
  padding:0 14px;
  border-radius:999px;
  background:rgba(255,250,244,.08);
  border:1px solid rgba(255,255,255,.12);
  color:rgba(255,247,238,.94);
  font-size:.84rem;
  font-weight:600;
}
.home-hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:26px;
}
.home-hero-visual{
  position:relative;
  min-height:460px;
  padding:clamp(8px, 2vw, 16px);
  display:flex;
  align-items:center;
  justify-content:center;
}
.home-hero-visual::after{
  content:"";
  position:absolute;
  width:min(80%, 420px);
  aspect-ratio:1 / 1;
  border-radius:50%;
  background:radial-gradient(circle, rgba(241,218,195,.56) 0%, rgba(241,218,195,.18) 44%, rgba(241,218,195,0) 72%);
  filter:blur(18px);
  transform:translateY(20px);
  z-index:0;
}
.home-hero-visual-wrap{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  min-height:460px;
  z-index:1;
}
.home-hero-deco{
  position:absolute;
  left:50%;
  top:50%;
  width:min(100%, 396px);
  height:auto;
  max-width:none;
  opacity:.94;
  transform:translate(-50%, -50%) scale(1);
  z-index:1;
}
.home-hero-product{
  position:relative;
  z-index:2;
  width:min(100%, 380px);
  max-height:500px;
  object-fit:contain;
  filter:drop-shadow(0 26px 34px rgba(50,31,21,.24));
   animation:homeHeroBreath 3.85s ease-in-out infinite;
   transition:transform .3s ease, filter .3s ease;
}
.home-hero-visual-wrap:hover .home-hero-product{
  animation-play-state:paused;
  transform:translateY(2px) scale(.988);
  filter:drop-shadow(0 18px 28px rgba(50,31,21,.2));
}
.home-hero-deco{
  transform-origin:center center;
  animation:homeHeroCoverZoom 2.45s cubic-bezier(.14,.78,.18,1) forwards;
}
.home-hero-controls{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  margin-top:18px;
}
.home-hero-nav{
  display:flex;
  gap:10px;
}
.home-hero-btn{
  width:46px;
  height:46px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,250,244,.08);
  color:#fff8f2;
  box-shadow:0 12px 28px rgba(12,8,8,.12);
}
.home-hero-dots{
  display:flex;
  gap:8px;
}
.home-hero-dot{
  width:10px;
  height:10px;
  border-radius:999px;
  border:0;
  padding:0;
  background:rgba(255,250,244,.26);
}
.home-hero-dot.is-active{
  width:28px;
  background:#fff8f2;
}
@keyframes homeHeroBreath{
  0%{transform:translate3d(0,0,0)}
  50%{transform:translate3d(0,-8px,0)}
  100%{transform:translate3d(0,0,0)}
}
@keyframes homeHeroCoverZoom{
  0%{transform:translate(-50%, -50%) scale(.7)}
  100%{transform:translate(-50%, -50%) scale(1)}
}
.section{padding:78px 0}
.section-soft{background:rgba(255,255,255,.36);border-top:1px solid var(--line);border-bottom:1px solid var(--line)}
.grid-2{display:grid;grid-template-columns:1.02fr .98fr;gap:38px;align-items:center}
.grid-2.equal{grid-template-columns:1fr 1fr}
.text-block p,.rich-text p{margin:0 0 16px;color:var(--muted);font-size:1.03rem}
.text-block ul,.rich-text ul{margin:0 0 18px 18px;color:var(--muted)}
.text-block li,.rich-text li{margin-bottom:10px}
.glass-card,.card{
  background:rgba(255,255,255,.64);
  border:1px solid rgba(71,46,39,.10);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  backdrop-filter:blur(10px);
  overflow:hidden;
}
.card-pad{padding:28px}
.media-card{position:relative;min-height:440px;overflow:hidden}
.media-card img{width:100%;height:100%;object-fit:cover}
.media-card .play{position:absolute;left:24px;bottom:24px;width:78px;height:78px;border-radius:50%;background:rgba(255,255,255,.9);display:grid;place-items:center;color:var(--ink);font-size:1.4rem;box-shadow:var(--shadow)}
.info-list{display:grid;gap:16px}
.info-item{display:flex;gap:14px;padding:18px 0;border-bottom:1px solid var(--line)}
.info-item:last-child{border-bottom:0;padding-bottom:0}
.info-item:first-child{padding-top:0}
.icon-bullet{width:42px;height:42px;flex:0 0 42px;border-radius:50%;display:grid;place-items:center;background:rgba(184,122,79,.12);color:var(--cinnamon);font-weight:800}
.product-slider-wrap{
  position:relative;
  margin-top:34px;
  padding:0;
  border-radius:0;
  background:transparent;
  border:0;
  box-shadow:none;
  overflow:visible;
}
.slider-controls{
  display:flex;
  justify-content:flex-end;
  gap:10px;
  margin-bottom:22px;
}
.slider-btn{
  width:50px;
  height:50px;
  border-radius:50%;
  border:1px solid rgba(71,46,39,.12);
  background:rgba(255,253,249,.88);
  box-shadow:0 14px 28px rgba(58,34,28,.08);
  font-size:0;
  color:var(--ink);
  position:relative;
  transition:transform .24s ease, background .24s ease, border-color .24s ease, box-shadow .24s ease;
}
.slider-btn::before{
  position:absolute;
  inset:0;
  display:grid;
  place-items:center;
  font-size:1rem;
  font-weight:700;
}
.slider-btn[data-prev]::before{content:"\2190"}
.slider-btn[data-next]::before{content:"\2192"}
.slider-btn:hover{
  transform:translateY(-1px);
  background:#fff;
  border-color:rgba(71,46,39,.18);
  box-shadow:0 18px 34px rgba(58,34,28,.10);
}
.product-slider{
  display:grid;
  grid-auto-flow:column;
  grid-auto-columns:minmax(76%,1fr);
  gap:28px;
  overflow:auto;
  scroll-snap-type:x mandatory;
  scroll-padding-left:0;
  padding:6px 0 18px;
  scrollbar-width:none;
}
.product-slider::-webkit-scrollbar{display:none}
.product-slide{
  scroll-snap-align:start;
  scroll-snap-stop:always;
  min-width:0;
}
.product-feature-card{
  display:grid;
  grid-template-columns:minmax(320px,.92fr) 1.08fr;
  min-height:520px;
  background:linear-gradient(180deg, rgba(255,253,249,.96) 0%, rgba(246,238,228,.94) 100%);
  border:1px solid rgba(71,46,39,.09);
  box-shadow:0 18px 38px rgba(58,34,28,.08);
  transition:transform .34s ease, box-shadow .34s ease, border-color .34s ease;
  will-change:transform;
}
.product-slide.is-current .product-feature-card{
  transform:translateY(-6px);
  box-shadow:0 26px 56px rgba(58,34,28,.12);
  border-color:rgba(71,46,39,.14);
}
.product-feature-card:hover{
  transform:translateY(-8px);
  box-shadow:0 30px 62px rgba(58,34,28,.14);
}
.product-feature-card .visual{
  position:relative;
  min-height:100%;
  background:#dbc8b7;
}
.product-feature-card .visual::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(37,24,20,.06) 0%, rgba(37,24,20,.18) 100%);
  pointer-events:none;
}
.product-feature-card .visual img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .55s ease;
}
.product-feature-card:hover .visual img{transform:scale(1.03)}
.product-feature-card .body{
  padding:34px 34px 30px;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  gap:0;
  background:linear-gradient(180deg, rgba(255,253,249,.98) 0%, rgba(249,244,238,.96) 100%);
}
.product-feature-card .body::before{
  display:inline-flex;
  align-items:center;
  order:1;
  width:max-content;
  margin-bottom:18px;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(184,122,79,.10);
  border:1px solid rgba(184,122,79,.14);
  color:var(--cinnamon);
  font-size:.76rem;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
  content:"";
}
.tier-access .body::before{content:"Nivel 1 \00B7  Limpieza"}
.tier-protection .body::before{content:"Nivel 2 \00B7  Protecci\00F3n"}
.tier-depth .body::before{content:"Nivel 3 \00B7  Profundidad ritual"}
.product-tier{display:none}
.product-feature-card h3{
  order:2;
  margin-bottom:14px;
  font-size:clamp(2rem,2.5vw,2.8rem);
  line-height:.98;
  min-width:0;
}
.product-feature-card .body > p:not(.product-tier){
  order:3;
  margin:0;
  max-width:38ch;
  color:var(--muted);
  font-size:1rem;
  line-height:1.72;
}
.product-feature-card .label{
  position:absolute;
  left:20px;
  top:20px;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(251,247,242,.88);
  border:1px solid rgba(71,46,39,.10);
  font-size:.77rem;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.product-feature-card .body > .price{display:none}
.price-block{
  order:4;
  display:grid;
  gap:6px;
  margin:22px 0 18px;
  padding:16px 0;
  border-top:1px solid rgba(71,46,39,.10);
  border-bottom:1px solid rgba(71,46,39,.08);
}
.price-value{
  font-family:"Cormorant Garamond",Georgia,"Times New Roman",serif;
  font-size:clamp(2.7rem,4vw,3.5rem);
  line-height:.9;
  font-weight:600;
  letter-spacing:-.03em;
  color:var(--ink);
}
.price-caption{
  margin:0;
  color:var(--muted);
  font-size:.76rem;
  font-weight:700;
  letter-spacing:.11em;
  text-transform:uppercase;
  white-space:nowrap;
}
.tier-depth{
  border-color:rgba(122,47,60,.12);
  box-shadow:0 26px 60px rgba(58,34,28,.11);
}
.tier-depth .body::before{
  background:rgba(122,47,60,.08);
  border-color:rgba(122,47,60,.14);
  color:var(--accent);
}
.tier-depth .price-value{color:var(--accent)}
.mini-meta{
  order:5;
  display:flex;
  gap:6px;
  flex-wrap:nowrap;
  margin:0 0 22px;
  min-width:0;
}
.mini-meta span{
  padding:8px 10px;
  border-radius:999px;
  background:#f6ece2;
  color:var(--ink);
  font-size:.76rem;
  border:1px solid rgba(47,32,29,.07);
  white-space:nowrap;
}
.product-card-cta{
  min-width:186px;
  justify-content:center;
}
.product-feature-card .actions{
  order:6;
  margin-top:auto;
  padding-top:22px;
}
.product-page .hero-shell{min-height:auto;border-radius:0;background:transparent}
.product-page .hero-wrap{display:grid;grid-template-columns:.94fr 1.06fr;gap:40px;align-items:center;padding:40px 0 30px}
.product-page .hero-image{min-height:620px;border-radius:34px;overflow:hidden;box-shadow:var(--shadow);position:relative}
.product-page .hero-image img{width:100%;height:100%;object-fit:cover}
.product-page h1{font-size:clamp(2.6rem,4.5vw,4rem);margin-bottom:18px}
.product-sub{font-size:1.06rem;color:var(--muted);max-width:56ch}
.hero-meta{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin:22px 0 26px}
.hero-meta .meta-box{padding:14px 16px;border-radius:18px;background:#f2e8de;border:1px solid rgba(47,32,29,.08);font-size:.94rem;font-weight:600}
.full-intro{padding:0 0 18px}
.full-intro .heading{max-width:900px}
.mini-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-top:24px}
.mini-card{padding:22px;border-radius:24px;background:rgba(255,255,255,.66);border:1px solid var(--line);box-shadow:var(--shadow);backdrop-filter:blur(8px)}
.mini-card p{font-size:.97rem;color:var(--muted);margin:8px 0 0}
.use-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:18px;margin-top:22px}
.ritual-home-integrate{
  position:relative;
  overflow:hidden;
  padding-block:clamp(96px, 10vw, 132px);
  background:
    linear-gradient(180deg, rgba(28,18,16,.59) 0%, rgba(23,15,14,.8) 100%),
    url("/assets/images/products/fondo-cuencos.jpg") center center / cover no-repeat;
}
.ritual-home-integrate::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 16% 18%, rgba(255,244,228,.08), transparent 24%),
    linear-gradient(90deg, rgba(15,10,9,.18) 0%, rgba(15,10,9,.06) 45%, rgba(15,10,9,.14) 100%);
  pointer-events:none;
}
.ritual-home-integrate .container{
  position:relative;
  z-index:1;
}
.ritual-home-integrate .kicker{
  color:rgba(235,201,179,.92);
}
.ritual-home-integrate h2{
  color:#fff8f2;
  max-width:20ch;
  text-shadow:0 12px 28px rgba(12,7,6,.22);
}
.ritual-home-integrate .use-grid{
  gap:20px;
  margin-top:28px;
}
.ritual-home-integrate .mini-card{
  position:relative;
  overflow:hidden;
  padding:24px 24px 22px;
  border-radius:28px;
  background:linear-gradient(180deg, rgba(49,31,27,.58) 0%, rgba(24,16,15,.62) 100%);
  border:1px solid rgba(255,244,233,.12);
  box-shadow:
    0 24px 54px rgba(10,6,6,.2),
    inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter:blur(10px) saturate(118%);
  -webkit-backdrop-filter:blur(10px) saturate(118%);
  transition:
    transform .45s cubic-bezier(.16,.74,.2,1),
    box-shadow .45s ease;
}
.ritual-home-integrate .mini-card::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  pointer-events:none;
  background:
    radial-gradient(circle at 50% 50%,
      rgba(255,210,160,.18) 0%,
      rgba(255,210,160,.08) 30%,
      rgba(255,210,160,.03) 55%,
      transparent 75%
    );
  opacity:0;
  filter:blur(18px);
  transition:opacity .5s ease, filter .5s ease;
}
.ritual-home-integrate .mini-card:hover{
  transform:translateY(-3px);
  box-shadow:
    0 18px 40px rgba(0,0,0,.28),
    0 0 22px rgba(184,118,76,.18),
    0 0 42px rgba(184,118,76,.10),
    inset 0 1px 0 rgba(255,255,255,.06);
}
.ritual-home-integrate .mini-card:hover::after{
  opacity:1;
  filter:blur(22px);
}
.ritual-home-integrate .mini-card p{
  color:rgba(255,240,227,.84);
  font-size:1rem;
  line-height:1.72;
  margin:0;
}
.ritual-use-badge{
  display:inline-flex;
  align-items:center;
  min-height:38px;
  margin:0 0 16px;
  padding:0 14px;
  border-radius:999px;
  gap:10px;
  background:rgba(255,248,242,.06);
  border:1px solid rgba(255,241,229,.12);
  color:#fff8f2;
  font-size:1.26rem;
  line-height:1;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.05);
}
.ritual-use-badge-icon{
  width:20px;
  height:20px;
  flex:0 0 20px;
  display:block;
  object-fit:contain;
  opacity:.86;
  filter:brightness(0) invert(.98);
  transition:transform .4s ease, filter .4s ease, opacity .4s ease;
}
.ritual-home-integrate .mini-card:hover .ritual-use-badge-icon{
  transform:translateY(-1px) scale(1.04);
  opacity:1;
  filter:brightness(0) invert(1) drop-shadow(0 0 6px rgba(255,210,160,.25));
}
.amulet-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-top:22px}
.symbol-card{padding:22px;text-align:left}
.symbol-card h3{font-size:1.35rem;margin-bottom:8px}
.process-stack{display:grid;gap:16px;margin-top:18px}
.process-step{display:grid;grid-template-columns:auto 1fr;gap:16px;padding:22px;border-radius:24px;background:rgba(255,255,255,.68);border:1px solid var(--line);box-shadow:var(--shadow)}
.process-step .num{width:48px;height:48px;border-radius:50%;display:grid;place-items:center;background:rgba(184,122,79,.14);color:var(--cinnamon);font-weight:800}
.cross-sell-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:18px;margin-top:22px}
.cross-card{display:grid;grid-template-columns:140px 1fr;gap:16px;padding:18px;border-radius:24px;background:rgba(255,255,255,.72);border:1px solid var(--line);box-shadow:var(--shadow)}
.cross-card img{width:100%;height:100%;object-fit:cover;border-radius:18px;min-height:160px}
.purchase-shell{display:grid;grid-template-columns:1.05fr .95fr;gap:22px;margin-top:24px;align-items:start}
.purchase-form,.purchase-aside{padding:24px;border-radius:30px;background:rgba(255,255,255,.7);border:1px solid var(--line);box-shadow:var(--shadow);backdrop-filter:blur(10px)}
.form-row{display:grid;gap:8px;margin-bottom:15px}
label{font-weight:700;font-size:.93rem}
input,textarea,select{width:100%;padding:14px 15px;border-radius:16px;border:1px solid rgba(47,32,29,.14);background:rgba(255,255,255,.92);color:var(--ink)}
textarea{min-height:120px;resize:vertical}
.product-summary{display:grid;grid-template-columns:98px 1fr;gap:14px;padding:16px;border-radius:20px;background:#f3e7dc;margin-bottom:18px;align-items:center}
.product-summary img{width:98px;height:124px;object-fit:cover;border-radius:16px}
.soft-note{font-size:.94rem;color:var(--muted)}
.accordion-faq,.accordion-product{margin:0;border-top:1px solid rgba(184,122,79,.42);width:100%;box-sizing:border-box}
.accordion-item{border-bottom:1px solid rgba(184,122,79,.35);background:transparent}
.accordion-title{cursor:pointer;padding:18px 20px;font-weight:700;font-size:1rem;position:relative;border-left:3px solid var(--cinnamon)}
.accordion-title::after{content:'+';position:absolute;right:20px;font-size:20px;color:var(--cinnamon)}
.accordion-title.active::after{content:'−'}
.accordion-content{display:none;padding:0 20px;background:transparent;color:var(--muted)}
.accordion-content.open{display:block;padding:0 20px 20px 20px}
.faq-wrap{display:grid;gap:14px;margin-top:20px}
.article-page .article-hero{padding:36px 0 16px}.article-page h1{font-size:clamp(2.6rem,4.8vw,4.4rem)}
.article-layout{display:grid;grid-template-columns:minmax(0,1fr) 320px;gap:34px;align-items:start}
.article-main{min-width:0}.article-cover{border-radius:32px;overflow:hidden;box-shadow:var(--shadow);margin:26px 0 22px}.article-cover img{width:100%;height:auto;display:block}
.article-body p,.article-body li{color:var(--muted);font-size:1.05rem}.article-body h2{font-size:2.05rem;margin:34px 0 12px}.article-body h3{font-size:1.45rem;margin-top:24px}.article-body ul{padding-left:20px}
.blog-sidebar{position:sticky;top:106px;display:grid;gap:18px}
.sidebar-card{padding:22px;border-radius:26px;background:rgba(255,255,255,.7);border:1px solid var(--line);box-shadow:var(--shadow)}
.related-list{display:grid;gap:14px}
.related-item{display:grid;grid-template-columns:92px 1fr;gap:12px;align-items:center}.related-item img{width:92px;height:68px;object-fit:cover;border-radius:12px}
.post-nav{display:grid;grid-template-columns:repeat(2,1fr);gap:16px;margin-top:34px}
.post-nav a{padding:18px 20px;border-radius:22px;background:rgba(255,255,255,.72);border:1px solid var(--line);box-shadow:var(--shadow)}
.home-blog-feature{position:relative}
.home-blog-feature::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 12% 18%, rgba(184,154,103,.08), transparent 24%),
    radial-gradient(circle at 88% 26%, rgba(107,122,87,.08), transparent 22%);
  pointer-events:none;
}
.home-blog-feature .container{position:relative}
.blog-list-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;margin-top:30px;align-items:stretch}
.article-card{
  border-radius:30px;
  overflow:hidden;
  background:linear-gradient(180deg, rgba(255,253,249,.96) 0%, rgba(244,236,226,.94) 100%);
  border:1px solid rgba(71,46,39,.10);
  box-shadow:0 20px 46px rgba(58,34,28,.10);
  min-height:100%;
  opacity:0;
  transform:translateY(26px);
  animation:editorialCardIn .7s ease forwards;
  transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.article-card:nth-child(2){animation-delay:.08s}
.article-card:nth-child(3){animation-delay:.16s}
.article-card:nth-child(4){animation-delay:.24s}
.article-card:nth-child(5){animation-delay:.32s}
.article-card:nth-child(6){animation-delay:.4s}
.article-card-link{display:flex;flex-direction:column;height:100%;color:inherit}
.article-card .thumb{aspect-ratio:5/4;overflow:hidden;background:#e7dccd}
.article-card .thumb img{width:100%;height:100%;object-fit:cover;transition:transform .3s ease}
.article-card .body{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:14px;
  padding:24px 24px 26px;
  flex:1;
}
.tag{
  display:inline-flex;
  align-items:center;
  padding:7px 0;
  font-size:.76rem;
  font-weight:700;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--green);
}
.article-card-title{
  margin:0;
  font-size:clamp(1.55rem,2.2vw,2rem);
  line-height:1.08;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.article-card-excerpt{
  margin:0;
  color:var(--muted);
  font-size:.98rem;
  line-height:1.7;
  display:-webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.article-card-cta{
  margin-top:auto;
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:.92rem;
  font-weight:700;
  letter-spacing:.03em;
  color:var(--ink);
  transition:color .3s ease, transform .3s ease;
}
.article-card-cta::after{
  content:"\2192";
  font-size:1rem;
  transition:transform .3s ease;
}
.article-card:hover,
.article-card:focus-within{
  transform:translateY(-8px);
  box-shadow:0 26px 56px rgba(58,34,28,.14);
  border-color:rgba(107,122,87,.18);
}
.article-card:hover .thumb img,
.article-card:focus-within .thumb img{transform:scale(1.05)}
.article-card:hover .article-card-cta,
.article-card:focus-within .article-card-cta{
  color:var(--accent);
  transform:translateX(2px);
}
.article-card:hover .article-card-cta::after,
.article-card:focus-within .article-card-cta::after{transform:translateX(4px)}
.article-card-link:focus-visible{
  outline:2px solid rgba(122,47,60,.4);
  outline-offset:-2px;
}
@keyframes editorialCardIn{
  from{
    opacity:0;
    transform:translateY(26px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}
@media (prefers-reduced-motion: reduce){
  .article-card{
    animation:none;
    opacity:1;
    transform:none;
  }
  .article-card,
  .article-card .thumb img,
  .article-card-cta,
  .article-card-cta::after{transition:none}
}
.legal-page .legal-hero{padding:34px 0 16px}.legal-body{max-width:980px}.legal-body p,.legal-body li{color:var(--muted)}.legal-body h2{font-size:1.85rem;margin:48px 0 12px;font-weight:500;letter-spacing:-.01em}.legal-body h3{font-size:1.2rem;margin:28px 0 10px}.legal-body ul{padding-left:20px}
.prefooter{padding:34px 0 18px}.prefooter-shell{padding:32px;border-radius:34px;background:linear-gradient(135deg, rgba(255,255,255,.82), rgba(243,231,220,.86));border:1px solid var(--line);box-shadow:var(--shadow);display:grid;grid-template-columns:1.2fr auto;gap:20px;align-items:center}
.footer{
  margin-top:26px;
  padding:72px 0 42px;
  border-top:1px solid rgba(255,240,226,.08);
  background:#141212;
  color:rgba(255,247,240,.9);
}
.footer-grid{
  display:grid;
  grid-template-columns:1.15fr .95fr .95fr;
  gap:34px;
  align-items:start;
}
.footer h3{
  margin:0 0 18px;
  color:#fff8f2;
  font-size:clamp(1.6rem,2vw,2.1rem);
}
.footer-logo{
  display:inline-flex;
  align-items:center;
  margin:0 0 18px;
}
.footer-logo img{
  width:auto;
  height:68px;
  object-fit:contain;
}
.footer-brand p,
.footer-note,
.footer-brand a{
  color:rgba(255,241,229,.72);
}
.footer-brand p{
  max-width:34ch;
  margin:0 0 20px;
}
.footer-brand-links{
  display:grid;
  gap:10px;
  margin-bottom:18px;
}
.footer-brand-links a{
  color:rgba(255,247,240,.88);
  font-weight:500;
}
.footer-brand-links a:hover{
  color:#fffdf8;
}
.footer-social{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:18px;
}
.footer-social-link{
  width:40px;
  height:40px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:#fff8f2;
  background:rgba(255,250,246,.04);
  border:1px solid rgba(255,241,229,.12);
  transition:transform .24s ease, background-color .24s ease, border-color .24s ease, color .24s ease;
}
.footer-social-link svg{
  width:16px;
  height:16px;
  display:block;
  fill:currentColor;
}
.footer-social-link:hover{
  transform:translateY(-1px);
  background:rgba(255,250,246,.08);
  border-color:rgba(255,241,229,.2);
  color:#ffffff;
}
.footer-copyright{
  margin:0;
  color:rgba(255,241,229,.54);
  font-size:.92rem;
}
.footer-links{
  display:grid;
  gap:12px;
}
.footer-links a{
  color:rgba(255,247,240,.74);
}
.footer-links a:hover{
  color:#fffdf8;
}
.footer-note{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:.95rem;
  margin-top:14px;
  flex-wrap:wrap;
}
.bizum-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:9px 13px;
  border-radius:999px;
  background:rgba(255,250,246,.04);
  border:1px solid rgba(255,241,229,.12);
  width:max-content;
  color:#fff8f2;
}
.bizum-icon{width:22px;height:22px;border-radius:50%;display:grid;place-items:center;background:#e8effe;color:#1f55ff;font-weight:800;font-size:.84rem}
hr.sep{border:none;border-top:1px solid var(--line);margin:34px 0}
@media (min-width:921px){
  .hero-home{padding:0 0 64px}
  .hero-shell{min-height:840px}
  .hero-overlay{
    background:
      linear-gradient(90deg, rgba(26,16,13,.68) 0%, rgba(26,16,13,.54) 28%, rgba(26,16,13,.24) 54%, rgba(26,16,13,.08) 74%, rgba(26,16,13,.02) 100%),
      radial-gradient(circle at 26% 24%, rgba(250,241,229,.14), transparent 28%),
      linear-gradient(180deg, rgba(0,0,0,.16) 0%, rgba(0,0,0,.08) 100%);
  }
  .hero-shell::after{
    content:"";
    position:absolute;
    inset:auto 0 0 0;
    height:20%;
    background:linear-gradient(180deg, rgba(17,11,9,0) 0%, rgba(17,11,9,.24) 100%);
    pointer-events:none;
    z-index:0;
  }
  .hero-copy-wrap{
    display:flex;
    align-items:flex-start;
    min-height:840px;
    padding-top:108px;
    padding-bottom:72px;
  }
  .hero-content{
    max-width:780px;
    padding:0;
  }
  .hero-content-card{
    width:min(100%, 760px);
    padding:34px 38px 30px;
    border-radius:36px;
    background:
      linear-gradient(180deg, rgba(47,31,25,.34) 0%, rgba(20,13,11,.42) 100%);
    border:1px solid rgba(255,255,255,.12);
    box-shadow:
      0 22px 58px rgba(15,9,8,.22),
      inset 0 1px 0 rgba(255,255,255,.12);
    backdrop-filter:blur(14px) saturate(115%);
    -webkit-backdrop-filter:blur(14px) saturate(115%);
  }
  .hero-content-card::before{
    content:"";
    position:absolute;
    inset:1px;
    border-radius:35px;
    background:linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,0) 42%);
    pointer-events:none;
  }
  .hero-content-card::after{
    content:"";
    position:absolute;
    inset:0;
    border-radius:36px;
    background:
      radial-gradient(circle at 18% 14%, rgba(255,244,228,.12), transparent 22%),
      radial-gradient(circle at 88% 16%, rgba(184,154,103,.1), transparent 20%);
    pointer-events:none;
  }
  .hero-content-card > .eyebrow{
    display:none;
  }
  .hero-desktop-kicker{
    display:inline-flex;
    align-items:center;
    gap:10px;
    width:max-content;
    padding:11px 16px;
    border-radius:999px;
    border:1px solid rgba(255,255,255,.12);
    background:rgba(255,250,244,.06);
    color:rgba(251,243,232,.84);
    font-size:.72rem;
    font-weight:600;
    letter-spacing:.18em;
    margin-bottom:22px;
    text-transform:uppercase;
  }
  .hero-content h1{
    margin-bottom:20px;
    font-size:clamp(3.8rem,5.2vw,5.35rem);
    line-height:.94;
    letter-spacing:-.032em;
    text-wrap:balance;
  }
  .hero-content .lead{
    display:none;
  }
  .hero-desktop-lead{
    display:block;
    max-width:41ch;
    margin:0;
    font-size:1.02rem;
    line-height:1.72;
    color:rgba(246,238,229,.86);
  }
  .hero-actions{
    margin-top:32px;
    gap:14px;
  }
  .hero-btn-primary{
    padding:15px 30px;
    box-shadow:0 18px 38px rgba(20,12,10,.28);
  }
  .hero-btn-secondary{
    background:rgba(255,255,255,.07);
    border-color:rgba(255,255,255,.14);
    color:rgba(255,247,238,.96);
  }
  .hero-btn-secondary:hover{
    background:rgba(255,255,255,.13);
  }
  .hero-note{display:none}
}
@media (max-width:1280px){
  .product-page .hero-wrap,
  .grid-2,
  .grid-2.equal,
  .purchase-shell,
  .article-layout,
  .footer-grid,
  .prefooter-shell,
  .product-feature-card,
  .heading-split,
  .ritual-dimension-grid,
  .pedido-commerce{grid-template-columns:1fr !important}
  .mini-cards,
  .amulet-grid,
  .use-grid,
  .blog-list-grid,
  .cross-sell-grid{grid-template-columns:1fr !important}
}
@media (max-width:1180px){
  .product-page .hero-wrap,
  .grid-2,
  .grid-2.equal,
  .purchase-shell,
  .article-layout,
  .footer-grid,
  .prefooter-shell,
  .product-feature-card{grid-template-columns:1fr !important}
  .mini-cards,
  .amulet-grid,
  .use-grid,
  .blog-list-grid{grid-template-columns:1fr !important}
  .cross-sell-grid{grid-template-columns:1fr}
  .article-layout .blog-sidebar{position:static;order:2}
  .product-slider-wrap{padding:0}
  .product-slider{grid-auto-columns:minmax(84%,1fr)}
  .product-feature-card{min-height:auto}
  .product-feature-card .visual{min-height:360px}
  .product-feature-card .body{padding:34px 30px}
  .ritual-home-integrate{padding-block:72px 88px}
  .ritual-home-integrate .mini-card{padding:22px 20px 20px;border-radius:24px}
  .ritual-use-badge{min-height:36px;font-size:1.14rem;margin-bottom:14px}
  .home-hero-card{grid-template-columns:1fr;min-height:auto}
  .home-hero-copy{max-width:none}
  .home-hero-copy h1,
  .home-hero-copy h2{min-height:0}
  .home-hero-lead{min-height:0;max-width:none}
  .home-hero-visual{min-height:320px;padding:14px 4px 8px}
  .home-hero-visual-wrap{min-height:320px}
}
@media (max-width:920px){
  :root{--header:78px}
  .nav{display:none}.menu-toggle{display:inline-flex}.mobile-nav.open{display:block}
  .topbar-inner{min-height:var(--header)}
  .brand img{height:56px}
  .topbar-social{display:none}
  .hero-home .hero-shell{min-height:760px}.hero-mobile{display:block}.hero-desktop{display:none}
  .hero-overlay{background:linear-gradient(180deg, rgba(32,17,14,.16) 0%, rgba(32,17,14,.22) 18%, rgba(32,17,14,.60) 52%, rgba(32,17,14,.82) 100%)}
  .hero-content{padding:28px 0 34px;min-height:760px;display:flex;flex-direction:column;justify-content:flex-end;max-width:none}
  .section{padding:58px 0}
  .product-slider-wrap{padding:0;border-radius:0}
  .slider-controls{justify-content:flex-start;margin-bottom:14px}
  .product-slider{grid-auto-columns:minmax(100%,1fr);gap:18px}
  .product-feature-card .visual{min-height:300px}
  .product-feature-card .body{padding:28px 22px 24px}
  .product-feature-card h3{font-size:clamp(1.8rem,7vw,2.4rem)}
  .product-feature-card .body > p:not(.product-tier){max-width:none;font-size:.98rem}
  .price-block{margin:22px 0 16px;padding:16px 0}
  .price-caption{font-size:.77rem;white-space:normal}
  .mini-meta{flex-wrap:wrap}
  .mini-meta span{font-size:.8rem}
  .mini-cards,.amulet-grid,.use-grid,.blog-list-grid{grid-template-columns:1fr}
  .ritual-home-integrate h2{max-width:none;font-size:clamp(2rem,9vw,2.7rem)}
  .hero-meta{grid-template-columns:1fr}.product-page .hero-image{min-height:420px}
  .prefooter-shell,.footer-grid{grid-template-columns:1fr}
  .media-card{min-height:auto}
  .media-card img{height:auto;aspect-ratio:4 / 3;display:block}
  .cross-card{grid-template-columns:108px 1fr}.cross-card img{min-height:136px}
  .hero-home-unified{padding-bottom:42px}
  .home-hero-slider{padding-top:12px}
  .home-hero-card{padding:22px 22px 24px;border-radius:28px;gap:22px}
  .home-hero-pill{margin-bottom:14px;font-size:.68rem;letter-spacing:.16em}
  .home-hero-copy h1,
  .home-hero-copy h2{font-size:clamp(2.5rem, 9vw, 3.6rem);line-height:.96}
  .home-hero-lead{font-size:.98rem;line-height:1.66}
  .home-hero-meta{margin-top:20px}
  .home-hero-meta span{font-size:.8rem;min-height:36px}
  .home-hero-visual-wrap{min-height:320px}
  .home-hero-product{width:min(100%, 290px);max-height:340px}
  .home-hero-deco{width:min(100%, 304px)}
  .home-hero-controls{margin-top:14px}
  .heading-split{
    grid-template-columns:1fr !important;
  }
  .heading-visual{
    order:-1;
    margin-bottom:12px;
    justify-content:center;
  }
  .heading-visual img{
    width:100%;
    max-width:300px;
  }
  .ritual-dimension-grid,
  .pedido-commerce{
    grid-template-columns:1fr !important;
  }
}
@media (max-width:1024px){
  #origen .grid-2,
  #origen .grid-2.equal,
  main .grid-2,
  main .grid-2.equal,
  main .mini-cards,
  main .use-grid,
  main .amulet-grid,
  main .blog-list-grid,
  main .cross-sell-grid{
    grid-template-columns:1fr !important;
  }
}
@media (max-width:680px){
  .container,.container-narrow,.hero-copy-wrap{padding-inline:18px}
  h1{font-size:clamp(2.35rem,8vw,3.35rem)}
  h2{font-size:clamp(1.8rem,7vw,2.5rem)}
  .hero-home .hero-shell{min-height:700px}
  .hero-content{min-height:700px}
  .product-page .hero-wrap{gap:26px;padding-top:24px}
  .purchase-form,.purchase-aside,.card-pad,.sidebar-card{padding:20px}
  .cross-card{grid-template-columns:1fr}.cross-card img{height:220px}
  .article-body p,.article-body li,.text-block p{font-size:1rem}
  .post-nav{grid-template-columns:1fr}
  .home-hero-card{padding:18px 18px 20px}
  .home-hero-pill{min-height:36px;padding:0 14px}
  .home-hero-meta{gap:8px}
  .home-hero-meta span{width:max-content;max-width:100%}
  .home-hero-actions{gap:10px}
  .home-hero-btn{width:42px;height:42px}
}
