:root {
  --green: #1A6B4A;
  --green-dark: #115038;
  --blue: #DDF0FF;
  --orange: #F7A83B;
  --orange-soft: #FFF1DC;
  --ink: #17231D;
  --muted: #65736D;
  --line: #E6ECE9;
  --soft: #F6FAF8;
  --white: #FFFFFF;
  --shadow: 0 18px 45px rgba(17, 80, 56, 0.12);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Poppins", "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }

.announcement {
  background: var(--green);
  color: white;
  text-align: center;
  padding: 10px 16px;
  font-weight: 600;
  font-size: 14px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-main {
  max-width: 1220px;
  margin: 0 auto;
  padding: 16px 24px;
  display: grid;
  grid-template-columns: auto minmax(280px, 1fr) auto;
  align-items: center;
  gap: 22px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 24px;
  color: var(--green);
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--green);
  color: white;
}

.search {
  display: grid;
  grid-template-columns: 170px 1fr auto;
  border: 2px solid var(--green);
  border-radius: 12px;
  overflow: hidden;
  min-height: 48px;
}

.search select,
.search input {
  border: 0;
  padding: 0 14px;
  min-width: 0;
  outline: none;
  background: white;
}

.search select { border-right: 1px solid var(--line); color: var(--muted); }

.search button {
  border: 0;
  background: var(--green);
  color: white;
  padding: 0 22px;
  font-weight: 700;
  cursor: pointer;
}

.header-actions { display: flex; gap: 10px; }
.icon-btn {
  position: relative;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.cart-count {
  position: absolute;
  top: -7px;
  right: -7px;
  min-width: 20px;
  height: 20px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: var(--orange);
  color: #3a2500;
  font-size: 12px;
  font-weight: 800;
}

.category-nav {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px 14px;
  display: flex;
  gap: 10px;
  overflow-x: auto;
}

.category-nav a {
  white-space: nowrap;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 14px;
  font-weight: 600;
  font-size: 14px;
  background: white;
}

.category-nav .reseller-link {
  background: var(--orange-soft);
  border-color: #FFD28D;
}

.hero {
  max-width: 1220px;
  margin: 0 auto;
  padding: 58px 24px 34px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 46px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--green);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0;
  font-weight: 800;
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 16px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 { letter-spacing: 0; }

.trust-line {
  color: var(--muted);
  font-size: 20px;
  font-weight: 600;
}

.hero-actions, .trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  border: 0;
  border-radius: 12px;
  padding: 0 22px;
  font-weight: 800;
  cursor: pointer;
}

.btn.primary { background: var(--green); color: white; }
.btn.secondary { background: var(--orange-soft); color: #704000; }
.btn.compact { min-height: 42px; background: white; color: var(--green); border: 1px solid var(--line); }

.trust-pills span {
  padding: 9px 12px;
  border-radius: 999px;
  background: var(--soft);
  border: 1px solid var(--line);
  color: var(--green-dark);
  font-weight: 700;
  font-size: 13px;
}

.hero-visual {
  position: relative;
  min-height: 440px;
  display: grid;
  align-items: center;
}

.shelf-card {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: end;
  gap: 16px;
  min-height: 330px;
  padding: 42px 28px 34px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(221, 240, 255, 0.75), rgba(255,255,255,0)),
    radial-gradient(circle at 80% 20%, rgba(247, 168, 59, 0.18), transparent 34%),
    var(--white);
  box-shadow: var(--shadow);
}

.shelf-card::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  height: 12px;
  border-radius: 999px;
  background: rgba(26, 107, 74, 0.16);
}

.pack {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 18px 8px;
  color: white;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  box-shadow: 0 15px 30px rgba(23, 35, 29, 0.14);
}

.pack.bottle { height: 230px; border-radius: 24px 24px 12px 12px; }
.pack.box { height: 190px; border-radius: 12px; }
.pack.pouch { height: 170px; border-radius: 38px 38px 12px 12px; }
.pack.blue { background: linear-gradient(160deg, #4198DB, #174C78); }
.pack.orange { background: linear-gradient(160deg, #F7A83B, #B65317); }
.pack.green { background: linear-gradient(160deg, #1A6B4A, #58B98F); }
.pack.mint { background: linear-gradient(160deg, #55BBA7, #12604F); }

.pack.bottle::before {
  content: "";
  position: absolute;
  top: -28px;
  width: 42px;
  height: 34px;
  border-radius: 10px 10px 4px 4px;
  background: inherit;
}

.stats {
  position: absolute;
  right: 22px;
  bottom: 0;
  display: grid;
  grid-template-columns: auto auto;
  gap: 4px 12px;
  padding: 18px;
  border-radius: 14px;
  background: white;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.stats strong { color: var(--green); font-size: 22px; }
.stats span { color: var(--muted); font-size: 13px; align-self: center; }

.section {
  max-width: 1220px;
  margin: 0 auto;
  padding: 54px 24px;
}

.section-head {
  max-width: 720px;
  margin-bottom: 28px;
}

.section-head.row {
  max-width: none;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
}

.section-head.row a { color: var(--green); font-weight: 800; }

.simple-header .header-main {
  grid-template-columns: auto auto;
  justify-content: space-between;
}

.nav-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-weight: 800;
  color: var(--green);
  background: white;
}

.page-shell {
  max-width: 1220px;
  margin: 0 auto;
  padding: 54px 24px 72px;
}

.page-hero,
.auth-copy {
  max-width: 760px;
  margin-bottom: 30px;
}

.page-hero h1,
.auth-copy h1 {
  font-size: clamp(38px, 6vw, 64px);
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 22px;
  align-items: start;
}

.checkout-form {
  display: grid;
  gap: 18px;
}

.form-panel,
.order-summary,
.auth-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  box-shadow: 0 12px 35px rgba(17, 80, 56, 0.08);
}

.form-panel {
  position: relative;
  padding: 24px;
}

.step-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--green);
  font-weight: 800;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.form-grid .wide {
  grid-column: 1 / -1;
}

.form-panel label,
.auth-card label {
  display: block;
  color: var(--muted);
  font-weight: 700;
}

.form-panel input,
.form-panel select,
.form-panel textarea,
.auth-card input,
.auth-card select {
  width: 100%;
  margin-top: 8px;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0 14px;
  outline-color: var(--green);
  background: white;
}

.form-panel textarea {
  min-height: 96px;
  padding-top: 12px;
  resize: vertical;
}

.payment-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.payment-options label {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--soft);
  color: var(--ink);
}

.order-summary {
  position: sticky;
  top: 138px;
  padding: 24px;
}

.summary-line,
.summary-total {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.summary-line.savings strong {
  color: var(--green);
}

.summary-total {
  border-bottom: 0;
  font-size: 20px;
  font-weight: 800;
}

.auth-page {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 34px;
  align-items: center;
}

.auth-copy {
  margin-bottom: 0;
}

.auth-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.auth-benefits span {
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--soft);
  color: var(--green);
  font-weight: 800;
}

.auth-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.auth-card {
  padding: 24px;
}

.auth-card .btn {
  width: 100%;
  margin-top: 14px;
}

.auth-card a {
  display: inline-block;
  margin-top: 14px;
  color: var(--green);
  font-weight: 800;
}

.highlight-card {
  border: 2px solid var(--green);
}

.category-grid,
.product-grid,
.benefit-grid,
.review-grid {
  display: grid;
  gap: 18px;
}

.category-grid { grid-template-columns: repeat(6, 1fr); }
.product-grid, .benefit-grid { grid-template-columns: repeat(4, 1fr); }
.review-grid { grid-template-columns: repeat(3, 1fr); }

.category-grid article,
.product-card,
.benefit-grid article,
.review-grid article,
.pricing-grid article,
.signup-form {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
}

.category-grid article {
  padding: 24px 18px;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.category-grid article:hover {
  border-color: var(--green);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.category-grid span { font-size: 30px; }
.category-grid h3 { margin: 12px 0 4px; }
.category-grid p, .muted { color: var(--muted); }

.reorder-bar {
  max-width: 1172px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  border: 1px solid #BEE5D3;
  border-radius: 14px;
  background: #F2FBF6;
}

.reorder-bar span { color: var(--muted); margin-left: 8px; }

.product-card {
  position: relative;
  padding: 16px;
  display: flex;
  flex-direction: column;
  min-height: 410px;
}

.discount {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--orange);
  color: #3a2500;
  font-size: 12px;
  font-weight: 800;
}

.product-art {
  height: 175px;
  margin-bottom: 18px;
  border-radius: 12px;
  background: var(--soft);
  position: relative;
  overflow: hidden;
}

.product-art::before,
.product-art::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.soap-art::before {
  width: 118px; height: 78px; bottom: 42px; border-radius: 28px;
  background: linear-gradient(135deg, #F8D5B0, #F09C71);
  box-shadow: -22px 18px 0 #F5C79C;
}

.shampoo-art::before {
  width: 82px; height: 132px; bottom: 20px; border-radius: 24px 24px 12px 12px;
  background: linear-gradient(160deg, #4DA0E0, #174C78);
}

.shampoo-art::after {
  width: 38px; height: 26px; top: 15px; border-radius: 8px;
  background: #174C78;
}

.detergent-art::before {
  width: 130px; height: 120px; bottom: 22px; border-radius: 16px;
  background: linear-gradient(160deg, #F7A83B, #D85A21);
}

.dishwash-art::before {
  width: 88px; height: 140px; bottom: 18px; border-radius: 36px 36px 14px 14px;
  background: linear-gradient(160deg, #1A6B4A, #89CF4D);
}

.product-card h3 { min-height: 54px; margin-bottom: 8px; }
.product-card strong { color: var(--green); font-size: 20px; }
.product-card del { color: var(--muted); margin-left: 8px; }
.moq, .saving {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 800;
}
.moq { background: var(--blue); color: #16445E; }
.saving { margin: 8px 0 16px; background: #EAF7EF; color: var(--green); }
.add-cart {
  margin-top: auto;
  min-height: 46px;
  border: 0;
  border-radius: 12px;
  color: white;
  background: var(--green);
  font-weight: 800;
  cursor: pointer;
}

.split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 32px;
  align-items: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.pricing-grid article {
  position: relative;
  padding: 24px;
}

.pricing-grid .popular {
  border: 2px solid var(--green);
  box-shadow: var(--shadow);
}

.pricing-grid b {
  position: absolute;
  top: -13px;
  left: 20px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--green);
  color: white;
  font-size: 12px;
}

.pricing-grid strong { display: block; font-size: 26px; }
.pricing-grid p { color: var(--green); font-weight: 800; font-size: 22px; margin-bottom: 6px; }
.pricing-grid span { color: #A85D00; font-weight: 800; }
.pricing-grid small { display: block; color: var(--muted); margin-top: 16px; }

.calculator {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 1.2fr;
  gap: 16px;
  padding: 22px;
  border-radius: 14px;
  background: var(--soft);
  border: 1px solid var(--line);
}

.calculator label { color: var(--muted); font-weight: 700; }
.calculator input, .signup-form input, .signup-form select {
  width: 100%;
  margin-top: 8px;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0 14px;
  outline-color: var(--green);
  background: white;
}

.calc-output {
  padding: 18px;
  border-radius: 12px;
  background: white;
}
.calc-output p { display: flex; justify-content: space-between; gap: 12px; margin-bottom: 10px; }
.calc-output strong { color: var(--green); }

.reseller {
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 34px;
  align-items: center;
  background: linear-gradient(180deg, #F7FBF9, white);
}

.reseller-copy ul {
  padding-left: 20px;
  color: var(--muted);
  font-weight: 600;
}

.reseller-copy li { margin-bottom: 10px; }
.profit-note {
  display: inline-flex;
  padding: 14px 16px;
  border-radius: 12px;
  background: var(--orange-soft);
  color: #704000;
  font-weight: 800;
}

.signup-form {
  padding: 24px;
  box-shadow: var(--shadow);
}

.signup-form .btn { width: 100%; margin-top: 14px; }

.benefit-grid article,
.review-grid article {
  padding: 22px;
}

.benefit-grid h3 { margin: 12px 0 8px; }
.benefit-grid p, .review-grid p, .review-grid small { color: var(--muted); }
.review-grid span { color: #E1961A; letter-spacing: 0; }
.review-grid strong, .review-grid small { display: block; }

.faq-list {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}

.faq-list button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: white;
  text-align: left;
  font-weight: 800;
  cursor: pointer;
}

.faq-list p {
  display: none;
  margin: 0;
  padding: 0 20px 18px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}

.faq-list button.open + p { display: block; }

footer {
  background: #10271D;
  color: white;
}

.trust-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  padding: 15px 24px;
  background: var(--green);
  font-weight: 700;
}

.footer-grid {
  max-width: 1220px;
  margin: 0 auto;
  padding: 46px 24px;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 28px;
}

.footer-grid p, .footer-grid a, .footer-bottom { color: rgba(255,255,255,0.72); }
.footer-grid a { display: block; margin: 8px 0; }
.footer-bottom {
  max-width: 1220px;
  margin: 0 auto;
  padding: 16px 24px 28px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 13px;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 100vw);
  height: 100dvh;
  background: white;
  z-index: 40;
  transform: translateX(100%);
  transition: transform 180ms ease;
  display: flex;
  flex-direction: column;
  box-shadow: -20px 0 45px rgba(23, 35, 29, 0.18);
}

.cart-sidebar.open { transform: translateX(0); }
.cart-head, .cart-summary { padding: 20px; border-bottom: 1px solid var(--line); }
.cart-head { display: flex; align-items: center; justify-content: space-between; }
.cart-close {
  width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 10px; background: white; cursor: pointer;
  font-size: 24px;
}
.cart-items { flex: 1; overflow: auto; padding: 12px 20px; }
.cart-item { display: grid; grid-template-columns: 1fr auto; gap: 8px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.cart-item small { color: var(--muted); }
.cart-summary { border-top: 1px solid var(--line); border-bottom: 0; }
.cart-summary p { display: flex; justify-content: space-between; }
.cart-summary .btn { width: 100%; }

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 20, 15, 0.35);
  z-index: 35;
  display: none;
}
.overlay.open { display: block; }

.whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 25;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #25D366;
  color: white;
  font-size: 26px;
  box-shadow: var(--shadow);
}

.mobile-cart { display: none; }

@media (max-width: 980px) {
  .header-main { grid-template-columns: 1fr auto; }
  .search { grid-column: 1 / -1; order: 3; }
  .hero, .split, .reseller { grid-template-columns: 1fr; }
  .checkout-layout, .auth-page { grid-template-columns: 1fr; }
  .category-grid, .product-grid, .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .review-grid, .pricing-grid, .calculator, .footer-grid { grid-template-columns: 1fr 1fr; }
  .calc-output { grid-column: 1 / -1; }
  .order-summary { position: static; }
}

@media (max-width: 640px) {
  body { padding-bottom: 88px; }
  .announcement { font-size: 12px; padding: 8px 12px; }
  .header-main { padding: 14px 16px; gap: 14px; }
  .logo { font-size: 20px; }
  .logo-mark { width: 34px; height: 34px; }
  .header-actions { gap: 7px; }
  .icon-btn { width: 40px; height: 40px; border-radius: 10px; }
  .search { grid-template-columns: 1fr; border-width: 1px; }
  .search select { border-right: 0; border-bottom: 1px solid var(--line); height: 44px; }
  .search input { height: 46px; }
  .search button { height: 46px; }
  .category-nav {
    padding: 0 16px 12px;
    gap: 8px;
    scrollbar-width: none;
  }
  .category-nav::-webkit-scrollbar { display: none; }
  .category-nav a { padding: 8px 12px; font-size: 13px; }
  .hero { padding: 38px 16px 28px; gap: 26px; }
  h1 { font-size: 38px; }
  h2 { font-size: 28px; }
  .trust-line { font-size: 16px; }
  .hero-actions .btn { width: 100%; }
  .hero-visual { min-height: 330px; }
  .shelf-card { grid-template-columns: repeat(2, 1fr); min-height: 310px; padding: 42px 22px 30px; }
  .pack.bottle, .pack.box, .pack.pouch { height: 128px; }
  .stats { position: static; margin-top: 14px; }
  .section, .page-shell { padding: 40px 16px; }
  .section-head.row { align-items: start; flex-direction: column; }
  .reorder-bar { margin: 0 16px; align-items: start; flex-direction: column; }
  .reorder-bar span { display: block; margin: 4px 0 0; }
  .category-grid, .product-grid, .benefit-grid, .review-grid, .pricing-grid, .calculator, .footer-grid, .form-grid, .payment-options, .auth-grid { grid-template-columns: 1fr; }
  .category-grid, .product-grid, .benefit-grid, .review-grid { gap: 14px; }
  .category-grid article, .benefit-grid article, .review-grid article, .auth-card, .form-panel, .order-summary { border-radius: 12px; }
  .product-card { min-height: auto; padding: 14px; }
  .product-art { height: 150px; }
  .product-card h3 { min-height: auto; }
  .calculator { padding: 16px; }
  .calc-output p { align-items: center; }
  .reseller { padding-left: 16px; padding-right: 16px; }
  .signup-form { padding: 18px; }
  .simple-header .header-main {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .simple-header .header-actions {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .nav-link { justify-content: center; }
  .page-hero h1, .auth-copy h1 { font-size: 36px; }
  .checkout-form { gap: 14px; }
  .form-panel, .order-summary, .auth-card { padding: 18px; }
  .step-badge { top: 18px; right: 18px; }
  .auth-page { gap: 24px; }
  .mobile-cart {
    display: inline-flex;
    position: fixed;
    left: 16px;
    right: 88px;
    bottom: 22px;
    z-index: 24;
    min-height: 56px;
    justify-content: center;
    align-items: center;
    border: 0;
    border-radius: 12px;
    background: var(--green);
    color: white;
    font-weight: 800;
  }
  .mobile-cart .cart-count { position: static; margin-left: 10px; }
}
