/* ─── Fonts ─────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ─── Variables ─────────────────────────────────────────────── */
:root {
  /* Fresh green palette */
  --mint:      #f0faf2;
  --sage:      #e0f2e5;
  --green-100: #c3e6cc;
  --green-200: #93d1a3;
  --green-300: #5bb874;
  --green-400: #3aa355;
  --green-500: #2d9247;
  --green-600: #237838;
  --green-700: #1a5e2b;
  --green-800: #124020;
  --green-900: #0b2a15;

  /* Neutrals — slightly warm white */
  --white:     #ffffff;
  --off-white: #fafcf8;
  --gray-50:   #f6f9f4;
  --gray-100:  #edf3ea;
  --gray-200:  #d9e8d3;
  --gray-300:  #b8ceae;
  --gray-400:  #8aaa7e;
  --gray-500:  #627a57;
  --gray-600:  #455c3b;
  --gray-700:  #2e3f27;
  --gray-900:  #1a2416;

  /* Accent — warm yellow/lime for freshness */
  --lime:      #e8f5e1;
  --lime-dark: #a3c97a;
  --yellow:    #fef9ec;
  --amber:     #f59e0b;

  /* Shadows — very soft */
  --shadow-xs: 0 1px 2px rgba(30,60,20,0.06);
  --shadow-sm: 0 2px 8px rgba(30,60,20,0.08);
  --shadow-md: 0 6px 20px rgba(30,60,20,0.10);
  --shadow-lg: 0 16px 40px rgba(30,60,20,0.12);
  --shadow-xl: 0 24px 60px rgba(30,60,20,0.14);

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--off-white);
  color: var(--gray-700);
  line-height: 1.6;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; font: inherit; }
input, textarea, select { font: inherit; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ─── Header ────────────────────────────────────────────────── */
.header {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-100);
  position: sticky;
  top: 0;
  z-index: 100;
  overflow: visible;
}

.header-inner {
  display: flex;
  align-items: center;
  height: 68px;
  gap: 8px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 800;
  font-size: 20px;
  color: var(--gray-900);
  flex-shrink: 0;
  letter-spacing: -0.3px;
}

.logo-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, #4fbe6b, #2d9247);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(45,146,71,0.35);
}

.logo em { font-style: normal; color: var(--green-500); }

.nav {
  display: flex;
  gap: 2px;
  flex: 1;
  margin-left: 12px;
}

.nav a {
  padding: 7px 13px;
  border-radius: 8px;
  color: var(--gray-500);
  font-weight: 500;
  font-size: 14px;
  transition: var(--transition);
  white-space: nowrap;
}

.nav a:hover { color: var(--gray-700); background: var(--gray-50); }
.nav a.active { color: var(--green-600); background: var(--mint); font-weight: 600; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-left: auto;
}

.phone-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: 9px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  transition: var(--transition);
  white-space: nowrap;
}
.phone-btn:hover { border-color: var(--green-300); background: var(--mint); }

.wa-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  background: #25d366;
  color: white;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 700;
  transition: var(--transition);
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(37,211,102,0.3);
}
.wa-btn:hover { background: #20bb5a; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(37,211,102,0.35); }

.burger {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  flex-direction: column;
  gap: 4px;
  margin-left: auto;
}
.burger span {
  display: block; width: 22px; height: 2px;
  background: var(--gray-600); border-radius: 2px; transition: var(--transition);
}

/* ─── Hero ──────────────────────────────────────────────────── */
.hero {
  background: var(--white);
  padding: 80px 0 0;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(163,201,122,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(93,184,116,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 60px;
  align-items: center;
  padding-bottom: 80px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--mint);
  border: 1px solid var(--green-100);
  color: var(--green-600);
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: 22px;
}

.hero h1 {
  font-size: 52px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--gray-900);
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: normal;
  color: var(--green-500);
}

.hero-desc {
  font-size: 17px;
  color: var(--gray-500);
  line-height: 1.75;
  max-width: 460px;
  margin-bottom: 36px;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--green-500);
  color: white;
  padding: 14px 26px;
  border-radius: 11px;
  font-weight: 700;
  font-size: 15px;
  border: none;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(45,146,71,0.35);
}
.btn-hero-primary:hover { background: var(--green-600); transform: translateY(-1px); box-shadow: 0 6px 22px rgba(45,146,71,0.4); }

.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: var(--gray-600);
  padding: 13px 22px;
  border-radius: 11px;
  font-weight: 600;
  font-size: 15px;
  border: 1.5px solid var(--gray-200);
  transition: var(--transition);
}
.btn-hero-ghost:hover { border-color: var(--green-300); color: var(--green-600); background: var(--mint); }

.hero-trust {
  display: flex;
  gap: 28px;
}

.hero-trust-item {
  display: flex;
  flex-direction: column;
}

.hero-trust-num {
  font-size: 26px;
  font-weight: 900;
  color: var(--gray-900);
  letter-spacing: -0.5px;
  line-height: 1;
}

.hero-trust-label {
  font-size: 12px;
  color: var(--gray-400);
  margin-top: 3px;
  font-weight: 500;
}

/* Hero visual */
.hero-visual {
  position: relative;
  height: 460px;
}

.hero-produce-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  height: 100%;
}

.produce-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
  overflow: hidden;
  position: relative;
}

.produce-card:nth-child(1) { background: linear-gradient(145deg, #f8fff8, #eef9ee); }
.produce-card:nth-child(2) { background: linear-gradient(145deg, #fffef5, #fef9e0); margin-top: 28px; }
.produce-card:nth-child(3) { background: linear-gradient(145deg, #f5fcff, #e8f4fd); margin-top: -28px; }
.produce-card:nth-child(4) { background: linear-gradient(145deg, #fff8f5, #feeee8); }

.produce-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.produce-emoji { font-size: 48px; line-height: 1; margin-bottom: 12px; }
.produce-name { font-weight: 700; font-size: 14px; color: var(--gray-700); }
.produce-sub { font-size: 12px; color: var(--gray-400); margin-top: 3px; }
.produce-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  margin-top: 10px;
  align-self: flex-start;
}
.badge-fresh { background: var(--mint); color: var(--green-600); }
.badge-top   { background: #fef9ec; color: #b45309; }
.badge-new   { background: #eff6ff; color: #1d4ed8; }
.badge-sale  { background: #fff0f0; color: #dc2626; }

/* ─── Features bar ──────────────────────────────────────────── */
.features-bar {
  background: var(--green-700);
  padding: 0;
}

.features-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 24px;
  color: rgba(255,255,255,0.9);
  border-right: 1px solid rgba(255,255,255,0.08);
}
.feature-item:last-child { border-right: none; }

.fi-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.fi-title { font-weight: 700; font-size: 13px; margin-bottom: 2px; }
.fi-sub { font-size: 12px; opacity: 0.65; }

/* ─── Section ───────────────────────────────────────────────── */
.section { padding: 80px 0; }
.section-alt { background: var(--white); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--mint);
  color: var(--green-600);
  border: 1px solid var(--green-100);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 14px;
}

.section-title {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -0.8px;
  color: var(--gray-900);
  line-height: 1.15;
  margin-bottom: 12px;
}

.section-sub {
  font-size: 16px;
  color: var(--gray-400);
  max-width: 500px;
}

.section-header { margin-bottom: 48px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

/* ─── Categories ────────────────────────────────────────────── */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.cat-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px 20px 24px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  display: block;
  position: relative;
  overflow: hidden;
}

.cat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--mint), transparent);
  opacity: 0;
  transition: var(--transition);
}

.cat-card:hover { border-color: var(--green-200); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.cat-card:hover::before { opacity: 1; }

.cat-emoji {
  font-size: 46px;
  line-height: 1;
  margin-bottom: 14px;
  position: relative;
}

.cat-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--gray-700);
  margin-bottom: 5px;
  position: relative;
}

.cat-desc {
  font-size: 12px;
  color: var(--gray-400);
  line-height: 1.5;
  position: relative;
}

/* ─── Products ──────────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover { border-color: var(--green-200); box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.product-img {
  aspect-ratio: 4/3;
  background: var(--gray-50);
  position: relative;
  overflow: hidden;
}

.product-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img img { transform: scale(1.06); }

.product-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 56px;
  background: linear-gradient(135deg, var(--mint) 0%, var(--sage) 100%);
}

.product-tag {
  position: absolute;
  top: 10px; left: 10px;
  padding: 3px 9px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.tag-top { background: var(--amber); color: white; }
.tag-new { background: var(--green-500); color: white; }

.product-body {
  padding: 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-cat-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--green-500);
  letter-spacing: 0.4px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.product-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--gray-800, #1e3a1a);
  margin-bottom: 6px;
  line-height: 1.35;
}

.product-desc {
  font-size: 13px;
  color: var(--gray-400);
  line-height: 1.55;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 14px;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--gray-100);
}

.product-price {
  font-size: 19px;
  font-weight: 900;
  color: var(--green-600);
  letter-spacing: -0.3px;
}
.product-price small {
  font-size: 12px;
  font-weight: 400;
  color: var(--gray-400);
  letter-spacing: 0;
}

.stock-pill {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 6px;
}
.stock-in  { background: var(--mint); color: var(--green-600); }
.stock-out { background: #fff0f0; color: #dc2626; }

/* ─── Page hero ─────────────────────────────────────────────── */
.page-hero {
  background: var(--white);
  padding: 52px 0 48px;
  border-bottom: 1px solid var(--gray-100);
}

.page-hero h1 {
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -0.8px;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.page-hero p {
  font-size: 16px;
  color: var(--gray-400);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--gray-400);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--green-500); }
.breadcrumb a:hover { text-decoration: underline; }

/* ─── Catalog layout ────────────────────────────────────────── */
.catalog-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}

/* Category chips */
.cat-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.cat-chip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--mint), transparent);
  opacity: 0;
  transition: var(--transition);
}

.cat-chip span {
  position: relative;
  z-index: 1;
  font-size: 16px;
}

.cat-chip:hover {
  border-color: var(--green-300);
  color: var(--gray-700);
  box-shadow: 0 2px 8px rgba(45,146,71,0.1);
  transform: translateY(-1px);
}

.cat-chip.active {
  background: linear-gradient(135deg, var(--green-500), var(--green-600));
  color: white;
  border-color: var(--green-600);
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(45,146,71,0.3);
}

.cat-chip.active::before {
  opacity: 0;
}

.sidebar-panel {
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: visible;
  position: sticky;
  top: 88px;
}

.sidebar-head {
  padding: 0 0 16px;
  border-bottom: none;
  font-weight: 800;
  font-size: 14px;
  color: var(--gray-900);
  text-transform: capitalize;
  letter-spacing: 0;
  margin-bottom: 12px;
}

.sidebar-list { padding: 0; display: flex; flex-direction: column; gap: 8px; }

.sidebar-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-500);
  background: var(--white);
  border: 1.5px solid transparent;
  text-align: left;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.sidebar-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--mint), transparent);
  opacity: 0;
  transition: var(--transition);
}

.sidebar-btn:hover {
  background: var(--white);
  border-color: var(--green-200);
  color: var(--gray-700);
  box-shadow: 0 2px 8px rgba(45,146,71,0.08);
}

.sidebar-btn.active {
  background: linear-gradient(135deg, var(--mint), #d8f3d8);
  color: var(--green-700);
  font-weight: 700;
  border-color: var(--green-300);
  box-shadow: 0 3px 12px rgba(45,146,71,0.12);
}

.sidebar-btn-icon {
  font-size: 20px;
  width: 24px;
  text-align: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.toolbar {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.search-wrap {
  flex: 1;
  position: relative;
  min-width: 200px;
}
.search-wrap svg {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-400);
  pointer-events: none;
}
.search-input {
  width: 100%;
  padding: 10px 14px 10px 38px;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  font-size: 14px;
  background: var(--white);
  color: var(--gray-700);
  transition: var(--transition);
}
.search-input:focus {
  outline: none;
  border-color: var(--green-300);
  box-shadow: 0 0 0 3px rgba(45,146,71,0.08);
}

.result-count {
  font-size: 13px;
  color: var(--gray-400);
  white-space: nowrap;
}

/* ─── CTA banner ────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--green-700) 0%, var(--green-600) 100%);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.cta-section::after {
  content: '🌿';
  position: absolute;
  right: 60px;
  bottom: -20px;
  font-size: 160px;
  opacity: 0.06;
  line-height: 1;
}

.cta-inner { text-align: center; position: relative; }

.cta-inner h2 {
  font-size: 38px;
  font-weight: 900;
  color: white;
  letter-spacing: -0.8px;
  margin-bottom: 14px;
}

.cta-inner p {
  font-size: 17px;
  color: rgba(255,255,255,0.78);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.btn-cta-wa {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #25d366;
  color: white;
  padding: 15px 28px;
  border-radius: 11px;
  font-weight: 700;
  font-size: 15px;
  transition: var(--transition);
  box-shadow: 0 4px 18px rgba(37,211,102,0.35);
}
.btn-cta-wa:hover { background: #20bb5a; transform: translateY(-2px); }

.btn-cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,255,255,0.12);
  color: white;
  padding: 15px 28px;
  border-radius: 11px;
  font-weight: 700;
  font-size: 15px;
  border: 1.5px solid rgba(255,255,255,0.25);
  transition: var(--transition);
}
.btn-cta-ghost:hover { background: rgba(255,255,255,0.2); }

/* ─── About page ────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-visual {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(145deg, var(--mint) 0%, #c8ecd2 100%);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 110px;
  position: relative;
}

.about-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, transparent 60%, rgba(45,146,71,0.08));
}

.about-content h2 {
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -0.6px;
  color: var(--gray-900);
  margin-bottom: 18px;
}

.about-content p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 16px;
}

.checklist { margin: 24px 0; display: flex; flex-direction: column; gap: 10px; }
.checklist li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 15px;
  color: var(--gray-700);
  font-weight: 500;
}
.checklist li::before {
  content: '';
  width: 20px;
  height: 20px;
  background: var(--green-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='10' cy='10' r='10' fill='%232d9247'/%3E%3Cpath d='M5.5 10L8.5 13L14.5 7' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: cover;
}

/* advantage cards */
.adv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.adv-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  text-align: center;
  transition: var(--transition);
}
.adv-card:hover { box-shadow: var(--shadow-md); border-color: var(--green-200); transform: translateY(-3px); }

.adv-icon {
  width: 60px; height: 60px;
  background: var(--mint);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  margin: 0 auto 18px;
}

.adv-title {
  font-weight: 800;
  font-size: 16px;
  color: var(--gray-800, #1e3a1a);
  margin-bottom: 10px;
}

.adv-text { font-size: 13px; color: var(--gray-500); line-height: 1.65; }

/* ─── Contacts ──────────────────────────────────────────────── */
.contacts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }

.info-card, .form-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 34px;
}

.info-card h3, .form-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 28px;
  letter-spacing: -0.3px;
}

.contact-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-100);
}
.contact-row:last-of-type { border-bottom: none; }

.contact-ico {
  width: 40px; height: 40px;
  background: var(--mint);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}

.contact-lbl { font-size: 11px; color: var(--gray-400); margin-bottom: 3px; font-weight: 500; }
.contact-val { font-weight: 600; font-size: 15px; color: var(--gray-800, #1e3a1a); }

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-500);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  font-size: 14px;
  color: var(--gray-700);
  background: var(--white);
  margin-bottom: 16px;
  transition: var(--transition);
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: var(--green-400);
  box-shadow: 0 0 0 3px rgba(45,146,71,0.08);
}
.form-textarea { resize: vertical; min-height: 100px; }

.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  background: var(--green-500);
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(45,146,71,0.3);
}
.btn-submit:hover { background: var(--green-600); transform: translateY(-1px); }

/* ─── Footer ────────────────────────────────────────────────── */
.footer {
  background: var(--gray-900);
  color: rgba(255,255,255,0.6);
  padding: 56px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-brand .logo { color: white; margin-bottom: 14px; }
.footer-brand .logo em { color: #86efac; }

.footer-brand p { font-size: 14px; line-height: 1.75; max-width: 280px; }

.footer-socials { display: flex; gap: 8px; margin-top: 20px; }
.social-ico {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  transition: var(--transition);
}
.social-ico:hover { background: var(--green-600); }

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col a { font-size: 14px; transition: var(--transition); }
.footer-col a:hover { color: #86efac; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
}

/* ─── Order page ────────────────────────────────────────────── */
.order-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 28px;
  align-items: start;
}

/* Product add card */
.order-product-card {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 16px;
  display: flex;
  gap: 14px;
  align-items: center;
  transition: var(--transition);
}
.order-product-card:hover { border-color: var(--green-200); box-shadow: var(--shadow-sm); }
.order-product-card.in-cart { border-color: var(--green-400); background: var(--mint); }

.opc-img {
  width: 64px; height: 64px;
  border-radius: 12px;
  flex-shrink: 0;
  overflow: hidden;
}
.opc-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.opc-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--sage), var(--green-100));
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  border-radius: 12px;
}

.opc-info { flex: 1; min-width: 0; }
.opc-cat { font-size: 11px; color: var(--green-500); font-weight: 600; text-transform: uppercase; letter-spacing: 0.4px; margin-bottom: 3px; }
.opc-name { font-weight: 700; font-size: 14px; color: var(--gray-800, #1e3a1a); line-height: 1.3; margin-bottom: 3px; }
.opc-price { font-size: 13px; color: var(--gray-500); }
.opc-price strong { color: var(--green-600); font-weight: 800; }

.opc-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.qty-wrap {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid var(--gray-200);
  border-radius: 9px;
  overflow: hidden;
  background: var(--white);
}

.qty-btn {
  width: 32px; height: 36px;
  background: none;
  border: none;
  font-size: 17px;
  color: var(--gray-500);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  line-height: 1;
}
.qty-btn:hover { background: var(--gray-50); color: var(--gray-800, #1e3a1a); }

.qty-input {
  width: 48px; height: 36px;
  border: none;
  border-left: 1.5px solid var(--gray-200);
  border-right: 1.5px solid var(--gray-200);
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-800, #1e3a1a);
  background: var(--white);
  outline: none;
}

.unit-select {
  height: 36px;
  padding: 0 8px;
  border: 1.5px solid var(--gray-200);
  border-radius: 9px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-600);
  background: var(--white);
  cursor: pointer;
  outline: none;
  transition: var(--transition);
}
.unit-select:focus { border-color: var(--green-400); }

.add-to-cart-btn {
  height: 36px;
  padding: 0 14px;
  background: var(--green-500);
  color: white;
  border: none;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.add-to-cart-btn:hover { background: var(--green-600); }
.add-to-cart-btn.added { background: var(--green-700); }

/* Cart panel */
.cart-panel {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: sticky;
  top: 88px;
  max-height: calc(100vh - 120px);
  display: flex;
  flex-direction: column;
}

.cart-header {
  padding: 18px 22px;
  border-bottom: 1.5px solid var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
}

.cart-title {
  font-weight: 800;
  font-size: 16px;
  color: var(--gray-900);
  display: flex;
  align-items: center;
  gap: 9px;
}

.cart-badge {
  background: var(--green-500);
  color: white;
  font-size: 11px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 100px;
  min-width: 20px;
  text-align: center;
}

.cart-body { flex: 1; overflow-y: auto; padding: 12px; }

.cart-empty {
  text-align: center;
  padding: 40px 20px;
  color: var(--gray-400);
}
.cart-empty-icon { font-size: 44px; margin-bottom: 10px; }
.cart-empty p { font-size: 14px; }

.cart-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 4px;
  transition: var(--transition);
}
.cart-item:hover { background: var(--gray-50); }

.ci-emoji { font-size: 22px; flex-shrink: 0; }
.ci-info { flex: 1; min-width: 0; }
.ci-name { font-weight: 600; font-size: 13px; color: var(--gray-800, #1e3a1a); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ci-qty { font-size: 12px; color: var(--gray-400); margin-top: 2px; }
.ci-price { font-size: 13px; font-weight: 700; color: var(--green-600); white-space: nowrap; flex-shrink: 0; }
.ci-del { width: 24px; height: 24px; border-radius: 6px; background: none; border: none; color: var(--gray-300); cursor: pointer; font-size: 14px; display: flex; align-items: center; justify-content: center; transition: var(--transition); flex-shrink: 0; }
.ci-del:hover { background: #fef2f2; color: #dc2626; }

.cart-footer {
  border-top: 1.5px solid var(--gray-100);
  padding: 16px 18px;
  background: var(--white);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-700);
}
.cart-total-sum { font-size: 20px; font-weight: 900; color: var(--green-600); }

/* Checkout form */
.checkout-form { padding: 16px 18px 0; }
.checkout-form label { display: block; font-size: 11px; font-weight: 700; color: var(--gray-500); margin-bottom: 5px; text-transform: uppercase; letter-spacing: 0.4px; }
.checkout-form input, .checkout-form textarea, .checkout-form select {
  width: 100%; padding: 9px 12px;
  border: 1.5px solid var(--gray-200); border-radius: 9px;
  font-size: 13px; margin-bottom: 12px;
  background: var(--white); color: var(--gray-700);
  transition: var(--transition);
}
.checkout-form input:focus, .checkout-form textarea:focus, .checkout-form select:focus {
  outline: none; border-color: var(--green-400);
  box-shadow: 0 0 0 3px rgba(45,146,71,0.08);
}
.checkout-form textarea { resize: none; min-height: 60px; }

.btn-order {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--green-500), var(--green-600));
  color: white;
  border: none;
  border-radius: 11px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(45,146,71,0.3);
}
.btn-order:hover { transform: translateY(-1px); box-shadow: 0 6px 22px rgba(45,146,71,0.38); }
.btn-order:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* Success screen */
.order-success {
  text-align: center;
  padding: 40px 20px;
}
.order-success-icon { font-size: 60px; margin-bottom: 16px; }
.order-success h3 { font-size: 20px; font-weight: 800; color: var(--gray-900); margin-bottom: 10px; }
.order-success p { font-size: 14px; color: var(--gray-500); line-height: 1.6; }

/* Products grid for order page */
.order-products-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ─── Utilities ─────────────────────────────────────────────── */
.loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 60px 20px;
  color: var(--gray-400);
  font-size: 14px;
}

.spinner {
  width: 20px; height: 20px;
  border: 2.5px solid var(--gray-200);
  border-top-color: var(--green-400);
  border-radius: 50%;
  animation: spin 0.65s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.empty { text-align: center; padding: 60px 20px; color: var(--gray-400); }
.empty-icon { font-size: 48px; margin-bottom: 14px; }
.empty p { font-size: 15px; }

.toast {
  position: fixed;
  bottom: 28px; right: 28px;
  background: var(--green-700);
  color: white;
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--shadow-xl);
  z-index: 1000;
  transform: translateY(70px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ─── Floating cart button (order page, mobile only) ─────────── */
.cart-float {
  display: none;
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--green-500), var(--green-600));
  color: white;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 800;
  font-size: 15px;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 28px rgba(45,146,71,0.45);
  z-index: 90;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.cart-float:active { transform: translateX(-50%) scale(0.97); }
.cart-float-badge {
  background: white;
  color: var(--green-600);
  font-size: 12px;
  font-weight: 900;
  padding: 2px 8px;
  border-radius: 100px;
  min-width: 22px;
  text-align: center;
}

/* ─── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .features-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .feature-item:nth-child(2) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .adv-grid { grid-template-columns: repeat(2, 1fr); }
  .order-layout { grid-template-columns: 1fr 320px; gap: 20px; }
}

@media (max-width: 768px) {
  /* ── Container ── */
  .container { padding: 0 14px; }

  /* ── Header ── */
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: white;
    flex-direction: column;
    padding: 12px 14px 18px;
    gap: 4px;
    z-index: 200;
    box-shadow: 0 16px 40px rgba(0,0,0,0.14);
    border-radius: 0 0 18px 18px;
    border-top: 1px solid var(--gray-100);
  }
  .nav.open { display: flex; }
  .nav a {
    padding: 13px 16px;
    font-size: 16px;
    border-radius: 12px;
    color: var(--gray-700);
    font-weight: 500;
  }
  .nav a.active {
    background: var(--mint);
    color: var(--green-600);
    font-weight: 700;
  }
  .burger { display: flex; }
  .phone-btn { display: none; }
  .wa-btn { font-size: 13px; padding: 8px 13px; }
  .header-actions { gap: 6px; }

  /* ── Hero ── */
  .hero { padding: 40px 0 0; }
  .hero h1 { font-size: 32px; letter-spacing: -0.6px; }
  .hero-desc { font-size: 15px; margin-bottom: 26px; }
  .hero-cta { flex-direction: column; gap: 10px; }
  .hero-cta a, .hero-cta button { width: 100%; justify-content: center; text-align: center; }
  .hero-trust { gap: 14px; flex-wrap: wrap; }
  .hero-inner { gap: 28px; padding-bottom: 40px; }

  /* ── Sections ── */
  .section { padding: 48px 0; }
  .section-title { font-size: 24px; letter-spacing: -0.4px; }
  .section-sub { font-size: 14px; }

  /* ── Categories ── */
  .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .category-card { padding: 20px 12px; }
  .category-icon { font-size: 30px; }
  .category-name { font-size: 13px; }

  /* ── Products ── */
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-img { height: 130px; }
  .product-name { font-size: 13px; }
  .product-info { padding: 12px; }

  /* ── Features bar ── */
  .features-bar-inner { grid-template-columns: 1fr; gap: 0; }
  .feature-item { border-right: none !important; border-bottom: 1px solid var(--gray-100); padding: 16px 18px; }
  .feature-item:last-child { border-bottom: none; }

  /* ── CTA ── */
  .cta-inner h2 { font-size: 26px; }
  .cta-btns { flex-direction: column; align-items: stretch; gap: 10px; }
  .cta-btns a { justify-content: center; text-align: center; }

  /* ── Footer ── */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer { padding: 48px 0 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* ── Catalog page ── */
  .catalog-layout { grid-template-columns: 1fr; }
  .sidebar-panel { position: static; }
  /* Category chips: horizontal scroll */
  .cat-chips-row {
    display: flex !important;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
    gap: 7px;
  }
  .cat-chips-row::-webkit-scrollbar { display: none; }
  .cat-chip { flex-shrink: 0; }

  /* ── Page hero ── */
  .page-hero { padding: 26px 0; }
  .page-hero h1 { font-size: 24px; }
  .page-hero p { font-size: 14px; }
  .breadcrumb { font-size: 12px; }

  /* ── Toolbar ── */
  .toolbar { flex-wrap: wrap; gap: 10px; }
  .search-wrap { max-width: 100% !important; width: 100%; }

  /* ── Contacts ── */
  .contacts-grid { grid-template-columns: 1fr; }
  .adv-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }

  /* ── Order page ── */
  .order-layout { grid-template-columns: 1fr; gap: 20px; }
  .cart-panel {
    position: static !important;
    max-height: none;
    border-radius: var(--radius-lg);
  }
  .cart-float { display: flex; }
  .order-products-grid { padding-bottom: 88px; }

  /* Order product card: stack controls below info */
  .order-product-card {
    flex-wrap: wrap;
    gap: 10px;
  }
  .opc-info { flex-basis: calc(100% - 76px); }
  .opc-controls {
    flex-basis: 100%;
    flex-shrink: 1;
    justify-content: flex-start;
    gap: 6px;
  }
  .qty-wrap { flex-shrink: 0; }
  .unit-select { flex: 1; min-width: 70px; max-width: 100px; }
  .add-to-cart-btn { flex: 1; justify-content: center; display: flex; }

  /* ── Toast ── */
  .toast { bottom: 16px; right: 14px; left: 14px; text-align: center; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 27px; }
  .section-title { font-size: 21px; }
  .products-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-inner h2 { font-size: 22px; }

  /* Order page controls compact */
  .opc-controls { gap: 5px; }
  .qty-btn { width: 28px; height: 32px; }
  .qty-input { width: 38px; height: 32px; font-size: 13px; }
  .unit-select { height: 32px; font-size: 12px; }
  .add-to-cart-btn { height: 32px; font-size: 12px; padding: 0 10px; }
}
