:root {
  --green: #124d3e;
  --green-deep: #0a3228;
  --green-soft: #1a6b56;
  --cream: #f3efe6;
  --sand: #e8e0d2;
  --ink: #1a1a1a;
  --muted: #6b6b6b;
  --white: #fff;
  --line: rgba(18, 77, 62, 0.12);
  --shadow: 0 18px 50px rgba(10, 50, 40, 0.12);
  --radius: 4px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --font-nav: "Nunito", "Manrope", system-ui, sans-serif;
  --font-script: "Great Vibes", cursive;
  --max: 1240px;
  --page-gutter: max(1.25rem, calc((100vw - var(--max)) / 2));
  --header-max: 1420px;
  --header-h: 96px;
  --logo-size: 156px;
  --logo-overhang: calc((var(--logo-size) - var(--header-h)) / 2);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(18, 77, 62, 0.08), transparent 55%),
    linear-gradient(180deg, #faf8f4 0%, var(--cream) 100%);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
ul { margin: 0; padding: 0; list-style: none; }

.container {
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
}

/* Header: full-width green bar + circular logo */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: calc(var(--logo-overhang) + 12px) 0 calc(var(--logo-overhang) + 8px);
  background: #fff;
  height: auto;
  border: 0;
  box-shadow: none;
  overflow: visible;
}

/* Anasayfa + iç sayfalar: header, hero / page-hero üzerine binsin */
body:has(.hero) .site-header,
body:has(.page-hero) .site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding-bottom: 0;
  background: transparent;
}

.site-header > .container {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
}

.header-bar {
  position: relative;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.5rem;
  background: var(--green);
  border-radius: 0;
  padding: 0 max(1.5rem, calc((100vw - var(--header-max)) / 2 + 1.5rem)) 0 calc(var(--logo-size) + 1.25rem);
  box-shadow: 0 10px 28px rgba(10, 50, 40, 0.22);
  overflow: visible;
}

.site-header .brand {
  position: absolute;
  left: max(1.25rem, calc((100vw - var(--header-max)) / 2 + 0.5rem));
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  z-index: 3;
  flex-shrink: 0;
}

.site-header .brand img {
  height: var(--logo-size);
  width: var(--logo-size);
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.28));
}

.brand-text {
  display: none;
}

.nav {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.1rem;
  margin: 0;
  z-index: 2;
}

.nav a {
  font-family: var(--font-nav);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.92);
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.nav a::after {
  display: none;
}

.nav a:hover {
  color: #fff;
  opacity: 1;
}

.nav a.is-active {
  color: #fff;
  font-weight: 800;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.15rem;
  background: #fff;
  color: var(--green-deep);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  border-radius: 999px;
  transition: background 0.25s ease, transform 0.25s ease, color 0.25s ease;
  flex-shrink: 0;
}

.header-cta:hover {
  background: #e8f5ef;
  color: var(--green-deep);
  transform: translateY(-1px);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
  z-index: 2;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--font-nav);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.62);
  padding: 0.2rem 0.15rem;
  transition: color 0.2s ease, opacity 0.2s ease;
  line-height: 1;
  text-decoration: none;
}

.lang-flag {
  font-size: 1.05rem;
  line-height: 1;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.25));
}

.lang-btn:hover {
  color: #fff;
}

.lang-btn.is-active {
  color: #fff;
}

.lang-sep {
  opacity: 0.45;
  user-select: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: #fff;
}

.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

/* Split banner slider — flush under header */
.hero {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  margin-top: 0;
}

.hero-slider {
  position: relative;
  width: 100%;
  min-height: 0;
  margin: 0;
  padding: 0;
}

.hero-track {
  position: relative;
  width: 100%;
  min-height: min(72vh, 640px);
  height: min(72vh, 640px);
  overflow: hidden;
  background: #fff;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(300px, 1.1fr);
  opacity: 0;
  visibility: hidden;
  transform: translateX(28px);
  transition: opacity 0.55s ease, transform 0.55s ease, visibility 0.55s;
  pointer-events: none;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
  z-index: 1;
}

.banner-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding-top: clamp(1.25rem, 3.5vh, 2.5rem);
  padding-bottom: clamp(1.25rem, 3.5vh, 2.5rem);
  padding-left: var(--page-gutter);
  padding-right: clamp(1.25rem, 3vw, 2.25rem);
  background:
    radial-gradient(circle at 12% 18%, rgba(18, 77, 62, 0.07), transparent 34%),
    radial-gradient(circle at 78% 72%, rgba(18, 77, 62, 0.05), transparent 40%),
    #ffffff;
  overflow: hidden;
}

body:has(.hero) .banner-copy,
body:has(.hero) .banner-media {
  padding-top: calc(var(--logo-overhang) + var(--header-h) + 1.35rem);
}

.banner-copy::before,
.banner-copy::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(18, 77, 62, 0.05);
  pointer-events: none;
}

.banner-copy::before {
  width: 220px;
  height: 220px;
  left: -70px;
  top: 12%;
}

.banner-copy::after {
  width: 160px;
  height: 160px;
  right: 8%;
  bottom: 10%;
}

.banner-brand {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.8vw, 3.1rem);
  font-weight: 550;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--green-deep);
}

.banner-copy h1 {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  font-weight: 700;
  color: #2d3740;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.banner-script {
  margin: 0.15rem 0 0.75rem;
  font-family: var(--font-script);
  font-size: clamp(1.4rem, 2.6vw, 2.05rem);
  color: var(--green-soft);
  line-height: 1.2;
}

.banner-text {
  margin: 0 0 1.15rem;
  max-width: 36ch;
  color: #7a8189;
  font-size: 0.92rem;
  line-height: 1.65;
}

.banner-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 46px;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  background: #5d6b74;
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  transition: background 0.2s ease, transform 0.2s ease;
}

.banner-cta:hover {
  background: var(--green);
  transform: translateY(-1px);
}

.banner-media {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  height: 100%;
  padding: clamp(1.25rem, 3vh, 2.25rem) clamp(2.5rem, 5vw, 4rem) clamp(1.25rem, 3vh, 2.25rem) 1.25rem;
  background:
    linear-gradient(145deg, #ebe7e0 0%, #d9d4cc 48%, #cfc9c0 100%);
  overflow: hidden;
}

.banner-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(255, 255, 255, 0.35), transparent 55%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18), transparent 28%);
  pointer-events: none;
}


.banner-media figure {
  position: relative;
  z-index: 1;
  margin: 0;
  width: min(72%, 420px);
  margin-left: -8%;
  filter: drop-shadow(14px 22px 32px rgba(40, 35, 30, 0.2));
}

.banner-media img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: transparent;
}

.hero-dots { display: none; }

.hero-nav {
  position: absolute;
  top: 58%;
  transform: translateY(-50%);
  z-index: 5;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: transparent;
  border: 0;
  color: #fff;
  padding: 0;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.35));
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.hero-nav:hover {
  opacity: 0.8;
  transform: translateY(-50%) scale(1.08);
}

.hero-nav.prev {
  left: 1.15rem;
  color: var(--green-deep);
  filter: none;
}
.hero-nav.next {
  right: 1.15rem;
  color: #fff;
}

.hero-nav svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

.btn-row { display: flex; flex-wrap: wrap; gap: 0.85rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--white);
  color: var(--green-deep);
}

.btn-ghost {
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.btn-ghost:hover { background: rgba(255, 255, 255, 0.1); }

.btn-solid {
  background: var(--green);
  color: var(--white);
}

.btn-solid:hover { background: var(--green-deep); }

.btn-outline {
  border: 1.5px solid var(--green);
  color: var(--green);
}

.btn-outline:hover {
  background: var(--green);
  color: var(--white);
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.25rem;
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-soft);
  margin-bottom: 0.5rem;
}

.section-head h2,
.page-title h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 550;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.15;
  color: var(--green-deep);
}

.section-head p,
.lead {
  color: var(--muted);
  max-width: 42ch;
  margin: 0.6rem 0 0;
}

/* Unified collection showcase — no category split */
.deco-section {
  padding-top: 1rem;
}

.deco-banner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: stretch;
  min-height: 360px;
  overflow: hidden;
  border-radius: 18px;
  background:
    radial-gradient(ellipse at 18% 20%, rgba(255, 255, 255, 0.55), transparent 42%),
    linear-gradient(135deg, #1a6b56 0%, #124d3e 48%, #0a3228 100%);
  color: #fff;
  box-shadow: 0 18px 48px rgba(10, 50, 40, 0.18);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.deco-banner:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 56px rgba(10, 50, 40, 0.24);
}

.deco-banner-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.75rem, 4vw, 3.25rem);
  position: relative;
  z-index: 1;
}

.deco-banner-copy .eyebrow {
  color: rgba(232, 245, 239, 0.9);
  margin-bottom: 0.85rem;
}

.deco-banner-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.4vw, 2.75rem);
  font-weight: 550;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 0.85rem;
  color: #fff;
  max-width: 16ch;
}

.deco-banner-copy p {
  margin: 0 0 1.5rem;
  max-width: 36ch;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.98rem;
  line-height: 1.65;
}

.deco-cta {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.deco-banner:hover .deco-cta {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

.deco-banner-media {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.5rem 1.75rem 0;
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.12), transparent 50%),
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.12) 100%);
}

.deco-banner-media img {
  width: min(44%, 240px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.28));
  transform-origin: bottom center;
  transition: transform 0.55s ease;
}

.deco-banner-media img:first-child {
  width: min(50%, 270px);
  z-index: 1;
}

.deco-banner-media img:last-child {
  opacity: 0.95;
}

.deco-banner:hover .deco-banner-media img:first-child {
  transform: translateY(-6px) scale(1.03);
}

.deco-banner:hover .deco-banner-media img:last-child {
  transform: translateY(-4px) scale(1.02);
}

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.product-media {
  aspect-ratio: 4 / 5;
  background: var(--sand);
  overflow: hidden;
  position: relative;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  transition: transform 0.6s ease;
  background: #fff;
}

.product-card:hover .product-media img { transform: scale(1.05); }

.product-badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  background: var(--green);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
}

.product-body {
  padding: 1.1rem 1.15rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}

.product-body h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
}

.product-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.product-body .more {
  margin-top: auto;
  padding-top: 0.85rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green);
}

/* About feature — Furnob-style split under slider */
.about-feature {
  background: #fff;
  padding: 4.5rem 0 4rem;
  border-bottom: 1px solid var(--line);
}

.about-feature-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.15fr;
  gap: 3.5rem;
  align-items: center;
}

.about-kicker {
  display: block;
  font-family: var(--font-nav);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}

.about-feature-copy h2 {
  margin: 0 0 1.25rem;
  font-family: var(--font-nav);
  font-size: clamp(1.85rem, 3.4vw, 2.65rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.about-feature-copy p {
  margin: 0 0 1.75rem;
  max-width: 38ch;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.6rem;
  background: var(--ink);
  color: #fff;
  border-radius: 6px;
  font-family: var(--font-nav);
  font-weight: 700;
  font-size: 0.9rem;
  transition: background 0.25s ease, transform 0.25s ease;
}

.btn-dark:hover {
  background: var(--green-deep);
  transform: translateY(-2px);
}

.about-media-frame {
  border-radius: 16px;
  overflow: hidden;
  background: #f3f3f3;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}

.about-compare {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}

.about-compare-half {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.about-compare-half img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
}

.about-compare-half span {
  position: absolute;
  top: 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.45);
  letter-spacing: 0.04em;
}

.about-compare-half:first-child span { left: 1rem; }
.about-compare-half:last-child span { right: 1rem; }

.about-compare-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  z-index: 2;
  pointer-events: none;
}

.about-compare-handle i {
  display: block;
  width: 2px;
  height: 14px;
  background: #bbb;
  border-radius: 2px;
}

.about-compare::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: #fff;
  transform: translateX(-50%);
  z-index: 1;
  pointer-events: none;
}

.about-media-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.85rem;
  font-size: 0.88rem;
  font-weight: 700;
}

.about-media-meta a {
  text-decoration: underline;
  text-underline-offset: 3px;
  color: var(--ink);
}

.about-media-meta span {
  color: var(--muted);
}

/* About teaser */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 3rem;
  align-items: center;
}

.about-split figure {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-models {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 420px;
}

.about-models-stage {
  position: relative;
  flex: 1;
  min-height: 380px;
  border-radius: 18px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(255, 255, 255, 0.35), transparent 45%),
    linear-gradient(145deg, #ebe7e0 0%, #d5cfc5 55%, #c8c1b6 100%);
  box-shadow: 0 16px 40px rgba(10, 50, 40, 0.1);
}

.about-model {
  position: absolute;
  display: block;
  text-align: center;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.about-model img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 16px 24px rgba(40, 35, 30, 0.22));
}

.about-model span {
  display: inline-block;
  margin-top: 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--green-deep);
  background: rgba(255, 255, 255, 0.72);
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
}

.about-model--a {
  width: 46%;
  left: 4%;
  bottom: 8%;
  z-index: 2;
}

.about-model--b {
  width: 42%;
  right: 6%;
  bottom: 14%;
  z-index: 3;
}

.about-model--c {
  width: 34%;
  left: 34%;
  bottom: 42%;
  z-index: 1;
  opacity: 0.92;
}

.about-model:hover {
  transform: translateY(-8px) scale(1.03);
  z-index: 4;
  filter: brightness(1.02);
}

.about-models-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.88rem;
  font-weight: 700;
}

.about-models-meta span {
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.about-models-meta a {
  color: var(--green-deep);
}

.about-models-meta a:hover {
  color: var(--green);
}

.about-split h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--green-deep);
  margin: 0 0 1rem;
}

.about-split p { color: var(--muted); margin: 0 0 1rem; }

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.75rem 0 1.5rem;
}

.stat {
  padding: 1rem;
  background: rgba(18, 77, 62, 0.06);
  border-radius: 10px;
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--green);
  line-height: 1;
}

.stat span {
  font-size: 0.78rem;
  color: var(--muted);
}

/* Page hero (inner) — starts under overlapping header */
.page-hero {
  padding: calc(var(--logo-overhang) + var(--header-h) + 2.75rem) 0 2.5rem;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(18, 77, 62, 0.08), transparent 50%),
    #f7f3eb;
  text-align: center;
}

.page-hero .page-title {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-hero .eyebrow {
  margin-left: auto;
  margin-right: auto;
}

.page-title p {
  margin: 0.75rem auto 0;
  color: var(--muted);
  max-width: 52ch;
}

/* Filters */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 2rem 0 1.5rem;
}

.filter-btn {
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  transition: all 0.2s ease;
}

.filter-btn.is-active,
.filter-btn:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

/* Product detail (WooCommerce-style) */
.product-breadcrumb {
  padding: 1.35rem 0 0;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.breadcrumb a {
  color: var(--green-soft);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--green-deep);
}

.breadcrumb span:last-child {
  color: var(--ink);
  font-weight: 600;
}

.product-detail {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  padding: 1.5rem 0 4rem;
  align-items: start;
}

.product-gallery {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 0.85rem;
  align-items: start;
}

.gallery-main {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #fff;
}

.product-gallery--single {
  grid-template-columns: 1fr;
}

.product-gallery--single .gallery-main {
  grid-column: 1;
  aspect-ratio: 1 / 1;
}

.product-gallery--single .gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gallery-thumbs {
  grid-column: 1;
  grid-row: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
  align-content: start;
}

.gallery-thumb {
  appearance: none;
  border: 2px solid var(--line);
  border-radius: 10px;
  padding: 0;
  background: var(--white);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1 / 1;
  width: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #fff;
}

.gallery-thumb:hover {
  border-color: rgba(18, 77, 62, 0.45);
}

.gallery-thumb.is-active {
  border-color: var(--green);
  box-shadow: 0 0 0 1px var(--green);
}

.product-detail .info {
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
}

.product-detail .info h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--green-deep);
  margin: 0 0 0.5rem;
}

.product-detail .info .type {
  color: var(--green-soft);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

.product-detail .info p {
  color: var(--muted);
  margin: 1.25rem 0;
}

.product-detail .btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.related {
  padding-bottom: 4rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2rem;
  padding: 3rem 0 4rem;
}

.contact-cards {
  display: grid;
  gap: 1rem;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.35rem 1.4rem;
}

.contact-card h3 {
  margin: 0 0 0.35rem;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
}

.contact-card p,
.contact-card a {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.75rem;
  box-shadow: var(--shadow);
}

.contact-form h2 {
  font-family: var(--font-display);
  margin: 0 0 1.25rem;
  color: var(--green-deep);
}

.form-row {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.form-row label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
}

.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #faf8f4;
  font: inherit;
}

.form-row textarea { min-height: 140px; resize: vertical; }

.form-row input:focus,
.form-row textarea:focus {
  outline: 2px solid rgba(18, 77, 62, 0.25);
  border-color: var(--green);
}

.form-note {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0.75rem 0 0;
}

.map-embed {
  margin-top: 1rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 220px;
  background: var(--sand);
}

.map-embed iframe {
  width: 100%;
  height: 240px;
  border: 0;
}

/* About page */
.prose {
  max-width: 68ch;
}

.prose h2 {
  font-family: var(--font-display);
  color: var(--green-deep);
  margin: 2rem 0 0.75rem;
}

.prose p { color: var(--muted); }

.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 2rem 0;
}

.vision-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.5rem;
}

.vision-card h3 {
  margin: 0 0 0.5rem;
  color: var(--green);
  font-family: var(--font-display);
  font-size: 1.4rem;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Footer — Furnob-inspired light layout */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-footer {
  margin-top: 3rem;
  background: #fff;
  color: #2a2a2a;
  padding: 0;
}

.footer-newsletter {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 2.75rem 0;
}

.footer-newsletter-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 2.5rem;
  align-items: end;
}

.footer-kicker {
  display: inline-block;
  margin-bottom: 0.65rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--green-soft);
}

.footer-newsletter-copy h3 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  font-weight: 550;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--green-deep);
  max-width: 22ch;
}

.footer-newsletter-copy p {
  margin: 0;
  color: var(--muted);
  max-width: 42ch;
  font-size: 0.92rem;
}

.footer-newsletter-field {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1.5px solid #1a1a1a;
  padding-bottom: 0.55rem;
}

.footer-newsletter-field input {
  flex: 1;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  outline: none;
  min-width: 0;
}

.footer-newsletter-field input::placeholder {
  color: #9a9a9a;
}

.footer-newsletter-field button {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--ink);
  flex-shrink: 0;
}

.footer-newsletter-field button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-newsletter-form small {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.72rem;
  color: #8a8a8a;
  line-height: 1.45;
  max-width: 46ch;
}

.footer-main {
  padding: 2.25rem 0 1.75rem;
  color: rgba(255, 255, 255, 0.82);
  background:
    radial-gradient(ellipse at 18% 12%, rgba(255, 255, 255, 0.14), transparent 42%),
    linear-gradient(135deg, #1a6b56 0%, #124d3e 48%, #0a3228 100%);
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-bottom: 1.35rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.72);
}

.footer-meta p { margin: 0; }
.footer-meta strong { color: #fff; font-weight: 700; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 2rem;
  padding: 2.25rem 0 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-col h4 {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0;
  text-transform: none;
}

.footer-col--help {
  padding-right: 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-col--help p {
  margin: 0 0 0.65rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.55;
}

.footer-col--help a {
  color: #fff;
  font-weight: 700;
}

.footer-col--help a:hover { color: #e8f5ef; }

.footer-col ul {
  display: grid;
  gap: 0.55rem;
}

.footer-col li a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.footer-col li a:hover { color: #fff; }

.footer-bottom {
  padding-top: 1.35rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.site-footer .brand {
  position: static;
  display: inline-flex;
  transform: none;
}

.site-footer .brand img {
  height: 64px;
  width: 64px;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.25));
}

.footer-brand-row strong {
  display: block;
  font-size: 0.95rem;
  color: #fff;
}

.footer-brand-row span {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.62);
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-legal a { color: rgba(255, 255, 255, 0.72); }
.footer-legal a:hover { color: #fff; }
.footer-legal span { color: rgba(255, 255, 255, 0.28); }


/* Mobile */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .deco-banner {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .deco-banner-copy {
    padding: 1.75rem 1.4rem 1.25rem;
    text-align: left;
  }
  .deco-banner-copy h2 { max-width: none; font-size: 1.75rem; }
  .deco-banner-media {
    min-height: 240px;
    padding: 0.5rem 1.25rem 0;
    order: -1;
  }
  .deco-banner-media img:first-child { width: min(58%, 220px); }
  .deco-banner-media img:last-child { width: min(48%, 180px); }
  .about-feature-grid,
  .about-split,
  .product-detail,
  .contact-grid { grid-template-columns: 1fr; }
  .about-models { min-height: 0; order: -1; }
  .about-models-stage { min-height: 300px; }
  .about-model--c { bottom: 48%; width: 30%; }
  .about-compare { min-height: 320px; }
  .about-compare-half img { min-height: 320px; }
  .footer-newsletter-inner { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-col--help { border-right: 0; padding-right: 0; grid-column: 1 / -1; padding-bottom: 1rem; border-bottom: 1px solid rgba(255, 255, 255, 0.16); }
}

@media (max-width: 980px) {
  .hero-slide { grid-template-columns: 0.95fr 1.05fr; }
  .banner-media figure { margin-left: -6%; width: min(100%, 360px); }
  .hero-track {
    min-height: min(68vh, 580px);
    height: min(68vh, 580px);
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 78px;
    --logo-size: 108px;
  }
  .product-gallery {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 0.65rem;
  }
  .nav-toggle {
    display: grid;
    order: 3;
    margin-left: 0.55rem;
    z-index: 60;
  }
  .header-cta { display: none; }
  .header-actions {
    order: 2;
    gap: 0.5rem;
    margin-left: auto;
  }
  .lang-switch { font-size: 0.72rem; }
  .site-header > .container {
    width: 100%;
  }
  .header-bar {
    padding-left: calc(var(--logo-size) + 0.85rem);
    padding-right: 0.85rem;
    justify-content: flex-end;
  }
  .site-header .brand {
    left: 0.75rem;
  }

  /* Sağdan sola açılan drawer menü */
  .nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.15rem;
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    width: min(300px, 84vw);
    height: 100vh;
    height: 100dvh;
    margin: 0;
    padding: 5.5rem 1.5rem 2rem;
    background: var(--green);
    border: 0;
    border-radius: 0;
    box-shadow: -16px 0 40px rgba(10, 50, 40, 0.28);
    transform: translateX(105%);
    transition: transform 0.35s ease;
    z-index: 55;
    overflow-y: auto;
    pointer-events: none;
  }
  .nav.is-open {
    display: flex;
    transform: translateX(0);
    pointer-events: auto;
  }
  .nav a {
    font-size: 1.05rem;
  }
  body.nav-open {
    overflow: hidden;
  }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 0.85rem; }
  .section { padding: 3.5rem 0; }
  .stats,
  .vision-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .footer-meta { flex-direction: column; gap: 0.35rem; }
  .footer-bottom { align-items: flex-start; }
  .site-header .brand img { height: var(--logo-size); width: var(--logo-size); }
  .hero { margin-top: 0; }
  .hero-track {
    min-height: 0;
    height: auto;
  }
  .hero-slide {
    position: relative;
    inset: auto;
    grid-template-columns: 1fr;
    opacity: 0;
    height: 0;
    overflow: hidden;
    transform: none;
  }
  .hero-slide.is-active {
    height: auto;
    opacity: 1;
  }
  .banner-copy {
    order: 2;
    height: auto;
    padding: 1.35rem var(--page-gutter) 1.75rem;
    text-align: left;
  }
  body:has(.hero) .banner-copy,
  body:has(.hero) .banner-media {
    padding-top: calc(var(--logo-overhang) + var(--header-h) + 1rem);
  }
  .banner-brand { font-size: 1.85rem; }
  .banner-copy h1 { font-size: 1.2rem; }
  .banner-script { font-size: 1.45rem; }
  .banner-text { max-width: none; margin-bottom: 1rem; }
  .banner-media {
    order: 1;
    height: auto;
    min-height: 260px;
    padding: 1.5rem 1.25rem 1.75rem;
  }
  .banner-media figure {
    margin-left: 0;
    width: min(100%, 280px);
  }
  .hero-nav.prev { left: 0.65rem; color: var(--green-deep); filter: none; }
  .hero-nav.next { right: 0.65rem; color: #fff; }
  .hero-nav svg { width: 26px; height: 26px; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
}
