:root {
  --ink: #1a1a1a;
  --ink-2: #3c4144;
  --muted: #6b7378;
  --line: #f0d9d9;
  --bg: #ffeeee;
  --bg-alt: #fff6f6;
  --accent: #86c5b3;
  --radius: 14px;
  --wrap: 1240px;
  --header-h: 119px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; font-family: Poppins, system-ui, sans-serif; color: var(--ink);
  background: var(--bg); line-height: 1.6; -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }
h1, h2, h3, h4 { font-weight: 600; line-height: 1.2; margin: 0 0 .6em; letter-spacing: -.01em; }
h1 { font-size: clamp(1.9rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
.center { text-align: center; }

.announce {
  background: var(--bg); color: var(--ink); font-size: .8rem;
  letter-spacing: .1em; padding: 9px 0; text-transform: uppercase; overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.marquee { display: flex; gap: 48px; width: max-content; animation: scroll 40s linear infinite; }
.marquee span { white-space: nowrap; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.site-header { position: sticky; top: 0; z-index: 50; background: var(--bg);
  border-bottom: 1px solid var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.logo { display: flex; align-items: center; margin: 0 auto; }
.logo img { height: 40px; width: auto; max-width: 190px; object-fit: contain; }
.main-nav { border-top: 1px solid var(--line); }
.main-nav ul { display: flex; gap: 26px; list-style: none; margin: 0; padding: 12px 0;
  align-items: center; justify-content: center; flex-wrap: wrap; }
.main-nav a { font-size: .76rem; letter-spacing: .06em; text-transform: uppercase; white-space: nowrap; }
.main-nav a:hover { text-decoration: underline; text-underline-offset: 5px; }
.cart-link { font-size: .8rem; text-transform: uppercase; letter-spacing: .04em; white-space: nowrap; }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.burger span { width: 22px; height: 2px; background: var(--ink); display: block; }

.hero { min-height: min(78vh, 640px); background-size: cover; background-position: center;
  display: grid; place-items: center; text-align: center; color: #fff; padding: 120px 20px 70px;
  border-radius: 0 0 var(--radius) var(--radius); }
.hero-title { font-size: clamp(2.2rem, 6vw, 4.2rem); text-transform: uppercase; color: #fff;
  max-width: 680px; margin: 0 0 26px; }

/* the original overlays a transparent header on the homepage hero */
body.home .site-header { position: relative; z-index: 40; background: transparent;
  border-bottom: 0; color: #fff; }
body.home .site-header a, body.home .site-header .cart-link { color: #fff; }
body.home .main-nav { border-top-color: rgba(255,255,255,.25); }
body.home .burger span { background: #fff; }
body.home .logo img { filter: brightness(0) invert(1); }
body.home main { margin-top: calc(-1 * var(--header-h)); }
body.home .hero { padding-top: calc(var(--header-h) + 60px); }

.btn { display: inline-block; background: var(--accent); color: #000; padding: 15px 38px; border-radius: 60px;
  font-size: 1rem; font-weight: 700; border: 1px solid var(--accent);
  cursor: pointer; transition: .18s; font-family: inherit; }
.btn:hover { filter: brightness(.95); transform: translateY(-1px); }
.btn.ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn.ghost:hover { background: var(--ink); color: #fff; }
.btn.full { width: 100%; }

/* --- sections matching the original --- */
.sec-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 18px; }
.sec-head h2 { text-transform: uppercase; margin: 0; font-size: clamp(1.6rem, 3.2vw, 44px); }
.viewall { font-size: .85rem; text-decoration: underline; text-underline-offset: 4px; }

.impact { padding: 90px 0 70px; }
.impact-num { font-size: clamp(4rem, 12vw, 149px); font-weight: 600; letter-spacing: -.02em; margin: 0; line-height: 1; }
.impact-sub { font-size: 1rem; font-weight: 500; letter-spacing: .08em; margin: 10px 0 0; }

.overlay { min-height: 420px; background-size: cover; background-position: center;
  display: grid; place-items: center; text-align: center; color: #fff; padding: 60px 20px; }
.overlay p { font-size: clamp(1.3rem, 3vw, 2.1rem); font-weight: 600; max-width: 900px; margin: 0; }

.media-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.media-cell { position: relative; display: block; border-radius: var(--radius); overflow: hidden; }
.media-cell img { aspect-ratio: 1/1; object-fit: cover; width: 100%; }
.media-cell span { position: absolute; left: 0; right: 0; bottom: 0; padding: 14px;
  background: linear-gradient(transparent, rgba(0,0,0,.65)); color: #fff;
  font-size: .78rem; font-weight: 600; letter-spacing: .05em; }

.split-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.split-imgs img { border-radius: var(--radius); aspect-ratio: 3/4; object-fit: cover; }

.featured-product .fp-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center;
  background: #fff; border-radius: 24px; padding: 34px; }
.fp-media { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.fp-media img { border-radius: var(--radius); object-fit: cover; aspect-ratio: 1/1; }
.fp-buy h2 { font-size: clamp(1.4rem, 2.4vw, 2rem); line-height: 1.3; text-transform: uppercase; }

.faq h2 { text-transform: uppercase; }
.faq-sub { margin-top: -.4em; }
.faq-inner { display: grid; grid-template-columns: 320px 1fr; gap: 40px; align-items: start; margin-top: 28px;
  background: #fff; border-radius: 24px; padding: 34px; }
.faq-aside img { height: 60px; width: auto; object-fit: contain; margin-bottom: 14px; }
.faq-time { font-weight: 600; }
.faq-list details { border-bottom: 1px solid var(--line); }

.icon-band { background: var(--bg-alt); padding: 54px 0; border-top: 1px solid var(--line); }
.icon-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 26px; text-align: center; }
.icon-item h3 { font-size: .85rem; letter-spacing: .07em; margin-bottom: .5em; }
.icon-item p { font-size: .84rem; color: var(--ink-2); margin: 0; }

.site-footer { background: #1e1d24; color: #fff; padding: 46px 0; }
.footer-menu { list-style: none; display: flex; flex-direction: column; gap: 10px;
  padding: 0; margin: 0 0 22px; }
.footer-menu a { font-size: .78rem; letter-spacing: .06em; color: #fff; }
.footer-menu a:hover { text-decoration: underline; text-underline-offset: 4px; }
.copyright { font-size: .8rem; margin: 0; color: #fff; }

@media (max-width: 900px) {
  .media-grid { grid-template-columns: repeat(2, 1fr); }
  .icon-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-inner { grid-template-columns: 1fr; }
  .featured-product .fp-inner { grid-template-columns: 1fr; gap: 24px; }
}

.section { padding: 72px 0; }
.section.alt { background: var(--bg-alt); }
.section h2 { text-align: center; margin-bottom: 36px; }
.section .center { margin-top: 36px; }
.page-head { background: var(--bg-alt); padding: 54px 0; border-bottom: 1px solid var(--line); }
.page-head h1 { margin: 0; }
.page-head p { color: var(--muted); margin: 6px 0 0; }

.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 28px; }
.card { display: block; }
.card-img { background: var(--bg-alt); border-radius: var(--radius); overflow: hidden; aspect-ratio: 1/1; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.card:hover .card-img img { transform: scale(1.05); }
.card-body { padding: 14px 2px 0; }
.card h3 { font-size: .96rem; font-weight: 500; margin: 0 0 6px; line-height: 1.35; }
.price { color: var(--ink-2); margin: 0; font-weight: 600; }
.price.big { font-size: 1.6rem; margin: 4px 0 22px; }

.tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.tile { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; display: block; }
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.tile:hover img { transform: scale(1.06); }
.tile span { position: absolute; inset: auto 0 0 0; padding: 40px 18px 18px; color: #fff; font-weight: 600;
  background: linear-gradient(transparent, rgba(23,29,33,.85)); }

.split-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }
.split-inner img { border-radius: var(--radius); aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.split-inner h2 { text-align: left; }

.trust { text-align: center; background: var(--ink); color: #fff; }
.trust h2 { color: #fff; }
.trust .lead { max-width: 760px; margin: 0 auto 30px; opacity: .88; }
.stat span { font-size: clamp(2.6rem, 7vw, 4.4rem); font-weight: 700; display: block; }
.stat p { margin: 0 0 26px; letter-spacing: .18em; text-transform: uppercase; font-size: .74rem; opacity: .75; }
.trust .btn { background: #fff; color: var(--ink); border-color: #fff; }
.trust .btn:hover { background: #f1efec; color: var(--ink); }

.faq details { border-bottom: 1px solid var(--line); padding: 18px 4px; max-width: 860px; margin: 0 auto; }
.faq summary { cursor: pointer; font-weight: 500; list-style: none; display: flex; justify-content: space-between; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.3rem; line-height: 1; color: var(--muted); }
.faq details[open] summary::after { content: "\2013"; }
.faq details div { padding-top: 12px; color: var(--ink-2); }

.crumbs { padding: 18px 0; font-size: .82rem; color: var(--muted); border-bottom: 1px solid var(--line); }
.product-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 54px; padding: 44px 0; align-items: start; }
.gallery .main { background: var(--bg-alt); border-radius: var(--radius); overflow: hidden; aspect-ratio: 1/1; }
.gallery .main img { width: 100%; height: 100%; object-fit: cover; }
.thumbs { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; margin-top: 12px; }
.thumb { padding: 0; border: 1px solid var(--line); background: none; border-radius: 10px; overflow: hidden; cursor: pointer; }
.thumb.active { border-color: var(--ink); }
.thumb img { aspect-ratio: 1/1; object-fit: cover; width: 100%; }
.buy h1 { font-size: clamp(1.4rem, 2.6vw, 2rem); }
.stars { color: #e8a13a; font-size: .9rem; margin: 0 0 10px; }
.stars span { color: var(--muted); font-size: .82rem; }
.option { margin-bottom: 20px; }
.option label, .qty label { display: block; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 8px; }
.opts { display: flex; flex-wrap: wrap; gap: 8px; }
.opt { border: 1px solid var(--line); background: #fff; border-radius: 999px; padding: 9px 16px; cursor: pointer;
  font-family: inherit; font-size: .86rem; transition: .15s; }
.opt:hover { border-color: var(--ink); }
.opt.selected { background: var(--ink); color: #fff; border-color: var(--ink); }
.qty { margin: 0 0 18px; }
.qty input { width: 92px; padding: 11px; border: 1px solid var(--line); border-radius: 10px; font-family: inherit; }
.perks { list-style: none; padding: 22px 0 0; margin: 22px 0 0; border-top: 1px solid var(--line); color: var(--ink-2); font-size: .9rem; }
.perks li { padding-left: 24px; position: relative; margin-bottom: 8px; }
.perks li::before { content: "\2713"; position: absolute; left: 0; color: #2e8b57; font-weight: 700; }

.rte { max-width: 900px; margin: 0 auto; }
.rte.narrow { max-width: 760px; }
.rte img { border-radius: var(--radius); margin: 22px auto; }
.rte h2, .rte h3 { text-align: left; margin-top: 1.4em; }
.rte ul { padding-left: 20px; }
.rte table { width: 100%; border-collapse: collapse; }
.rte td, .rte th { border: 1px solid var(--line); padding: 10px; }

.cart-row { display: grid; grid-template-columns: 88px 1fr auto auto; gap: 16px; align-items: center;
  padding: 16px 0; border-bottom: 1px solid var(--line); }
.cart-row img { width: 88px; height: 88px; object-fit: cover; border-radius: 10px; }
.cart-row input { width: 68px; padding: 8px; border: 1px solid var(--line); border-radius: 8px; font-family: inherit; }
.cart-row .rm { background: none; border: 0; color: var(--muted); cursor: pointer; font-size: 1.2rem; }
.cart-total { display: flex; justify-content: space-between; font-size: 1.2rem; font-weight: 600; padding: 22px 0; }
.notice { background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 16px 18px; color: var(--ink-2); font-size: .9rem; margin-top: 18px; }

.contact-form { display: grid; gap: 16px; max-width: 560px; margin-top: 28px; }
.contact-form label { display: grid; gap: 6px; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.contact-form input, .contact-form textarea { padding: 12px; border: 1px solid var(--line); border-radius: 10px;
  font-family: inherit; font-size: 1rem; color: var(--ink); }

.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer a:hover { text-decoration: underline; }

.toast { position: fixed; right: 20px; bottom: 20px; background: var(--ink); color: #fff; padding: 14px 20px;
  border-radius: 12px; z-index: 100; box-shadow: 0 10px 30px rgba(0,0,0,.18); }

@media (max-width: 1340px) {
  .main-nav ul { gap: 12px; }
  .main-nav a { font-size: .72rem; }
}
@media (max-width: 980px) {
  .product-inner, .split-inner, .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .split-inner h2 { text-align: center; }
}
@media (max-width: 820px) {
  .burger { display: flex; }
  .main-nav { position: fixed; inset: 74px 0 auto 0; background: #fff; border-bottom: 1px solid var(--line);
    display: none; padding: 16px 20px 24px; }
  .nav-open .main-nav { display: block; }
  .main-nav ul { flex-direction: column; gap: 14px; }
  .logo span { display: none; }
  .thumbs { grid-template-columns: repeat(5, 1fr); }
}
