:root {
  --of-green: #2a8b23;
  --of-green-dark: #0d6b06;
  --of-green-mid: #32b629;
  --of-green-soft: #ebf5ea;
  --of-green-muted: #c3cdc3;
  --of-orange: #fb6b31;
  --of-orange-soft: #fff4d3;
  --of-ink: #1a1f16;
  --of-mist: #f4f7f2;
  --of-sand: #f7f3ea;
  --bg: #f7f3ea;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--of-ink);
  background: var(--bg);
  font-family: "Manrope", system-ui, sans-serif;
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
::selection { background: rgba(42, 139, 35, 0.2); }

.font-display { font-family: "Unbounded", system-ui, sans-serif; }
.container { width: min(1120px, calc(100% - 2rem)); margin-inline: auto; }

.bg-leaf {
  background:
    radial-gradient(circle at 20% 20%, rgba(42,139,35,0.12), transparent 40%),
    radial-gradient(circle at 80% 0%, rgba(251,107,49,0.12), transparent 35%),
    linear-gradient(160deg, #f7f3ea 0%, #ebf5ea 45%, #f4f7f2 100%);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  font-weight: 600;
  padding: 0.7rem 1.2rem;
  transition: 0.15s ease;
  text-decoration: none;
}
.btn:active { transform: scale(0.98); }
.btn-green { background: var(--of-green); color: #fff; box-shadow: 0 18px 50px -28px rgba(13,107,6,.35); }
.btn-green:hover { background: var(--of-green-dark); }
.btn-orange { background: var(--of-orange); color: #fff; }
.btn-orange:hover { filter: brightness(0.95); }
.btn-outline {
  background: transparent;
  color: var(--of-green-dark);
  border: 2px solid var(--of-green);
}
.btn-outline:hover { background: var(--of-green-soft); }
.btn-ghost { background: transparent; color: var(--of-ink); }
.btn-lg { padding: 0.9rem 1.5rem; font-size: 1rem; }
.btn-xl { padding: 1rem 1.7rem; font-size: 1.05rem; }
.btn-sm { padding: 0.45rem 0.8rem; font-size: 0.8rem; }
.btn-dark { background: var(--of-ink); color: #fff; }

.topbar {
  background: var(--of-ink);
  color: #fff;
  font-size: 0.85rem;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 0;
}
.mode-switch {
  display: flex;
  gap: 0.25rem;
  background: rgba(255,255,255,0.1);
  border-radius: 999px;
  padding: 0.2rem;
}
.mode-switch a {
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  color: rgba(255,255,255,0.8);
}
.mode-switch a.active-b2b { background: var(--of-green); color: #fff; }
.mode-switch a.active-b2c { background: var(--of-orange); color: #fff; }

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(195,205,195,0.6);
  background: rgba(247,243,234,0.9);
  backdrop-filter: blur(10px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
}
.logo { width: 11rem; height: 3rem; object-fit: contain; object-position: left; }
.nav { display: none; gap: 1.5rem; }
.nav a { font-size: 0.95rem; font-weight: 500; color: rgba(26,31,22,0.8); }
.nav a:hover, .nav a.active { color: var(--of-green); }
.header-actions { display: flex; align-items: center; gap: 0.5rem; }
.cart-link { position: relative; padding: 0.4rem; }
.cart-badge {
  position: absolute;
  top: -0.2rem; right: -0.2rem;
  min-width: 1.2rem; height: 1.2rem;
  border-radius: 999px;
  background: var(--of-orange);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  padding: 0 0.25rem;
}

.hero {
  min-height: 88vh;
  display: grid;
  align-items: center;
  gap: 2.5rem;
  padding: 3rem 0 2rem;
}
@media (min-width: 960px) {
  .hero { grid-template-columns: 1.05fr 0.95fr; }
  .nav { display: flex; }
}
.eyebrow {
  font-family: "Unbounded", system-ui, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--of-green-dark);
}
.hero h1 {
  font-family: "Unbounded", system-ui, sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.05;
  margin: 0.75rem 0;
  font-weight: 600;
}
.hero h1 .accent { color: var(--of-green); }
.lead { color: rgba(26,31,22,0.75); font-size: 1.05rem; max-width: 36rem; }
.cta-row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.75rem; }

.hero-visual {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 0.75rem;
  position: relative;
}
.hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  background: rgba(255,255,255,0.55);
  box-shadow: 0 18px 50px -28px rgba(13,107,6,.35);
  animation: float-y 5s ease-in-out infinite;
}
.hero-card img { width: 100%; height: 100%; object-fit: cover; }
.hero-card.c1 { width: 34%; height: 340px; }
.hero-card.c2 { width: 42%; height: 380px; animation-delay: 0.6s; }
.hero-card.c3 { width: 28%; height: 300px; animation-delay: 1.1s; display: none; }
@media (min-width: 640px) {
  .hero-card.c1 { height: 420px; }
  .hero-card.c2 { height: 480px; }
  .hero-card.c3 { display: block; height: 380px; }
}

@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.trust {
  border-block: 1px solid rgba(195,205,195,0.5);
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(8px);
}
.trust-grid {
  display: grid;
  gap: 1.5rem;
  padding: 2rem 0;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 900px) {
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
}
.trust-value {
  font-family: "Unbounded", system-ui, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--of-green);
}
.trust-label { color: rgba(26,31,22,0.7); font-size: 0.9rem; }

.section { padding: 4rem 0; }
.section h2 {
  font-family: "Unbounded", system-ui, sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0.6rem 0;
  font-weight: 600;
}
.section-head { max-width: 40rem; margin-bottom: 2rem; }
.muted { color: rgba(26,31,22,0.7); }

.b2b-panel {
  border-radius: 2rem;
  background: var(--of-green-dark);
  color: #fff;
  padding: 2rem;
  display: grid;
  gap: 2rem;
}
@media (min-width: 900px) {
  .b2b-panel { grid-template-columns: 1fr 1.1fr; padding: 3rem; }
}
.b2b-grid { display: grid; gap: 1rem; }
@media (min-width: 640px) { .b2b-grid { grid-template-columns: 1fr 1fr; } }
.b2b-card {
  background: rgba(255,255,255,0.1);
  border-radius: 1rem;
  padding: 1.2rem;
}
.b2b-card h3 { margin: 0.4rem 0; font-family: "Unbounded", system-ui, sans-serif; font-size: 1.1rem; }
.b2b-card p { margin: 0; color: rgba(255,255,255,0.7); font-size: 0.9rem; }

.segments {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 900px) { .segments { grid-template-columns: repeat(3, 1fr); } }
.segment-card {
  position: relative;
  min-height: 320px;
  border-radius: 1.75rem;
  overflow: hidden;
  color: #fff;
}
.segment-card img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: 0.7s;
}
.segment-card:hover img { transform: scale(1.05); }
.segment-card .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,31,22,0.9), rgba(26,31,22,0.35), transparent);
}
.segment-card .content { position: absolute; inset-inline: 0; bottom: 0; padding: 1.5rem; }
.segment-card .tag { font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--of-orange); }

.brands {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 2rem;
  margin-top: 3rem;
}
.brands img { height: 3rem; width: 7rem; object-fit: contain; filter: grayscale(1); opacity: 0.9; }
.brands img:hover { filter: none; }

.product-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 900px) { .product-grid { grid-template-columns: repeat(4, 1fr); } }
.product-card {
  background: #f7f3ea;
  border-radius: 1.4rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
}
.product-card .thumb {
  aspect-ratio: 3/4;
  max-width: 220px;
  margin: 0 auto;
  width: 100%;
}
.product-card .thumb img { width: 100%; height: 100%; object-fit: contain; }
.product-card .brand { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--of-green); }
.product-card .name { min-height: 2.75rem; font-weight: 500; margin: 0.3rem 0; }
.product-card .price { font-family: "Unbounded", system-ui, sans-serif; font-size: 1.2rem; font-weight: 600; }
.product-meta { font-size: 0.75rem; color: rgba(26,31,22,0.55); }

.filters { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1.5rem 0; }
.chip {
  border-radius: 999px;
  padding: 0.5rem 1rem;
  background: #fff;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--of-ink);
  text-decoration: none;
}
.chip.active { background: var(--of-green); color: #fff; }
.view-toggle {
  display: inline-flex;
  background: #fff;
  border-radius: 999px;
  padding: 0.2rem;
  gap: 0.2rem;
}
.view-toggle a {
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
  font-size: 0.875rem;
}
.view-toggle a.active-grid { background: var(--of-green); color: #fff; }
.view-toggle a.active-blank { background: var(--of-orange); color: #fff; }

.blank-wrap {
  background: #fff;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 18px 50px -28px rgba(13,107,6,.35);
}
.blank-table { width: 100%; border-collapse: collapse; min-width: 960px; font-size: 0.875rem; }
.blank-table th {
  background: var(--of-green-dark);
  color: #fff;
  text-align: left;
  padding: 0.75rem;
  font-weight: 500;
}
.blank-table td {
  padding: 0.55rem 0.75rem;
  border-top: 1px solid rgba(195,205,195,0.4);
  vertical-align: middle;
}
.blank-table tr:nth-child(even) { background: rgba(244,247,242,0.5); }
.blank-table img { width: 48px; height: 48px; object-fit: contain; }
.blank-actions {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 0.75rem;
  padding: 1rem; background: var(--of-mist); border-top: 1px solid rgba(195,205,195,0.4);
}
.input {
  height: 2.75rem;
  border: 1px solid var(--of-green-muted);
  border-radius: 0.5rem;
  padding: 0 0.75rem;
  background: #fff;
  width: 100%;
}
.input.sm { height: 2.25rem; width: 5.5rem; }

.product-layout {
  display: grid;
  gap: 2.5rem;
  padding: 3rem 0;
}
@media (min-width: 900px) { .product-layout { grid-template-columns: 1fr 1fr; } }
.product-media {
  background: #fff;
  border-radius: 2rem;
  aspect-ratio: 4/5;
  display: grid;
  place-items: center;
  padding: 2rem;
}
.product-media img { max-height: 100%; object-fit: contain; }
.price-box { background: #fff; border-radius: 1rem; padding: 1.25rem; margin-top: 1.25rem; }
.tier {
  display: flex; justify-content: space-between;
  background: var(--of-mist); border-radius: 0.6rem; padding: 0.55rem 0.75rem; margin-top: 0.4rem; font-size: 0.9rem;
}
.spec-grid {
  display: grid; gap: 0.75rem; margin-top: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .spec-grid { grid-template-columns: 1fr 1fr; } }
.spec-item { background: rgba(255,255,255,0.8); border-radius: 0.85rem; padding: 0.85rem 1rem; }
.spec-item .k { font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(26,31,22,0.45); }

.panel {
  background: #fff;
  border-radius: 1.75rem;
  padding: 1.5rem;
}
.messages { list-style: none; padding: 0; margin: 1rem auto; width: min(1120px, calc(100% - 2rem)); }
.messages li {
  background: var(--of-green-soft);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  margin-bottom: 0.5rem;
}

.footer {
  margin-top: 4rem;
  background: var(--of-ink);
  color: #fff;
}
.footer-grid {
  display: grid; gap: 2rem; padding: 3rem 0;
}
@media (min-width: 800px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer h3 {
  font-family: "Unbounded", system-ui, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--of-orange);
}
.footer a { color: rgba(255,255,255,0.8); }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.5rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  padding: 1rem;
}
.logo-invert { filter: brightness(0) invert(1); }

.cart-line {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
  background: #fff; border-radius: 1rem; padding: 1rem; margin-bottom: 0.75rem;
}
.cart-line img { width: 64px; height: 80px; object-fit: contain; }
.invoice-box {
  white-space: pre-wrap;
  background: #fff;
  border-radius: 1rem;
  padding: 1.25rem;
  font-size: 0.75rem;
  overflow-x: auto;
}

.mobile-nav-btn { display: inline-flex; background: none; border: none; cursor: pointer; }
@media (min-width: 960px) { .mobile-nav-btn { display: none; } }
.mobile-nav { display: none; flex-direction: column; gap: 0.75rem; padding: 1rem 0 1.25rem; border-top: 1px solid rgba(195,205,195,0.5); }
.mobile-nav.open { display: flex; }

.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.75rem; }
.check-list li { display: flex; gap: 0.75rem; align-items: start; }
.check { color: var(--of-green); font-weight: 700; }
