:root {
  --g900: #0F3D26;
  --g800: #14532D;
  --g700: #1B5E3B;
  --g600: #217A4A;
  --lime: #A8E063;
  --lime2: #D6F5A3;
  --ink: #1A1F1C;
  --muted: #5B655E;
  --line: #E3EBE4;
  --bg: #F6F8F5;
  --white: #fff;
  --shadow: 0 18px 50px rgba(15, 61, 38, .12);
  --font: "Manrope", system-ui, sans-serif;
  --display: "Libre Baskerville", Georgia, "Times New Roman", serif;
  --max: 1180px;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--font); color: var(--ink); background: var(--bg); line-height: 1.6; }
body.nav-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1,h2,h3 { font-family: var(--display); line-height: 1.15; margin: 0 0 .55em; letter-spacing: -.02em; }
p { margin: 0 0 1em; }
.container { width: min(100% - 2rem, var(--max)); margin-inline: auto; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--g700); color: #fff; padding: .7rem 1rem; z-index: 999; }
.skip-link:focus { left: 1rem; top: 1rem; }

.btn {
  display: inline-flex; align-items: center; gap: .5rem; border-radius: 999px;
  padding: .85rem 1.35rem; font-weight: 700; border: 2px solid transparent; cursor: pointer;
  transition: .2s ease; font: inherit;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--g700); color: #fff; }
.btn-primary:hover { background: var(--g900); }
.btn-phone { background: var(--g700); color: #fff; padding: .7rem 1.05rem; font-size: .9rem; white-space: nowrap; }
.btn-light { background: #fff; color: var(--g800); }
.btn-outline { background: transparent; border-color: var(--g700); color: var(--g700); }
.btn-outline-light { background: transparent; border-color: rgba(255,255,255,.5); color: #fff; }
.btn-outline-light:hover { background: #fff; color: var(--g800); }

.eyebrow {
  display: inline-block; font-size: .78rem; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: var(--g600); margin-bottom: .7rem;
}
.eyebrow.light { color: var(--lime); }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.94); backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 8px 28px rgba(15,61,38,.08); }
.header-inner { display: flex; align-items: center; gap: 1rem; min-height: 78px; }
.logo { display: inline-flex; align-items: center; gap: .65rem; }
.logo-text { display: flex; flex-direction: column; line-height: 1.05; }
.logo-text strong { font-family: var(--display); font-size: 1rem; color: var(--g800); white-space: nowrap; }
.logo-text small { font-size: .62rem; font-weight: 700; letter-spacing: .02em; color: var(--muted); text-transform: lowercase; }
.logo-light .logo-text strong, .logo-light .logo-text small { color: #fff; }
.site-nav { display: flex; align-items: center; gap: 1.1rem; margin-left: auto; margin-right: .4rem; }
.site-nav > a, .nav-drop > a { font-size: .92rem; font-weight: 600; }
.site-nav > a:hover, .site-nav > a.is-active, .nav-drop.is-active > a { color: var(--g700); }
.nav-drop { position: relative; }
.nav-drop__menu {
  position: absolute; top: calc(100% + .75rem); left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 220px; background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: .55rem; box-shadow: var(--shadow); opacity: 0; pointer-events: none; transition: .2s;
}
.nav-drop:hover .nav-drop__menu, .nav-drop:focus-within .nav-drop__menu {
  opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.nav-drop__menu a { display: block; padding: .55rem .8rem; border-radius: 10px; font-size: .88rem; font-weight: 600; }
.nav-drop__menu a:hover { background: #F0F7F1; color: var(--g700); }
.nav-drop--wide .nav-drop__menu--cols {
  min-width: min(680px, 90vw); display: grid; grid-template-columns: repeat(3, 1fr);
  left: 0; transform: translateY(8px);
}
.nav-drop--wide:hover .nav-drop__menu--cols, .nav-drop--wide:focus-within .nav-drop__menu--cols { transform: translateY(0); }
.nav-toggle {
  display: none; width: 44px; height: 44px; border: 0; background: transparent; margin-left: auto;
  flex-direction: column; justify-content: center; gap: 5px; cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; width: 22px; background: var(--ink); margin-inline: auto; }

/* Home — modern scattered imagery */
.home-hero {
  position: relative;
  min-height: clamp(560px, 92vh, 820px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #0F3D26;
}
.home-hero__bg {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(8, 1fr);
  gap: .45rem;
  padding: .45rem;
  z-index: 0;
}
.home-hero__shot {
  margin: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 4px;
  min-height: 0;
  min-width: 0;
  position: relative;
}
.home-hero__shot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.home-hero:hover .home-hero__shot img { transform: scale(1.1); }
.home-hero__shot--1 { grid-area: 1 / 1 / 5 / 4; }
.home-hero__shot--2 { grid-area: 1 / 4 / 5 / 8; }
.home-hero__shot--3 { grid-area: 1 / 8 / 5 / 13; }
.home-hero__shot--4 { grid-area: 5 / 1 / 9 / 4; }
.home-hero__shot--5 { grid-area: 5 / 4 / 7 / 7; }
.home-hero__shot--6 { grid-area: 5 / 7 / 9 / 10; }
.home-hero__shot--7 { grid-area: 5 / 10 / 9 / 13; }
.home-hero__shot--8 { grid-area: 7 / 4 / 9 / 7; }
.home-hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(15,61,38,.15) 0%, rgba(15,61,38,.35) 35%, rgba(10,28,18,.88) 100%),
    linear-gradient(90deg, rgba(10,28,18,.55) 0%, transparent 55%);
  pointer-events: none;
}
.home-hero__content {
  position: relative;
  z-index: 2;
  padding: 5.5rem 0 3.4rem;
  color: #fff;
}
.home-hero__content > * { max-width: 34rem; }
.home-hero__brand {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin: 0 0 .65rem;
  letter-spacing: -.02em;
  color: #F2F7F0;
}
.home-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  max-width: 12ch;
  color: #fff;
  margin-bottom: .7rem;
}
.home-hero__lead {
  color: rgba(242,247,240,.86);
  font-size: 1.05rem;
  max-width: 38ch;
  margin-bottom: 1.5rem;
}
.home-hero__cta { display: flex; flex-wrap: wrap; gap: .7rem; }
.home-hero__cta .btn-outline {
  border-color: rgba(255,255,255,.55);
  color: #fff;
}
.home-hero__cta .btn-outline:hover {
  background: #fff;
  color: var(--g800);
}

.home-scatter {
  overflow: hidden;
  background: #0C2E1C;
  border-block: 1px solid rgba(168,224,99,.15);
  padding: .85rem 0;
}
.home-scatter__track {
  display: flex;
  gap: .7rem;
  width: max-content;
  animation: home-marquee 55s linear infinite;
}
.home-scatter__track:hover { animation-play-state: paused; }
.home-scatter__item {
  position: relative;
  flex: 0 0 auto;
  width: 148px;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 12px;
}
.home-scatter__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.home-scatter__item:hover img { transform: scale(1.08); }
.home-scatter__item span {
  position: absolute;
  left: .45rem;
  right: .45rem;
  bottom: .45rem;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .04em;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0,0,0,.55);
}
@keyframes home-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.home-split-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.home-split-head h2 { margin-bottom: .2rem; font-size: clamp(1.7rem, 3vw, 2.35rem); }
.home-split-head > p { color: var(--muted); max-width: 36ch; margin: 0; }
.home-center { text-align: center; margin-top: 2rem; }

.home-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(140px, 18vw);
  gap: .75rem;
}
.home-bento__cell {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  display: block;
  min-height: 0;
  isolation: isolate;
}
.home-bento__cell img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.home-bento__cell:hover img { transform: scale(1.06); }
.home-bento__cell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,28,18,.78));
}
.home-bento__label {
  position: absolute;
  z-index: 1;
  left: 1rem;
  right: 1rem;
  bottom: .9rem;
  color: #fff;
  display: grid;
  gap: .1rem;
}
.home-bento__label strong {
  font-family: var(--font);
  font-size: .95rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.home-bento__label em {
  font-style: normal;
  font-size: .82rem;
  opacity: .85;
}
.home-bento__cell--1 { grid-column: span 5; grid-row: span 2; }
.home-bento__cell--2 { grid-column: span 3; }
.home-bento__cell--3 { grid-column: span 4; }
.home-bento__cell--4 { grid-column: span 3; }
.home-bento__cell--5 { grid-column: span 4; }
.home-bento__cell--6 { grid-column: span 5; }
.home-bento__cell--7 { grid-column: span 4; }
.home-bento__cell--8 { grid-column: span 3; }

.home-about {
  padding: 4.5rem 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(168,224,99,.22), transparent 40%),
    linear-gradient(180deg, #F2F7F0, var(--bg));
}
.home-about__grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 2.5rem;
  align-items: center;
}
.home-about__copy h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); }
.home-about__copy p { color: var(--muted); }
.home-about__points {
  display: grid;
  gap: .55rem;
  margin: 1.2rem 0 1.5rem;
}
.home-about__points li {
  padding-left: 1.2rem;
  position: relative;
  font-weight: 600;
  color: var(--g800);
}
.home-about__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--g600);
}
.home-about__photos {
  position: relative;
  height: 440px;
  min-height: 440px;
}
.home-about__pic {
  margin: 0;
  padding: 0;
  position: absolute;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: var(--shadow);
  background: #E8F0E6;
}
.home-about__pic img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-about__pic--1 { width: 58%; height: 72%; left: 0; top: 8%; z-index: 2; }
.home-about__pic--2 { width: 42%; height: 48%; right: 0; top: 0; z-index: 1; }
.home-about__pic--3 { width: 36%; height: 40%; right: 6%; bottom: 4%; z-index: 3; }
.home-about__pic--4 { width: 28%; height: 32%; left: 42%; bottom: 8%; z-index: 2; }
.home-about__pic--5 { width: 22%; height: 26%; left: 18%; top: 0; z-index: 1; }

.home-mosaic {
  padding: 0 0 1rem;
  overflow: hidden;
}
.home-mosaic__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: .5rem;
}
.home-mosaic__cell {
  margin: 0;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 14px;
}
.home-mosaic__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05);
  transition: transform .45s ease, filter .45s ease;
}
.home-mosaic__cell:hover img {
  transform: scale(1.07);
  filter: saturate(1.15);
}
.home-mosaic__cell--1,
.home-mosaic__cell--4 { aspect-ratio: 4/5; }
.home-mosaic__cell--2,
.home-mosaic__cell--5 { margin-top: 1.4rem; }
.home-mosaic__cell--3,
.home-mosaic__cell--6 { margin-top: .6rem; }

.home-gallery-sec { padding-top: 3.2rem; }
.home-gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(110px, 12vw);
  gap: .65rem;
}
.home-gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  display: block;
}
.home-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.home-gallery__item:hover img { transform: scale(1.05); }
.home-gallery__item--1 { grid-column: span 4; grid-row: span 2; }
.home-gallery__item--2 { grid-column: span 3; }
.home-gallery__item--3 { grid-column: span 5; }
.home-gallery__item--4 { grid-column: span 3; }
.home-gallery__item--5 { grid-column: span 2; }
.home-gallery__item--6 { grid-column: span 3; }
.home-gallery__item--7 { grid-column: span 4; grid-row: span 2; }
.home-gallery__item--8 { grid-column: span 4; }
.home-gallery__item--9 { grid-column: span 4; }
.home-gallery__item--10 { grid-column: span 4; }

/* Legacy hero helpers (inner pages may reuse) */
.hero {
  position: relative; min-height: clamp(420px, 60vh, 560px);
  display: grid; align-items: center; overflow: hidden;
  background:
    linear-gradient(105deg, rgba(246,248,245,.97) 0%, rgba(246,248,245,.9) 40%, rgba(246,248,245,.35) 68%, rgba(15,61,38,.28) 100%),
    radial-gradient(circle at 78% 22%, rgba(168,224,99,.4), transparent 42%),
    linear-gradient(155deg, #E8F3E4, #C5DEC2 40%, #1B5E3B);
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 2rem; padding: 4.2rem 0 3.2rem; align-items: center;
}
.hero h1 { font-size: clamp(2.1rem, 4.5vw, 3.5rem); max-width: 14ch; }
.hero-lead { color: var(--muted); font-size: 1.05rem; max-width: 46ch; }

.section { padding: 4.8rem 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 2.5rem; }
.section-head h2 { font-size: clamp(1.75rem, 3vw, 2.4rem); }
.section-head p { color: var(--muted); }
.deco { color: var(--g600); font-weight: 700; margin-bottom: .4rem; }

/* Product cards — mockup ÜRÜN GRUPLARI */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.product-card {
  background: #fff; border: 1px solid var(--line); border-radius: 22px; overflow: hidden;
  box-shadow: 0 10px 28px rgba(15,61,38,.05); transition: .25s; display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.product-card__media {
  aspect-ratio: 4/3; position: relative; overflow: hidden;
  background: linear-gradient(145deg, #14532D, #2F9E5F 55%, #A8E063);
}
.product-card__media.has-img { background: #E8F0E6; }
.product-card__media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .35s ease;
}
.product-card:hover .product-card__media img { transform: scale(1.05); }
.product-card:nth-child(3n+2) .product-card__media:not(.has-img) { background: linear-gradient(145deg, #0F3D26, #3FA66A 50%, #D6F5A3); }
.product-card:nth-child(3n) .product-card__media:not(.has-img) { background: linear-gradient(160deg, #123D28, #8FD14F); }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Modern katalog */
.catalog-hero {
  padding: 3rem 0 1.5rem;
  background:
    radial-gradient(circle at 90% 10%, rgba(168,224,99,.28), transparent 40%),
    linear-gradient(180deg, #EAF5E6, var(--bg));
  border-bottom: 1px solid var(--line);
}
.catalog-hero__inner {
  display: flex; justify-content: space-between; gap: 1.5rem; align-items: end; flex-wrap: wrap;
}
.catalog-hero h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: .35rem; }
.catalog-hero__meta {
  background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 1rem 1.25rem;
  text-align: center; min-width: 120px; box-shadow: 0 10px 28px rgba(15,61,38,.06);
}
.catalog-hero__meta strong { display: block; font-size: 1.8rem; color: var(--g800); line-height: 1; }
.catalog-hero__meta span { font-size: .82rem; color: var(--muted); font-weight: 600; }

.catalog-toolbar-wrap {
  position: sticky; top: 78px; z-index: 40; background: rgba(246,248,245,.92);
  backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); padding: .85rem 0;
}
.catalog-toolbar { display: grid; gap: .75rem; }
.catalog-search {
  display: flex; align-items: center; gap: .65rem; background: #fff; border: 1px solid var(--line);
  border-radius: 14px; padding: .7rem 1rem; color: var(--muted);
}
.catalog-search input {
  border: 0; outline: 0; width: 100%; font: inherit; color: var(--ink); background: transparent;
}
.az-filter { display: flex; flex-wrap: wrap; gap: .35rem; }
.az-filter__btn {
  min-width: 34px; height: 34px; padding: 0 .5rem; border-radius: 10px;
  border: 1px solid var(--line); background: #fff; color: var(--ink);
  font: inherit; font-weight: 700; font-size: .82rem; cursor: pointer;
  display: inline-grid; place-items: center;
}
.az-filter__btn:hover, .az-filter__btn.is-active {
  background: var(--g700); color: #fff; border-color: var(--g700);
}
.catalog-count { margin: 0; font-size: .88rem; color: var(--muted); font-weight: 600; }
.catalog-section { padding-top: 1.75rem; }
.catalog-grid {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.1rem;
}
.catalog-grid--related { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.catalog-card {
  background: #fff; border: 1px solid var(--line); border-radius: 20px; overflow: hidden;
  display: flex; flex-direction: column; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.catalog-card:hover {
  transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(27,94,59,.25);
}
.catalog-card__media {
  aspect-ratio: 1/1; position: relative; overflow: hidden; background: #E8F0E6;
}
.catalog-card__media img {
  width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease;
}
.catalog-card:hover .catalog-card__media img { transform: scale(1.06); }
.catalog-card__fallback {
  width: 100%; height: 100%; display: grid; place-items: center;
  font-family: var(--display); font-size: 3rem; color: var(--g700); background: linear-gradient(145deg, #C8DFC4, #EAF6E4);
}
.catalog-card__badge {
  position: absolute; top: .7rem; left: .7rem; background: rgba(15,61,38,.82); color: #fff;
  border-radius: 999px; font-size: .72rem; font-weight: 800; padding: .28rem .55rem; letter-spacing: .04em;
}
.catalog-card__body { padding: 1rem 1rem 1.15rem; display: grid; gap: .25rem; }
.catalog-card h2 {
  font-family: var(--font); font-size: .98rem; margin: 0; color: var(--g900);
  text-transform: uppercase; letter-spacing: .03em;
}
.catalog-card p { margin: 0; color: var(--muted); font-size: .86rem; }
.catalog-card__cta {
  margin-top: .45rem; font-size: .84rem; font-weight: 800; color: var(--g700);
}
.catalog-card.is-hidden { display: none; }
.catalog-empty { text-align: center; color: var(--muted); padding: 2rem 0; }

/* Product detail */
.pdp { padding: 2.2rem 0 4rem; }
.pdp-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 1.75rem; align-items: start; margin-top: .5rem;
}
.pdp-gallery {
  border-radius: 28px; overflow: hidden; background: #E8F0E6; border: 1px solid var(--line);
  box-shadow: var(--shadow); position: sticky; top: 100px;
}
.pdp-gallery img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.pdp-gallery__empty {
  aspect-ratio: 4/3; display: grid; place-items: center; font-family: var(--display);
  font-size: 5rem; color: var(--g700);
}
.pdp-info h1 { font-size: clamp(1.9rem, 3.5vw, 2.7rem); margin-bottom: .5rem; }
.pdp-lead { color: var(--muted); font-size: 1.05rem; max-width: 42ch; }
.pdp-chips { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1.25rem 0 1.5rem; }
.pdp-chips li {
  background: #EAF6E4; color: var(--g800); border-radius: 999px; padding: .4rem .8rem;
  font-size: .84rem; font-weight: 700;
}
.pdp-actions { display: flex; flex-wrap: wrap; gap: .65rem; }
.pdp-note {
  margin-top: 1.4rem; padding: 1rem 1.1rem; border-radius: 16px; background: #fff;
  border: 1px solid var(--line); display: grid; gap: .2rem;
}
.pdp-note strong { color: var(--g800); }
.pdp-note span { color: var(--muted); font-size: .9rem; }
.pdp-related { margin-top: 3rem; }
.product-card__body { padding: 2rem 1.25rem 1.35rem; position: relative; flex: 1; display: flex; flex-direction: column; }
.product-card__icon {
  width: 54px; height: 54px; border-radius: 50%; background: var(--g700); color: #fff;
  display: grid; place-items: center; position: absolute; top: -27px; left: 50%; transform: translateX(-50%);
  border: 3px solid #fff; box-shadow: 0 10px 22px rgba(27,94,59,.3);
}
.product-card h3 {
  text-align: center; font-size: 1.05rem; color: var(--g800); text-transform: uppercase;
  letter-spacing: .04em; margin-top: .75rem;
}
.product-card .short { text-align: center; color: var(--muted); font-size: .9rem; }
.product-card ul { display: grid; gap: .3rem; margin: .7rem 0 1rem; flex: 1; }
.product-card li { font-size: .86rem; color: var(--muted); padding-left: 1rem; position: relative; }
.product-card li::before {
  content: ""; position: absolute; left: 0; top: .55em; width: 6px; height: 6px; border-radius: 50%; background: var(--g600);
}
.product-card .more { text-align: center; font-weight: 800; color: var(--g700); font-size: .9rem; }

/* About */
.about-grid { display: grid; grid-template-columns: 1.1fr .85fr 1fr; gap: 1.6rem; align-items: start; }
.stats { display: grid; gap: .9rem; margin-top: 1.4rem; }
.stat {
  display: grid; grid-template-columns: 48px 1fr; gap: .8rem; align-items: center;
  background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: .85rem 1rem;
}
.stat .ico {
  width: 48px; height: 48px; border-radius: 14px; background: #EAF6E4; color: var(--g700);
  display: grid; place-items: center; font-weight: 800;
}
.stat strong { display: block; color: var(--g800); }
.stat span { font-size: .85rem; color: var(--muted); }
.about-visual {
  min-height: 420px; border-radius: 28px; position: relative; overflow: hidden; box-shadow: var(--shadow);
  background: radial-gradient(circle at 50% 20%, rgba(168,224,99,.45), transparent 45%), linear-gradient(180deg, #2F9E5F, #0F3D26);
}
.about-visual::before {
  content: ""; position: absolute; inset: 18% 22%; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.22), transparent 65%);
  border: 1px solid rgba(255,255,255,.2);
}
.about-visual--photo::before { display: none; }
.about-visual--photo > img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.about-visual__stack {
  position: absolute; right: .7rem; bottom: .7rem; display: grid; gap: .4rem; z-index: 2;
}
.about-visual__stack img {
  width: 72px; height: 72px; object-fit: cover; border-radius: 12px;
  border: 2px solid #fff; box-shadow: 0 8px 18px rgba(0,0,0,.22);
}
.check { display: grid; gap: .75rem; }
.check li {
  display: grid; grid-template-columns: 28px 1fr; gap: .7rem; align-items: start;
  background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: .85rem 1rem;
}
.check .tick {
  width: 28px; height: 28px; border-radius: 50%; background: var(--g700); color: #fff;
  display: grid; place-items: center; font-size: .8rem; font-weight: 800;
}
.side-cta {
  margin-top: 1.1rem; background: #fff; border: 1px solid var(--line); border-radius: 18px;
  padding: 1.2rem; text-align: center; box-shadow: 0 10px 26px rgba(15,61,38,.06);
}
.side-cta p { color: var(--muted); font-size: .92rem; }

.trust-bar { background: linear-gradient(90deg, #0F3D26, #1B5E3B 50%, #14532D); color: #fff; padding: 1.5rem 0; }
.trust-bar__row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; text-align: center; }
.trust-bar strong { display: block; }
.trust-bar span { opacity: .8; font-size: .88rem; }

.chips { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; }
.chip {
  background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: .5rem .95rem;
  font-weight: 700; font-size: .88rem; color: var(--g800); transition: .2s;
}
.chip:hover { background: var(--g700); color: #fff; border-color: var(--g700); }
.nearby { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; margin-top: 1.2rem; }
.nearby span {
  background: #EAF6E4; color: var(--g800); border-radius: 999px; padding: .35rem .75rem;
  font-size: .82rem; font-weight: 700;
}

.gallery { display: grid; grid-template-columns: repeat(5, 1fr); gap: .7rem; }
.gallery--page { grid-template-columns: repeat(4, 1fr); }
.g-item {
  aspect-ratio: 1; border-radius: 18px; overflow: hidden; position: relative;
  background: linear-gradient(135deg, #1B5E3B, #A8E063);
  display: block;
}
.g-item:nth-child(2n) { background: linear-gradient(145deg, #0F3D26, #3FA66A); }
.g-item:nth-child(3n) { background: linear-gradient(160deg, #217A4A, #D6F5A3); }
.g-item--photo { background: #E8F0E6; }
.g-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .4s ease;
}
.g-item--photo:hover img { transform: scale(1.05); }
.g-item span {
  position: absolute; inset: auto 0 0 0; padding: .8rem; color: #fff; font-weight: 700; font-size: .85rem;
  background: linear-gradient(transparent, rgba(0,0,0,.55));
}

.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.testi {
  margin: 0; background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 1.35rem;
}
.testi p { color: var(--muted); }
.testi footer { color: var(--g800); font-size: .9rem; }

.quote-sec { background: linear-gradient(180deg, transparent, #EAF5E6 45%, transparent); }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 1.4rem; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 1.5rem;
}
.form-grid { display: grid; gap: .85rem; }
.form-grid label { display: grid; gap: .3rem; font-weight: 700; font-size: .9rem; }
.form-grid input, .form-grid textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 12px; padding: .8rem 1rem;
  font: inherit; background: #FBFCFA;
}
.form-grid input:focus, .form-grid textarea:focus { outline: 2px solid rgba(27,94,59,.25); border-color: var(--g600); }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form-msg { margin-top: .8rem; font-weight: 600; font-size: .92rem; }
.form-msg.ok { color: var(--g700); }
.form-msg.err { color: #B42318; }

.page-hero {
  padding: 3.2rem 0 2.2rem;
  background: radial-gradient(circle at 85% 20%, rgba(168,224,99,.28), transparent 35%), linear-gradient(180deg, #EAF5E6, var(--bg));
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 2.9rem); }
.page-hero__lead { color: var(--muted); max-width: 58ch; }
.breadcrumb { font-size: .88rem; color: var(--muted); margin-bottom: .75rem; }
.breadcrumb a { color: var(--g700); font-weight: 700; }
.content { padding: 2.8rem 0 4rem; }
.detail-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 1.4rem; align-items: start; }
.legal {
  background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 2rem;
  margin: 2.2rem auto; max-width: 860px;
}
.legal h2 { font-size: 1.2rem; margin-top: 1.4rem; color: var(--g800); }
.legal ul { list-style: disc; padding-left: 1.2rem; display: grid; gap: .35rem; margin-bottom: 1rem; }
.legal-updated { color: var(--muted); font-size: .88rem; margin-top: 1.8rem; }
.prose p, .prose li { color: var(--muted); }

.cta-band {
  background: radial-gradient(circle at 15% 20%, rgba(168,224,99,.25), transparent 35%), linear-gradient(120deg, #123D28, #1B5E3B);
  color: #fff; padding: 2.8rem 0;
}
.cta-band__row { display: flex; justify-content: space-between; gap: 1.4rem; align-items: center; flex-wrap: wrap; }
.cta-band h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: .35rem; }
.cta-band p { color: rgba(255,255,255,.8); margin: 0; max-width: 46ch; }
.cta-band__actions { display: flex; gap: .7rem; flex-wrap: wrap; }

/* Footer — sade ve düzenli */
.site-footer {
  color: var(--ink);
  background: #fff;
  border-top: 1px solid var(--line);
}
.footer-inner {
  padding: 2rem 0 1.5rem;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2rem 3rem;
  align-items: start;
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
}
.footer-logo span { display: grid; gap: .12rem; line-height: 1.15; }
.footer-logo strong {
  font-family: var(--font);
  font-size: .98rem;
  font-weight: 800;
  color: var(--g900);
}
.footer-logo small {
  font-size: .76rem;
  color: var(--muted);
  font-weight: 600;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem 1.75rem;
}
.footer-links h3 {
  margin: 0 0 .65rem;
  font-family: var(--font);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.footer-links ul { display: grid; gap: .45rem; }
.footer-links a {
  color: #2d3530;
  font-size: .9rem;
  font-weight: 600;
}
.footer-links a:hover { color: var(--g700); }

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-top: .9rem;
}
.social-links__btn {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  color: #fff;
  transition: transform .15s ease, filter .15s ease;
}
.social-links__btn:hover { transform: translateY(-2px); filter: brightness(1.08); }
.social-links__btn--ig {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.social-links__btn--fb { background: #1877F2; }
.social-links__btn--yt { background: #FF0000; }
.social-links__btn--wa { background: #25D366; }
.social-links__btn svg { display: block; }

.btn-wa { gap: .45rem; }
.btn-wa svg { flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid var(--line);
  background: #FAFCFA;
  padding: .75rem 0;
}
.footer-bottom__row {
  display: flex;
  justify-content: space-between;
  gap: .75rem;
  flex-wrap: wrap;
  font-size: .8rem;
  color: var(--muted);
}
.footer-bottom p { margin: 0; }
.footer-bottom a { color: var(--g700); font-weight: 700; }
.credit { margin: 0; }

.contact-list strong { display: block; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }

.cookie { position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 200; }
.cookie__box {
  width: min(100%, 960px); margin: 0 auto; background: #fff; border: 1px solid var(--line);
  border-radius: 18px; box-shadow: var(--shadow); padding: 1.1rem 1.2rem;
  display: flex; gap: 1rem; align-items: center; justify-content: space-between; flex-wrap: wrap;
}
.cookie p { margin: .3rem 0 0; color: var(--muted); font-size: .9rem; max-width: 60ch; }
.cookie a { color: var(--g700); font-weight: 700; }
.cookie__actions { display: flex; gap: .55rem; flex-wrap: wrap; }
@media (max-width: 760px) {
  .cookie { left: .55rem; right: .55rem; bottom: .55rem; }
  .cookie__box {
    padding: .7rem .8rem;
    gap: .55rem;
    flex-direction: column;
    align-items: stretch;
  }
  .cookie p {
    font-size: .78rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .cookie__actions { width: 100%; }
  .cookie__actions .btn {
    flex: 1;
    justify-content: center;
    padding: .65rem .8rem;
    font-size: .85rem;
  }
}
.wa-fab {
  position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 180;
  width: 56px; height: 56px; border-radius: 50%; background: #25D366; color: #fff;
  display: grid; place-items: center; box-shadow: 0 12px 28px rgba(37,211,102,.45);
  transition: transform .15s ease, background .15s ease;
}
.wa-fab:hover { background: #1ebe57; transform: scale(1.06); }
.wa-fab svg { display: block; }

/* İçerik asla gizlenmez; sadece hafif giriş animasyonu */
html.js-ready [data-reveal] {
  transform: translateY(12px);
  transition: transform .55s ease, filter .55s ease;
  filter: saturate(.95);
}
html.js-ready [data-reveal].is-visible {
  transform: none;
  filter: none;
}
@media (prefers-reduced-motion: reduce) {
  html.js-ready [data-reveal] { transform: none; filter: none; transition: none; }
  .home-scatter__track { animation: none; }
  .home-hero:hover .home-hero__shot img { transform: none; }
}

@media (max-width: 1100px) {
  .catalog-grid, .catalog-grid--related { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 980px) {
  .hero-inner, .about-grid, .contact-grid, .detail-grid, .pdp-grid, .home-about__grid { grid-template-columns: 1fr; }
  .pdp-gallery { position: static; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.35rem; }
  .footer-links { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .product-grid, .testimonials { grid-template-columns: repeat(2, 1fr); }
  .catalog-grid, .catalog-grid--related { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery, .gallery--page { grid-template-columns: repeat(3, 1fr); }
  .about-visual { min-height: 260px; }
  .nav-drop--wide .nav-drop__menu--cols { grid-template-columns: 1fr 1fr; min-width: 400px; }
  .home-bento { grid-auto-rows: minmax(120px, 22vw); }
  .home-bento__cell--1 { grid-column: span 7; }
  .home-bento__cell--2,
  .home-bento__cell--3 { grid-column: span 5; }
  .home-bento__cell--4,
  .home-bento__cell--5,
  .home-bento__cell--6 { grid-column: span 4; }
  .home-bento__cell--7,
  .home-bento__cell--8 { grid-column: span 6; }
  .home-about__photos { min-height: 360px; }
  .home-mosaic__grid { grid-template-columns: repeat(4, 1fr); }
  .home-mosaic__cell:nth-child(n+9) { display: none; }
  .home-gallery__item--1,
  .home-gallery__item--7 { grid-column: span 6; grid-row: span 2; }
  .home-gallery__item--2,
  .home-gallery__item--3,
  .home-gallery__item--4,
  .home-gallery__item--5,
  .home-gallery__item--6,
  .home-gallery__item--8,
  .home-gallery__item--9,
  .home-gallery__item--10 { grid-column: span 3; grid-row: span 1; }
}
@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: fixed; inset: 78px 0 auto 0; background: #fff; border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: stretch; padding: 1rem; gap: .2rem;
    transform: translateY(-120%); opacity: 0; pointer-events: none; transition: .25s;
    max-height: calc(100vh - 78px); overflow: auto;
  }
  .site-nav.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-drop__menu {
    position: static; transform: none !important; opacity: 1; pointer-events: auto;
    box-shadow: none; border: 0; padding: .2rem 0 .2rem .7rem; min-width: 0;
  }
  .nav-drop--wide .nav-drop__menu--cols { grid-template-columns: 1fr; min-width: 0; }
  .btn-phone { display: none; }
  .product-grid, .testimonials, .trust-bar__row { grid-template-columns: 1fr; }
  .catalog-grid, .catalog-grid--related { grid-template-columns: 1fr; }
  .catalog-toolbar-wrap { top: 0; }
  .footer-inner { padding: 1.35rem 0 1.1rem; gap: 1.1rem; }
  .footer-links { grid-template-columns: 1fr 1fr; gap: 1rem 1.2rem; }
  .footer-links > :last-child { grid-column: 1 / -1; }
  .footer-bottom__row { gap: .2rem; }
  .gallery, .gallery--page { grid-template-columns: repeat(2, 1fr); }
  .hero { min-height: auto; }
  .hero-inner { padding: 2.8rem 0 2.2rem; }
  .home-hero { min-height: 78vh; }
  .home-hero__bg { gap: .3rem; padding: .3rem; }
  .home-hero__shot--4,
  .home-hero__shot--8 { display: none; }
  .home-hero__shot--1 { grid-area: 1 / 1 / 5 / 7; }
  .home-hero__shot--2 { grid-area: 1 / 7 / 4 / 13; }
  .home-hero__shot--3 { grid-area: 4 / 7 / 9 / 13; }
  .home-hero__shot--5 { grid-area: 5 / 1 / 7 / 7; }
  .home-hero__shot--6 { grid-area: 7 / 1 / 9 / 4; }
  .home-hero__shot--7 { grid-area: 7 / 4 / 9 / 7; }
  .home-hero__content { padding: 4rem 0 2.4rem; }
  .home-bento { grid-template-columns: 1fr 1fr; grid-auto-rows: 42vw; }
  .home-bento__cell--1,
  .home-bento__cell--2,
  .home-bento__cell--3,
  .home-bento__cell--4,
  .home-bento__cell--5,
  .home-bento__cell--6,
  .home-bento__cell--7,
  .home-bento__cell--8 { grid-column: span 1; grid-row: span 1; }
  .home-bento__cell--1 { grid-column: span 2; grid-row: span 1; min-height: 48vw; }
  .home-about__photos { min-height: 300px; }
  .home-mosaic__grid { grid-template-columns: repeat(3, 1fr); }
  .home-mosaic__cell { margin-top: 0 !important; }
  .home-mosaic__cell:nth-child(n+7) { display: none; }
  .home-gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 38vw; }
  .home-gallery__item--1,
  .home-gallery__item--2,
  .home-gallery__item--3,
  .home-gallery__item--4,
  .home-gallery__item--5,
  .home-gallery__item--6,
  .home-gallery__item--7,
  .home-gallery__item--8,
  .home-gallery__item--9,
  .home-gallery__item--10 { grid-column: span 1; grid-row: span 1; }
  .home-gallery__item--1,
  .home-gallery__item--7 { grid-column: span 2; }
  .home-scatter__item { width: 120px; }
}
