/* Extendly — intentionally dependency-free and easy to maintain. */
:root {
  color-scheme: light;
  --ink: #171817;
  --muted: #666862;
  --paper: #f7f6f2;
  --card: #fff;
  --line: #deddd7;
  --green: #1f543f;
  --green-dark: #153d2e;
  --lime: #d8f27a;
  --shadow-sm: 0 8px 24px rgba(30, 35, 30, .07);
  --shadow-lg: 0 30px 80px rgba(20, 27, 22, .18);
  --radius: 1.35rem;
  --shell: min(1180px, calc(100% - 2.5rem));
  font: 100%/1.5 -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans TC", sans-serif;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; scroll-padding-top: 6rem; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.is-locked { overflow: hidden; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
svg { display: block; }
.shell { width: var(--shell); margin-inline: auto; }

.skip-link {
  position: fixed;
  z-index: 200;
  top: .75rem;
  left: .75rem;
  padding: .7rem 1rem;
  border-radius: .6rem;
  color: white;
  background: var(--green);
  transform: translateY(-200%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(247, 246, 242, .82);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
}
.site-header::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 10px;
  background: linear-gradient(rgba(247, 246, 242, .65), transparent);
  content: "";
  pointer-events: none;
}
.header-inner {
  display: flex;
  min-height: 4.7rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-size: 1.12rem;
  font-weight: 750;
  letter-spacing: -.025em;
}
.brand-mark {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border-radius: .65rem;
  color: var(--green-dark);
  background: var(--lime);
}
.brand-mark svg { width: 1.15rem; fill: currentColor; }
.desktop-nav { display: flex; align-items: center; gap: 2rem; }
.desktop-nav a {
  position: relative;
  color: #4d504b;
  font-size: .9rem;
  font-weight: 580;
}
.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -.35rem;
  left: 0;
  height: 1.5px;
  background: var(--green);
  content: "";
  transform: scaleX(0);
  transition: transform .2s ease;
}
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { transform: scaleX(1); }
.cart-button {
  display: inline-flex;
  min-height: 2.7rem;
  align-items: center;
  gap: .5rem;
  padding: .5rem .55rem .5rem .85rem;
  border: 1px solid #d5d5cf;
  border-radius: 999px;
  background: rgba(255, 255, 255, .65);
  cursor: pointer;
  font-size: .86rem;
  font-weight: 650;
  transition: background .2s ease, border-color .2s ease, transform .1s ease;
}
.cart-button:hover { border-color: #b6b8b2; background: white; }
.cart-button:active { transform: scale(.97); }
.cart-button > svg { width: 1.1rem; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.cart-count {
  display: grid;
  min-width: 1.7rem;
  height: 1.7rem;
  place-items: center;
  padding-inline: .25rem;
  border-radius: 999px;
  color: white;
  background: var(--green);
  font-size: .74rem;
}

.hero {
  display: grid;
  min-height: 42rem;
  grid-template-columns: .86fr 1.14fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  padding-block: clamp(4rem, 9vw, 8rem) 6rem;
}
.hero-copy { position: relative; z-index: 2; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: .55rem;
  margin: 0 0 1.15rem;
  color: var(--green);
  font-size: .76rem;
  font-weight: 750;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow > span { width: 1.5rem; height: 2px; background: currentColor; }
.hero h1 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(3rem, 6.2vw, 5.7rem);
  font-weight: 720;
  letter-spacing: -.062em;
  line-height: .98;
}
.hero h1 em { color: var(--green); font-style: normal; }
.hero-lede {
  max-width: 34rem;
  margin: 1.8rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.17rem);
  line-height: 1.8;
}
.hero-actions { display: flex; align-items: center; gap: 1.4rem; margin-top: 2.2rem; }
.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  padding: .75rem 1.25rem;
  border: 0;
  border-radius: .8rem;
  cursor: pointer;
  font-size: .9rem;
  font-weight: 700;
  transition: transform .1s ease, background .2s ease, box-shadow .2s ease;
}
.button:active { transform: scale(.97); }
.button-primary { color: white; background: var(--green); box-shadow: 0 8px 24px rgba(31, 84, 63, .2); }
.button-primary:hover { background: var(--green-dark); box-shadow: 0 10px 28px rgba(31, 84, 63, .28); }
.button-primary > span { font-size: 1.15em; }
.text-link { border-bottom: 1px solid #a9aaa5; font-size: .88rem; font-weight: 650; }
.text-link:hover { border-color: var(--ink); }
.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
  margin: 2rem 0 0;
  padding: 0;
  color: #5b5e58;
  font-size: .78rem;
  list-style: none;
}
.hero-notes li { display: flex; align-items: center; gap: .3rem; }
.hero-notes svg { width: 1rem; fill: none; stroke: var(--green); stroke-linecap: round; stroke-linejoin: round; stroke-width: 2; }

.hero-visual { position: relative; min-width: 0; perspective: 1000px; }
.browser-window {
  position: relative;
  z-index: 2;
  overflow: hidden;
  aspect-ratio: 1.22;
  border: 1px solid rgba(40, 48, 42, .18);
  border-radius: 1.15rem;
  background: #fff;
  box-shadow: 0 34px 80px rgba(34, 42, 36, .2), 0 8px 20px rgba(34, 42, 36, .08);
  transform: rotateY(-2deg) rotateX(1deg);
}
.browser-bar {
  display: flex;
  height: 11.5%;
  align-items: center;
  gap: 1rem;
  padding-inline: 1rem;
  border-bottom: 1px solid #ecece8;
  background: #f4f4f0;
}
.traffic-lights { display: flex; gap: .36rem; }
.traffic-lights i { width: .55rem; height: .55rem; border-radius: 50%; background: #deded9; }
.traffic-lights i:nth-child(1) { background: #ed857a; }
.traffic-lights i:nth-child(2) { background: #e8c76f; }
.traffic-lights i:nth-child(3) { background: #82c88e; }
.address-bar {
  display: flex;
  width: 65%;
  height: 50%;
  align-items: center;
  justify-content: center;
  gap: .3rem;
  margin-inline: auto;
  border: 1px solid #e3e3de;
  border-radius: .45rem;
  color: #8c8e89;
  background: white;
  font-size: clamp(.4rem, .8vw, .68rem);
}
.address-bar span { font-size: .65em; }
.browser-menu { color: #8f918d; font-size: .65rem; letter-spacing: .1em; }
.browser-content { position: relative; display: flex; height: 88.5%; background: #fafaf7; }
.mock-sidebar {
  display: flex;
  width: 16%;
  flex-direction: column;
  align-items: center;
  gap: 8%;
  padding-top: 6%;
  background: #1d3e32;
}
.mock-logo { width: 27%; aspect-ratio: 1; margin-bottom: 12%; border-radius: 28%; background: var(--lime); }
.mock-sidebar i { width: 42%; height: 3.5%; border-radius: 20px; background: rgba(255, 255, 255, .2); }
.mock-sidebar i.active { background: rgba(255, 255, 255, .7); }
.mock-page { width: 84%; padding: 8% 7%; }
.mock-heading { display: flex; flex-direction: column; gap: .7rem; }
.mock-heading i { width: 48%; height: .75rem; border-radius: 1rem; background: #28352f; }
.mock-heading i:last-child { width: 30%; height: .45rem; background: #d7dad5; }
.mock-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4%; margin-top: 10%; }
.mock-grid span { aspect-ratio: 1.35; border: 1px solid #e8e8e2; border-radius: .7rem; background: linear-gradient(145deg, white, #eef3ec); box-shadow: 0 5px 15px rgba(50, 60, 52, .04); }
.mock-lines { display: flex; flex-direction: column; gap: .55rem; margin-top: 10%; }
.mock-lines i { width: 84%; height: .38rem; border-radius: 1rem; background: #e2e4df; }
.mock-lines i:nth-child(2) { width: 70%; }
.mock-lines i:nth-child(3) { width: 77%; }
.mock-lines i:nth-child(4) { width: 55%; }
.extension-popover {
  position: absolute;
  top: 10%;
  right: 6%;
  width: 43%;
  padding: 5%;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 1rem;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 22px 50px rgba(30, 45, 36, .18);
  backdrop-filter: blur(20px);
}
.popover-title { display: flex; align-items: center; gap: .6rem; }
.mini-icon { display: grid; width: 1.7rem; aspect-ratio: 1; place-items: center; border-radius: .5rem; color: var(--green); background: var(--lime); font-weight: 800; }
.popover-title div { display: flex; flex-direction: column; min-width: 0; }
.popover-title strong { font-size: clamp(.55rem, 1.1vw, .82rem); }
.popover-title small { color: #777a75; font-size: clamp(.4rem, .75vw, .58rem); }
.timer { margin-top: 13%; font-size: clamp(1.8rem, 4vw, 3.3rem); font-weight: 690; letter-spacing: -.05em; line-height: 1; }
.progress { height: .3rem; margin-top: 10%; overflow: hidden; border-radius: 1rem; background: #e9ebe6; }
.progress i { display: block; width: 68%; height: 100%; border-radius: inherit; background: var(--green); }
.extension-popover button { width: 100%; margin-top: 11%; padding: 5%; border: 0; border-radius: .55rem; color: white; background: var(--green); font-size: clamp(.45rem, .8vw, .65rem); }
.ambient { position: absolute; border-radius: 50%; filter: blur(1px); }
.ambient-one { top: -10%; right: -7%; width: 38%; aspect-ratio: 1; background: #dff38d; }
.ambient-two { bottom: -9%; left: -8%; width: 32%; aspect-ratio: 1; background: #b7ded1; }
.floating-chip {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .7rem .85rem;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: .75rem;
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(16px);
  font-size: clamp(.62rem, 1vw, .78rem);
  font-weight: 650;
}
.floating-chip span { color: var(--green); }
.chip-one { bottom: 10%; left: -7%; }
.chip-two { top: 20%; right: -6%; }

.social-proof { border-block: 1px solid var(--line); }
.proof-inner { display: flex; min-height: 5.5rem; align-items: center; justify-content: space-between; gap: 2rem; }
.proof-inner > p { margin: 0; color: #7e807b; font-size: .78rem; }
.proof-items { display: flex; align-items: center; gap: clamp(.65rem, 2vw, 1.5rem); color: #4a4c48; font-size: .75rem; font-weight: 650; letter-spacing: .035em; }
.proof-items i { width: 3px; height: 3px; border-radius: 50%; background: #a4a6a0; }

.products-section { padding-block: clamp(5rem, 10vw, 8rem); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: 2.5rem; }
.section-heading h2, .faq-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -.045em;
  line-height: 1.08;
}
.filters { display: flex; gap: .45rem; }
.filter {
  padding: .55rem .85rem;
  border: 1px solid #d8d8d2;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font-size: .76rem;
  font-weight: 650;
  transition: color .18s ease, background .18s ease, border-color .18s ease, transform .1s ease;
}
.filter:hover { border-color: #a9aaa5; }
.filter:active { transform: scale(.96); }
.filter.is-active { border-color: var(--green); color: white; background: var(--green); }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.product-card {
  overflow: hidden;
  border: 1px solid #e1e0da;
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: 0 2px 0 rgba(255,255,255,.7) inset;
  transition: transform .28s cubic-bezier(.2,.8,.2,1), border-color .28s ease, box-shadow .28s ease;
}
.product-card:hover { border-color: #cccdc6; box-shadow: var(--shadow-sm); transform: translateY(-5px); }
.product-card.is-filtered { display: none; }
.product-art { position: relative; display: grid; aspect-ratio: 1.45; place-items: center; margin: .55rem; overflow: hidden; border-radius: calc(var(--radius) - .35rem); }
.product-art::before, .product-art::after { position: absolute; border-radius: 50%; content: ""; }
.product-art::before { top: -35%; right: -10%; width: 60%; aspect-ratio: 1; background: rgba(255,255,255,.28); }
.product-art::after { bottom: -40%; left: -15%; width: 65%; aspect-ratio: 1; background: rgba(255,255,255,.18); }
.product-art > svg { z-index: 1; width: 45%; fill: rgba(255,255,255,.42); stroke: #24332b; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2.3; filter: drop-shadow(0 12px 18px rgba(30,40,34,.1)); }
.art-violet { background: #c9c5ef; }
.art-coral { background: #efad98; }
.art-mint { background: #a9d7c0; }
.art-blue { background: #b2cee3; }
.art-sand { background: #ddd0b8; }
.art-yellow { background: #ead77e; }
.product-badge { position: absolute; z-index: 2; top: .8rem; left: .8rem; padding: .28rem .55rem; border-radius: 999px; color: #423e25; background: #fbf4b2; font-size: .64rem; font-weight: 750; letter-spacing: .03em; }
.badge-dark { color: white; background: var(--green); }
.product-info { padding: 1.1rem 1.35rem 1.35rem; }
.product-meta { display: flex; justify-content: space-between; color: #7b7d77; font-size: .68rem; font-weight: 650; }
.product-info h3 { margin: .55rem 0 .45rem; font-size: 1.16rem; letter-spacing: -.025em; }
.product-info > p { min-height: 3.6rem; margin: 0; color: var(--muted); font-size: .82rem; line-height: 1.7; }
.product-bottom { display: flex; align-items: end; justify-content: space-between; margin-top: 1.15rem; }
.price { display: flex; flex-direction: column; }
.price strong { font-size: 1.12rem; letter-spacing: -.025em; }
.price small { margin-top: .05rem; color: #92948f; font-size: .64rem; }
.add-button {
  display: grid;
  width: 2.7rem;
  height: 2.7rem;
  place-items: center;
  border: 0;
  border-radius: .75rem;
  color: white;
  background: var(--green);
  cursor: pointer;
  transition: transform .1s ease, background .2s ease;
}
.add-button:hover { background: var(--green-dark); }
.add-button:active { transform: scale(.91); }
.add-button.is-added { color: var(--green); background: var(--lime); }
.add-button svg { width: 1.15rem; fill: none; stroke: currentColor; stroke-linecap: round; stroke-width: 2; }
.noscript { padding: 1rem; border-radius: .75rem; background: #fff0c9; }

.promise-section { padding-block: clamp(5rem, 10vw, 8rem); color: white; background: var(--green-dark); }
.promise-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(4rem, 10vw, 9rem); }
.eyebrow-light { color: var(--lime); }
.promise-copy h2 { margin: 0; font-size: clamp(2.25rem, 4.5vw, 4rem); font-weight: 680; letter-spacing: -.052em; line-height: 1.06; }
.promise-copy > p:not(.eyebrow) { max-width: 31rem; margin: 1.5rem 0 2rem; color: rgba(255,255,255,.65); line-height: 1.8; }
.button-light { color: var(--green-dark); background: var(--lime); }
.button-light:hover { background: #e4f6a2; }
.promise-list { border-top: 1px solid rgba(255,255,255,.2); }
.promise-list article { display: grid; grid-template-columns: 3rem 1fr; gap: 1.2rem; padding-block: 1.7rem; border-bottom: 1px solid rgba(255,255,255,.2); }
.promise-list article > span { color: var(--lime); font-size: .72rem; font-weight: 750; }
.promise-list h3 { margin: 0 0 .4rem; font-size: 1.12rem; letter-spacing: -.02em; }
.promise-list p { max-width: 30rem; margin: 0; color: rgba(255,255,255,.62); font-size: .84rem; line-height: 1.7; }

.faq-section { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(3rem, 9vw, 8rem); padding-block: clamp(5rem, 10vw, 8rem); }
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { display: flex; min-height: 5rem; align-items: center; justify-content: space-between; gap: 1rem; cursor: pointer; font-size: .98rem; font-weight: 670; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary span { position: relative; width: 1rem; height: 1rem; flex: 0 0 auto; }
summary span::before, summary span::after { position: absolute; top: 50%; left: 50%; width: .8rem; height: 1.5px; background: currentColor; content: ""; transform: translate(-50%, -50%); transition: transform .22s ease; }
summary span::after { transform: translate(-50%, -50%) rotate(90deg); }
details[open] summary span::after { transform: translate(-50%, -50%) rotate(0deg); }
details p { max-width: 42rem; margin: -1rem 2.5rem 1.7rem 0; color: var(--muted); font-size: .86rem; line-height: 1.75; }

.site-footer { color: rgba(255,255,255,.75); background: #101912; }
.footer-top { display: flex; min-height: 14rem; align-items: center; justify-content: space-between; gap: 2rem; }
.brand-footer { color: white; }
.footer-top > div > p { margin: 1rem 0 0; font-size: .8rem; }
.footer-links { display: flex; gap: 2rem; font-size: .8rem; }
.footer-links a:hover { color: white; }
.footer-bottom { display: flex; min-height: 4.5rem; align-items: center; justify-content: space-between; gap: 1.5rem; border-top: 1px solid rgba(255,255,255,.1); font-size: .68rem; }
.footer-bottom p { margin: 0; }

.drawer-layer, .modal-layer { position: fixed; z-index: 100; inset: 0; }
.drawer-backdrop, .modal-backdrop { position: absolute; inset: 0; width: 100%; border: 0; background: rgba(10, 16, 12, .42); cursor: default; backdrop-filter: blur(3px); opacity: 0; transition: opacity .25s ease; }
.cart-drawer {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  display: flex;
  width: min(29rem, 100%);
  height: 100%;
  flex-direction: column;
  padding: 1.5rem;
  background: #fbfaf7;
  box-shadow: -20px 0 60px rgba(15, 23, 18, .18);
  transform: translateX(105%);
  transition: transform .36s cubic-bezier(.22,.8,.26,1);
}
.drawer-layer.is-open .drawer-backdrop, .modal-layer.is-open .modal-backdrop { opacity: 1; }
.drawer-layer.is-open .cart-drawer { transform: translateX(0); }
.drawer-header { display: flex; align-items: flex-start; justify-content: space-between; padding: .25rem 0 1.2rem; border-bottom: 1px solid var(--line); }
.drawer-kicker { margin: 0 0 .15rem; color: var(--green); font-size: .66rem; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.drawer-header h2 { margin: 0; font-size: 1.75rem; letter-spacing: -.04em; }
.icon-button { display: grid; width: 2.5rem; height: 2.5rem; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: white; cursor: pointer; transition: transform .1s ease, background .2s ease; }
.icon-button:hover { background: #f1f1ed; }
.icon-button:active { transform: scale(.93); }
.icon-button svg { width: 1rem; fill: none; stroke: currentColor; stroke-linecap: round; stroke-width: 1.8; }
.cart-items { overflow: auto; flex: 1; }
.cart-item { display: grid; grid-template-columns: 3.6rem 1fr auto; align-items: center; gap: .9rem; padding-block: 1rem; border-bottom: 1px solid var(--line); }
.cart-item-icon { display: grid; width: 3.6rem; aspect-ratio: 1; place-items: center; border-radius: .8rem; color: var(--green); background: #e4edbe; font-size: 1.2rem; font-weight: 800; }
.cart-item h3 { margin: 0; font-size: .85rem; }
.cart-item p { margin: .18rem 0 0; color: var(--muted); font-size: .74rem; }
.remove-item { padding: .35rem; border: 0; color: #999b96; background: transparent; cursor: pointer; }
.remove-item:hover { color: #a33d34; }
.remove-item svg { width: 1rem; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.empty-cart { display: flex; flex: 1; flex-direction: column; align-items: center; justify-content: center; padding: 3rem 1rem; text-align: center; }
.empty-icon { display: grid; width: 5rem; aspect-ratio: 1; place-items: center; border-radius: 50%; background: #eef1e6; }
.empty-icon svg { width: 2.4rem; fill: none; stroke: var(--green); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.empty-cart h3 { margin: 1.2rem 0 .25rem; font-size: 1.1rem; }
.empty-cart p { margin: 0 0 1.4rem; color: var(--muted); font-size: .82rem; }
.cart-summary { padding-top: 1rem; border-top: 1px solid var(--line); }
.summary-row, .summary-total { display: flex; justify-content: space-between; padding-block: .25rem; font-size: .8rem; }
.summary-row.muted { color: var(--muted); }
.summary-total { align-items: baseline; margin-top: .6rem; padding-top: .9rem; border-top: 1px dashed #d2d3cd; font-weight: 700; }
.summary-total strong { font-size: 1.35rem; letter-spacing: -.03em; }
.checkout-button { width: 100%; margin-top: 1rem; }
.demo-note { display: flex; align-items: center; justify-content: center; gap: .35rem; margin: .65rem 0 0; color: #848680; font-size: .66rem; }
.demo-note svg { width: .9rem; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }

.modal-layer { display: grid; place-items: center; padding: 1.25rem; }
.checkout-modal {
  position: relative;
  z-index: 1;
  width: min(28rem, 100%);
  padding: 2.5rem;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 1.5rem;
  background: #fbfaf7;
  box-shadow: var(--shadow-lg);
  text-align: center;
  opacity: 0;
  transform: translateY(1rem) scale(.97);
  transition: opacity .24s ease, transform .32s cubic-bezier(.22,.8,.26,1);
}
.modal-layer.is-open .checkout-modal { opacity: 1; transform: translateY(0) scale(1); }
.modal-close { position: absolute; top: 1rem; right: 1rem; }
.modal-symbol { display: grid; width: 4rem; aspect-ratio: 1; place-items: center; margin: 0 auto 1.2rem; border-radius: 1.2rem; color: var(--green); background: var(--lime); font-size: 1.6rem; }
.checkout-modal .drawer-kicker { margin-bottom: .5rem; }
.checkout-modal h2 { margin: 0; font-size: 1.75rem; letter-spacing: -.04em; }
.checkout-modal > p:not(.drawer-kicker) { margin: 1rem 0 1.5rem; color: var(--muted); font-size: .86rem; line-height: 1.75; }
.checkout-modal .button { min-width: 8rem; }

.toast {
  position: fixed;
  z-index: 150;
  right: 1.2rem;
  bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: .65rem;
  max-width: min(22rem, calc(100% - 2.4rem));
  padding: .75rem 1rem .75rem .75rem;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: .85rem;
  color: white;
  background: #17271d;
  box-shadow: 0 12px 35px rgba(15, 24, 18, .25);
  opacity: 0;
  pointer-events: none;
  transform: translateY(1rem);
  transition: opacity .2s ease, transform .28s cubic-bezier(.22,.8,.26,1);
}
.toast.is-visible { opacity: 1; transform: translateY(0); }
.toast span { display: grid; width: 1.6rem; aspect-ratio: 1; place-items: center; border-radius: .45rem; color: var(--green-dark); background: var(--lime); font-size: .78rem; font-weight: 850; }
.toast p { margin: 0; font-size: .78rem; font-weight: 650; }

:focus-visible { outline: 3px solid rgba(31, 84, 63, .3); outline-offset: 3px; }

@media (max-width: 900px) {
  .hero { min-height: auto; grid-template-columns: 1fr; padding-top: 4.5rem; }
  .hero-copy { max-width: 42rem; }
  .hero h1 { max-width: 12ch; }
  .hero-visual { width: min(42rem, 94%); margin-inline: auto; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .promise-layout, .faq-section { grid-template-columns: 1fr; }
  .promise-layout { gap: 4rem; }
  .faq-section { gap: 2.5rem; }
  .proof-inner { flex-direction: column; justify-content: center; gap: .7rem; padding-block: 1rem; }
}

@media (max-width: 680px) {
  :root { --shell: min(100% - 1.5rem, 36rem); }
  .header-inner { min-height: 4.2rem; }
  .desktop-nav { display: none; }
  .cart-button > span:not(.cart-count) { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); }
  .hero { gap: 3.5rem; padding-block: 3.5rem 4.5rem; }
  .hero h1 { font-size: clamp(2.8rem, 15vw, 4.6rem); }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 1rem; }
  .hero-notes { gap: .7rem 1rem; }
  .chip-one { left: -2%; }
  .chip-two { right: -2%; }
  .section-heading { align-items: flex-start; flex-direction: column; }
  .filters { width: 100%; overflow-x: auto; padding-bottom: .25rem; }
  .filter { flex: 0 0 auto; }
  .product-grid { grid-template-columns: 1fr; }
  .product-info > p { min-height: auto; }
  .proof-items { flex-wrap: wrap; justify-content: center; }
  .promise-copy h2 { font-size: 2.5rem; }
  .footer-top { align-items: flex-start; flex-direction: column; justify-content: center; padding-block: 3.5rem; }
  .footer-links { flex-wrap: wrap; gap: 1rem 1.5rem; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding-block: 1.2rem; }
  .checkout-modal { padding: 2.3rem 1.4rem 1.6rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .product-card:hover { transform: none; }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header, .extension-popover, .floating-chip { background: #fff; backdrop-filter: none; -webkit-backdrop-filter: none; }
  .drawer-backdrop, .modal-backdrop { backdrop-filter: none; }
}

@media (prefers-contrast: more) {
  :root { --line: #777; --muted: #3f413d; }
  .site-header { background: #fff; }
  .product-card, .filter, .cart-button { border-color: #666; }
}
