@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap");

:root {
  --green: #1e5631;
  --green-2: #2d6a3e;
  --lime: #8cc63f;
  --lime-d: #76ad32;
  --navy: #2c3e50;
  --blue: #4a7ab5;
  --teal: #128c7e;
  --orange: #ff8a00;
  --red: #d32f2f;
  --bg: #f8f9fa;
  --white: #fff;
  --text: #2b2f33;
  --muted: #6b7280;
  --line: #e6e8eb;
  --shadow: 0 8px 28px rgba(30, 86, 49, 0.08);
  --radius: 14px;
  --max: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Montserrat", sans-serif;
  color: var(--text);
  background: var(--white);
  min-height: 100vh;
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }
button { cursor: pointer; }
ul { list-style: none; }
.container { width: min(var(--max), calc(100% - 32px)); margin-inline: auto; }

/* Top bar */
.topbar {
  background: var(--lime);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-align: center;
  padding: 8px 12px;
}
.topbar span { margin: 0 18px; }

/* Header */
.header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding: 12px 0;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-self: start;
  min-width: 0;
}

.logo {
  justify-self: center;
  flex-shrink: 0;
}

.header-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-self: end;
}

.search {
  display: flex;
  max-width: 420px;
  width: 100%;
  margin: 0;
  border: 1px solid #dfe3e8;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}
.search input {
  flex: 1;
  border: 0;
  outline: 0;
  padding: 12px 16px;
  font-size: 14px;
}
.search button {
  width: 52px;
  border: 0;
  background: #b7d96a;
  color: #fff;
  display: grid;
  place-items: center;
}
.search button:hover { background: var(--lime); }
.search button svg { width: 20px; height: 20px; stroke: #fff; fill: none; stroke-width: 2; }
.logo img {
  height: 58px;
  width: auto;
  object-fit: contain;
}
.wa-btn svg { width: 22px; height: 22px; fill: currentColor; stroke: none; display: block; }
.header-actions {
  display: flex;
  gap: 14px;
  align-items: center;
}
.ha {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  color: #4b5563;
  min-width: 82px;
  position: relative;
}
.ha svg { width: 24px; height: 24px; stroke: #374151; fill: none; stroke-width: 1.7; }
.cart-count {
  position: absolute;
  top: -6px;
  right: 18px;
  background: var(--lime);
  color: #fff;
  font-size: 10px;
  min-width: 18px;
  height: 18px;
  border-radius: 99px;
  display: grid;
  place-items: center;
  font-weight: 700;
}
.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
}

/* Nav */
.nav {
  border-top: 1px solid var(--line);
  background: #fff;
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
}
.nav a, .nav-item > span {
  display: block;
  padding: 13px 12px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .02em;
  white-space: nowrap;
  color: #222;
}
.nav a:hover, .nav-item:hover > span { color: var(--green); }
.nav .deal { color: var(--lime); }
.nav .deal b { color: var(--orange); font-weight: 800; }
.nav-item { position: relative; }
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 240px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  z-index: 20;
  padding: 8px 0;
}
.nav-item:hover .dropdown { display: block; }
.dropdown a {
  display: block;
  padding: 9px 16px;
  font-size: 12px;
  font-weight: 600;
  color: #444;
}
.dropdown a:hover { background: #f4f8ee; color: var(--green); }

/* Hero */
.hero {
  position: relative;
  height: 420px;
  overflow: hidden;
  background: #e9f0e4;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.55s ease, visibility 0.55s ease;
  background-size: cover;
  background-position: center;
  pointer-events: none;
  z-index: 0;
}
.slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}
.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.55) 0%, rgba(255,255,255,.08) 55%, transparent 100%);
}
.slide-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
}
.slide h2 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 800;
  color: var(--green-2);
  line-height: 1.15;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.slide p { max-width: 420px; color: var(--navy); font-weight: 500; margin-bottom: 18px; }
.hero-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.hero-dots button {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,.75);
  font-weight: 700;
  font-size: 12px;
  color: #333;
}
.hero-dots button.on { background: var(--lime); color: #fff; }

/* Category circles */
.cat-row {
  display: flex;
  justify-content: center;
  gap: 42px;
  padding: 36px 0 18px;
  flex-wrap: wrap;
}
.cat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
}
.cat-icon {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 18px rgba(30,86,49,.18);
  transition: transform .2s;
}
.cat-item:hover .cat-icon { transform: translateY(-4px); }
.cat-icon svg { width: 38px; height: 38px; stroke: #fff; fill: none; stroke-width: 1.6; }

/* Sections */
.section { padding: 28px 0; }
.product-strip {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 16px;
  align-items: stretch;
}
.side-banner {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 360px;
  background: #111 center/cover no-repeat;
  color: #fff;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
}
.side-banner h3 {
  font-size: 22px;
  line-height: 1.15;
  font-weight: 800;
}
.side-banner h3 span { color: var(--lime); }
.side-banner.red { background: linear-gradient(180deg, #c62828, #8e1414); }
.side-banner.red h3 { color: #fff; font-size: 26px; }
.side-banner.red p { margin-top: 8px; opacity: .9; }
.carousel-wrap { position: relative; overflow: hidden; }
.carousel {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 8px 18px 14px 6px;
  scrollbar-width: none;
}
.carousel::-webkit-scrollbar { display: none; }
.car-btn {
  position: absolute;
  top: 42%;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
}
.car-btn.left { left: -6px; }
.car-btn.right { right: -6px; }

/* Product card */
.pcard {
  min-width: 210px;
  max-width: 210px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 12px 16px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s, transform .2s;
  overflow: visible;
}
.pcard:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.pcard img {
  height: 150px;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
  background: #f3f5f2;
}
.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--lime);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 99px;
}
.badge.off {
  left: auto;
  right: 12px;
  background: #222;
}
.pcard h4 {
  font-size: 13px;
  font-weight: 600;
  margin: 10px 0 8px;
  min-height: 52px;
  color: #333;
}
.price { font-weight: 800; font-size: 16px; }
.old { color: #999; text-decoration: line-through; font-size: 12px; font-weight: 600; margin-right: 6px; }
.add-btn {
  margin-top: auto;
  align-self: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  display: grid;
  place-items: center;
}
.add-btn:hover { background: var(--lime); border-color: var(--lime); color: #fff; }
.add-btn svg { width: 20px; height: 20px; }

/* Promo banners */
.promo-wide {
  border-radius: 18px;
  min-height: 210px;
  background: center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 28px 40px;
  color: #fff;
  overflow: hidden;
}
.promo-wide h3 {
  background: rgba(40,40,40,.45);
  padding: 16px 22px;
  border-radius: 12px;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: .04em;
}
.promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.promo-card {
  min-height: 240px;
  border-radius: 18px;
  background: center/cover no-repeat;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.promo-card h3 { font-size: 28px; font-weight: 800; z-index: 1; text-shadow: 0 2px 10px rgba(0,0,0,.35); }

/* Trust */
.trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}
.trust-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.trust-ico {
  width: 58px;
  height: 58px;
  border-radius: 12px;
  background: #eef6e4;
  color: var(--green);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.trust-item h4 { font-size: 16px; margin-bottom: 4px; }
.trust-item p { font-size: 13px; color: var(--muted); }

/* Newsletter */
.news {
  background: #eef2f5;
  padding: 28px 0;
}
.news-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 24px;
  align-items: center;
}
.news h3 { font-size: 20px; }
.news .phone { color: var(--green); font-size: 22px; font-weight: 800; margin: 6px 0 12px; }
.news-form { display: flex; gap: 8px; max-width: 460px; }
.news-form input {
  flex: 1;
  border: 0;
  padding: 12px 14px;
  border-radius: 6px;
}
.news-form button {
  background: #3a3f45;
  color: #fff;
  border: 0;
  padding: 0 18px;
  border-radius: 6px;
  font-weight: 700;
}
.socials { display: flex; gap: 12px; margin-top: 14px; }
.socials a,
.socials .social-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
  color: #1e5631;
  transition: transform .2s, box-shadow .2s, color .2s, background .2s;
}
.socials a svg,
.socials .social-btn svg {
  width: 22px;
  height: 22px;
  display: block;
}
.socials a:hover,
.socials .social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0,0,0,.12);
}
.socials a.fb:hover,
.socials .social-btn.fb:hover { color: #1877f2; }
.socials a.ig:hover,
.socials .social-btn.ig:hover { color: #e4405f; }
.socials a.wa:hover,
.socials .social-btn.wa:hover { color: #25d366; }

/* Footer */
.footer {
  background: linear-gradient(180deg, rgba(232,244,252,.96), rgba(245,250,255,.98)),
    url("assets/categories/cevre-halk-sagligi.jpg") center/cover;
  padding: 40px 0 16px;
  color: #333;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
}
.footer h5 {
  font-size: 14px;
  letter-spacing: .08em;
  margin-bottom: 14px;
}
.footer a, .footer p { font-size: 13px; color: #4b5563; display: block; margin: 7px 0; }
.footer a:hover { color: var(--green); }
.contact-line { display: flex; gap: 8px; align-items: flex-start; }
.bottom-bar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  padding-top: 18px;
  margin-top: 24px;
  border-top: 1px solid rgba(0,0,0,.08);
  font-size: 12px;
  color: #6b7280;
}
.pay-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.pay-badges span {
  background: #fff;
  border: 1px solid var(--line);
  padding: 6px 10px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 11px;
}

/* Floating */
.wa-btn {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  background: #25d366;
  color: #fff;
  border-radius: 999px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 13px;
  box-shadow: 0 10px 24px rgba(37, 211, 102, .35);
  text-decoration: none;
}
.to-top {
  position: fixed;
  right: 18px;
  bottom: 78px;
  width: 38px;
  height: 38px;
  background: #3a3f45;
  color: #fff;
  border: 0;
  border-radius: 6px;
  z-index: 60;
  display: none;
}

/* Page head */
.page-head {
  background: linear-gradient(90deg, #1e5631, #4a7ab5);
  color: #fff;
  padding: 28px 0;
}
.page-head h1 { font-size: 28px; }
.crumbs { font-size: 13px; opacity: .85; margin-bottom: 6px; }
.crumbs a { color: #fff; }

.page { padding: 32px 0 56px; background: var(--bg); min-height: 50vh; }

/* Auth */
.auth-wrap {
  max-width: 460px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow);
}
.auth-wrap h2 { margin-bottom: 8px; }
.auth-wrap .sub { color: var(--muted); margin-bottom: 22px; font-size: 14px; }
.form-row { margin-bottom: 14px; }
.form-row label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.form-row input, .form-row select, .form-row textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  outline: none;
  background: #fff;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  border-color: var(--lime);
  box-shadow: 0 0 0 3px rgba(140,198,63,.18);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--lime);
  color: #fff;
  border: 0;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 700;
  width: 100%;
}
.btn:hover { background: var(--lime-d); }
.btn.navy { background: var(--navy); }
.btn.ghost {
  background: #fff;
  color: var(--navy);
  border: 1px solid var(--line);
}
.err { color: var(--red); font-size: 12px; margin-top: 4px; display: none; }
.switch { text-align: center; margin-top: 16px; font-size: 14px; }
.switch a { color: var(--green); font-weight: 700; }

/* Grid listing */
.cat-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 22px;
}
.filters {
  background: #fff;
  border-radius: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  height: fit-content;
}
.filters h3 { font-size: 15px; margin-bottom: 12px; }
.filters a, .filters button.link {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 8px 0;
  font-size: 13px;
  color: #444;
}
.filters a.on, .filters a:hover { color: var(--green); font-weight: 700; }
.toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  gap: 12px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.grid .pcard { min-width: 0; max-width: none; }

/* Product detail */
.pd {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 32px;
  background: #fff;
  border-radius: 16px;
  padding: 24px;
}
.gallery img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 12px;
  background: #f3f5f2;
}
.thumbs { display: flex; gap: 8px; margin-top: 10px; }
.thumbs img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
}
.thumbs img.on { border-color: var(--lime); }
.brand { color: var(--green); font-weight: 700; font-size: 13px; }
.pd h1 { font-size: 26px; margin: 8px 0 10px; }
.meta { color: var(--muted); font-size: 13px; margin-bottom: 14px; }
.qty {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 18px 0;
}
.qty button {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
}
.qty input {
  width: 56px;
  text-align: center;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.pd-actions { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.pd-actions .btn { width: auto; min-width: 180px; }
.tabs { margin-top: 24px; background: #fff; border-radius: 16px; padding: 22px; }
.tabs h3 { margin-bottom: 10px; }

/* Cart / checkout */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 20px;
  align-items: start;
}

.account-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 20px;
  align-items: start;
}
.card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  border: 1px solid var(--line);
}
.cart-item {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.cart-item img {
  width: 88px;
  height: 88px;
  object-fit: cover;
  border-radius: 10px;
}
.remove {
  background: none;
  border: 0;
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
}
.summary .row {
  display: flex;
  justify-content: space-between;
  margin: 8px 0;
  font-size: 14px;
}
.summary .total { font-size: 18px; font-weight: 800; margin-top: 12px; }
.steps {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}
.steps span {
  flex: 1;
  text-align: center;
  padding: 10px;
  border-radius: 99px;
  background: #fff;
  font-size: 13px;
  font-weight: 700;
  color: #888;
  border: 1px solid var(--line);
}
.steps span.on { background: var(--lime); color: #fff; border-color: var(--lime); }
.pay-opt {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 10px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.pay-opt input { width: auto; }

/* Account */
.side-nav a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
}
.side-nav a.on, .side-nav a:hover { background: #eef6e4; color: var(--green); }
.order {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 12px;
}
.order-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.status {
  font-size: 12px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 99px;
  background: #eef6e4;
  color: var(--green);
}
.status.ship { background: #e8f1fb; color: var(--blue); }
.status.wait { background: #fff4e5; color: #b26a00; }
.track {
  display: flex;
  justify-content: space-between;
  margin: 28px 0 8px;
  position: relative;
}
.track::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 8%;
  right: 8%;
  height: 3px;
  background: #e5e7eb;
}
.tstep { text-align: center; position: relative; z-index: 1; flex: 1; font-size: 12px; font-weight: 700; }
.dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #d1d5db;
  margin: 0 auto 8px;
  color: #fff;
  display: grid;
  place-items: center;
}
.tstep.done .dot { background: var(--lime); }

/* Contact / about */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.info-box p { margin: 8px 0; }
.legal { background: #fff; border-radius: 16px; padding: 28px; }
.legal h2 { margin-bottom: 12px; }
.legal p, .legal li { margin: 8px 0; color: #444; }
.legal ul { padding-left: 18px; list-style: disc; }

/* Toast */
.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%) translateY(20px);
  background: var(--navy);
  color: #fff;
  padding: 12px 18px;
  border-radius: 10px;
  opacity: 0;
  pointer-events: none;
  z-index: 80;
  transition: .25s;
  font-weight: 600;
  font-size: 14px;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

.empty {
  text-align: center;
  padding: 40px 16px;
  color: var(--muted);
}

/* Mobile overlay */
.overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 70;
}
.mobile-nav {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: min(88vw, 340px);
  background: #fff;
  z-index: 80;
  transform: translateX(-110%);
  transition: .25s;
  padding: 0;
  overflow: auto;
  display: flex;
  flex-direction: column;
}
.mobile-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  background: #fafbf9;
}
.mobile-nav-head img {
  height: 52px;
  width: auto;
  object-fit: contain;
}
.mobile-nav-close {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  font-size: 22px;
  line-height: 1;
  color: #374151;
}
.mobile-nav-body {
  padding: 12px 18px 24px;
}
.mobile-nav.open { transform: none; }
.mobile-nav-body a {
  display: block;
  padding: 12px 0;
  font-weight: 600;
  font-size: 14px;
  border-bottom: 1px solid var(--line);
  color: #374151;
}
.mobile-nav-body a:hover { color: var(--green); }

.mobile-acc { border-bottom: 1px solid var(--line); }
.mobile-acc-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 0;
  border: 0;
  background: transparent;
  font: inherit;
  font-weight: 700;
  font-size: 14px;
  color: #1f2937;
  cursor: pointer;
  text-align: left;
}
.mobile-acc-btn span {
  color: #6b7280;
  font-size: 12px;
  transition: transform .2s;
}
.mobile-acc-btn.open span { transform: rotate(180deg); }
.mobile-acc-panel {
  display: none;
  padding: 0 0 10px 12px;
}
.mobile-acc-panel.open { display: block; }
.mobile-acc-panel a {
  border-bottom: 0;
  padding: 8px 0;
  font-weight: 550;
  font-size: 13.5px;
  color: #4b5563;
}
.mobile-acc-empty {
  display: block;
  padding: 6px 0 10px;
  font-size: 13px;
  color: #9ca3af;
}

@media (max-width: 1024px) {
  .search { max-width: 320px; }
  .grid { grid-template-columns: repeat(3, 1fr); }
  .product-strip { grid-template-columns: 1fr; }
  .side-banner { min-height: 160px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pd { grid-template-columns: 1fr; }
  .gallery img { height: 320px; }
}
@media (max-width: 820px) {
  .menu-btn { display: grid; place-items: center; }
  .nav { display: none; }
  .header-row {
    grid-template-columns: auto 1fr auto;
    grid-template-areas:
      "menu logo actions"
      "search search search";
    gap: 10px 12px;
    padding: 10px 0;
  }
  .header-left {
    display: contents;
  }
  .menu-btn {
    grid-area: menu;
  }
  .search {
    grid-area: search;
    max-width: none;
    width: 100%;
  }
  .logo { grid-area: logo; }
  .header-actions {
    grid-area: actions;
    gap: 2px;
    flex-wrap: nowrap;
  }
  .header-actions .ha span { display: none; }
  .ha {
    min-width: auto;
    padding: 8px 6px;
  }
  .ha-track { display: none; }
  .ha svg { width: 22px; height: 22px; }
  .cart-count {
    right: 2px;
    top: 0;
    min-width: 16px;
    height: 16px;
    font-size: 9px;
  }
  .logo img { height: 44px; }
  .cat-layout, .cart-layout, .account-layout, .split, .promo-grid, .news-inner, .trust {
    grid-template-columns: 1fr;
  }
  .grid { grid-template-columns: repeat(2, 1fr); }
  .hero { height: auto; min-height: 0; }
  .wa-btn span { display: none; }
  .header-row { gap: 10px; }
}
@media (max-width: 520px) {
  .ha-track { display: none; }
  .grid { grid-template-columns: 1fr; }
  .topbar span { display: block; margin: 2px 0; }
  .pd-actions { flex-direction: column; }
  .pd-actions .btn { width: 100%; }
}
