:root {
  --paper: #f6f3ea;
  --ink: #18251e;
  --green: #244d35;
  --green-deep: #163425;
  --lime: #c9f45b;
  --mint: #dcefcf;
  --cream: #fff8e8;
  --blue: #cde6f1;
  --line: rgba(24, 37, 30, .16);
  --muted: #68726b;
  --radius-lg: 32px;
  --radius-md: 24px;
  --shadow: 0 20px 60px rgba(24, 37, 30, .13);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-bottom: 92px; background: #101813; }

body {
  margin: 0;
  color: var(--ink);
  background: #101813;
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
}

button, input, select { font: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-shell {
  width: 100%;
  max-width: 480px;
  min-height: 100vh;
  margin: 0 auto;
  overflow: hidden;
  background: var(--paper);
  position: relative;
}

.nav {
  position: absolute;
  z-index: 20;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: max(18px, env(safe-area-inset-top)) 20px 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font: 800 21px/1 "Manrope", sans-serif;
  letter-spacing: -.8px;
}

.brand-mark {
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  gap: 2px;
  width: 26px;
  height: 26px;
  padding: 5px;
  border-radius: 50%;
  color: var(--paper);
  background: var(--ink);
  transform: rotate(-8deg);
}

.brand-mark i {
  display: block;
  width: 6px;
  height: 13px;
  border-radius: 8px 8px 2px 8px;
  background: currentColor;
  transform: rotate(-18deg);
}

.brand-mark i + i { height: 10px; transform: rotate(24deg); }

.nav-pill {
  padding: 10px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(246, 243, 234, .72);
  backdrop-filter: blur(12px);
  font-size: 12px;
  font-weight: 700;
}

.hero { padding: 112px 20px 36px; position: relative; }
.hero::before {
  content: "";
  position: absolute;
  width: 310px;
  height: 310px;
  border-radius: 50%;
  background: rgba(201, 244, 91, .35);
  filter: blur(2px);
  top: -145px;
  right: -150px;
}

.eyebrow, .section-kicker {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 16px;
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(201, 244, 91, .24);
}

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: "Manrope", sans-serif; }

.hero h1 {
  max-width: 390px;
  margin-bottom: 18px;
  font-size: clamp(47px, 13vw, 62px);
  line-height: .98;
  letter-spacing: -3.6px;
}

h1 em, .final-cta h2 em {
  color: var(--green);
  font-family: Georgia, serif;
  font-weight: 400;
}

.hero-copy, .section-copy {
  max-width: 375px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.hero-visual {
  position: relative;
  height: auto;
  aspect-ratio: .96;
  margin: 7px 0 24px;
  border-radius: 28px;
  background: var(--mint);
  overflow: hidden;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 36%;
  background: linear-gradient(transparent, rgba(20, 50, 34, .35));
  pointer-events: none;
}

.hero-photo { position: absolute; inset: 34px 18px 18px; border-radius: 24px; overflow: hidden; background: #d9eacf; }
.hero-photo img { width: 100%; height: 100%; object-fit: contain; }

.sun-orbit {
  position: absolute;
  z-index: 2;
  width: 112px;
  height: 112px;
  right: -29px;
  top: 56px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 18px rgba(201, 244, 91, .22), 0 0 0 38px rgba(201, 244, 91, .1);
}

.float-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 132px;
  padding: 10px 13px;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 16px;
  color: var(--ink);
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(18, 42, 29, .16);
}

.float-card--top { top: 28px; left: 8px; }
.float-card--bottom { right: 9px; bottom: 26px; }
.float-card b, .float-card small { display: block; }
.float-card b { font: 800 13px/1.2 "Manrope", sans-serif; }
.float-card small { margin-top: 3px; color: var(--muted); font-size: 10px; }
.mini-icon { display: grid; place-items: center; width: 29px; height: 29px; border-radius: 50%; background: var(--lime); }
.status-dot { width: 10px; height: 10px; border-radius: 50%; background: #2ca65a; box-shadow: 0 0 0 4px rgba(44,166,90,.15); }

.primary-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 17px 18px 17px 21px;
  border-radius: 999px;
  color: #fff;
  background: var(--green-deep);
  font-weight: 700;
  box-shadow: 0 13px 30px rgba(22, 52, 37, .22);
}

.primary-cta span {
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--lime);
  font-size: 18px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.trust-row div { padding: 0 12px; border-right: 1px solid var(--line); }
.trust-row div:first-child { padding-left: 0; }
.trust-row div:last-child { border: 0; padding-right: 0; }
.trust-row b, .trust-row span { display: block; }
.trust-row b { font: 800 16px/1.2 "Manrope", sans-serif; }
.trust-row span { margin-top: 4px; color: var(--muted); font-size: 9px; }

.section-pad { padding: 76px 20px; }
.problem { color: #fff; background: var(--green-deep); }
.problem .section-kicker, .reviews .section-kicker { color: var(--lime); }

.section-title {
  margin-bottom: 34px;
  font-size: clamp(36px, 10vw, 48px);
  line-height: 1.03;
  letter-spacing: -2.5px;
}

.section-title span { color: #7e8b83; font-family: Georgia, serif; font-weight: 400; }
.problem .section-title span { color: #8eaa98; }

.story-stack { display: grid; gap: 14px; }
.story-card { position: relative; min-height: 385px; border-radius: var(--radius-lg); overflow: hidden; }
.story-card--photo { background: #31463a; }
.story-card--photo img { position: absolute; width: 100%; height: 100%; object-fit: contain; }
.story-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.03), rgba(9,27,17,.84)); }
.story-card--lime { background: var(--lime); }
.story-card--ink { background: #23322a; }
.story-content { position: absolute; z-index: 2; inset: auto 24px 24px; }
.story-content.light { color: #fff; }
.story-content > span { display: block; margin-bottom: 12px; opacity: .65; font: 700 11px/1 "Manrope", sans-serif; }
.story-content h3 { max-width: 300px; margin-bottom: 8px; font-size: 26px; line-height: 1.08; letter-spacing: -1px; }
.story-content p { margin: 0; opacity: .72; font-size: 13px; line-height: 1.55; }

.heat-graphic { position: absolute; inset: 30px 0 auto; height: 205px; }
.heat-graphic::before { content: ""; position: absolute; width: 118px; height: 118px; right: 34px; top: 10px; border-radius: 50%; background: #ff7c3b; box-shadow: 0 0 0 22px rgba(255,124,59,.12); }
.heat-graphic i { position: absolute; width: 170px; height: 18px; left: 25px; border: 2px solid var(--ink); border-width: 2px 0 0; border-radius: 50%; transform: rotate(-10deg); }
.heat-graphic i:nth-child(1) { top: 44px; }
.heat-graphic i:nth-child(2) { top: 87px; left: 65px; }
.heat-graphic i:nth-child(3) { top: 130px; left: 14px; }

.carport-graphic { position: absolute; inset: 34px 20px auto; height: 180px; }
.shade-line { height: 85px; border: 2px solid rgba(201,244,91,.65); border-width: 3px 2px 0; border-radius: 55% 55% 0 0; transform: skew(-12deg); }
.car-shape { position: absolute; width: 245px; height: 70px; left: 38px; top: 94px; border-radius: 50px 68px 18px 18px; background: #d6ded8; }
.car-shape::before { content: ""; position: absolute; width: 120px; height: 60px; left: 49px; top: -33px; border-radius: 56px 56px 8px 8px; background: #d6ded8; transform: skew(-13deg); }
.car-shape i { position: absolute; width: 28px; height: 28px; bottom: -12px; border-radius: 50%; border: 7px solid #101713; background: #b7c3bb; }
.car-shape i:first-child { left: 35px; }.car-shape i:last-child { right: 35px; }

.intro { padding-bottom: 32px; }
.intro .section-title { margin-bottom: 18px; }
.intro .section-copy { margin: 0; }

.collection { display: grid; gap: 14px; padding: 0 20px 76px; }
.product-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.product-card { padding: 22px; border-radius: var(--radius-lg); background: #e3eadf; overflow: hidden; }
.product-card--cream { padding: 18px; background: #f2dfba; }
.product-card--green { padding: 18px; background: #c5d9c7; }
.product-card--dark { color: #fff; background: #22342a; }
.product-card--blue { background: var(--blue); }
.product-topline, .product-footer { display: flex; align-items: center; justify-content: space-between; }
.product-number { font: 700 11px/1 "Manrope", sans-serif; opacity: .55; }
.chip { padding: 7px 10px; border-radius: 999px; background: rgba(255,255,255,.6); font-size: 9px; font-weight: 700; }
.chip--dark { color: var(--ink); background: var(--lime); }
.product-card h3 { margin: 28px 0 5px; font-size: 27px; letter-spacing: -1.2px; }
.product-grid h3 { margin-top: 22px; font-size: 19px; }
.product-card > p { margin-bottom: 18px; color: currentColor; opacity: .63; font-size: 12px; line-height: 1.5; }
.product-image { overflow: hidden; background: rgba(255,255,255,.5); }
.product-image img { width: 100%; height: 100%; object-fit: contain; transition: transform .7s ease; }
.product-card:hover img { transform: scale(1.035); }
.product-image--large { height: 275px; border-radius: 22px; }
.product-image--square { aspect-ratio: 1; margin: 14px 0; border-radius: 50%; }
.product-image--banner { height: 210px; margin-top: 22px; border-radius: 22px; }
.product-footer { margin-top: 16px; }
.product-footer span { font-size: 10px; opacity: .62; }
.product-footer strong { font: 800 13px/1 "Manrope", sans-serif; }

.features { background: #e7e4da; }
.feature-list { border-top: 1px solid var(--line); }
.feature-item { display: grid; grid-template-columns: 48px 1fr; gap: 16px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.feature-icon { display: grid; place-items: center; align-self: start; width: 45px; height: 45px; border-radius: 50%; background: var(--lime); font: 800 11px/1 "Manrope", sans-serif; }
.feature-item h3 { margin-bottom: 7px; font-size: 18px; letter-spacing: -.4px; }
.feature-item p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.55; }

.visual-proof { background: var(--paper); }
.visual-proof .section-title { margin-bottom: 16px; }
.visual-proof .section-copy { margin-bottom: 26px; }
.proof-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.proof-card { min-width: 0; aspect-ratio: 1; margin: 0; overflow: hidden; border-radius: 21px; background: #dfe8db; }
.proof-card--wide { grid-column: 1 / -1; aspect-ratio: 953 / 532; }
.proof-card img { width: 100%; height: 100%; object-fit: contain; }

.case-studies { background: #e7e4da; }
.case-studies .section-title { margin-bottom: 16px; }
.case-studies .section-copy { margin-bottom: 0; }
.case-block { margin-top: 48px; }
.case-block + .case-block { margin-top: 64px; padding-top: 38px; border-top: 1px solid var(--line); }
.case-heading { margin-bottom: 20px; }
.case-heading > span { color: var(--green); font-size: 9px; font-weight: 800; letter-spacing: 1.1px; text-transform: uppercase; }
.case-heading h3 { margin: 8px 0 8px; font-size: 25px; line-height: 1.08; letter-spacing: -1.2px; }
.case-heading p { max-width: 365px; margin: 0; color: var(--muted); font-size: 12px; line-height: 1.6; }
.case-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.case-card { position: relative; min-width: 0; aspect-ratio: 1; margin: 0; overflow: hidden; border-radius: 20px; background: #dbe6d6; }
.case-card--featured { grid-column: 1 / -1; }
.case-card img { width: 100%; height: 100%; object-fit: contain; }
.case-card figcaption { position: absolute; right: 8px; bottom: 8px; left: 8px; padding: 9px 10px; border-radius: 10px; color: #fff; background: rgba(18, 40, 28, .78); backdrop-filter: blur(7px); font-size: 9px; font-weight: 800; }

.focus-banner { position: relative; min-height: 500px; padding: 68px 28px; color: #fff; background: linear-gradient(145deg, rgba(12,38,23,.38), rgba(10,33,21,.88)), url("assets/images/hexagon-lounge.webp") center/contain no-repeat #183225; overflow: hidden; }
.focus-banner > *:not(.focus-noise) { position: relative; z-index: 2; }
.focus-banner p { color: rgba(255,255,255,.7); font-size: 12px; }
.focus-banner h2 { margin-top: 90px; font-size: 43px; line-height: 1.02; letter-spacing: -2px; }
.focus-banner h2 em { color: var(--lime); font-family: Georgia, serif; font-weight: 400; }
.focus-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 75px; }
.focus-tags span { padding: 10px 14px; border: 1px solid rgba(255,255,255,.25); border-radius: 999px; background: rgba(255,255,255,.1); backdrop-filter: blur(8px); font-size: 10px; }
.focus-noise { position: absolute; inset: 0; opacity: .12; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E"); }

.pricing { background: var(--paper); }
.pricing .section-title { margin-bottom: 16px; }
.price-tabs { display: flex; gap: 8px; padding-bottom: 8px; margin: 30px -20px 14px; padding-left: 20px; padding-right: 20px; overflow-x: auto; scrollbar-width: none; }
.price-tabs::-webkit-scrollbar { display: none; }
.price-tab { flex: none; padding: 11px 15px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); background: transparent; font-size: 11px; font-weight: 700; cursor: pointer; }
.price-tab.active { color: #fff; border-color: var(--green-deep); background: var(--green-deep); }
.price-panel { padding: 22px; border-radius: var(--radius-lg); color: #fff; background: var(--green-deep); box-shadow: var(--shadow); }
.price-panel-head { display: flex; align-items: flex-end; justify-content: space-between; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,.14); }
.price-panel-head small { color: rgba(255,255,255,.55); font-size: 9px; text-transform: uppercase; letter-spacing: 1px; }
.price-panel-head h3 { margin: 4px 0 0; font-size: 22px; }
.price-panel-head > span { padding: 7px 10px; border-radius: 999px; color: var(--ink); background: var(--lime); font-size: 9px; font-weight: 800; }
.price-list { margin-top: 10px; }
.price-row { display: flex; justify-content: space-between; align-items: center; padding: 15px 2px; border-bottom: 1px solid rgba(255,255,255,.11); font-size: 12px; }
.price-row:last-child { border: 0; }
.price-row strong { font: 700 12px/1 "Manrope", sans-serif; }
.price-row.best span::after { content: "Favorit"; margin-left: 8px; padding: 4px 7px; border-radius: 99px; color: var(--ink); background: var(--lime); font-size: 7px; font-weight: 800; text-transform: uppercase; }
.price-note { margin: 14px 5px 0; color: var(--muted); font-size: 10px; text-align: center; }

.reviews { color: #fff; background: var(--green-deep); }
.reviews .section-title span { color: #8eaa98; }
.review-track { display: flex; gap: 14px; margin-right: -20px; padding-right: 20px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
.review-track::-webkit-scrollbar { display: none; }
.review-card { flex: 0 0 86%; min-height: 310px; display: flex; flex-direction: column; padding: 24px; border-radius: var(--radius-lg); color: var(--ink); background: #f6ebcc; scroll-snap-align: start; }
.review-card--green { background: var(--mint); }
.review-card--dark { color: #fff; background: #31463a; }
.stars { color: #f6aa24; letter-spacing: 2px; font-size: 12px; }
.review-card blockquote { margin: 35px 0 auto; font: 600 22px/1.35 "Manrope", sans-serif; letter-spacing: -.7px; }
.review-card footer { display: flex; align-items: center; gap: 11px; margin-top: 28px; }
.review-card footer > span { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; color: #fff; background: var(--green); font-size: 10px; font-weight: 800; }
.review-card footer b, .review-card footer small { display: block; }
.review-card footer b { font-size: 11px; }.review-card footer small { margin-top: 3px; opacity: .6; font-size: 9px; }

.faq { background: #e7e4da; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 0; list-style: none; cursor: pointer; font: 700 14px/1.35 "Manrope", sans-serif; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary span { flex: none; display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; color: #fff; background: var(--green-deep); transition: transform .25s ease; }
.faq-item[open] summary span { transform: rotate(45deg); }
.faq-item p { padding: 0 44px 22px 0; margin: 0; color: var(--muted); font-size: 12px; line-height: 1.65; }

.final-cta { position: relative; padding: 70px 20px 125px; color: #fff; background: #12281c; overflow: hidden; }
.final-cta > * { position: relative; z-index: 2; }
.brand--footer { color: var(--lime); }
.brand--footer .brand-mark { color: var(--green-deep); background: var(--lime); }
.final-cta h2 { margin: 115px 0 16px; font-size: 46px; line-height: 1; letter-spacing: -2.5px; }
.final-cta p { color: rgba(255,255,255,.6); font-size: 13px; line-height: 1.6; }
.primary-cta--light { margin-top: 30px; color: var(--ink); background: var(--lime); box-shadow: none; }
.primary-cta--light span { color: #fff; background: var(--green-deep); }
.final-cta > small { display: block; margin-top: 70px; color: rgba(255,255,255,.36); font-size: 9px; }
.final-orbit { position: absolute; z-index: 0; width: 410px; height: 410px; right: -205px; top: 90px; border: 1px solid rgba(201,244,91,.16); border-radius: 50%; box-shadow: 0 0 0 42px rgba(201,244,91,.03), 0 0 0 90px rgba(201,244,91,.02); }

.sticky-bar {
  position: fixed;
  z-index: 50;
  left: 50%;
  bottom: 12px;
  width: min(calc(100% - 24px), 456px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 8px 8px 17px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  color: #fff;
  background: rgba(19, 40, 28, .94);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 35px rgba(0,0,0,.28);
  transform: translate(-50%, 120%);
  transition: transform .35s ease;
}
.sticky-bar.visible { transform: translate(-50%, 0); }
.sticky-bar small, .sticky-bar strong { display: block; }
.sticky-bar small { color: rgba(255,255,255,.55); font-size: 8px; }.sticky-bar strong { margin-top: 2px; font: 800 13px/1.2 "Manrope", sans-serif; }
.sticky-bar button { padding: 13px 16px; border: 0; border-radius: 12px; color: var(--ink); background: var(--lime); font-size: 11px; font-weight: 800; cursor: pointer; }
.sticky-bar button span { margin-left: 7px; }

.business-info {
  display: grid;
  gap: 18px;
  margin-top: 54px;
  padding: 26px 0;
  border-top: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.business-info a,
.business-info div { display: grid; gap: 5px; }
.business-info span { color: rgba(255,255,255,.42); font-size: 9px; letter-spacing: .8px; text-transform: uppercase; }
.business-info strong { color: rgba(255,255,255,.82); font-size: 11px; line-height: 1.55; }
.final-cta .business-info + small { margin-top: 26px; }

body.sheet-open { overflow: hidden; }

.order-layer {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  align-items: end;
  pointer-events: none;
  visibility: hidden;
}

.order-layer.open { pointer-events: auto; visibility: visible; }

.order-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(7, 18, 11, .64);
  opacity: 0;
  backdrop-filter: blur(5px);
  transition: opacity .3s ease;
}

.order-layer.open .order-backdrop { opacity: 1; }

.order-sheet {
  position: relative;
  z-index: 2;
  width: min(100%, 480px);
  max-height: 94dvh;
  margin: 0 auto;
  overflow-y: auto;
  overscroll-behavior: contain;
  border-radius: 30px 30px 0 0;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 -24px 80px rgba(0,0,0,.3);
  transform: translateY(102%);
  transition: transform .38s cubic-bezier(.22,.72,.2,1);
}

.order-layer.open .order-sheet { transform: translateY(0); }
.sheet-grip { position: sticky; z-index: 8; top: 0; width: 42px; height: 4px; margin: 9px auto -13px; border-radius: 99px; background: #b8bbb5; }

.order-head {
  position: sticky;
  z-index: 7;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 20px 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(246,243,234,.94);
  backdrop-filter: blur(16px);
}

.order-head small { color: var(--green); font-size: 9px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; }
.order-head h2 { margin: 3px 0 0; font-size: 25px; letter-spacing: -1px; }
.close-order { display: grid; place-items: center; width: 39px; height: 39px; border: 0; border-radius: 50%; color: #fff; background: var(--green-deep); font-size: 25px; line-height: 1; cursor: pointer; }

#checkoutForm { padding: 18px 16px max(30px, env(safe-area-inset-bottom)); }
.form-step { margin-bottom: 14px; padding: 20px 16px; border: 1px solid var(--line); border-radius: 24px; background: #fffdf7; }
.step-title { display: grid; grid-template-columns: 38px 1fr; gap: 11px; align-items: start; margin-bottom: 20px; }
.step-title > span { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; background: var(--lime); font: 800 9px/1 "Manrope", sans-serif; }
.step-title h3 { margin: 0 0 3px; font-size: 16px; }
.step-title p { margin: 0; color: var(--muted); font-size: 10px; }

.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.field { display: grid; gap: 7px; margin-bottom: 12px; }
.field > span, .quantity-line > span { color: #59635d; font-size: 9px; font-weight: 800; letter-spacing: .4px; text-transform: uppercase; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid #d8dbd5;
  border-radius: 13px;
  outline: none;
  color: var(--ink);
  background: #fff;
  font-size: 12px;
}
.field textarea { resize: vertical; min-height: 92px; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(36,77,53,.09); }

.color-field { margin-top: 2px; }
.color-options { display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; }
.color-option { display: grid; justify-items: center; gap: 5px; padding: 9px 3px; border: 1px solid #d8dbd5; border-radius: 12px; color: #616a64; background: #fff; font-size: 8px; cursor: pointer; }
.color-option.active { border-color: var(--green-deep); box-shadow: inset 0 0 0 1px var(--green-deep); color: var(--ink); font-weight: 800; }
.color-option i { display: block; width: 21px; height: 21px; border: 1px solid rgba(0,0,0,.18); border-radius: 50%; }
.color-option i.black { background: #212121; }.color-option i.brown { background: #5d4037; }.color-option i.cream { background: #f5e6ca; }.color-option i.blue { background: linear-gradient(135deg,#1976d2 50%,#fff 50%); }

.quantity-line { display: flex; align-items: center; justify-content: space-between; margin: 15px 0; }
.quantity-control { display: flex; align-items: center; gap: 14px; padding: 5px; border: 1px solid #d8dbd5; border-radius: 12px; background: #fff; }
.quantity-control button { display: grid; place-items: center; width: 30px; height: 30px; border: 0; border-radius: 8px; background: #edf0ea; font-size: 18px; cursor: pointer; }
.quantity-control output { min-width: 16px; text-align: center; font-size: 12px; font-weight: 800; }
.add-item { width: 100%; padding: 13px; border: 1px solid var(--green-deep); border-radius: 12px; color: var(--green-deep); background: transparent; font-size: 11px; font-weight: 800; cursor: pointer; }

.mini-cart { display: grid; gap: 8px; margin-top: 12px; }
.mini-cart > p { margin: 0; padding: 12px; border-radius: 11px; color: var(--muted); background: #f0f1ec; font-size: 10px; text-align: center; }
.cart-line { display: grid; grid-template-columns: 1fr auto; gap: 12px; align-items: center; padding: 11px 12px; border-radius: 12px; background: #edf2e8; }
.cart-line b, .cart-line small { display: block; }.cart-line b { font-size: 10px; }.cart-line small { margin-top: 4px; color: var(--muted); font-size: 8px; line-height: 1.45; }
.cart-line button { width: 29px; height: 29px; border: 0; border-radius: 50%; color: #a52c2c; background: #fff; cursor: pointer; }

.payment-options { display: grid; gap: 8px; }
.payment-card { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 10px; padding: 14px; border: 1px solid #d8dbd5; border-radius: 14px; background: #fff; cursor: pointer; }
.payment-card:has(input:checked) { border-color: var(--green-deep); box-shadow: inset 0 0 0 1px var(--green-deep); }
.payment-card input { accent-color: var(--green-deep); }
.payment-copy b, .payment-copy small { display: block; }.payment-copy b { font-size: 11px; }.payment-copy small { margin-top: 3px; color: var(--muted); font-size: 8px; }
.payment-card > i { width: 8px; height: 8px; border-radius: 50%; background: #d9ddd7; }.payment-card:has(input:checked) > i { background: #36a966; box-shadow: 0 0 0 4px rgba(54,169,102,.12); }
.payment-detail { display: none; padding: 13px; border-radius: 14px; background: #edf2e8; }
.payment-detail.visible { display: block; }
.pay-total { display: flex; justify-content: space-between; margin-bottom: 10px; padding-bottom: 10px; border-bottom: 1px solid var(--line); font-size: 9px; }.pay-total strong { font-size: 11px; }
.bank-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 9px 0; border-bottom: 1px solid var(--line); }.bank-row:last-child { border: 0; }
.bank-row b, .bank-row span { display: block; }.bank-row b { font-size: 10px; }.bank-row span { margin-top: 3px; color: var(--muted); font-size: 8px; }
.bank-row button { border: 0; border-radius: 8px; padding: 7px 9px; color: #fff; background: var(--green-deep); font-size: 8px; cursor: pointer; }
.cod-consent { display: grid; grid-template-columns: auto 1fr; gap: 9px; align-items: start; color: #4d5851; font-size: 9px; line-height: 1.5; }.cod-consent input { margin-top: 2px; accent-color: var(--green-deep); }
.qris-detail { text-align: center; }.qris-detail img { width: min(100%, 250px); height: auto; margin: 0 auto 12px; border-radius: 14px; object-fit: contain; background: #fff; }.qris-detail > a { display: inline-block; padding: 9px 12px; border-radius: 9px; color: #fff; background: var(--green-deep); font-size: 9px; font-weight: 800; }

.checkout-summary { margin: 16px 0 12px; padding: 17px; border-radius: 18px; color: #fff; background: var(--green-deep); }
.checkout-summary > div { display: flex; justify-content: space-between; padding: 6px 0; font-size: 10px; }.checkout-summary strong { font-family: "Manrope", sans-serif; }
.checkout-summary .grand-total { margin-top: 9px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.15); font-size: 14px; }
.checkout-summary .grand-total strong { color: var(--lime); font-size: 17px; }
.form-message { margin: 0 0 10px; padding: 11px 13px; border-radius: 11px; color: #8c2020; background: #ffe3df; font-size: 10px; line-height: 1.45; }
.submit-order { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 17px 19px; border: 0; border-radius: 15px; color: var(--ink); background: var(--lime); box-shadow: 0 13px 28px rgba(36,77,53,.16); font-size: 12px; font-weight: 800; cursor: pointer; }
.submit-order span { font-size: 17px; }.privacy-note { margin: 10px 0 0; color: var(--muted); font-size: 8px; text-align: center; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (min-width: 481px) {
  .site-shell { box-shadow: 0 0 80px rgba(0,0,0,.35); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .product-image img, .sticky-bar, .faq-item summary span { transition: none; }
}
