:root{
  --forest:#1B3022;
  --forest-mid:#243D2B;
  --forest-deep:#122018;
  --moss:#2F5A3C;
  --leaf:#3F7D4E;
  --gold:#FFC400;
  --gold-deep:#E6A800;
  --gold-ink:#1B3022;
  --cream:#FDF9E6;
  --cream-deep:#F3EBD0;
  --paper:#FFFDF5;
  --ink:#1B3022;
  --ink-soft:#3A4F40;
  --muted:#6B7A6E;
  --heart:#D64545;
  --border:rgba(27,48,34,.12);
  --shadow:0 16px 40px rgba(18,32,24,.18);
  --radius:14px;
  --font-display:"Fredoka",sans-serif;
  --font-body:"Nunito",sans-serif;
  --font-script:"Caveat",cursive;
  --space-1:0.35rem;
  --space-2:0.55rem;
  --space-3:0.85rem;
  --space-4:1.1rem;
  --space-5:1.55rem;
  --space-6:2.1rem;
  --space-7:2.75rem;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--cream);
  line-height:1.45;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
.container{width:min(1080px,calc(100% - 40px));margin-inline:auto}

/* —— Buttons —— */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border-radius:14px;
  padding:16px 28px;
  text-transform:uppercase;
  font-weight:900;
  letter-spacing:.4px;
  border:none;
  cursor:pointer;
  transition:.2s transform,.2s filter,.2s box-shadow;
}
.btn:hover{transform:translateY(-2px);filter:brightness(1.04)}
.btn:active{transform:translateY(1px)}
.btn-gold{
  background:linear-gradient(180deg,#FFE14A 0%,var(--gold) 45%,var(--gold-deep) 100%);
  color:var(--gold-ink);
  box-shadow:0 6px 0 #B88400,0 12px 28px rgba(255,196,0,.35);
  font-family:var(--font-display);
  font-size:18px;
}
.btn-gold:hover{box-shadow:0 7px 0 #B88400,0 16px 32px rgba(255,196,0,.45)}
.btn-orange,.btn-buy{
  background:linear-gradient(180deg,#FFE14A 0%,var(--gold) 45%,var(--gold-deep) 100%);
  color:var(--gold-ink);
  box-shadow:0 6px 0 #B88400,0 12px 28px rgba(255,196,0,.35);
  font-family:var(--font-display);
  border:none;
}
.btn-orange:hover,.btn-buy:hover{filter:brightness(1.05);box-shadow:0 7px 0 #B88400,0 16px 32px rgba(255,196,0,.45)}
.btn-large{font-size:18px;padding:18px 32px}
.btn-buy{
  width:100%;
  font-size:18px;
  line-height:1.2;
  padding:18px 14px;
  letter-spacing:.5px;
  animation:cta-pulse 2.2s ease-in-out infinite;
}
.btn-buy:hover{animation:none;transform:translateY(-3px) scale(1.02)}

@keyframes cta-pulse{
  0%,100%{box-shadow:0 6px 0 #B88400,0 12px 28px rgba(255,196,0,.35),0 0 0 0 rgba(255,196,0,.4)}
  50%{box-shadow:0 6px 0 #B88400,0 16px 36px rgba(255,196,0,.5),0 0 0 12px rgba(255,196,0,0)}
}
@keyframes rise-in{
  from{opacity:0;transform:translateY(18px)}
  to{opacity:1;transform:translateY(0)}
}
@keyframes float-soft{
  0%,100%{transform:translateY(0) scale(var(--hero-zoom,1.12))}
  50%{transform:translateY(-8px) scale(var(--hero-zoom,1.12))}
}
@keyframes shimmer{
  0%{background-position:0% 50%}
  100%{background-position:200% 50%}
}

@media (prefers-reduced-motion:reduce){
  .btn-buy,.hero-product,.hero-copy>*{animation:none!important}
}

/* —— Wood / paper textures —— */
.wood-bg{
  background-color:var(--forest);
  background-image:
    linear-gradient(180deg,rgba(18,32,24,.35),rgba(18,32,24,.55)),
    repeating-linear-gradient(
      92deg,
      transparent 0,
      transparent 2px,
      rgba(0,0,0,.04) 2px,
      rgba(0,0,0,.04) 3px
    ),
    radial-gradient(ellipse at 20% 0%,rgba(63,125,78,.35),transparent 55%),
    radial-gradient(ellipse at 80% 100%,rgba(0,0,0,.35),transparent 50%),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.12'/%3E%3C/svg%3E");
  background-size:auto,auto,auto,auto,180px 180px;
}
.paper-bg{
  background-color:var(--cream);
  background-image:
    radial-gradient(ellipse at 10% 0%,rgba(255,196,0,.08),transparent 40%),
    radial-gradient(ellipse at 90% 20%,rgba(63,125,78,.06),transparent 45%),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
}

/* —— Torn edge —— */
.torn-top{
  position:relative;
}
.torn-top::before{
  content:"";
  position:absolute;
  left:0;right:0;top:-18px;
  height:28px;
  background:var(--cream);
  clip-path:polygon(
    0% 60%,2% 40%,5% 70%,8% 35%,12% 65%,16% 30%,20% 55%,24% 25%,28% 60%,
    32% 35%,36% 70%,40% 28%,44% 58%,48% 32%,52% 68%,56% 30%,60% 55%,
    64% 38%,68% 72%,72% 28%,76% 60%,80% 35%,84% 65%,88% 30%,92% 58%,
    96% 40%,100% 62%,100% 100%,0% 100%
  );
  z-index:2;
  pointer-events:none;
}

/* =========================
   HERO
   ========================= */
.hero{
  position:relative;
  color:#fff;
  padding:0 16px 28px;
  background:
    radial-gradient(ellipse at 50% 0%,rgba(47,90,60,.35),transparent 55%),
    var(--forest-deep);
  overflow:visible;
}
.hero-banner{
  background:linear-gradient(90deg,#FFE14A,#FFC400,#FFE14A);
  background-size:200% 100%;
  animation:shimmer 6s linear infinite;
  text-align:center;
  padding:10px 16px;
  font-family:var(--font-display);
  font-weight:700;
  font-size:13px;
  letter-spacing:1.2px;
  text-transform:uppercase;
  color:var(--forest);
  margin:0 -16px;
}
.hero-banner span{display:inline-flex;align-items:center;gap:8px}
.hero-stage{
  position:relative;
  width:min(920px,100%);
  margin:0 auto;
  border-radius:0 0 28px 28px;
  overflow:visible;
  isolation:isolate;
  box-shadow:
    0 28px 60px rgba(0,0,0,.45),
    0 4px 0 rgba(0,0,0,.2);
}
.hero-stage::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
  border-radius:inherit;
  background-color:var(--forest-deep);
  background-image:
    linear-gradient(180deg,rgba(10,16,12,.22) 0%,rgba(10,16,12,.08) 42%,rgba(10,16,12,.18) 72%,rgba(10,16,12,.4) 100%),
    url("imagens/hero-fundo-madeira.webp");
  background-size:cover;
  background-position:center 28%;
  background-repeat:no-repeat;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.06);
  pointer-events:none;
}
.hero-stage > .hero-inner{position:relative;z-index:1}
.hero-inner{
  padding:36px 20px 28px;
  text-align:center;
}
.hero-copy{
  position:relative;
  z-index:3;
  max-width:820px;
  margin:0 auto 0;
  padding:0 8px;
  animation:rise-in .7s ease both;
}
.hero-line{
  margin:0;
  font-family:var(--font-display);
  font-weight:600;
  font-size:clamp(15px,2.4vw,20px);
  letter-spacing:2px;
  text-transform:uppercase;
  color:rgba(255,255,255,.92);
}
.hero-title{
  margin:8px 0 4px;
  font-family:var(--font-display);
  font-weight:700;
  font-size:clamp(32px,6.2vw,56px);
  line-height:1.05;
  letter-spacing:.5px;
  text-transform:uppercase;
  color:var(--gold);
  text-shadow:0 3px 0 rgba(0,0,0,.25);
  position:relative;
  display:inline-block;
}
.hero-title::before,
.hero-title::after{
  content:"";
  position:absolute;
  top:50%;
  width:28px;height:18px;
  background:
    linear-gradient(90deg,transparent,var(--gold)) left/40% 2px no-repeat,
    linear-gradient(var(--gold),var(--gold)) 30% 20%/2px 60% no-repeat,
    linear-gradient(var(--gold),var(--gold)) 70% 40%/2px 40% no-repeat;
  opacity:.85;
}
.hero-title::before{right:calc(100% + 14px);transform:translateY(-50%) scaleX(-1)}
.hero-title::after{left:calc(100% + 14px);transform:translateY(-50%)}
.hero-line-strong{
  margin:0;
  font-family:var(--font-display);
  font-weight:700;
  font-size:clamp(22px,4.2vw,38px);
  line-height:1.1;
  text-transform:uppercase;
  color:#fff;
  text-shadow:0 2px 0 rgba(0,0,0,.2);
}
.hero-sub{
  margin:18px auto 0;
  max-width:38ch;
  font-size:clamp(15px,2vw,18px);
  font-weight:700;
  color:rgba(255,255,255,.92);
}
.hero-sub em{
  font-style:normal;
  color:var(--gold);
  font-weight:900;
}
.hero-product-wrap{
  --hero-zoom:1.12;
  position:relative;
  z-index:1;
  margin:28px auto 0;
  width:min(720px,100%);
  animation:rise-in .8s .15s ease both;
}
.hero-product{
  width:100%;
  height:auto;
  border-radius:0;
  transform:scale(var(--hero-zoom));
  transform-origin:center top;
  filter:drop-shadow(0 12px 22px rgba(0,0,0,.5));
  animation:float-soft 5s ease-in-out infinite;
}
.hero-product-wrap::after{
  content:"";
  position:absolute;
  left:18%;right:18%;bottom:6%;
  height:20px;
  background:radial-gradient(ellipse at center,rgba(0,0,0,.5),transparent 72%);
  z-index:-1;
  pointer-events:none;
}
.hero-cta-block{
  position:relative;
  z-index:2;
  width:min(420px,100%);
  margin:18px auto 0;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:8px;
}
.hero-cta{
  width:100%;
  min-height:52px;
  font-size:17px;
  padding:16px 18px;
}
.hero-price{
  margin:0;
  font-size:13px;
  font-weight:800;
  color:rgba(255,255,255,.88);
  letter-spacing:.2px;
}

/* Glass feature strip — sits on the table */
.feature-strip{
  position:relative;
  z-index:1;
  width:min(640px,100%);
  margin:14px auto 0;
  padding:18px 14px 16px;
  border-radius:18px;
  background:rgba(34,72,48,.42);
  -webkit-backdrop-filter:blur(16px) saturate(1.35);
  backdrop-filter:blur(16px) saturate(1.35);
  border:1px solid rgba(160,210,170,.28);
  box-shadow:
    0 10px 28px rgba(0,0,0,.3),
    inset 0 1px 0 rgba(200,235,210,.22);
}
.feature-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:0;
  text-align:center;
}
.feature-item{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
  padding:6px 10px;
  position:relative;
}
.feature-item:not(:last-child)::after{
  content:"";
  position:absolute;
  right:0;top:10%;bottom:10%;
  width:1px;
  background:rgba(180,220,190,.3);
}
.feature-icon{
  width:52px;height:52px;
  border-radius:50%;
  background:linear-gradient(180deg,#FFE14A,var(--gold));
  color:var(--forest);
  display:grid;
  place-items:center;
  box-shadow:0 3px 0 var(--gold-deep),0 6px 14px rgba(0,0,0,.22);
}
.feature-icon svg{width:24px;height:24px;fill:currentColor}
.feature-item p{
  margin:0;
  font-family:var(--font-display);
  font-weight:600;
  font-size:12px;
  letter-spacing:.5px;
  text-transform:uppercase;
  color:#fff;
  line-height:1.25;
  max-width:14ch;
  text-shadow:0 1px 2px rgba(0,0,0,.35);
}

/* =========================
   CTA TEAR SECTION
   ========================= */
.cta-tear{
  padding:48px 0 40px;
  text-align:center;
}
.cta-tear h2{
  margin:0 0 8px;
  font-family:var(--font-display);
  font-weight:600;
  font-size:clamp(18px,2.8vw,24px);
  text-transform:uppercase;
  color:var(--ink);
  letter-spacing:.5px;
}
.cta-tear .script-inline{
  display:none;
  font-family:var(--font-script);
  font-size:1.35em;
  text-transform:none;
  color:var(--leaf);
  font-weight:700;
  letter-spacing:0;
}
.cta-tear .script-line{
  display:inline-flex;
  align-items:center;
  gap:12px;
  margin:0 0 22px;
  font-family:var(--font-script);
  font-size:clamp(32px,5vw,48px);
  line-height:1;
  color:var(--leaf);
  font-weight:700;
}
.cta-tear .script-line .heart{
  color:var(--heart);
  font-size:.7em;
  font-family:var(--font-body);
}
.text-link{
  display:inline-block;
  margin:12px 0 0;
  font-size:14px;
  font-weight:800;
  color:var(--moss);
  text-decoration:underline;
  text-underline-offset:3px;
}
.text-link:hover{color:var(--forest)}
.secure-line{
  margin:14px 0 0;
  font-size:13px;
  font-weight:800;
  color:var(--muted);
  display:inline-flex;
  align-items:center;
  gap:6px;
}

/* =========================
   SHARED SECTIONS
   ========================= */
.section{padding:48px 0}
.section-tight{padding:28px 0}
.section-kicker{
  text-transform:uppercase;
  color:var(--moss);
  font-size:12px;
  font-weight:900;
  letter-spacing:1.6px;
  margin:0 0 6px;
}
.ornament-title,
.section-title{
  font-family:var(--font-display);
  text-transform:uppercase;
  color:var(--forest);
  margin:0 0 16px;
  font-size:clamp(26px,3.5vw,34px);
  line-height:1.1;
  text-align:center;
  font-weight:700;
}
.section-cta-wrap{text-align:center;margin-top:24px}
.section-cta-wrap .btn{margin-inline:auto}

/* Product intro */
.product-intro{padding-top:20px}
.product-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:48px;
  align-items:center;
}
.product-cover-wrap{
  position:relative;
  padding:12px;
}
.product-cover{
  width:100%;
  height:auto;
  border-radius:20px;
  box-shadow:var(--shadow);
  outline:6px solid rgba(255,196,0,.35);
  outline-offset:6px;
}
.product-copy .section-kicker{text-align:center}
.product-copy h2{
  font-family:var(--font-display);
  font-size:clamp(28px,3.5vw,38px);
  line-height:1.08;
  color:var(--forest);
  text-transform:uppercase;
  margin:6px 0 20px;
  font-weight:700;
  text-align:left;
}
.check-list{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:12px;
  font-size:17px;
  font-weight:700;
}
.check-list li{
  position:relative;
  padding-left:38px;
}
.check-list li::before,
.mini-checks li::before{
  content:"✓";
  position:absolute;
  left:0;top:0;
  width:26px;height:26px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:var(--gold);
  color:var(--forest);
  font-weight:900;
  font-size:14px;
  box-shadow:0 2px 0 var(--gold-deep);
}

/* Benefit strip */
.benefit-strip .container{
  position:relative;
  background:var(--paper);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:22px 24px 36px;
  box-shadow:var(--shadow);
}
.benefit-strip h3{
  text-align:center;
  font-family:var(--font-display);
  text-transform:uppercase;
  color:var(--forest);
  font-size:24px;
  margin:0 0 16px;
  font-weight:700;
}
.benefit-grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:10px;
}
.benefit-grid article{
  border:1px solid var(--border);
  border-radius:12px;
  text-align:center;
  padding:14px 8px;
  background:linear-gradient(180deg,var(--cream),var(--paper));
}
.benefit-grid img{width:52px;height:52px;object-fit:contain;margin:0 auto 4px}
.benefit-grid p{
  font-weight:800;
  font-size:13px;
  margin:4px 0 0;
  color:var(--ink);
  font-family:var(--font-display);
  text-transform:uppercase;
  line-height:1.2;
}
.centered-cta{
  position:static;
  display:flex;
  width:100%;
  max-width:420px;
  margin:18px auto 0;
  white-space:normal;
  text-align:center;
}
.product-cta-wrap{margin-top:20px}

/* Esteem */
.esteem-section{padding:36px 0}
.esteem-card{
  position:relative;
  background:var(--forest);
  background-image:
    linear-gradient(120deg,var(--forest-deep),var(--moss));
  border-radius:var(--radius);
  padding:36px 40px;
  display:grid;
  grid-template-columns:220px 1fr;
  align-items:center;
  gap:28px;
  color:#fff;
  box-shadow:var(--shadow);
  overflow:hidden;
}
.esteem-card::before{
  content:"";
  position:absolute;
  right:-50px;top:-50px;
  width:200px;height:200px;
  background:radial-gradient(circle,rgba(255,196,0,.2),transparent 70%);
  pointer-events:none;
}
.esteem-badge{
  position:relative;
  justify-self:center;
  align-self:center;
  width:auto;
  max-width:200px;
  height:auto;
  aspect-ratio:1;
  object-fit:contain;
  filter:drop-shadow(0 10px 20px rgba(0,0,0,.3));
  animation:float-soft 4.6s ease-in-out infinite;
}
.esteem-copy .section-kicker{color:var(--gold)}
.esteem-copy h2{
  font-family:var(--font-display);
  text-transform:uppercase;
  font-size:clamp(26px,3vw,34px);
  line-height:1.05;
  margin:4px 0 14px;
  color:#fff;
  font-weight:700;
  text-align:left;
}
.esteem-copy p{margin:0 0 10px;font-size:17px}
.esteem-copy strong{color:var(--gold)}
.esteem-warm{font-weight:800;color:#E8F5E4}

/* Gallery */
.gallery-section{padding-top:40px}
.gallery-grid{
  display:grid;
  grid-template-columns:1.2fr .48fr .48fr;
  grid-template-rows:1fr 1fr;
  gap:10px;
  background:var(--paper);
  border:1px solid var(--border);
  padding:10px;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}
.gallery-grid figure{
  margin:0;
  position:relative;
  overflow:hidden;
  border-radius:12px;
  min-height:165px;
}
.gallery-grid img{width:100%;height:100%;object-fit:cover}
.gallery-main{grid-row:1/3;min-height:380px!important}
.gallery-grid figcaption{
  position:absolute;
  left:50%;bottom:8px;
  transform:translateX(-50%);
  background:rgba(27,48,34,.92);
  color:#fff;
  border-radius:6px;
  padding:4px 10px;
  font-weight:900;
  text-transform:uppercase;
  font-size:11px;
  white-space:nowrap;
  font-family:var(--font-display);
}

/* Testimonials */
.testimonials-section{
  background:linear-gradient(180deg,var(--cream) 0%,var(--cream-deep) 50%,var(--cream) 100%);
}
.testimonials-sub{
  text-align:center;
  margin:-8px auto 20px;
  max-width:42ch;
  font-size:16px;
  font-weight:700;
  color:var(--muted);
}
.testimonials-grid{column-count:2;column-gap:14px}
.testimonial-card{
  margin:0 0 14px;
  break-inside:avoid;
  background:var(--paper);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:10px;
  box-shadow:0 8px 20px rgba(27,48,34,.08);
  overflow:hidden;
}
.testimonial-card img{width:100%;height:auto;border-radius:10px}
.testimonials-toggle{
  display:none;
  width:100%;
  max-width:320px;
  margin:4px auto 0;
  padding:12px 16px;
  border:1px solid var(--border);
  border-radius:12px;
  background:var(--paper);
  color:var(--forest);
  font-family:var(--font-display);
  font-weight:700;
  font-size:14px;
  text-transform:uppercase;
  cursor:pointer;
}
.testimonials-toggle:hover{background:var(--cream)}

/* Easy + steps */
.easy-section{padding:20px 0 36px}
.easy-card{
  display:grid;
  grid-template-columns:1fr;
  gap:22px;
  align-items:stretch;
  background:var(--paper);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:28px 32px;
  box-shadow:var(--shadow);
}
.steps-inline{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
}
.easy-copy h2{
  font-family:var(--font-display);
  text-transform:uppercase;
  font-size:clamp(24px,3vw,32px);
  line-height:1.08;
  color:var(--forest);
  margin:0 0 12px;
  font-weight:700;
  text-align:left;
}
.easy-copy p{
  margin:0 0 10px;
  font-size:17px;
  line-height:1.5;
  color:var(--ink-soft);
  max-width:48ch;
}
.easy-copy strong{color:var(--forest)}
.easy-need{
  font-size:15px!important;
  font-weight:800;
  color:var(--ink);
  background:var(--cream);
  border:1px solid var(--border);
  border-radius:10px;
  padding:10px 14px;
  display:inline-block;
  margin:4px 0 10px!important;
}
.easy-warm{font-weight:800;color:var(--moss)!important}
.easy-mini-steps{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
  margin-top:18px;
}
.easy-mini{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:2px;
  background:var(--cream);
  border:1px solid var(--border);
  border-radius:12px;
  padding:12px 14px;
}
.easy-mini span{
  width:28px;height:28px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:var(--gold);
  color:var(--forest);
  font-family:var(--font-display);
  font-weight:700;
  font-size:15px;
  margin-bottom:4px;
}
.easy-mini strong{
  font-family:var(--font-display);
  font-size:17px;
  text-transform:uppercase;
  color:var(--forest);
  line-height:1.1;
}
.easy-mini em{
  font-style:normal;
  font-size:13px;
  font-weight:700;
  color:var(--muted);
}
.easy-art{
  width:100%;
  height:auto;
  object-fit:contain;
  filter:drop-shadow(0 10px 18px rgba(27,48,34,.12));
}

.steps-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}
.step-card{
  position:relative;
  background:var(--paper);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:20px 20px 12px;
  min-height:285px;
  box-shadow:0 8px 22px rgba(27,48,34,.08);
  overflow:hidden;
}
.step-number{
  position:absolute;
  left:18px;top:17px;
  width:40px;height:40px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:var(--gold);
  color:var(--forest);
  font-family:var(--font-display);
  font-size:22px;
  font-weight:700;
  box-shadow:0 3px 0 var(--gold-deep);
}
.step-card>div{padding-left:50px}
.step-card h3{
  margin:0;
  color:var(--forest);
  font-size:18px;
  font-family:var(--font-display);
  text-transform:uppercase;
}
.step-card p{margin:4px 0 6px;font-size:13px;color:var(--muted)}
.step-card img{
  width:100%;
  height:150px;
  object-fit:contain;
  margin-top:6px;
}

/* Memory */
.memory-section{padding:8px 0 28px}
.memory-card{
  background:linear-gradient(90deg,var(--forest-deep),var(--moss));
  border-radius:var(--radius);
  min-height:180px;
  overflow:hidden;
  color:#fff;
  display:grid;
  grid-template-columns:280px 1fr 80px;
  align-items:stretch;
  box-shadow:var(--shadow);
}
.memory-card img{
  width:100%;
  height:100%;
  min-height:180px;
  object-fit:cover;
  object-position:center top;
}
.memory-copy{
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:10px;
  padding:28px 20px 28px 8px;
}
.memory-card h2{
  font-family:var(--font-display);
  font-size:30px;
  text-transform:uppercase;
  margin:0;
  font-weight:700;
  text-align:left;
  color:#fff;
  line-height:1.15;
}
.memory-card p{
  margin:0;
  max-width:42ch;
  line-height:1.5;
  font-size:16px;
}
.memory-card strong{
  font-family:var(--font-script);
  color:var(--gold);
  font-size:28px;
  font-weight:700;
  display:block;
  margin:2px 0 0;
  line-height:1.2;
}
.memory-cta-btn{
  margin-top:8px;
  width:fit-content;
  max-width:100%;
  font-size:15px;
  padding:14px 18px;
  animation:none;
}
.heart-line{
  font-size:36px;
  color:var(--heart);
  transform:rotate(-10deg);
  align-self:center;
  justify-self:center;
}

/* Offer */
.offer-section{padding-top:24px}
.offer-sub{
  text-align:center;
  margin:-8px auto 20px;
  max-width:46ch;
  font-size:16px;
  font-weight:700;
  color:var(--muted);
}
.offer-grid{
  display:grid;
  grid-template-columns:1.75fr .94fr;
  gap:18px;
  align-items:stretch;
}
.offer-grid .kit-panel{order:1}
.offer-grid .price-card{order:2}
.kit-panel,.price-card{
  background:var(--paper);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}
.kit-panel{padding:14px}
.kit-items{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:10px;
}
.kit-items figure{
  margin:0;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:8px;
  border:1px solid var(--border);
  border-radius:12px;
  background:var(--cream);
  padding:18px 10px;
}
.kit-items img{width:96px;height:96px;object-fit:contain}
.kit-items figcaption{
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  color:var(--ink);
  text-align:center;
  line-height:1.15;
  font-family:var(--font-display);
}
.price-card{
  padding:16px 20px;
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  border:3px solid var(--gold);
  box-shadow:0 14px 36px rgba(255,196,0,.2),var(--shadow);
}
.price-head{
  width:100%;
  background:var(--forest);
  color:#fff;
  border-radius:10px;
  padding:14px;
  font-family:var(--font-display);
  font-size:22px;
  text-transform:uppercase;
  line-height:1.05;
  font-weight:700;
}
.price-anchor{
  margin:12px 0 0;
  font-size:13px;
  font-weight:800;
  color:var(--moss);
  text-transform:uppercase;
  letter-spacing:.4px;
}
.price-ribbon{
  background:var(--gold);
  color:var(--forest);
  font-weight:900;
  text-transform:uppercase;
  padding:4px 16px;
  margin-top:8px;
  clip-path:polygon(7% 0,93% 0,100% 50%,93% 100%,7% 100%,0 50%);
  font-family:var(--font-display);
  font-size:13px;
}
.price{
  font-family:var(--font-display);
  font-size:70px;
  line-height:1;
  color:var(--forest);
  margin:10px 0;
  font-weight:700;
}
.price sup{font-size:22px}
.price span{font-size:42px}
.price-payline{
  margin:-4px 0 10px;
  font-size:13px;
  font-weight:800;
  color:var(--muted);
}
.price-highlights{
  list-style:none;
  padding:12px 14px;
  margin:2px 0 14px;
  width:100%;
  text-align:left;
  display:grid;
  gap:8px;
  font-weight:800;
  font-size:15px;
  line-height:1.25;
  background:var(--cream);
  border:1px solid var(--border);
  border-radius:12px;
}
.price-highlights li{
  position:relative;
  padding-left:30px;
  color:var(--forest);
}
.price-highlights li::before{
  content:"✅";
  position:absolute;
  left:0;top:0;
}
.price-highlights strong{color:var(--gold-deep);font-weight:900}
.mini-checks{
  list-style:none;
  padding:0;
  margin:0 auto 15px;
  text-align:left;
  display:grid;
  gap:8px;
  font-weight:700;
  color:var(--ink);
}
.mini-checks li{position:relative;padding-left:30px}
.mini-checks li::before{
  width:20px;height:20px;font-size:12px;top:2px;
}
.price-guarantee{
  font-size:12px!important;
  font-weight:800;
  color:var(--muted);
  margin:10px 0 0;
}

/* Bonus */
.bonus-stack{margin-top:18px;display:grid;gap:14px}
.bonus-card{
  position:relative;
  background:var(--paper);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:22px 26px;
  box-shadow:var(--shadow);
  overflow:hidden;
}
.bonus-tag{
  display:inline-block;
  background:var(--forest);
  color:var(--gold);
  font-weight:900;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:1px;
  padding:5px 12px;
  border-radius:999px;
  margin-bottom:12px;
  font-family:var(--font-display);
}
.bonus-body{
  display:grid;
  grid-template-columns:72px 1fr;
  gap:18px;
  align-items:center;
}
.bonus-icon{
  width:72px;height:72px;
  object-fit:contain;
  filter:drop-shadow(0 6px 12px rgba(27,48,34,.12));
}
.bonus-cover{
  width:96px;
  height:auto;
  object-fit:contain;
  border-radius:12px;
  filter:drop-shadow(0 8px 14px rgba(27,48,34,.14));
}
.bonus-card-dino .bonus-body{grid-template-columns:140px 1fr;align-items:center}
.bonus-card-dino .bonus-cover{width:140px}
.bonus-card-dino .bonus-tag{background:var(--gold);color:var(--forest)}
.bonus-card-draw .bonus-body{grid-template-columns:96px 1fr;align-items:center}
.bonus-copy .section-kicker{margin:0 0 4px}
.bonus-copy h3{
  font-family:var(--font-display);
  font-size:26px;
  line-height:1.05;
  text-transform:uppercase;
  color:var(--forest);
  margin:0 0 6px;
  font-weight:700;
  text-align:left;
}
.bonus-copy p:last-child{
  margin:0;
  font-size:16px;
  font-weight:700;
  max-width:62ch;
  color:var(--ink-soft);
}
.bonus-cta-wrap{
  margin-top:22px;
  padding:22px 18px;
  background:var(--paper);
  border:3px solid var(--gold);
  border-radius:var(--radius);
  box-shadow:0 12px 28px rgba(255,196,0,.18);
}
.bonus-cta-wrap .btn-buy{max-width:480px;width:100%}
.bonus-cta-note{
  margin:0 0 12px;
  font-weight:800;
  color:var(--forest);
  font-size:15px;
}

/* FAQ */
.guarantee-faq{padding-top:8px}
.faq-grid{
  display:grid;
  grid-template-columns:.95fr 1.3fr;
  gap:20px;
  align-items:start;
}
.faq-panel{
  background:var(--paper);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:var(--shadow);
}
.guarantee-card{
  position:relative;
  display:grid;
  grid-template-columns:120px 1fr;
  align-items:center;
  gap:18px;
  padding:22px 24px;
  border-radius:var(--radius);
  overflow:hidden;
  color:#fff;
  background:
    radial-gradient(ellipse at 0% 0%,rgba(255,196,0,.18),transparent 55%),
    linear-gradient(135deg,var(--forest-deep) 0%,var(--moss) 100%);
  box-shadow:var(--shadow);
  border:1px solid rgba(255,196,0,.22);
}
.guarantee-badge{
  width:100%;
  max-width:120px;
  height:auto;
  justify-self:center;
  filter:drop-shadow(0 10px 18px rgba(0,0,0,.35));
}
.guarantee-copy{min-width:0}
.guarantee-copy .section-kicker{
  color:var(--gold);
  margin:0 0 4px;
  letter-spacing:1.4px;
}
.guarantee-card h3{
  color:#fff;
  margin:0 0 8px;
  font-family:var(--font-display);
  text-transform:uppercase;
  font-size:clamp(1.25rem,2.4vw,1.55rem);
  font-weight:700;
  line-height:1.1;
  text-align:left;
}
.guarantee-copy > p{
  margin:0;
  font-size:15px;
  line-height:1.45;
  color:rgba(255,255,255,.88);
  font-weight:600;
}
.guarantee-highlight{
  margin:10px 0 14px!important;
  font-family:var(--font-display);
  font-size:1.05rem!important;
  font-weight:700!important;
  color:var(--gold)!important;
  text-transform:uppercase;
  letter-spacing:.3px;
  line-height:1.2!important;
}
.secure-seal{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 12px 6px 6px;
  border-radius:999px;
  background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.18);
  color:#fff;
  font-family:var(--font-display);
  font-size:12px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.4px;
}
.secure-seal img{width:28px;height:28px;object-fit:contain;border-radius:50%}
.guarantee-cta{display:inline-flex;margin-top:12px;font-size:14px;padding:12px 18px}
.faq-panel h2{
  font-family:var(--font-display);
  text-transform:uppercase;
  color:var(--forest);
  margin:0 0 10px;
  font-weight:700;
  font-size:24px;
  text-align:left;
}
.faq-panel details{
  border:1px solid var(--border);
  border-radius:8px;
  background:var(--cream);
  margin:6px 0;
  padding:10px 14px;
}
.faq-panel summary{
  cursor:pointer;
  font-weight:800;
  font-size:14px;
  color:var(--forest);
}
.faq-panel p{font-size:13px;margin:8px 0;color:var(--muted)}

/* Founder */
.soft-section{background:linear-gradient(var(--cream),var(--cream-deep))}
.problem-card{
  background:var(--paper);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:28px 36px;
  text-align:center;
  box-shadow:var(--shadow);
}
.problem-card h2{
  font-family:var(--font-display);
  text-transform:uppercase;
  color:var(--forest);
  margin:0;
  font-size:30px;
  font-weight:700;
}
.founder-story{
  display:grid;
  grid-template-columns:220px 1fr;
  gap:28px;
  align-items:center;
  text-align:left;
  margin:12px 0 8px;
  padding:18px 20px;
  border:1px solid var(--border);
  background:var(--cream);
  border-radius:var(--radius);
}
.founder-photo{
  width:220px;
  height:auto;
  object-fit:contain;
  justify-self:center;
  filter:drop-shadow(0 10px 18px rgba(27,48,34,.14));
}
.founder-copy p{
  margin:0 0 12px;
  font-size:16px;
  line-height:1.55;
  color:var(--ink-soft);
}
.founder-copy p:last-child{margin-bottom:0}
.founder-copy strong{color:var(--forest)}
.question-line{
  font-family:var(--font-display);
  font-size:22px!important;
  font-weight:700;
  color:var(--forest);
  margin-top:18px!important;
  text-transform:uppercase;
}
.problem-card>.btn{margin-top:8px}

/* Footer CTA */
.footer-cta{
  position:relative;
  color:#fff;
  overflow:hidden;
}
.footer-cta-grid{
  position:relative;
  z-index:1;
  min-height:240px;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  align-items:center;
  gap:24px;
  padding:44px 0;
}
.footer-cta h2{
  font-family:var(--font-display);
  font-size:clamp(26px,3.5vw,34px);
  line-height:1.05;
  text-transform:uppercase;
  margin:0;
  font-weight:700;
  color:#fff;
  text-align:left;
}
.footer-cta p{
  margin:12px 0 20px;
  font-size:16px;
  max-width:38ch;
  opacity:.92;
}
.footer-cta .btn{white-space:normal}
.footer-cta img{
  position:absolute;
  right:0;top:0;bottom:0;
  z-index:0;
  width:46vw;
  height:100%;
  object-fit:cover;
  object-position:center 67%;
  opacity:.4;
  -webkit-mask-image:linear-gradient(to right,transparent,rgba(0,0,0,.45) 30%,#000 62%);
  mask-image:linear-gradient(to right,transparent,rgba(0,0,0,.45) 30%,#000 62%);
}
.footer-guarantee{
  margin:12px 0 0!important;
  font-size:13px!important;
  font-weight:800;
  opacity:.95!important;
}

/* Sticky */
.sticky-buy{display:none}
body.has-sticky-buy{padding-bottom:calc(4.75rem + env(safe-area-inset-bottom,0px))}
body.footer-visible.has-sticky-buy{padding-bottom:0}
.sticky-buy-thumb{
  width:44px;
  height:44px;
  object-fit:cover;
  border-radius:10px;
  flex-shrink:0;
  display:none;
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width:900px){
  .container{width:min(100% - 2.2rem,1080px)}
  .section{padding:var(--space-6) 0}
  .section-tight{padding:var(--space-5) 0}
  .feature-strip{width:100%;padding:14px 10px 12px;border-radius:16px;margin-top:12px}
  .feature-grid{grid-template-columns:repeat(3,1fr)}
  .feature-item{padding:4px 6px;gap:8px}
  .feature-item p{font-size:11px}
  .hero-cta-block{width:min(100%,100%);margin-top:14px}
  .hero-cta{font-size:16px;min-height:48px}
  .product-grid,.offer-grid,.faq-grid{grid-template-columns:1fr}
  .offer-grid .price-card{order:-1;margin-bottom:4px}
  .offer-grid .kit-panel{order:2}
  .product-copy h2,.easy-copy h2,.esteem-copy h2,.footer-cta h2{text-align:center}
  .product-cover-wrap{max-width:16.5rem;margin:0 auto}
  .testimonials-grid{column-count:1}
  .testimonial-extra{display:none}
  body.testimonials-expanded .testimonial-extra{display:block}
  .testimonials-toggle{display:block}
  .benefit-grid{grid-template-columns:repeat(3,1fr);gap:8px 6px}
  .benefit-grid img{width:40px;height:40px}
  .benefit-grid article{padding:10px 4px}
  .benefit-grid p{font-size:11px}
  .benefit-strip .container{padding:18px 16px 20px}
  .gallery-grid{grid-template-columns:1fr 1fr;gap:8px;padding:8px}
  .gallery-main{grid-column:1/3;min-height:220px!important}
  .gallery-grid figure{min-height:110px}
  .steps-inline{grid-template-columns:1fr;gap:10px}
  .step-card{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    align-items:center;
    column-gap:12px;
    min-height:auto;
    padding:14px 14px 10px;
  }
  .step-card img{flex:1 0 100%;height:110px}
  .step-number{position:static;transform:none;flex:0 0 auto}
  .step-card>div{padding-left:0;padding-top:0;text-align:left;flex:0 1 auto}
  .step-card h3,.step-card p{text-align:left}
  .easy-card{text-align:center;padding:20px 16px;gap:16px}
  .easy-copy p{max-width:none;margin-left:auto;margin-right:auto}
  .memory-card{grid-template-columns:1fr}
  .memory-copy{padding:22px 18px 24px;gap:10px;align-items:center;text-align:center}
  .memory-card img{display:none}
  .memory-cta-btn{width:100%;margin-top:6px}
  .heart-line{display:none}
  .esteem-card{grid-template-columns:1fr;text-align:center;padding:22px 16px;gap:14px}
  .esteem-badge{max-width:120px}
  .esteem-badge{animation:none}
  .price-card{padding:18px 14px 16px}
  .price-highlights{padding:10px 12px;margin:2px 0 12px;gap:6px;font-size:14px}
  .btn-buy{animation:none}
  .bonus-stack{gap:10px;margin-top:14px}
  .bonus-card{padding:14px 14px}
  .bonus-copy p:last-child{display:none}
  .bonus-body,
  .bonus-card-dino .bonus-body,
  .bonus-card-draw .bonus-body{
    grid-template-columns:56px 1fr;
    gap:12px;
    align-items:center;
    text-align:left;
    justify-items:start;
  }
  .bonus-icon,.bonus-cover{width:56px!important}
  .bonus-copy h3{font-size:18px;text-align:left;margin:0}
  .bonus-cta-wrap{margin-top:16px;padding:16px 14px}
  .guarantee-cta{display:none}
  .guarantee-card{
    grid-template-columns:1fr;
    text-align:center;
    justify-items:center;
    padding:22px 18px 20px;
    gap:12px;
  }
  .guarantee-badge{max-width:110px}
  .guarantee-card h3{text-align:center;margin-bottom:6px}
  .guarantee-copy > p{font-size:14px;max-width:32ch;margin-inline:auto}
  .guarantee-highlight{margin:8px 0 12px!important;font-size:.95rem!important}
  .secure-seal{margin-inline:auto}
  .faq-panel details{margin:0;padding:12px 14px}
  .faq-panel{display:flex;flex-direction:column;gap:8px}
  .founder-story{
    grid-template-columns:1fr;
    gap:14px;
    padding:18px 16px;
    text-align:left;
    justify-items:center;
  }
  .founder-photo{width:140px}
  .founder-copy{width:100%}
  .founder-copy p{font-size:15px;line-height:1.55;margin:0 0 12px}
  .founder-copy p:last-child{margin-bottom:0}
  .question-line{font-size:18px!important;margin-top:14px!important}
  .footer-cta-grid{
    grid-template-columns:1fr;
    text-align:center;
    justify-items:center;
    padding:36px 18px;
  }
  .footer-cta p{max-width:52ch}
  .footer-cta img{display:none}
  .sticky-buy{
    display:block;
    position:fixed;
    left:0;right:0;bottom:0;
    z-index:50;
    background:rgba(253,249,230,.97);
    backdrop-filter:blur(8px);
    border-top:1px solid var(--border);
    box-shadow:0 -8px 24px rgba(27,48,34,.12);
    padding:10px 12px calc(10px + env(safe-area-inset-bottom,0px));
  }
  .sticky-buy[hidden]{display:none!important}
  body.footer-visible .sticky-buy{visibility:hidden;pointer-events:none}
  .sticky-buy-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
    max-width:1080px;
    margin:0 auto;
  }
  .sticky-buy-thumb{display:block}
  .sticky-buy-copy{display:flex;flex-direction:column;gap:1px;min-width:0;flex:1}
  .sticky-buy-copy strong{
    font-size:13px;
    color:var(--forest);
    line-height:1.15;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
    font-family:var(--font-display);
  }
  .sticky-buy-copy span{font-size:12px;font-weight:800;color:var(--gold-deep)}
  .sticky-buy-btn{
    flex-shrink:0;
    min-height:48px;
    min-width:9.5rem;
    padding:12px 14px;
    font-size:13px;
    letter-spacing:.3px;
  }
  .hero-title::before,.hero-title::after{display:none}
  .ornament-title,.section-title{font-size:clamp(1.4rem,5vw,1.75rem);margin-bottom:var(--space-4)}
  .testimonials-sub,.offer-sub{margin:-2px auto 14px}
}

@media (max-width:600px){
  .container{width:min(100% - 1.75rem,1080px)}
  .hero{padding:0 10px 12px}
  .hero-banner{font-size:11px;letter-spacing:.4px;padding:8px 10px;margin:0 -10px}
  .hero-stage{border-radius:0 0 20px 20px}
  .hero-inner{padding:20px 12px 16px}
  .hero-line{font-size:13px;letter-spacing:1.2px}
  .hero-title{font-size:clamp(1.75rem,8.5vw,2.25rem);margin:6px 0 2px;line-height:.98}
  .hero-line-strong{font-size:1rem;line-height:1.15}
  .hero-sub{margin-top:8px;font-size:14px}
  .hero-product-wrap{--hero-zoom:.95;margin:12px auto 0;width:100%}
  .hero-product{animation:none}
  .hero-cta-block{margin-top:10px;gap:6px}
  .hero-cta{font-size:15px;padding:14px 14px;min-height:48px}
  .hero-price{font-size:12px}
  .feature-strip{margin-top:10px;padding:10px 6px 10px}
  .feature-icon{width:36px;height:36px}
  .feature-icon svg{width:18px;height:18px}
  .feature-item{gap:6px;padding:2px 4px}
  .feature-item p{font-size:10px;letter-spacing:.2px;max-width:12ch}
  .torn-top::before{top:-12px;height:22px}
  .cta-tear{padding:calc(var(--space-5) + 0.5rem) 0 var(--space-5)}
  .cta-tear h2{margin-bottom:4px;font-size:1rem;line-height:1.25}
  .cta-tear .script-inline{display:inline}
  .cta-tear .script-line{display:none}
  .cta-tear .btn-large{margin-top:4px}
  main .btn,main .btn-large,main .btn-buy{
    width:100%;
    min-height:48px;
    font-size:15px;
    padding:14px 14px;
  }
  .text-link{margin-top:10px;font-size:13px}
  .secure-line{margin-top:10px;font-size:12px}
  .section{padding:var(--space-5) 0}
  .product-intro,.gallery-section,.esteem-section,.easy-section,.offer-section,.guarantee-faq,.soft-section{
    padding-top:var(--space-5);
    padding-bottom:var(--space-5);
  }
  .benefit-grid{grid-template-columns:repeat(3,1fr);gap:6px 4px}
  .benefit-grid img{width:34px;height:34px}
  .benefit-grid p{font-size:10px;line-height:1.15}
  .benefit-strip h3{font-size:1.05rem;margin-bottom:12px}
  .check-list{gap:8px;font-size:15px}
  .check-list li{padding-left:34px}
  .gallery-main{min-height:11.5rem!important}
  .gallery-grid figure{min-height:5.5rem}
  .memory-section{padding:var(--space-4) 0 var(--space-5)}
  .memory-card{
    grid-template-columns:1fr;
    text-align:center;
    padding:0;
    min-height:0;
    background:linear-gradient(180deg,var(--forest-deep),var(--moss));
  }
  .memory-copy{padding:var(--space-5) var(--space-4);gap:10px;align-items:center}
  .memory-card h2{font-size:1.35rem;text-align:center}
  .memory-card p{max-width:34ch;font-size:14px;line-height:1.5}
  .memory-card strong{font-size:1.4rem;margin-top:0}
  .esteem-card{padding:18px 14px;gap:12px}
  .esteem-badge{max-width:100px}
  .esteem-copy h2{font-size:1.35rem;text-align:center}
  .esteem-copy h2 br{display:none}
  .esteem-copy p{font-size:15px}
  .easy-copy h2{font-size:1.35rem}
  .easy-copy p{font-size:15px}
  .easy-need{font-size:14px!important;padding:8px 12px}
  .price{font-size:clamp(2.5rem,13vw,3.25rem);margin:6px 0}
  .price-head{font-size:1.1rem;padding:12px}
  .price-ribbon{margin-top:6px}
  .testimonial-card{padding:8px;margin-bottom:10px}
  .testimonial-card img{max-height:12rem;object-fit:cover;object-position:top}
  .founder-story{padding:16px 14px;gap:12px}
  .founder-photo{width:120px}
  .founder-copy p{font-size:14px;margin:0 0 10px}
  .founder-copy p:last-child{margin-bottom:0}
  .faq-panel h2{text-align:center;font-size:1.25rem}
  .footer-cta h2{font-size:1.4rem;text-align:center}
  .footer-cta-grid{padding:var(--space-6) var(--space-4)}
  .bonus-copy .section-kicker{font-size:10px}
  .bonus-copy h3{font-size:1rem}
  .kit-items{gap:8px}
  .kit-items figure{padding:12px 8px}
  .kit-items img{width:72px;height:72px}
}
