:root {
  --bg: #ffffff;
  --section-bg: #FAFAFA;
  --dark: #0D0D0D;
  --dark-2: #1a1a1a;
  --green: #2D6A4F;
  --green-light: #52B788;
  --green-bg: #F0FFF4;
  --text: #171717;
  --text-light: #6b6b6b;
  --g100: #f5f5f5;
  --g200: #e5e5e5;
  --g400: #a3a3a3;
  --border: #e5e5e5;
  --radius: 14px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
  --shadow: 0 4px 16px rgba(0,0,0,.08);
  --shadow-lg: 0 20px 45px -20px rgba(0,0,0,.25);
  --serif: 'DM Serif Display', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font: var(--sans);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Eyebrow label ────────────────────────────────────────────── */
.eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}

/* ── Top bar ──────────────────────────────────────────────────── */
.top-bar {
  background: var(--green);
  height: 32px;
}
.top-bar-inner {
  height: 32px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  color: #FFFFFF;
}
.top-bar-phone {
  color: #FFFFFF;
  font-weight: 500;
  white-space: nowrap;
  justify-self: start;
}
.top-bar-phone:hover { opacity: .85; }
.top-bar-message {
  justify-self: center;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.top-bar-social {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  justify-self: end;
}
.top-bar-social a {
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: .9;
  transition: opacity .15s;
}
.top-bar-social a:hover { opacity: 1; }

/* ── Header ───────────────────────────────────────────────────── */
header.site-header {
  background: #FFFFFF;
  color: #111827;
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid #E5E7EB;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
}
.logo {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 23px;
  letter-spacing: -0.2px;
  color: #111827;
}
.logo span { color: var(--green); }
nav.main-nav {
  display: flex;
  gap: 8px;
}
nav.main-nav a {
  font-size: 13.5px;
  font-weight: 500;
  color: #111827;
  padding: 7px 13px;
  border-radius: 7px;
  transition: color .15s, background .15s;
}
nav.main-nav a:hover { color: #111827; background: rgba(0,0,0,.05); }
nav.main-nav a.active { color: var(--green); }
.header-actions { display: flex; align-items: center; gap: 14px; }
.icon-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,.05);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  color: #111827;
  transition: background .15s;
}
.icon-btn:hover { background: rgba(0,0,0,.1); }
.nav-toggle {
  display: none;
  background: none; border: none; color: #111827; font-size: 22px; cursor: pointer;
}

/* ── Buttons ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: #fff;
  font-weight: 600;
  font-size: 14.5px;
  padding: 13px 24px;
  border-radius: 9px;
  border: 1px solid var(--green);
  cursor: pointer;
  transition: background .15s, transform .1s, box-shadow .15s;
}
.btn:hover { background: var(--green-light); border-color: var(--green-light); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }
.btn-block { width: 100%; justify-content: center; }
.btn-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,.35);
  color: #fff;
}
.btn-outline:hover { background: rgba(255,255,255,.06); border-color: #fff; }
.btn-sm { padding: 9px 16px; font-size: 13px; }

/* ── Hero ─────────────────────────────────────────────────────── */
.hero {
  background: var(--bg);
  padding: 88px 20px 76px;
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(38px, 5vw, 54px);
  line-height: 1.08;
  margin: 0 0 18px;
  letter-spacing: -0.5px;
}
.hero h1 .accent { color: var(--green); font-style: italic; }
.hero p {
  font-size: 16px;
  color: var(--text-light);
  max-width: 460px;
  margin: 0 0 30px;
  line-height: 1.7;
}
.hero-badges {
  display: flex;
  gap: 10px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.hero-badge {
  background: var(--g100);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 7px 14px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-visual {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}
.hero-visual img { width: 100%; height: 380px; object-fit: cover; }

/* ── Trust strip ──────────────────────────────────────────────── */
.trust-strip {
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1180px;
  margin: 0 auto;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 24px 20px;
  border-right: 1px solid var(--border);
}
.trust-item:last-child { border-right: none; }
.trust-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--green-bg);
  color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}
.trust-text strong { display: block; font-size: 13.5px; font-weight: 600; }
.trust-text span { font-size: 12.5px; color: var(--text-light); }

/* ── Section headings ─────────────────────────────────────────── */
.section { padding: 80px 0; }
.section.alt { background: var(--section-bg); }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 12px;
}
.section-head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(26px, 3vw, 34px);
  margin: 0 0 6px;
  letter-spacing: -0.3px;
}
.section-head p { margin: 0; color: var(--text-light); font-size: 14.5px; }
.section-link { font-weight: 600; color: var(--green); font-size: 13.5px; }

/* ── Category grid ────────────────────────────────────────────── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.cat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 14px;
  text-align: center;
  transition: border-color .15s, box-shadow .15s, transform .15s;
}
.cat-card:hover { background: var(--green-bg); border-color: var(--green-light); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.cat-icon { font-size: 28px; margin-bottom: 12px; }
.cat-card strong { font-size: 13px; font-weight: 600; display: block; }

/* ── Product grid ─────────────────────────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.product-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.product-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: var(--g200); }
.product-media { position: relative; aspect-ratio: 1/1; background: var(--g100); overflow: hidden; }
.product-media img { width: 100%; height: 100%; object-fit: cover; }
.badge-discount {
  position: absolute; top: 10px; left: 10px;
  background: var(--green); color: #fff;
  font-size: 11.5px; font-weight: 700;
  padding: 4px 9px; border-radius: 100px;
}
.badge-tag {
  position: absolute; top: 10px; right: 10px;
  background: rgba(13,13,13,.85); color: #fff;
  font-size: 10.5px; font-weight: 600;
  padding: 4px 9px; border-radius: 100px;
  backdrop-filter: blur(4px);
}
.product-body { padding: 16px 16px 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product-cat { font-size: 11px; color: var(--text-light); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.product-name { font-size: 14.5px; font-weight: 600; line-height: 1.4; min-height: 40px; color: var(--text); }
.product-price { display: flex; align-items: baseline; gap: 8px; }
.price-now { font-size: 18px; font-weight: 700; color: var(--dark); font-family: var(--sans); }
.price-old { font-size: 12.5px; color: var(--g400); text-decoration: line-through; }
.product-actions { display: flex; gap: 8px; margin-top: 10px; }
.btn-add-cart {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  background: var(--green); color: #fff;
  font-weight: 600; font-size: 13px;
  padding: 10px; border-radius: 8px;
  border: none; cursor: pointer;
  transition: background .15s, transform .1s;
}
.btn-add-cart:hover { background: var(--green-light); }
.btn-add-cart:active { transform: scale(.97); }
.wa-quick-btn {
  width: 40px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--g100); border: 1px solid var(--border);
  border-radius: 8px; font-size: 15px;
  transition: background .15s;
}
.wa-quick-btn:hover { background: var(--g200); }

/* ── Cart ─────────────────────────────────────────────────────── */
.cart-fab { position: relative; border: none; }
.cart-badge {
  position: absolute; top: -4px; right: -4px;
  background: var(--green); color: #fff;
  font-size: 10px; font-weight: 700;
  min-width: 16px; height: 16px;
  border-radius: 100px;
  display: none; align-items: center; justify-content: center;
  padding: 0 4px;
  line-height: 1;
}
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.4);
  opacity: 0; pointer-events: none;
  transition: opacity .2s;
  z-index: 90;
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed; top: 0; right: 0;
  width: 380px; max-width: 92vw; height: 100%;
  background: #fff;
  box-shadow: var(--shadow-lg);
  transform: translateX(100%);
  transition: transform .25s ease;
  z-index: 91;
  display: flex; flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }
.cart-drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
}
.cart-close { background: none; border: none; font-size: 18px; cursor: pointer; color: var(--text-light); }
.cart-items { flex: 1; overflow-y: auto; padding: 4px 20px; }
.cart-item {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-size: 13.5px; font-weight: 600; margin-bottom: 4px; }
.cart-item-price { font-size: 12.5px; color: var(--text-light); }
.cart-item-qty {
  display: flex; align-items: center; gap: 8px;
  background: var(--g100);
  border-radius: 100px;
  padding: 4px 8px;
  flex-shrink: 0;
}
.qty-btn {
  width: 20px; height: 20px;
  border: none; background: #fff;
  border-radius: 50%;
  font-size: 13px; font-weight: 700;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
}
.cart-item-qty span { font-size: 12.5px; font-weight: 600; min-width: 14px; text-align: center; }
.cart-item-remove {
  background: none; border: none; cursor: pointer;
  font-size: 14px; color: var(--text-light);
  padding: 4px; flex-shrink: 0;
}
.cart-item-remove:hover { color: #e74c3c; }
.cart-drawer-footer { padding: 18px 20px 22px; border-top: 1px solid var(--border); }
.cart-subtotal-row {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
  font-size: 15px;
}
.cart-checkout-btn:disabled { opacity: .5; cursor: not-allowed; }

/* ── Flash sale ───────────────────────────────────────────────── */
.flash-sale {
  background: var(--green);
  color: #fff;
  border-radius: 18px;
  padding: 40px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.flash-sale h2 { font-family: var(--serif); font-weight: 400; font-size: 30px; margin: 0 0 6px; }
.flash-sale p { margin: 0; opacity: .9; font-size: 14px; }
.countdown { display: flex; gap: 10px; }
.countdown .box {
  background: rgba(0,0,0,.18);
  border-radius: 10px;
  padding: 10px 14px;
  text-align: center;
  min-width: 58px;
}
.countdown .box strong { display: block; font-size: 22px; font-weight: 700; }
.countdown .box span { font-size: 10px; opacity: .85; text-transform: uppercase; letter-spacing: .04em; }

/* ── Vendor section ───────────────────────────────────────────── */
.vendor-section {
  background: var(--dark);
  color: #fff;
  border-radius: 18px;
  padding: 48px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}
.vendor-section h2 { font-family: var(--serif); font-weight: 400; font-size: 30px; margin: 0 0 14px; letter-spacing: -0.2px; }
.vendor-section p { color: #a8a8a8; font-size: 14.5px; line-height: 1.7; margin: 0 0 22px; }
.vendor-perks { display: flex; flex-direction: column; gap: 11px; }
.vendor-perks div { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: #ccc; }
.vendor-perks div::before { content: "✓"; color: var(--green); font-weight: 700; }

.form-field { margin-bottom: 14px; }
.form-field label { display: block; font-size: 12px; font-weight: 600; margin-bottom: 6px; color: #ccc; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #2a2a2a;
  background: #161616;
  color: #fff;
  font-family: var(--sans);
  font-size: 14px;
  transition: border-color .15s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--green);
}
.form-field textarea { resize: vertical; min-height: 70px; }
.form-field input::placeholder, .form-field textarea::placeholder { color: #6f6f6f; }
.form-msg { font-size: 13px; margin-top: 10px; padding: 10px 12px; border-radius: 8px; display: none; }
.form-msg.ok { display: block; background: rgba(46,204,113,.12); color: #6adf94; }
.form-msg.err { display: block; background: rgba(231,76,60,.12); color: #ff8f84; }

/* ── Footer ───────────────────────────────────────────────────── */
footer.site-footer {
  background: var(--dark);
  color: #ccc;
  padding: 56px 0 22px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid #212121;
}
.footer-col h4 {
  color: #fff; font-size: 12px; font-weight: 700; margin: 0 0 16px;
  text-transform: uppercase; letter-spacing: .08em;
}
.footer-col a, .footer-col p { display: block; color: #999; font-size: 13.5px; margin-bottom: 10px; line-height: 1.5; }
.footer-col a:hover { color: var(--green); }
.footer-logo { font-family: var(--serif); font-weight: 400; font-size: 21px; color: #fff; margin-bottom: 12px; }
.footer-logo span { color: var(--green); }
.location-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.05); border: 1px solid #262626;
  border-radius: 100px; padding: 6px 12px;
  font-size: 11.5px; color: #ccc; margin-top: 8px;
}
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 20px; font-size: 12px; color: #6f6f6f; flex-wrap: wrap; gap: 10px;
}

/* ── Filter bar (shop page) ───────────────────────────────────── */
.filter-bar { display: flex; gap: 9px; flex-wrap: wrap; margin-bottom: 32px; }
.filter-chip {
  background: #fff; border: 1px solid var(--border);
  border-radius: 100px; padding: 9px 17px;
  font-size: 13px; font-weight: 500; cursor: pointer;
  color: var(--text);
  transition: all .15s;
}
.filter-chip:hover { border-color: var(--g400); }
.filter-chip.active { background: var(--dark); color: #fff; border-color: var(--dark); }

/* ── Page hero (inner pages) ──────────────────────────────────── */
.page-hero {
  background: var(--dark); color: #fff;
  padding: 56px 20px; text-align: center;
}
.page-hero h1 { font-family: var(--serif); font-weight: 400; font-size: 34px; margin: 0 0 10px; letter-spacing: -0.3px; }
.page-hero p { color: #a8a8a8; margin: 0; font-size: 14.5px; }

/* ── About page steps ─────────────────────────────────────────── */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; transition: box-shadow .15s; }
.step-card:hover { box-shadow: var(--shadow-sm); }
.step-num {
  width: 32px; height: 32px; border-radius: 9px;
  background: var(--green-bg); color: var(--green); font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; font-size: 14px;
}
.step-card h3 { font-size: 15.5px; font-weight: 600; margin: 0 0 8px; }
.step-card p { font-size: 13.5px; color: var(--text-light); line-height: 1.65; margin: 0; }

.empty-state { text-align: center; padding: 60px 20px; color: var(--text-light); }

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual img { height: 260px; }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .vendor-section { grid-template-columns: 1fr; padding: 34px 24px; }
  .steps-grid { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
}
@media (max-width: 640px) {
  nav.main-nav { display: none; }
  .nav-toggle { display: block; }
  .hero { padding: 48px 16px; }
  .cat-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .cat-card { padding: 18px 8px; }
  .cat-icon { font-size: 24px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .flash-sale { flex-direction: column; align-items: flex-start; padding: 28px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .section { padding: 44px 0; }
  .top-bar-phone, .top-bar-social { display: none; }
  .top-bar-inner { grid-template-columns: 1fr; }
  .top-bar-message { justify-self: center; font-size: 11px; }
}
