:root {
  --bg: #ffffff;
  --text: #1f2937;
  --muted: #6b7280;
  --primary: #1f7a3f;
  --icon-anthracite: #2b2f36;
  --hover-brown: #7a4a20;
  --card-border: #e5e7eb;
  --font-serif: "Poppins", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --font-nav: "Poppins", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --header-offset: 78px;
  --home-cream: #f7f6f2;
  --home-forest: #002f41;
  --home-forest-dark: #001e2a;
  --home-serif: "Playfair Display", Georgia, serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 700;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  /* Header hero'nun üstünde; boşluk verme */
  padding-top: 0;
}

body.nav-open {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
  font-weight: 700;
}

input,
button,
select,
textarea {
  font-family: inherit;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  border: none;
  padding: 0.45rem 0;
  --header-bg-alpha: 0;
  --header-shadow-alpha: 0;
  background: rgba(255, 255, 255, var(--header-bg-alpha));
  box-shadow: 0 10px 28px rgba(0, 0, 0, calc(0.08 * var(--header-shadow-alpha)));
}

/* Scroll sonrası: beyaz header, siyah yazılar, renkli logo */
.site-header.is-scrolled {
  /* alpha değerleri JS ile ayarlanıyor */
  /* boş rule set olmasın diye yer tutucu */
  backdrop-filter: none;
}

.site-header.is-scrolled .menu a {
  color: var(--text);
}

.site-header.is-scrolled .nav-cat-icon {
  color: var(--text);
}

.site-header.is-scrolled .nav-cat-icon-img {
  filter: none;
}

/* Header'da container ekran genişliğini kullansın */
.site-header .container {
  width: 100%;
  margin: 0;
  padding: 0 clamp(18px, 4vw, 48px);
}

.header-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  gap: 0.75rem 1rem;
  min-height: 52px;
}

/* Üst satır: logo + (mobilde) hamburger — masaüstünde yalnızca logo ortalanır */
.header-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

/* Mobil: logo tam ortada, hamburger sağda (grid yalnızca .header-bar içinde) */
@media (max-width: 840px) {
  :root {
    --site-header-h: 64px;
  }

  .header-inner {
    align-items: stretch;
    gap: 0;
    min-height: 0;
    width: 100%;
  }

  .header-bar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: 100%;
  }

  .header-brand {
    grid-column: 2;
    justify-self: center;
    margin: 0;
  }

  .nav-toggle {
    grid-column: 3;
    justify-self: end;
  }
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  cursor: pointer;
  touch-action: manipulation;
  flex-shrink: 0;
  z-index: 320;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.2);
}

.nav-toggle:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.85);
  outline-offset: 2px;
}

.site-header.is-scrolled .nav-toggle {
  border-color: rgba(31, 41, 55, 0.2);
  background: rgba(255, 255, 255, 0.85);
}

.site-header.is-scrolled .nav-toggle:hover {
  background: #fff;
}

.nav-toggle__bar {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: transform 0.25s ease, opacity 0.2s ease, background 0.2s ease;
}

.site-header.is-scrolled .nav-toggle__bar {
  background: var(--text);
}

.nav-toggle.is-open .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-backdrop {
  display: none;
}

@media (min-width: 841px) {
  .nav-toggle {
    display: none !important;
  }
}

@media (max-width: 840px) {
  .nav-toggle {
    display: flex;
  }

  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 305;
    background: rgba(15, 23, 42, 0.45);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease, visibility 0.28s ease;
  }

  .nav-backdrop.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

.header-brand {
  position: static;
  transform: none;
  z-index: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  min-width: 0;
  flex-shrink: 0;
  margin-bottom: 0.15rem;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  pointer-events: none;
  z-index: 2;
}

.hero-copy {
  pointer-events: none;
  text-align: center;
  padding: 0 1rem;
}

.hero-slogan {
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}

.hero-slogan__line {
  margin: 0;
  display: block;
  width: fit-content;
  text-align: center;
  font-size: 45px;
  line-height: 1.05;
  opacity: 0;
  filter: blur(10px);
  transform: translateY(10px) scale(1.02);
  letter-spacing: 0.22em;
  animation: heroDustToSolid 1200ms cubic-bezier(0.22, 1, 0.36, 1) both;
  /* Toz hissi için hafif “tanecik” glow */
  text-shadow:
    0 10px 30px rgba(0, 0, 0, 0.35),
    0 0 14px rgba(255, 255, 255, 0.08),
    6px -4px 18px rgba(255, 255, 255, 0.06),
    -8px 6px 22px rgba(255, 255, 255, 0.05);
}

.hero-slogan__line:nth-child(2) {
  /* 1. satır otursun, sonra 2. satır gelsin */
  animation-delay: 820ms;
}

@keyframes heroDustToSolid {
  from {
    opacity: 0;
    filter: blur(14px);
    transform: translateY(14px) scale(1.03);
    letter-spacing: 0.32em;
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
    letter-spacing: 0.02em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slogan__line {
    animation: none !important;
    opacity: 1;
    filter: none;
    transform: none;
    letter-spacing: 0.02em;
  }
}

.hero-search {
  pointer-events: auto;
  position: relative;
  /* Hero yüksekliğine göre yaklaşık %20 aşağı */
  top: 20%;
  width: 30vw;
  min-width: 320px;
  max-width: 100%;
  display: flex;
  align-items: stretch;
  border: 1px solid var(--card-border);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.hero-search input[type="search"] {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  padding: 0.45rem 0.9rem;
  font-size: 0.95rem;
  color: var(--text);
  outline: none;
}

.hero-search input[type="search"]::placeholder {
  color: var(--muted);
}

.search-submit {
  flex-shrink: 0;
  border: none;
  background: var(--primary);
  color: #fff;
  font-weight: 400;
  font-size: 0.88rem;
  padding: 0.45rem 1.1rem;
  cursor: pointer;
}

.search-submit:hover {
  filter: brightness(1.05);
}

.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-title {
  margin: 0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.brand-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.site-logo {
  display: block;
  height: 62px;
  width: auto;
  max-width: min(286px, 52vw);
  object-fit: contain;
}

.main-nav {
  margin: 0 auto;
  flex-shrink: 0;
  min-width: 0;
  display: flex;
  justify-content: center;
  /* overflow-x burada olmamalı: alt menüler kesilir ve scrollbar oluşur */
  overflow: visible;
}

.menu,
.dropdown,
.submenu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0.35rem;
  overflow: visible;
}

.menu > li {
  position: relative;
}

/* Alt menü ile tetikleyici arasında boşluk olmasın; aksi halde fare boşlukta
   hover kaybeder ve menü kapanır. */
.has-dropdown,
.has-submenu {
  position: relative;
}

.menu a {
  display: block;
  text-decoration: none;
  color: #fff;
  font-family: var(--font-nav);
  padding: 0.35rem 0.55rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: calc(0.95rem + 1px);
  background: transparent;
  white-space: nowrap;
}

.menu a:hover {
  background: transparent;
  color: #fff;
  text-decoration: underline;
}

/* Aktif sayfa: alt çizgi yok (hover ile diğer linkler gibi). Scroll sonrası renk vurgusu. */
.menu a[aria-current="page"] {
  text-decoration: none;
}

.site-header.is-scrolled .menu a[aria-current="page"] {
  color: var(--primary);
}

.site-header.is-scrolled .menu a:hover {
  color: var(--text);
}

.has-submenu > a {
  display: flex;
  align-items: center;
}

.nav-cat-icon {
  flex-shrink: 0;
  width: 1.15rem;
  height: 1.15rem;
  margin-right: 0.45rem;
  color: var(--icon-anthracite);
}

.nav-cat-icon-img {
  flex-shrink: 0;
  width: 1.15rem;
  height: 1.15rem;
  margin-right: 0.45rem;
  display: block;
  object-fit: contain;
}

.dropdown,
.submenu {
  display: none;
  position: absolute;
  min-width: min(380px, calc(100vw - 1.5rem));
  /* Glass dropdown */
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 10px;
  text-align: left;
  box-shadow:
    0 14px 38px rgba(0, 0, 0, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  backdrop-filter: blur(12px) saturate(140%);
  z-index: 300;
}

.dropdown {
  top: 100%;
  left: 0;
  padding: 0.5rem 0.35rem 0.35rem;
}

.dropdown > li.dropdown__all-products {
  margin-bottom: 0.35rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid rgba(203, 213, 225, 0.65);
}

.dropdown > li.dropdown__all-products > a {
  font-weight: 700;
}

.submenu {
  top: 0;
  left: 100%;
  padding: 0.35rem 0.35rem 0.35rem 0.5rem;
}

.dropdown a,
.submenu a {
  border-radius: 6px;
  padding: 0.5rem 0.65rem;
  font-weight: 400;
  font-size: calc(1rem - 1px);
}

/* Dropdown içinde beyaz zemin üstünde siyah yazı */
.dropdown a,
.submenu a {
  color: var(--text);
  background: transparent;
}

.dropdown a:hover,
.submenu a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.35);
  text-decoration: underline;
}

@media (min-width: 841px) {
  .has-dropdown:hover > .dropdown,
  .has-submenu:hover > .submenu {
    display: block;
  }
}

.intro {
  margin: 2rem 0 1.2rem;
  text-align: center;
}

.intro h1,
.intro h2 {
  margin-bottom: 0.25rem;
  font-size: clamp(1.35rem, 2.5vw + 1rem, 1.65rem);
}

.intro p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.95rem, 1.2vw + 0.85rem, 1.08rem);
}

.about-content {
  max-width: 48rem;
  margin: 0 auto 2.75rem;
  text-align: left;
}

.about-text-block {
  margin-bottom: 1.85rem;
}

.about-text-block:last-child {
  margin-bottom: 0;
}

.about-text-block h3 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.05rem, 1.2vw + 0.9rem, 1.28rem);
  font-weight: 700;
  color: var(--text);
}

.about-text-block p {
  margin: 0;
  line-height: 1.7;
  font-size: clamp(0.95rem, 0.5vw + 0.9rem, 1.05rem);
  color: var(--text);
}

.about-text-block strong {
  font-weight: 700;
  color: var(--text);
}

.about-manifesto {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.about-manifesto li {
  margin: 0;
  padding: 0.55rem 0.85rem;
  line-height: 1.6;
  font-size: clamp(0.95rem, 0.5vw + 0.9rem, 1.05rem);
  color: var(--text);
  border-left: 3px solid var(--primary);
  background: rgba(22, 163, 74, 0.06);
}

.about-tagline {
  margin-top: 1.25rem !important;
  font-size: clamp(1rem, 0.6vw + 0.95rem, 1.15rem) !important;
  letter-spacing: 0.02em;
  color: var(--primary) !important;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.category-card {
  position: relative;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(31, 41, 55, 0.08);
  overflow: hidden;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.category-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--primary);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.category-card:hover {
  border-color: rgba(31, 122, 63, 0.22);
  box-shadow: 0 12px 32px rgba(31, 122, 63, 0.08);
  transform: translateY(-2px);
}

.category-card:hover::before {
  opacity: 1;
}

.category-card__link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.1rem 1.15rem 1.2rem;
  text-decoration: none;
  color: inherit;
  min-height: 100%;
}

.category-card__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  color: var(--icon-anthracite);
  transition: transform 0.25s ease;
}

.category-card__icon svg {
  width: 2.1rem;
  height: 2.1rem;
  display: block;
}

.category-card:hover .category-card__icon {
  transform: scale(1.04);
}

.category-card__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
}

.category-card h3 {
  margin: 0;
  font-size: clamp(0.92rem, 0.5vw + 0.82rem, 1.05rem);
  line-height: 1.35;
  font-weight: 700;
  color: var(--text);
}

.category-card__action {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--muted);
  transition: color 0.2s ease;
}

.category-card__action::after {
  content: " →";
  display: inline-block;
  transition: transform 0.2s ease;
}

.category-card:hover .category-card__action {
  color: var(--primary);
}

.category-card:hover .category-card__action::after {
  transform: translateX(3px);
}

@media (max-width: 900px) {
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

.blog-page main {
  background:
    radial-gradient(circle at 10% 12%, rgba(22, 163, 74, 0.08), transparent 34%),
    radial-gradient(circle at 88% 16%, rgba(59, 130, 246, 0.06), transparent 30%),
    linear-gradient(180deg, rgba(248, 250, 252, 0.85) 0%, rgba(255, 255, 255, 1) 32%);
}

.blog-page .blog-intro {
  max-width: 54rem;
  margin-left: auto;
  margin-right: auto;
}

.blog-page .blog-intro h2 {
  font-size: clamp(1.45rem, 2.9vw + 0.95rem, 2rem);
  letter-spacing: 0.01em;
}

.blog-page .blog-intro p {
  line-height: 1.75;
}

.blog-page .blog-tips-grid {
  gap: 1rem;
}

.blog-page .blog-tips-grid .category-card {
  align-items: flex-start;
  text-align: left;
  border: 1px solid rgba(22, 163, 74, 0.16);
  border-radius: 14px;
  padding: 1rem 1rem 1.1rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.94));
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
}

.blog-page .blog-tips-grid .category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
  border-color: rgba(22, 163, 74, 0.3);
}

.blog-page .blog-tips-grid .category-card h3 {
  font-size: clamp(0.98rem, 1.1vw + 0.82rem, 1.2rem);
  line-height: 1.45;
}

.blog-page .blog-tips-grid .category-card p {
  margin: 0;
  color: #334155;
  line-height: 1.72;
  font-size: clamp(0.93rem, 0.5vw + 0.85rem, 1rem);
}

.blog-page .blog-notes {
  max-width: 56rem;
}

.blog-page .blog-notes .about-text-block {
  padding: 0.95rem 1rem;
  border-radius: 12px;
  border-left: 4px solid rgba(22, 163, 74, 0.45);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
}

.blog-page .blog-layout {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  margin-bottom: 2.2rem;
}

.blog-page .blog-sidebar {
  position: sticky;
  top: 90px;
  display: grid;
  gap: 0.45rem;
  padding: 0.85rem;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.blog-page .blog-topic {
  width: 100%;
  text-align: left;
  border: 1px solid rgba(148, 163, 184, 0.32);
  background: #ffffff;
  color: #1e293b;
  border-radius: 10px;
  padding: 0.62rem 0.72rem;
  font: inherit;
  font-weight: 600;
  line-height: 1.35;
  cursor: pointer;
  transition: all 0.18s ease;
}

.blog-page .blog-topic:hover {
  border-color: rgba(22, 163, 74, 0.45);
  background: rgba(240, 253, 244, 0.85);
}

.blog-page .blog-topic.is-active {
  border-color: rgba(22, 163, 74, 0.55);
  background: linear-gradient(180deg, rgba(220, 252, 231, 0.7), rgba(240, 253, 244, 0.95));
  color: #14532d;
}

.blog-page .blog-content-panels {
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  padding: 1.05rem 1.1rem;
  min-height: 420px;
}

.blog-page .blog-panel {
  display: none;
  animation: blogFadeIn 0.2s ease;
}

.blog-page .blog-panel.is-active {
  display: block;
}

.blog-page .blog-panel h3 {
  margin: 0 0 0.55rem;
  font-size: clamp(1.08rem, 1.35vw + 0.9rem, 1.35rem);
}

.blog-page .blog-panel__meta {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--home-forest, #002f41);
}

.blog-page .blog-panel__media {
  margin: 0 0 0.8rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.25);
}

.blog-page .blog-panel__media img {
  width: 100%;
  height: clamp(180px, 28vw, 280px);
  display: block;
  object-fit: cover;
}

.blog-page .blog-panel p {
  margin: 0 0 0.85rem;
  line-height: 1.78;
  color: #334155;
}

.blog-page .blog-panel p:last-child {
  margin-bottom: 0;
}

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

@media (max-width: 840px) {
  .blog-page .blog-tips-grid {
    grid-template-columns: 1fr;
  }

  .blog-page .blog-tips-grid .category-card {
    padding: 0.95rem 0.9rem 1rem;
  }

  .blog-page .blog-layout {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .blog-page .blog-sidebar {
    position: static;
    grid-template-columns: 1fr;
    padding: 0.7rem;
  }

  .blog-page .blog-content-panels {
    min-height: 0;
    padding: 0.9rem 0.9rem 1rem;
  }
}

.gallery-page main {
  background:
    radial-gradient(circle at 12% 14%, rgba(56, 189, 248, 0.08), transparent 34%),
    radial-gradient(circle at 88% 18%, rgba(34, 197, 94, 0.08), transparent 32%),
    linear-gradient(180deg, rgba(248, 250, 252, 0.85), #ffffff 34%);
}

.gallery-page .gallery-intro {
  max-width: 52rem;
  margin-left: auto;
  margin-right: auto;
}

.gallery-page .gallery-slider {
  --gallery-gap: 0.75rem;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.9rem;
}

.gallery-page .gallery-slider__viewport {
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.1);
}

.gallery-page .gallery-slider__track {
  display: flex;
  gap: var(--gallery-gap);
  transition: transform 0.28s ease;
  will-change: transform;
}

.gallery-page .gallery-slide {
  flex: 0 0 calc((100% - (var(--gallery-gap) * 3)) / 3.5);
  margin: 0;
  cursor: zoom-in;
}

.gallery-page .gallery-slide img {
  width: 100%;
  height: clamp(280px, 44vw, 560px);
  object-fit: cover;
  display: block;
}

.gallery-page .gallery-slide figcaption {
  padding: 0.8rem 0.95rem 0.95rem;
  font-weight: 600;
  color: #1e293b;
}

.gallery-page .gallery-slider__nav {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: rgba(255, 255, 255, 0.9);
  color: #0f172a;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease;
}

.gallery-page .gallery-slider__nav:hover {
  transform: translateY(-1px);
  background: #ffffff;
}

.gallery-page .gallery-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.42rem;
  margin-bottom: 2.2rem;
}

.gallery-page .gallery-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(148, 163, 184, 0.5);
  cursor: pointer;
}

.gallery-page .gallery-dot.is-active {
  background: var(--primary);
}

.gallery-page .gallery-lightbox[hidden] {
  display: none;
}

.gallery-page .gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 800;
}

.gallery-page .gallery-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.84);
}

.gallery-page .gallery-lightbox__dialog {
  position: relative;
  z-index: 1;
  width: min(1100px, calc(100vw - 2rem));
  margin: min(5vh, 2rem) auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.45rem;
}

.gallery-page .gallery-lightbox__figure {
  margin: 0;
  background: #0b1220;
  border-radius: 12px;
  overflow: hidden;
}

.gallery-page .gallery-lightbox__figure img {
  width: 100%;
  max-height: min(78vh, 780px);
  object-fit: contain;
  display: block;
  background: #020617;
}

.gallery-page .gallery-lightbox__figure figcaption {
  padding: 0.7rem 0.85rem 0.82rem;
  color: #e2e8f0;
  font-weight: 600;
}

.gallery-page .gallery-lightbox__close {
  position: absolute;
  top: -0.7rem;
  right: -0.1rem;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.55);
  background: rgba(15, 23, 42, 0.92);
  color: #f8fafc;
  font-size: 1.4rem;
  cursor: pointer;
}

.gallery-page .gallery-lightbox__nav {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.55);
  background: rgba(15, 23, 42, 0.92);
  color: #f8fafc;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 840px) {
  .gallery-page .gallery-slider {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .gallery-page .gallery-slider__nav {
    display: none;
  }

  .gallery-page .gallery-slide img {
    height: clamp(220px, 58vw, 340px);
  }

  .gallery-page .gallery-slider__track {
    gap: 0.6rem;
  }

  .gallery-page .gallery-slide {
    flex-basis: 100%;
  }

  .gallery-page .gallery-lightbox__dialog {
    width: calc(100vw - 1rem);
    margin: 0.5rem auto;
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

  .gallery-page .gallery-lightbox__nav {
    justify-self: center;
  }

  .gallery-page .gallery-lightbox__figure img {
    max-height: 72vh;
  }
}

.products-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 1rem;
  margin-bottom: 2.2rem;
  align-items: start;
}

/* Ara sonrası kaydırma: sabit üst menü altında kalsın */
#urunler-sonuclari {
  scroll-margin-top: calc(var(--site-header-h, 64px) + 0.75rem);
}

#urunler-sonuclari:focus {
  outline: none;
}

#urunler-sonuclari:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

.products-sidebar {
  position: sticky;
  top: calc(var(--site-header-h, 64px) + 1rem);
  align-self: start;
}

.products-sidebar__inner {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: 14px;
  padding: 0.6rem;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.06);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  backdrop-filter: blur(12px) saturate(140%);
}

.products-cat {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.65rem;
  border-radius: 12px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  font-weight: 700;
  font-size: 0.95rem;
}

.products-cat:hover {
  background: rgba(255, 255, 255, 0.6);
  border-color: rgba(229, 231, 235, 0.9);
}

.products-cat.is-active {
  background: rgba(31, 122, 63, 0.08);
  border-color: rgba(31, 122, 63, 0.22);
}

.products-cat__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--icon-anthracite);
}

.products-content {
  min-width: 0;
}

.products-toolbar {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin: 0 0 0.75rem;
}

.products-title {
  font-weight: 700;
  font-size: 1.2rem;
}

.products-count {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.product-card {
  border-radius: 14px;
  border: 1px solid rgba(229, 231, 235, 0.9);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.product-card__media {
  aspect-ratio: 16 / 10;
  min-height: 140px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0.5rem 0.65rem;
}

.product-card__img {
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.product-card__body {
  padding: 0.75rem 0.8rem 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.product-card__category {
  margin: 0 0 0.15rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--primary);
  opacity: 0.85;
}

.product-card--search-hit .product-card__title {
  margin-top: 0;
}

.product-card__title {
  margin: 0;
  font-size: 1rem;
  line-height: 1.25;
}

.product-card__meta {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.9rem;
}

.product-card__price {
  color: var(--text);
  font-weight: 700;
  font-size: 0.95rem;
}

.product-card__cta {
  margin-top: 0.35rem;
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
  width: fit-content;
}

.product-card__cta:hover {
  text-decoration: underline;
}

.product-card__content-preview {
  list-style: none;
  margin: 0.45rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.28rem;
  font-size: 0.78rem;
  line-height: 1.35;
  color: var(--muted);
}

.product-card__content-preview li {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  min-width: 0;
}

.product-card__content-preview strong {
  color: var(--text);
  font-weight: 700;
  white-space: nowrap;
}

.product-card__content-more {
  justify-content: flex-start !important;
  font-weight: 700;
  color: var(--primary);
}

.product-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 600;
}

.product-modal.is-open {
  display: block;
}

.product-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
}

.product-modal__dialog {
  position: relative;
  width: min(980px, calc(100vw - 2rem));
  max-height: min(92vh, calc(100dvh - 1.5rem));
  margin: min(8vh, 5rem) auto;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(229, 231, 235, 0.95);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.product-modal__close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid rgba(229, 231, 235, 0.95);
  background: #ffffff;
  color: var(--text);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.product-modal__close:hover {
  background: rgba(249, 250, 251, 1);
}

.product-modal__content {
  padding: 1.25rem 1.25rem 1.35rem;
}

.product-modal__layout {
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.product-modal__layout--no-media {
  grid-template-columns: 1fr;
}

.product-modal__info {
  min-width: 0;
  padding-right: 2rem;
}

.product-modal__header {
  padding: 0.15rem 0.25rem 0.85rem;
}

.product-modal__title {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.product-modal__subtitle {
  margin-top: 0.15rem;
  color: var(--muted);
  font-weight: 600;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.product-modal__chips {
  margin-top: 0.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.product-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.55);
  font-weight: 700;
  font-size: 0.9rem;
}

.product-modal__body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: start;
}

.product-modal__details {
  min-width: 0;
}

.product-modal__empty {
  margin: 0;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: #f8faf9;
  border: 1px solid rgba(31, 122, 63, 0.12);
  color: var(--muted);
  font-weight: 600;
  line-height: 1.5;
}

.product-modal__media {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(229, 231, 235, 0.95);
  background: #f8faf9;
}

.product-modal__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.product-modal__section-title {
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--primary);
  font-size: 1rem;
}

.product-modal__table {
  display: grid;
  gap: 0.4rem;
  margin: 0;
}

.product-modal__row {
  display: grid;
  grid-template-columns: minmax(10.5rem, 38%) minmax(0, 1fr);
  gap: 0.8rem;
  align-items: start;
  padding: 0.55rem 0.7rem;
  border-radius: 10px;
  background: #f8faf9;
  border: 1px solid rgba(31, 122, 63, 0.14);
  min-width: 0;
}

.product-modal__row dt {
  margin: 0;
  font-weight: 700;
  min-width: 0;
  overflow-wrap: break-word;
  word-break: normal;
  line-height: 1.35;
}

.product-modal__row dd {
  margin: 0;
  font-weight: 700;
  color: var(--text);
  min-width: 0;
  max-width: 100%;
  text-align: left;
  overflow-wrap: break-word;
  word-break: normal;
  line-height: 1.45;
}

@media (max-width: 840px) {
  .product-modal__dialog {
    width: calc(100vw - 1.5rem);
    margin: max(0.75rem, env(safe-area-inset-top, 0px)) auto
      max(0.75rem, env(safe-area-inset-bottom, 0px));
    max-height: min(92vh, calc(100dvh - 1.5rem - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px)));
  }

  .product-modal__layout {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .product-modal__media {
    max-width: 280px;
    margin: 0 auto;
  }

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

  .product-modal__row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .product-modal__row dd {
    text-align: left;
  }

  .product-modal__content {
    padding-bottom: calc(1.1rem + env(safe-area-inset-bottom, 0px));
  }
}

@media (max-width: 1020px) {
  .products-layout {
    grid-template-columns: 260px 1fr;
  }

  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 840px) {
  .products-layout {
    grid-template-columns: 1fr;
  }

  .products-sidebar {
    position: static;
    top: auto;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }
}

.hero-banner {
  position: relative;
  z-index: 0;
  width: 100%;
  margin: 0 0 1.4rem;
  border: none;
  /* Video header'ın altına kadar değil, tüm ekranı kaplasın (header üstte overlay) */
  height: 100vh;
  min-height: 520px;
  overflow: hidden;
}

.hero-banner__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
  object-fit: cover;
  /* Alt kısım kesilmesin: kadrajı biraz aşağı (daha fazla alt görünsün) */
  object-position: center 62%;
  background: #000;
  filter: brightness(0.8);
  opacity: 0;
  transition: opacity 900ms ease;
}

.hero-banner__video.is-active {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .hero-banner__video {
    transition: none;
  }
}

.site-footer {
  border-top: 1px solid var(--card-border);
  color: var(--muted);
  font-size: 0.93rem;
  padding: 1.2rem 0 2rem;
}

@media (max-width: 840px) {
  .hero-banner__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 1;
    object-fit: cover;
    object-position: 35% 58%;
    background: #000;
    filter: brightness(0.8);
    opacity: 0;
    transition: opacity 900ms ease;
  }
  .hero-slogan__line {
    font-size: 38px;
  }

  .header-brand {
    flex-direction: row;
    align-items: center;
    margin-bottom: 0;
  }

  .site-title {
    align-self: center;
  }

  .site-logo {
    height: 52px;
    max-width: min(234px, 70vw);
  }

  /* Header altından üstten aşağı cam panel (tam genişlik) */
  .main-nav {
    position: fixed;
    top: var(--site-header-h, 64px);
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 0;
    min-height: 0;
    margin: 0;
    --nav-drawer-pad-x: clamp(1.35rem, 5vw, 2rem);
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    z-index: 310;
    background: rgba(255, 255, 255, 0.38);
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-top: none;
    border-radius: 0 0 14px 14px;
    box-shadow:
      0 16px 40px rgba(0, 0, 0, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.42);
    -webkit-backdrop-filter: blur(20px) saturate(155%);
    backdrop-filter: blur(20px) saturate(155%);
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
    transition:
      max-height 0.38s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.28s ease,
      visibility 0.28s ease;
  }

  .main-nav.is-open {
    max-height: min(85dvh, 720px);
    padding-top: 0.65rem;
    padding-bottom: max(1rem, env(safe-area-inset-bottom, 0px));
    padding-left: max(var(--nav-drawer-pad-x), env(safe-area-inset-left, 0px));
    padding-right: max(var(--nav-drawer-pad-x), env(safe-area-inset-right, 0px));
    overflow-x: hidden;
    overflow-y: auto;
    visibility: visible;
    pointer-events: auto;
    opacity: 1;
  }

  .main-nav.is-open .header-search.hero-search {
    display: flex;
    width: 100%;
    max-width: none;
    flex: 1 1 auto;
    margin-bottom: 0;
    border-color: rgba(31, 41, 55, 0.16);
    background: #fff;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
  }

  .main-nav.is-open .header-search.hero-search input[type="search"] {
    color: var(--text);
  }

  .main-nav.is-open .header-search.hero-search input[type="search"]::placeholder {
    color: var(--muted);
  }

  .main-nav.is-open .header-search.hero-search .search-submit {
    background: var(--home-forest);
    color: #fff;
  }

  .menu {
    flex: 1 1 auto;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 0.45rem;
    width: 100%;
    min-height: 0;
    padding-top: clamp(0.35rem, 2vh, 1rem);
    padding-bottom: 0.5rem;
    text-align: start;
  }

  .menu > li {
    width: 100%;
    max-width: 100%;
    text-align: start;
  }

  .menu a {
    padding: 0.55rem 0.35rem 0.55rem 0;
    font-size: calc(0.88rem + 1px);
    white-space: normal;
    color: var(--text);
    background: transparent;
    text-align: start;
  }

  .has-submenu > a {
    justify-content: flex-start;
    gap: 0.45rem;
  }

  .main-nav .nav-cat-icon,
  .main-nav .nav-cat-icon-img {
    margin-right: 0.45rem;
  }

  .menu a:hover {
    color: var(--text);
    text-decoration: underline;
    background: rgba(255, 255, 255, 0.22);
  }

  .site-header .menu a {
    color: var(--text);
  }

  .site-header.is-scrolled .menu a {
    color: var(--text);
  }

  .menu a[aria-current="page"] {
    color: var(--primary);
    font-weight: 700;
  }

  .nav-cat-icon {
    color: var(--primary);
  }

  .nav-cat-icon-img {
    filter: none;
  }

  /* Tıklanınca açılan alt menüler (hover yok) */
  .dropdown,
  .submenu {
    display: none;
    position: static;
    min-width: 0;
    width: 100%;
    margin: 0.35rem 0 0;
    padding: 0.4rem 0.35rem 0.4rem 0.5rem;
    text-align: start;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 10px;
    -webkit-backdrop-filter: blur(12px) saturate(145%);
    backdrop-filter: blur(12px) saturate(145%);
  }

  .submenu {
    margin-top: 0.35rem;
    padding: 0.35rem 0.35rem 0.35rem 0.65rem;
    background: rgba(255, 255, 255, 0.2);
  }

  .has-dropdown.is-open > .dropdown,
  .has-submenu.is-open > .submenu {
    display: block;
  }

  .dropdown a,
  .submenu a {
    color: var(--text);
    background: transparent;
    font-weight: 400;
    font-size: calc(0.92rem);
    text-align: start;
    padding-left: 0;
  }

  .dropdown a:hover,
  .submenu a:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.28);
    text-decoration: underline;
  }

  @media (prefers-reduced-motion: reduce) {
    .main-nav {
      transition: none;
    }
  }

  .hero-banner {
    min-height: 460px;
  }

  .hero-search {
    max-width: min(420px, 100%);
  }
}

/* Çok kısa (yükseklik az) ekranlarda daha da kısalt ve üst kısmı daha fazla göster */
@media (max-height: 650px) {
  .hero-banner {
    min-height: 420px;
  }
  .hero-banner__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 1;
    object-fit: cover;
    object-position: center 55%;
    background: #000;
    filter: brightness(0.8);
    opacity: 0;
    transition: opacity 900ms ease;
  }
}

/* ===== Ana sayfa / ortak hero ===== */
.site-topbar {
  display: none;
}

.home-page .site-topbar {
  display: block;
  background: var(--home-forest);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem;
  font-weight: 500;
}

.site-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0;
}

.site-topbar__tagline {
  margin: 0;
}

.site-topbar__links {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.site-topbar__links a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.site-topbar__links a:hover {
  text-decoration: underline;
}

.site-header--home {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  --header-bg-alpha: 0;
  --header-shadow-alpha: 0;
  background: rgba(255, 255, 255, var(--header-bg-alpha));
  box-shadow: 0 10px 28px rgba(0, 0, 0, calc(0.08 * var(--header-shadow-alpha)));
  border-bottom: none;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.site-header--home .menu a {
  color: var(--home-forest);
}

.site-header--home .menu a:hover {
  color: var(--home-forest-dark);
}

.site-header--home .menu a[aria-current="page"] {
  color: var(--home-forest);
}

.site-header--home.is-scrolled .menu a {
  color: var(--text);
}

.site-header--home.is-scrolled .menu a:hover {
  color: var(--primary);
}

.site-header--home.is-scrolled .menu a[aria-current="page"] {
  color: var(--primary);
}

.products-page .site-header--home:not(.is-scrolled) .menu > li > a,
.products-page .site-header--home:not(.is-scrolled) .menu > li > a:hover,
.products-page .site-header--home:not(.is-scrolled) .menu > li > a[aria-current="page"],
.home-page .site-header--home:not(.is-scrolled) .menu > li > a,
.home-page .site-header--home:not(.is-scrolled) .menu > li > a:hover,
.home-page .site-header--home:not(.is-scrolled) .menu > li > a[aria-current="page"] {
  color: #fff;
}

.site-header--home .nav-toggle {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
}

.site-header--home .nav-toggle__bar {
  background: #fff;
}

.site-header--home.is-scrolled .nav-toggle {
  border-color: rgba(31, 41, 55, 0.2);
  background: rgba(255, 255, 255, 0.85);
}

.site-header--home.is-scrolled .nav-toggle__bar {
  background: var(--text);
}

.header-cta {
  display: none;
}

.header-search.hero-search {
  display: none;
  position: static;
  top: auto;
  width: auto;
  min-width: 0;
  max-width: 240px;
  flex: 0 1 240px;
  border: 1px solid var(--home-forest);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: none;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.header-search.hero-search input[type="search"] {
  padding: 0.4rem 0.75rem;
  font-size: 0.85rem;
  color: #fff;
}

.header-search.hero-search input[type="search"]::placeholder {
  color: var(--home-forest);
  opacity: 1;
}

.header-search.hero-search .search-submit {
  padding: 0.4rem 0.85rem;
  font-size: 0.82rem;
  background: rgba(255, 255, 255, 0.92);
  color: var(--home-forest);
}

.header-search.hero-search .search-submit:hover {
  background: #fff;
  color: var(--home-forest-dark);
  filter: none;
}

.site-header.is-scrolled .header-search.hero-search {
  border-color: rgba(31, 41, 55, 0.16);
  background: #fff;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
}

.site-header.is-scrolled .header-search.hero-search input[type="search"] {
  color: var(--text);
}

.site-header.is-scrolled .header-search.hero-search input[type="search"]::placeholder {
  color: var(--muted);
}

.site-header.is-scrolled .header-search.hero-search .search-submit {
  background: var(--home-forest);
  color: #fff;
}

@media (min-width: 841px) {
  .site-header--home .header-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    min-height: 72px;
  }

  .site-header--home .header-bar {
    flex-direction: row;
    width: auto;
    flex-shrink: 0;
  }

  .site-header--home .header-brand {
    margin-bottom: 0;
  }

  .site-header--home .main-nav {
    flex: 1;
    justify-content: flex-end;
    align-items: center;
    gap: 1rem;
  }

  .site-header--home .main-nav .menu {
    justify-content: center;
    flex: 1;
  }

  .site-header--home .header-cta {
    display: none;
  }

  .site-header--home .header-search.hero-search {
    display: flex;
  }
}

.home-hero--split.hero-banner {
  height: 100svh;
  min-height: 100svh;
  margin: 0;
  position: relative;
}

.home-hero__grid {
  position: relative;
  height: 100%;
  min-height: 100svh;
  overflow: hidden;
}

.home-hero__content {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
  width: 69.6%;
  max-width: none;
  height: 100%;
  min-height: 100svh;
  margin: 0;
  padding: 0;
  aspect-ratio: unset;
  background: none;
  display: block;
  box-shadow: none;
  overflow: hidden;
  animation: homeHeroPanelIn 1.15s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.home-hero__panel {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  object-position: left center;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

.home-hero__panel--desktop {
  display: block;
}

.home-hero__panel--mobile {
  display: none;
}

.home-hero__content-inner {
  position: relative;
  z-index: 1;
  min-height: inherit;
  height: 100%;
  padding: clamp(2rem, 4vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  transform: translateY(100px);
  perspective: 1200px;
  transform-style: preserve-3d;
}

/* Slide-in without leaving a left gap: element stays at left:0, revealed with clip-path */
@keyframes homeHeroPanelIn {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}

@keyframes homeHeroDepthIn {
  from {
    opacity: 0;
    transform: translate3d(0, 28px, -160px) scale(0.9);
    filter: blur(10px);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

.home-hero__eyebrow {
  animation: homeHeroDepthIn 1s cubic-bezier(0.22, 1, 0.36, 1) 0.42s both;
}

.home-hero__title {
  animation: homeHeroDepthIn 1.05s cubic-bezier(0.22, 1, 0.36, 1) 0.58s both;
}

.home-hero__lead {
  animation: homeHeroDepthIn 1s cubic-bezier(0.22, 1, 0.36, 1) 0.74s both;
}

.home-hero__trust li:nth-child(1) {
  animation: homeHeroDepthIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.9s both;
}

.home-hero__trust li:nth-child(2) {
  animation: homeHeroDepthIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) 1.02s both;
}

.home-hero__trust li:nth-child(3) {
  animation: homeHeroDepthIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) 1.14s both;
}

.home-hero__actions {
  animation: homeHeroDepthIn 1s cubic-bezier(0.22, 1, 0.36, 1) 1.28s both;
}

@media (prefers-reduced-motion: reduce) {
  .home-hero__content,
  .home-hero__panel--mobile,
  .home-hero__eyebrow,
  .home-hero__title,
  .home-hero__lead,
  .home-hero__actions,
  .home-hero__trust li {
    animation: none !important;
    opacity: 1;
    transform: none;
    filter: none;
    clip-path: none !important;
  }
}

.home-hero__eyebrow {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
}

.home-hero__title {
  margin: 0;
  font-family: var(--home-serif);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.08;
  color: var(--home-forest);
  font-weight: 700;
}

.home-hero__lead {
  margin: 0;
  max-width: 34rem;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.65;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.2rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn--primary {
  background: var(--home-forest);
  color: #fff;
}

.btn--primary:hover {
  background: var(--home-forest-dark);
}

.btn--outline {
  background: transparent;
  color: var(--home-forest);
  border-color: rgba(26, 77, 46, 0.35);
}

.home-hero__actions .btn--outline {
  color: #fff;
}

.btn--outline:hover {
  border-color: var(--home-forest);
  background: rgba(26, 77, 46, 0.06);
}

.btn--light {
  background: #fff;
  color: var(--home-forest);
}

.btn--outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}

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

.home-hero__trust {
  list-style: none;
  margin: 0.35rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.home-hero__trust li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}

.home-hero__trust strong {
  display: block;
  font-weight: 700;
}

.home-hero__trust-icon {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.home-hero__media {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.home-hero__media::before {
  content: none;
}

.products-page .home-hero__media::before,
.home-page .home-hero__media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(0, 0, 0, 0.18);
  pointer-events: none;
}

.home-hero--split .hero-banner__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: none;
  opacity: 1;
  transition: none;
  -webkit-mask-image: none;
  mask-image: none;
}

.section-eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
}

.section-eyebrow--leaf {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.section-eyebrow--leaf svg {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
}

.section-eyebrow--light {
  color: rgba(255, 255, 255, 0.85);
}

.section-title {
  margin: 0 0 0.85rem;
  font-family: var(--home-serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.12;
  color: var(--home-forest);
  font-weight: 700;
}

.section-title--light {
  color: #fff;
}

.section-lead {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.7;
  max-width: 36rem;
}

.section-heading--center {
  text-align: center;
  margin-bottom: 2rem;
}

.home-about {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: #fff;
}

.home-about__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.home-about__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.home-feature-card {
  border: 1px solid rgba(229, 231, 235, 0.95);
  border-radius: 14px;
  padding: 1rem 1rem 1.1rem;
  background: #fff;
}

.home-feature-card__icon {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.45rem;
}

.home-feature-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.home-feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.55;
}

.home-categories {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  background: var(--home-cream);
}

.home-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.home-category-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(229, 231, 235, 0.95);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-category-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(26, 77, 46, 0.1);
}

.home-category-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.home-category-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.home-category-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-category-card__icon {
  position: absolute;
  left: 50%;
  bottom: -1.1rem;
  transform: translateX(-50%);
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  background: #fff;
  border: 2px solid rgba(31, 122, 63, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.home-category-card__icon svg {
  width: 1.2rem;
  height: 1.2rem;
}

.home-category-card__body {
  padding: 1.65rem 1rem 1.15rem;
  text-align: center;
}

.home-category-card__body h3 {
  margin: 0 0 0.45rem;
  font-size: 1rem;
}

.home-category-card__body p {
  margin: 0 0 0.75rem;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1.55;
}

.home-category-card__cta {
  color: var(--primary);
  font-size: 0.86rem;
  font-weight: 700;
}

.home-impact {
  position: relative;
  overflow: hidden;
}

.home-impact__bg {
  position: absolute;
  inset: 0;
}

.home-impact__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-impact__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.15) 0%, rgba(22, 63, 38, 0.82) 52%, rgba(22, 63, 38, 0.92) 100%);
}

.home-impact__inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.home-impact__panel {
  width: min(100%, 520px);
  background: rgba(247, 246, 242, 0.96);
  border-radius: 18px;
  padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.home-impact__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.25rem 0 1.5rem;
}

.home-impact__stat strong {
  display: block;
  font-family: var(--home-serif);
  font-size: 1.65rem;
  color: var(--home-forest);
  line-height: 1.1;
}

.home-impact__stat span {
  display: block;
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
}

.home-newsletter {
  background: var(--home-forest);
  color: #fff;
  padding: clamp(2rem, 4vw, 3rem) 0;
}

.home-newsletter__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.home-newsletter__copy p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
}

.home-newsletter__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  flex-shrink: 0;
}

.site-footer--home {
  border-top: none;
  padding: 0;
  background: #fff;
  color: var(--text);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, minmax(0, 1fr));
  gap: 2rem;
  padding: 2.5rem 0 2rem;
}

.site-footer__brand p {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.6;
  max-width: 18rem;
}

.site-footer__col h3 {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
}

.site-footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__col li + li {
  margin-top: 0.45rem;
}

.site-footer__col a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
}

.site-footer__col a:hover {
  color: var(--primary);
}

.site-footer__bar {
  background: var(--home-forest-dark);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  font-weight: 500;
}

.site-footer__bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.site-footer__bar p {
  margin: 0;
}

@media (max-width: 1020px) {
  .home-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 840px) {
  .site-topbar__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }

  .home-hero--split.hero-banner,
  .home-hero__grid {
    height: 100svh;
    min-height: 100svh;
  }

  @keyframes homeHeroPanelInMobile {
    from {
      transform: translateX(-105%);
      opacity: 0.92;
    }
    to {
      transform: translateX(0);
      opacity: 1;
    }
  }

  .home-hero__content {
    position: absolute;
    inset: 0;
    width: 100%;
    max-width: none;
    height: 100%;
    min-height: 100%;
    aspect-ratio: unset;
    margin: 0;
    background: none;
    animation: none;
  }

  .home-hero__panel--desktop {
    display: none;
  }

  .home-hero__panel--mobile {
    display: block;
    object-fit: fill;
    object-position: center center;
    animation: homeHeroPanelInMobile 1.05s cubic-bezier(0.22, 1, 0.36, 1) both;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .home-hero__content-inner {
    min-height: 100%;
    height: 100%;
    justify-content: center;
    padding-top: calc(var(--site-header-h, 64px) + 0.75rem);
    padding-bottom: clamp(1.5rem, 4vw, 3rem);
    transform: translateY(0);
  }

  .home-about__grid {
    grid-template-columns: 1fr;
  }

  .home-about__cards {
    grid-template-columns: 1fr;
  }

  .home-newsletter__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .site-footer__bar-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Scroll reveal — index sections after hero */
[data-reveal] [data-reveal-child] {
  opacity: 0;
  transform: translateY(72px) scale(0.96);
  filter: blur(6px);
  transition:
    opacity 1s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform, filter;
}

[data-reveal].is-revealed [data-reveal-child] {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

[data-reveal].is-revealed [data-reveal-child]:nth-child(1) { transition-delay: 0.08s; }
[data-reveal].is-revealed [data-reveal-child]:nth-child(2) { transition-delay: 0.2s; }
[data-reveal].is-revealed [data-reveal-child]:nth-child(3) { transition-delay: 0.32s; }
[data-reveal].is-revealed [data-reveal-child]:nth-child(4) { transition-delay: 0.44s; }
[data-reveal].is-revealed [data-reveal-child]:nth-child(5) { transition-delay: 0.56s; }

/* Stagger cards inside grids that aren't direct nth of section */
.home-about.is-revealed .home-about__cards [data-reveal-child]:nth-child(1),
.home-categories.is-revealed .home-category-grid [data-reveal-child]:nth-child(1) { transition-delay: 0.18s; }
.home-about.is-revealed .home-about__cards [data-reveal-child]:nth-child(2),
.home-categories.is-revealed .home-category-grid [data-reveal-child]:nth-child(2) { transition-delay: 0.32s; }
.home-about.is-revealed .home-about__cards [data-reveal-child]:nth-child(3),
.home-categories.is-revealed .home-category-grid [data-reveal-child]:nth-child(3) { transition-delay: 0.46s; }
.home-about.is-revealed .home-about__cards [data-reveal-child]:nth-child(4),
.home-categories.is-revealed .home-category-grid [data-reveal-child]:nth-child(4) { transition-delay: 0.6s; }

.home-about.is-revealed .home-about__copy[data-reveal-child] {
  transition-delay: 0.08s;
}

/* Home slider — hero sonrası */
.home-slider {
  position: relative;
  background: var(--home-ink, #002f41);
  padding: 0;
}

.home-slider__viewport {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.home-slider__track {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
}

.home-slider__slide {
  position: relative;
  display: none;
  isolation: isolate;
  min-height: 100svh;
}

.home-slider__slide.is-active {
  display: block;
}

.home-slider__media {
  display: block;
  line-height: 0;
  height: 100svh;
}

.home-slider__media img {
  display: block;
  width: 100%;
  height: 100svh;
  min-height: 100svh;
  object-fit: cover;
  object-position: center;
}

.home-slider__veil {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 32, 44, 0.72) 0%, rgba(0, 32, 44, 0.15) 42%, rgba(0, 32, 44, 0.05) 100%);
}

.home-slider__copy {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  max-width: 34rem;
  padding: clamp(1rem, 3vw, 2rem);
  color: #fff;
  perspective: 1200px;
  transform-style: preserve-3d;
}

.home-slider__title {
  margin: 0;
  font-size: clamp(1.45rem, 3.2vw, 2.35rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

.home-slider__desc {
  margin: 0;
  font-size: clamp(0.92rem, 1.6vw, 1.08rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.28);
}

.home-slider__cta {
  align-self: flex-start;
  margin-top: 0.35rem;
  text-decoration: none;
}

@media (min-width: 769px) {
  .home-slider__cta {
    align-self: flex-end;
  }

  html.is-rtl .home-slider__cta {
    align-self: flex-start;
  }
}

/* Derinden gelme — scroll reveal */
.home-slider [data-reveal-depth] {
  opacity: 0;
  transform: translate3d(0, 36px, -160px) scale(0.9);
  filter: blur(10px);
  transition:
    opacity 1.05s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.05s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.95s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform, filter;
}

.home-slider.is-revealed [data-reveal-depth] {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.home-slider.is-revealed [data-reveal-depth]:nth-child(1) {
  transition-delay: 0.12s;
}

.home-slider.is-revealed [data-reveal-depth]:nth-child(2) {
  transition-delay: 0.32s;
}

.home-slider.is-revealed [data-reveal-depth]:nth-child(3) {
  transition-delay: 0.48s;
}

.home-slider__controls {
  position: absolute;
  left: 50%;
  bottom: clamp(0.7rem, 2vw, 1.35rem);
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin: 0;
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  background: rgba(0, 32, 44, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.home-slider__controls[hidden] {
  display: none !important;
}

.home-slider__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(0, 47, 65, 0.55);
  color: #fff;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.home-slider__arrow svg {
  width: 1.1rem;
  height: 1.1rem;
}

.home-slider__arrow:hover:not(:disabled) {
  border-color: rgba(31, 122, 63, 0.85);
  background: rgba(31, 122, 63, 0.35);
}

.home-slider__arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.home-slider__dots {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.home-slider__dot {
  width: 0.55rem;
  height: 0.55rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.home-slider__dot.is-active {
  width: 1.35rem;
  background: var(--primary, #1f7a3f);
}

/* Mobil: metin üstte */
@media (max-width: 768px) {
  .home-slider__copy {
    top: 0;
    left: 0;
    right: 0;
    max-width: none;
  }

  .home-slider__veil {
    background:
      linear-gradient(180deg, rgba(0, 32, 44, 0.82) 0%, rgba(0, 32, 44, 0.35) 38%, rgba(0, 32, 44, 0.08) 72%, transparent 100%);
  }
}

/* Masaüstü: metin sağda */
@media (min-width: 769px) {
  .home-slider__copy {
    top: 50%;
    right: clamp(1rem, 4vw, 3rem);
    left: auto;
    transform: translateY(-50%);
    text-align: right;
    align-items: flex-end;
  }

  .home-slider__veil {
    background:
      linear-gradient(90deg, rgba(0, 32, 44, 0.08) 0%, rgba(0, 32, 44, 0.2) 42%, rgba(0, 32, 44, 0.78) 100%);
  }

  html.is-rtl .home-slider__copy {
    right: auto;
    left: clamp(1rem, 4vw, 3rem);
    text-align: left;
    align-items: flex-start;
  }

  html.is-rtl .home-slider__veil {
    background:
      linear-gradient(270deg, rgba(0, 32, 44, 0.08) 0%, rgba(0, 32, 44, 0.2) 42%, rgba(0, 32, 44, 0.78) 100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-slider [data-reveal-depth] {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] [data-reveal-child] {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}

/* =========================================================
   SITE DARK THEME — #002f41 / #ffffff / #1f7a3f
   ========================================================= */
.theme-dark {
  --bg: #002f41;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.68);
  --primary: #1f7a3f;
  --accent: #1f7a3f;
  --card-border: rgba(255, 255, 255, 0.12);
  --home-forest: #002f41;
  --home-forest-dark: #001e2a;
  --font-serif: "Outfit", system-ui, sans-serif;
  --font-nav: "Outfit", system-ui, sans-serif;
  --home-serif: "Fraunces", Georgia, serif;
  background: var(--bg);
  color: var(--text);
  font-weight: 500;
}

.theme-dark h1,
.theme-dark h2,
.theme-dark h3,
.theme-dark h4 {
  font-family: var(--font-nav);
  font-weight: 700;
}

/* ----- Dark header / new nav ----- */
.theme-dark .site-header--dark {
  padding: 0.85rem 0;
  background: rgba(0, 47, 65, calc(var(--header-bg-alpha) * 0.92));
  box-shadow: 0 12px 32px rgba(0, 0, 0, calc(0.28 * var(--header-shadow-alpha)));
  border-bottom: 1px solid rgba(255, 255, 255, calc(0.08 * var(--header-bg-alpha)));
  -webkit-backdrop-filter: blur(calc(var(--header-bg-alpha) * 14px));
  backdrop-filter: blur(calc(var(--header-bg-alpha) * 14px));
}

.theme-dark .site-header--dark .menu > li > a {
  position: relative;
  color: #fff;
  font-family: var(--font-nav);
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.55rem 0.7rem;
  background: transparent;
}

.theme-dark .site-header--dark .menu > li > a:hover {
  color: #fff;
  text-decoration: none;
  background: transparent;
}

.theme-dark .site-header--dark .menu > li > a::after {
  content: "";
  position: absolute;
  left: 0.7rem;
  right: 0.7rem;
  bottom: 0.2rem;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}

.theme-dark .site-header--dark .menu > li > a:hover::after,
.theme-dark .site-header--dark .menu > li > a[aria-current="page"]::after {
  transform: scaleX(1);
}

.theme-dark .site-header--dark .menu > li > a[aria-current="page"] {
  color: #fff;
  font-weight: 600;
}

.theme-dark .site-header--dark.is-scrolled .menu > li > a,
.theme-dark .site-header--dark.is-scrolled .menu > li > a:hover,
.theme-dark .site-header--dark.is-scrolled .menu > li > a[aria-current="page"] {
  color: #fff;
}

.theme-dark .site-header--dark .dropdown,
.theme-dark .site-header--dark .submenu {
  background: rgba(0, 47, 65, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.theme-dark .site-header--dark .dropdown a,
.theme-dark .site-header--dark .submenu a {
  color: #fff;
  text-transform: none;
  letter-spacing: 0;
}

.theme-dark .site-header--dark .dropdown a:hover,
.theme-dark .site-header--dark .submenu a:hover {
  background: rgba(31, 122, 63, 0.22);
  color: #fff;
  text-decoration: none;
}

.theme-dark .site-header--dark .dropdown > li.dropdown__all-products {
  border-bottom-color: rgba(255, 255, 255, 0.14);
}

.theme-dark .site-header--dark .nav-cat-icon {
  color: var(--accent);
}

.theme-dark .site-header--dark .header-search.hero-search {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(0, 47, 65, 0.35);
  border-radius: 999px;
  overflow: hidden;
}

.theme-dark .site-header--dark .header-search.hero-search input[type="search"] {
  color: #fff;
}

.theme-dark .site-header--dark .header-search.hero-search input[type="search"]::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.theme-dark .site-header--dark .header-search.hero-search .search-submit {
  background: var(--accent);
  color: #fff;
  border-radius: 0;
}

.theme-dark .site-header--dark .header-search.hero-search .search-submit:hover {
  background: #25954d;
  color: #fff;
}

.theme-dark .site-header--dark.is-scrolled .header-search.hero-search {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(0, 47, 65, 0.75);
  box-shadow: none;
}

.theme-dark .site-header--dark.is-scrolled .header-search.hero-search input[type="search"] {
  color: #fff;
}

.theme-dark .site-header--dark.is-scrolled .header-search.hero-search input[type="search"]::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.theme-dark .site-header--dark.is-scrolled .header-search.hero-search .search-submit {
  background: var(--accent);
  color: #fff;
}

.theme-dark .site-header--dark .nav-toggle {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
}

.theme-dark .site-header--dark .nav-toggle__bar,
.theme-dark .site-header--dark.is-scrolled .nav-toggle__bar {
  background: #fff;
}

.theme-dark .site-header--dark.is-scrolled .nav-toggle {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
}

@media (min-width: 841px) {
  .theme-dark .site-header--dark .header-inner {
    gap: 1.5rem;
  }

  .theme-dark .site-header--dark .main-nav .menu {
    gap: 0.15rem;
    justify-content: center;
  }
}

@media (max-width: 840px) {
  .theme-dark .site-header--dark .main-nav {
    background: #002f41;
  }

  .theme-dark .site-header--dark .menu > li > a,
  .theme-dark .site-header--dark .menu a {
    color: #fff;
    text-transform: none;
    letter-spacing: 0.02em;
  }

  .theme-dark .site-header--dark .menu > li > a::after {
    display: none;
  }
}

/* ----- Cinema hero ----- */
.theme-dark .home-hero--cinema {
  position: relative;
  height: 100svh;
  min-height: 100svh;
  margin: 0;
  overflow: hidden;
  display: grid;
  align-items: end;
}

.theme-dark .home-hero--cinema .home-hero__media {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.theme-dark .home-hero--cinema .home-hero__media::before {
  content: none;
}

.theme-dark .home-hero--cinema .hero-banner__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.theme-dark .home-hero__veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 47, 65, 0.55) 0%, rgba(0, 47, 65, 0.28) 42%, rgba(0, 47, 65, 0.82) 100%),
    linear-gradient(90deg, rgba(0, 47, 65, 0.55) 0%, rgba(0, 47, 65, 0.12) 55%, transparent 100%);
}

.theme-dark .home-hero__stage {
  position: relative;
  z-index: 3;
  width: min(720px, 92%);
  margin: 0 auto 0 clamp(18px, 5vw, 64px);
  padding: 0 0 clamp(4.5rem, 10vh, 7rem);
  animation: homeStageIn 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.theme-dark .home-hero--cinema .home-hero__title {
  margin: 0 0 1rem;
  font-family: var(--font-nav);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: none;
  color: #fff;
  line-height: 1.05;
}

.theme-dark .home-hero--cinema .home-hero__lead {
  margin: 0 0 1.6rem;
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-nav);
  font-size: clamp(0.98rem, 1.4vw, 1.1rem);
  font-weight: 400;
  line-height: 1.65;
}

.theme-dark .home-hero--cinema .home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.theme-dark .home-hero__scroll {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 1.4rem;
  transform: translateX(-50%);
  width: 28px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  display: grid;
  place-items: start center;
  padding-top: 8px;
  text-decoration: none;
}

.theme-dark .home-hero__scroll span {
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: #fff;
  animation: homeScrollPulse 1.6s ease-in-out infinite;
}

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

@keyframes homeScrollPulse {
  0%, 100% { opacity: 0.35; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(10px); }
}

/* Buttons */
.theme-dark .btn--accent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.35rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid var(--accent);
  transition: background 0.2s ease, transform 0.2s ease;
}

.theme-dark .btn--accent:hover {
  background: #25954d;
  border-color: #25954d;
  transform: translateY(-1px);
}

.theme-dark .btn--ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.35rem;
  border-radius: 999px;
  background: transparent;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.45);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.theme-dark .btn--ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

/* Sections */
.theme-dark .section-eyebrow {
  color: var(--accent);
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.theme-dark .section-eyebrow svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  vertical-align: -2px;
  margin-right: 0.35rem;
}

.theme-dark .section-title {
  color: #fff;
  font-family: var(--font-nav);
}

.theme-dark .section-lead {
  color: var(--muted);
  font-weight: 400;
}

.theme-dark .home-about {
  background: #002f41;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.theme-dark .home-feature-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.theme-dark .home-feature-card:hover {
  border-color: rgba(31, 122, 63, 0.55);
  background: rgba(31, 122, 63, 0.1);
  transform: translateY(-3px);
}

.theme-dark .home-feature-card__icon {
  color: var(--accent);
}

.theme-dark .home-feature-card h3 {
  color: #fff;
}

.theme-dark .home-feature-card p {
  color: var(--muted);
}

.theme-dark .home-categories {
  background: #001e2a;
}

.theme-dark .home-category-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
}

.theme-dark .home-category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  border-color: rgba(31, 122, 63, 0.45);
}

.theme-dark .home-category-card__body h3 {
  color: #fff;
}

.theme-dark .home-category-card__body p {
  color: var(--muted);
}

.theme-dark .home-category-card__cta {
  color: var(--accent);
  font-weight: 600;
}

.theme-dark .home-category-card__icon {
  background: #002f41;
  color: var(--accent);
  border: 1px solid rgba(31, 122, 63, 0.45);
}

.theme-dark .home-impact__bg::after {
  background: linear-gradient(90deg, rgba(0, 47, 65, 0.92) 0%, rgba(0, 47, 65, 0.72) 50%, rgba(0, 47, 65, 0.45) 100%);
}

.theme-dark .home-impact__panel {
  background: rgba(0, 47, 65, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.theme-dark .home-impact__stat strong {
  color: #fff;
  font-family: var(--font-nav);
}

.theme-dark .home-impact__stat span {
  color: var(--muted);
}

.theme-dark .home-newsletter {
  background: #001e2a;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.theme-dark .home-newsletter__copy p:last-child {
  color: var(--muted);
}

.theme-dark .site-footer--home {
  background: #002f41;
  color: rgba(255, 255, 255, 0.75);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.theme-dark .site-footer--home a {
  color: rgba(255, 255, 255, 0.78);
}

.theme-dark .site-footer--home a:hover {
  color: #fff;
}

.theme-dark .site-footer--home h3 {
  color: #fff;
}

.theme-dark .site-footer__bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 840px) {
  .theme-dark .home-hero__stage {
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    padding-bottom: 5.5rem;
  }

  .theme-dark .home-hero--cinema .home-hero__title {
    font-size: clamp(2.2rem, 11vw, 3.2rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .theme-dark .home-hero__stage,
  .theme-dark .home-hero__scroll span {
    animation: none !important;
  }
}

/* =========================================================
   SCROLL DOCK — thin bottom bar (show on scroll down)
   ========================================================= */
.scroll-dock {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 220;
  height: 52px;
  background: #002f41;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.22);
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.24s ease;
}

.scroll-dock.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.scroll-dock[hidden] {
  display: block;
}

.scroll-dock__inner {
  height: 100%;
  width: min(1200px, 94%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.75rem;
}

.scroll-dock__credit {
  justify-self: start;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.scroll-dock__credit:hover {
  color: #fff;
  text-decoration: underline;
}

.scroll-dock__logo {
  justify-self: center;
  display: flex;
  align-items: center;
  line-height: 0;
}

.scroll-dock__logo img {
  display: block;
  height: 26px;
  width: auto;
}

.scroll-dock__actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.scroll-dock__icon {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.scroll-dock__icon:hover {
  background: rgba(31, 122, 63, 0.28);
  color: #fff;
}

.scroll-dock__icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

@media (max-width: 640px) {
  .scroll-dock {
    height: 50px;
  }

  .scroll-dock__credit {
    font-size: 0.68rem;
    max-width: 42vw;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .scroll-dock__logo img {
    height: 22px;
  }

  .scroll-dock__icon {
    width: 30px;
    height: 30px;
  }

  .scroll-dock__icon svg {
    width: 16px;
    height: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-dock {
    transition: none;
  }
}



/* ----- Theme-dark: shared content surfaces ----- */
.theme-dark .intro h1,
.theme-dark .intro h2,
.theme-dark .intro h3 {
  color: #fff;
  font-family: var(--font-nav);
}

.theme-dark .intro p,
.theme-dark .about-text-block,
.theme-dark .about-text-block p,
.theme-dark .about-content {
  color: rgba(255, 255, 255, 0.78);
}

.theme-dark .about-text-block a,
.theme-dark .about-content a {
  color: #7ddea0;
}

.theme-dark .about-text-block a:hover,
.theme-dark .about-content a:hover {
  color: #fff;
}

.theme-dark .about-manifesto li {
  color: rgba(255, 255, 255, 0.85);
}

.theme-dark .about-tagline {
  color: #fff;
}

.theme-dark .site-footer {
  background: #001e2a;
  color: rgba(255, 255, 255, 0.65);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.theme-dark .site-footer a {
  color: rgba(255, 255, 255, 0.78);
}

.theme-dark .btn--primary {
  background: #1f7a3f;
  border-color: #1f7a3f;
  color: #fff;
}

.theme-dark .btn--primary:hover {
  background: #25954d;
  border-color: #25954d;
}

.theme-dark .btn--outline {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.theme-dark .btn--outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

/* Products */
.theme-dark .products-sidebar,
.theme-dark .products-sidebar__inner {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}

.theme-dark .products-cat {
  color: rgba(255, 255, 255, 0.85);
  border-color: transparent;
}

.theme-dark .products-cat:hover {
  background: rgba(31, 122, 63, 0.18);
  color: #fff;
}

.theme-dark .products-cat.is-active {
  background: rgba(31, 122, 63, 0.28);
  color: #fff;
  border-color: rgba(31, 122, 63, 0.45);
}

.theme-dark .products-cat__icon {
  color: #1f7a3f;
}

.theme-dark .products-title,
.theme-dark .products-count {
  color: #fff;
}

.theme-dark .product-card,
.theme-dark .products-grid .product-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}

.theme-dark .product-card h3,
.theme-dark .product-card__title {
  color: #fff;
}

.theme-dark .product-card p,
.theme-dark .product-card__meta {
  color: rgba(255, 255, 255, 0.68);
}

/* Blog */
.theme-dark .blog-sidebar,
.theme-dark .blog-content-panels,
.theme-dark .blog-panel {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}

.theme-dark .blog-topic {
  color: rgba(255, 255, 255, 0.82);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.08);
}

.theme-dark .blog-topic:hover {
  background: rgba(31, 122, 63, 0.18);
  color: #fff;
}

.theme-dark .blog-topic.is-active {
  background: rgba(31, 122, 63, 0.28);
  color: #fff;
  border-color: rgba(31, 122, 63, 0.45);
}

.theme-dark .blog-panel h3 {
  color: #fff;
}

.theme-dark .blog-panel p {
  color: rgba(255, 255, 255, 0.72);
}

.theme-dark .blog-panel__meta {
  color: #7ddea0;
}

/* Gallery */
.theme-dark .gallery-slider,
.theme-dark .gallery-slide {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}

.theme-dark .gallery-slide figcaption,
.theme-dark .gallery-slider__nav {
  color: #fff;
}

.theme-dark .gallery-slider__nav {
  background: rgba(0, 47, 65, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.theme-dark .gallery-dot {
  background: rgba(255, 255, 255, 0.35);
}

.theme-dark .gallery-dot.is-active {
  background: #1f7a3f;
}

/* Certificates / generic cards */
.theme-dark .category-card,
.theme-dark .cert-card,
.theme-dark .tescil-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}

.theme-dark .category-card h3,
.theme-dark .cert-card h3 {
  color: #fff;
}

.theme-dark .category-card p {
  color: rgba(255, 255, 255, 0.68);
}

/* =========================================================
   CONTACT FAB — fixed bottom-right message toggle
   ========================================================= */
.contact-fab {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 240;
}

body:has(.scroll-dock.is-visible) .contact-fab {
  bottom: calc(52px + 1rem);
}

.contact-fab__toggle {
  position: relative;
  z-index: 2;
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(145deg, #25954d 0%, #1f7a3f 55%, #176433 100%);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow:
    0 10px 28px rgba(0, 47, 65, 0.35),
    0 0 0 3px rgba(31, 122, 63, 0.22);
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
  overflow: visible;
}

.contact-fab__toggle:hover {
  transform: translateY(-2px) scale(1.03);
  filter: brightness(1.05);
  box-shadow:
    0 14px 32px rgba(0, 47, 65, 0.4),
    0 0 0 4px rgba(31, 122, 63, 0.28);
}

.contact-fab.is-open .contact-fab__toggle {
  background: linear-gradient(145deg, #003a50 0%, #002f41 100%);
  box-shadow:
    0 10px 28px rgba(0, 47, 65, 0.4),
    0 0 0 3px rgba(255, 255, 255, 0.12);
}

.contact-fab__pulse {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2px solid rgba(31, 122, 63, 0.55);
  animation: contactFabPulse 2.4s ease-out infinite;
  pointer-events: none;
}

.contact-fab.is-open .contact-fab__pulse {
  animation: none;
  opacity: 0;
}

.contact-fab__toggle svg {
  width: 26px;
  height: 26px;
  display: block;
  position: relative;
  z-index: 1;
}

@keyframes contactFabPulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.45);
    opacity: 0;
  }
  100% {
    transform: scale(1.45);
    opacity: 0;
  }
}

.contact-fab__strip {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 0.55rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem;
  border-radius: 999px;
  background: #002f41;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
  transform-origin: bottom center;
  transform: translate(-50%, 12px) scale(0.92);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.28s;
}

.contact-fab__strip[hidden] {
  display: flex;
}

.contact-fab.is-open .contact-fab__strip {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0) scale(1);
  pointer-events: auto;
}

.contact-fab__link {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.contact-fab__link:hover {
  background: #1f7a3f;
  color: #fff;
}

.contact-fab__link svg {
  width: 20px;
  height: 20px;
  display: block;
}

@media (max-width: 640px) {
  .contact-fab {
    right: 0.9rem;
    bottom: 0.9rem;
  }

  .contact-fab__toggle {
    width: 52px;
    height: 52px;
  }

  body:has(.scroll-dock.is-visible) .contact-fab {
    bottom: calc(50px + 0.85rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-fab__strip,
  .contact-fab__toggle {
    transition: none;
  }

  .contact-fab__pulse {
    animation: none;
  }
}

/* Theme-dark: product modal + polish */
.theme-dark .product-card__cta {
  color: #7ddea0;
}

/* Kart ve modalda ürün görseli şeffaf zemin */
.theme-dark .product-card__media,
.theme-dark .product-modal__media {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.12);
}

.theme-dark .product-modal__dialog {
  background: #002f41;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.theme-dark .product-modal__title {
  color: #fff;
}

.theme-dark .product-modal__section-title {
  color: #7ddea0;
}

.theme-dark .product-modal__subtitle,
.theme-dark .product-modal__empty {
  color: rgba(255, 255, 255, 0.78);
}

.theme-dark .product-modal__row {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.theme-dark .product-modal__row dt {
  color: #ffffff;
  font-weight: 600;
}

.theme-dark .product-modal__row dd {
  color: #7ddea0;
  font-weight: 700;
}

.theme-dark .product-modal__close {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
}

.theme-dark .product-chip {
  background: rgba(31, 122, 63, 0.28);
  color: #fff;
  border: 1px solid rgba(31, 122, 63, 0.45);
}

.theme-dark .about-text-block h3 {
  color: #fff;
}

.theme-dark .products-toolbar {
  border-color: rgba(255, 255, 255, 0.1);
}

.theme-dark .container#icerik {
  padding-top: 1.5rem;
  padding-bottom: 3rem;
}

.theme-dark.blog-page main,
.theme-dark.gallery-page main,
.theme-dark.about-page main,
.theme-dark.contact-page main,
.theme-dark.products-page main {
  background: #002f41;
}

/* Contact page: left info + right map */
.contact-page .contact-intro {
  text-align: left;
  max-width: none;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: stretch;
  margin: 0 0 3rem;
}

.contact-layout__info {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-layout__map {
  min-height: 360px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
  background: rgba(255, 255, 255, 0.04);
}

.contact-layout__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

@media (max-width: 840px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-layout__map iframe {
    min-height: 300px;
  }
}

/* İnce dock → büyük footer geçişi */
body.is-at-footer .scroll-dock {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}

.site-footer.site-footer--home {
  position: relative;
  z-index: 1;
}

body.is-at-footer .site-footer.site-footer--home {
  animation: footerRiseIn 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes footerRiseIn {
  from {
    opacity: 0.65;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.is-at-footer .site-footer.site-footer--home {
    animation: none;
  }
}

/* =========================================================
   TESCİLLERİMİZ — katalog sidebar + PDF kartları + popup
   ========================================================= */
.theme-dark.certs-page main {
  background: #002f41;
}

.tescil-layout {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: start;
  margin: 0 0 3rem;
}

.tescil-sidebar {
  position: sticky;
  top: calc(var(--site-header-h, 78px) + 0.75rem);
  max-height: calc(100svh - var(--site-header-h, 78px) - 1.5rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0.85rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.tescil-search input {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.18);
  color: #fff;
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  font: inherit;
  font-size: 0.88rem;
}

.tescil-search input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.tescil-nav {
  overflow: auto;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding-right: 0.15rem;
}

.tescil-nav__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  width: 100%;
  text-align: left;
  border: 1px solid transparent;
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  border-radius: 12px;
  padding: 0.65rem 0.75rem;
  cursor: pointer;
  font: inherit;
  font-weight: 500;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.tescil-nav__item:hover {
  background: rgba(31, 122, 63, 0.16);
  color: #fff;
}

.tescil-nav__item.is-active {
  background: rgba(31, 122, 63, 0.28);
  border-color: rgba(31, 122, 63, 0.45);
  color: #fff;
  font-weight: 600;
}

.tescil-nav__name {
  min-width: 0;
  line-height: 1.25;
}

.tescil-nav__count {
  flex-shrink: 0;
  min-width: 1.5rem;
  height: 1.5rem;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
}

.tescil-nav__item.is-active .tescil-nav__count {
  background: #1f7a3f;
  color: #fff;
}

.tescil-toolbar {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.tescil-toolbar__title {
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  color: #fff;
}

.tescil-toolbar__count {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  font-weight: 600;
}

.tescil-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.9rem;
}

.tescil-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
  text-align: left;
  padding: 1rem 1rem 0.95rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  cursor: pointer;
  font: inherit;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.tescil-card:hover {
  transform: translateY(-3px);
  border-color: rgba(31, 122, 63, 0.5);
  background: rgba(31, 122, 63, 0.12);
}

.tescil-card__icon {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(31, 122, 63, 0.22);
  color: #7ddea0;
}

.tescil-card__icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.tescil-card__body {
  display: grid;
  gap: 0.25rem;
  min-width: 0;
  width: 100%;
}

.tescil-card__kind {
  font-weight: 700;
  font-size: 1rem;
}

.tescil-card__file {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tescil-card__cta {
  margin-top: auto;
  font-size: 0.85rem;
  font-weight: 700;
  color: #7ddea0;
}

.tescil-empty {
  color: rgba(255, 255, 255, 0.65);
}

.pdf-modal {
  position: fixed;
  inset: 0;
  z-index: 700;
  display: none;
}

.pdf-modal.is-open {
  display: block;
}

.pdf-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 20, 28, 0.72);
  backdrop-filter: blur(4px);
}

.pdf-modal__dialog {
  position: relative;
  width: min(980px, calc(100vw - 1.5rem));
  height: min(88vh, 900px);
  margin: max(4vh, 1rem) auto;
  background: #001e2a;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
}

.pdf-modal__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: #002f41;
}

.pdf-modal__bar-title {
  color: #fff;
  font-weight: 700;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pdf-modal__bar-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.pdf-modal__open {
  color: #7ddea0;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
}

.pdf-modal__open:hover {
  color: #fff;
  text-decoration: underline;
}

.pdf-modal__close {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
}

.pdf-modal__frame {
  flex: 1;
  width: 100%;
  border: 0;
  background: #111;
}

@media (max-width: 840px) {
  .tescil-layout {
    grid-template-columns: 1fr;
  }

  .tescil-sidebar {
    position: static;
    max-height: none;
  }

  .tescil-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-height: 240px;
  }

  .pdf-modal__dialog {
    width: calc(100vw - 0.75rem);
    height: calc(100svh - 1rem);
    margin: 0.5rem auto;
  }
}


/* ========== i18n language switcher + RTL ========== */
.header-tools {
  display: none;
  align-items: center;
  gap: 0.55rem;
  flex: 0 0 auto;
  margin-inline-start: 0.25rem;
}

.header-tools .header-search.hero-search {
  margin: 0;
}

.lang-switcher {
  position: relative;
  z-index: 40;
  flex: 0 0 auto;
}

.lang-switcher__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(0, 47, 65, 0.35);
  color: #fff;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: border-color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.lang-switcher__btn:hover,
.lang-switcher.is-open .lang-switcher__btn {
  border-color: rgba(31, 122, 63, 0.9);
  background: rgba(0, 47, 65, 0.55);
}

.lang-switcher__label {
  opacity: 0.72;
}

.lang-switcher__current {
  font-weight: 600;
}

.lang-switcher__chev {
  width: 0.7rem;
  height: 0.7rem;
  opacity: 0.8;
  transition: transform 0.2s ease;
}

.lang-switcher.is-open .lang-switcher__chev {
  transform: rotate(180deg);
}

.lang-switcher__menu {
  position: absolute;
  top: calc(100% + 0.4rem);
  inset-inline-end: 0;
  min-width: 11rem;
  margin: 0;
  padding: 0.35rem;
  list-style: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(0, 32, 44, 0.96);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  max-height: min(70vh, 22rem);
  overflow: auto;
}

.lang-switcher__option {
  display: block;
  width: 100%;
  padding: 0.55rem 0.7rem;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  font: inherit;
  font-size: 0.86rem;
  text-align: start;
  cursor: pointer;
}

.lang-switcher__option:hover,
.lang-switcher__option.is-active {
  background: rgba(31, 122, 63, 0.22);
  color: #fff;
}

.site-header.is-scrolled .lang-switcher__btn {
  border-color: rgba(31, 41, 55, 0.16);
  background: #fff;
  color: var(--text, #0f172a);
}

.theme-dark .site-header--dark .lang-switcher__btn {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(0, 47, 65, 0.35);
  color: #fff;
}

.theme-dark .site-header--dark.is-scrolled .lang-switcher__btn {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

@media (min-width: 901px) {
  .site-header--home .header-tools {
    display: flex;
  }
}

@media (max-width: 900px) {
  .main-nav.is-open .header-tools {
    display: flex;
    order: -1;
    width: 100%;
    margin: 0 0 0.65rem;
    padding: 0;
    flex-wrap: nowrap;
    align-items: stretch;
  }

  .main-nav.is-open .header-tools .header-search.hero-search {
    flex: 1 1 auto;
    max-width: none;
  }

  .main-nav.is-open .lang-switcher__btn {
    height: 100%;
    border-color: rgba(31, 41, 55, 0.16);
    background: #fff;
    color: var(--text, #0f172a);
  }

  .lang-switcher__label {
    display: none;
  }
}

html.is-rtl {
  direction: rtl;
}

html.is-rtl .home-hero__title,
html.is-rtl .section-title,
html.is-rtl .intro h1,
html.is-rtl .intro h2 {
  text-align: right;
}

html.is-rtl .home-hero__actions,
html.is-rtl .home-newsletter__actions {
  flex-direction: row-reverse;
}

html.is-rtl .contact-fab {
  left: 1rem;
  right: auto;
}

html.is-rtl .scroll-dock__inner {
  flex-direction: row-reverse;
}

html.is-rtl .lang-switcher__menu {
  inset-inline-end: 0;
  inset-inline-start: auto;
}

.about-manifesto li:nth-child(5),
.about-manifesto li:nth-child(8) {
  font-weight: 700;
}

html.is-rtl .tescil-layout,
html.is-rtl .products-layout,
html.is-rtl .blog-layout,
html.is-rtl .contact-layout {
  direction: rtl;
}
