/* ============================================
   GREEN WHITE — Landing Page Styles
   Zarif Tasarım Sistemi üzerine ek stiller
   (header/hero/category-grid/usp/footer)
   ============================================ */

/* === BRAND PALETTE (logo'dan türetilmiş) === */
:root {
  --gw-green: #1F7A3E;
  --gw-green-dark: #155830;
  --gw-green-soft: #ECF6EF;
  --gw-gray: #6B7280;
  --gw-gray-dark: #4B5563;
}

/* === LAYOUT === */
.gw-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--rd-s-6);
}

@media (max-width: 640px) {
  .gw-wrap { padding: 0 var(--rd-s-4); }
}

/* === HEADER === */
.gw-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--rd-divider);
}

.gw-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: var(--rd-s-6);
}

@media (max-width: 480px) {
  .gw-header-inner { height: 64px; }
}

.gw-brand {
  display: flex;
  align-items: center;
  gap: var(--rd-s-3);
  text-decoration: none;
  color: var(--rd-text-strong);
}

.gw-brand-logo {
  height: 58px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .gw-brand-logo { height: 46px; }
}

/* Mobil menü içindeki brand (daha küçük) */
.gw-mobile-menu .gw-brand-logo { height: 52px; }

.gw-footer .gw-brand-logo {
  height: 72px;
  margin-bottom: var(--rd-s-3);
}

.gw-nav {
  display: flex;
  align-items: center;
  gap: var(--rd-s-6);
}

.gw-nav a {
  font-size: var(--rd-fs-13);
  color: var(--rd-text-muted);
  text-decoration: none;
  font-weight: var(--rd-fw-medium);
  transition: color var(--rd-tr-fast);
}

.gw-nav a:hover,
.gw-nav a.is-active {
  color: var(--rd-text-strong);
}

.gw-header-actions {
  display: flex;
  align-items: center;
  gap: var(--rd-s-3);
}

.gw-lang {
  display: flex;
  gap: var(--rd-s-1);
  padding: 4px;
  background: var(--rd-bg-strong);
  border-radius: var(--rd-r-lg);
}

.gw-lang button,
.gw-lang a {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 6px 10px;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: var(--rd-fs-11);
  font-weight: var(--rd-fw-medium);
  color: var(--rd-text-muted);
  cursor: pointer;
  border-radius: var(--rd-r-md);
  font-family: inherit;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all var(--rd-tr-fast);
}

.gw-lang button.is-active,
.gw-lang a.is-active {
  background: var(--rd-bg);
  color: var(--rd-text-strong);
  box-shadow: var(--rd-shadow-sm);
}

.gw-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--rd-s-2);
  padding: 10px 16px;
  min-height: 40px;
  background: var(--rd-text-strong);
  color: #fff;
  font-size: var(--rd-fs-13);
  font-weight: var(--rd-fw-medium);
  border-radius: var(--rd-r-lg);
  text-decoration: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  transition: filter var(--rd-tr-fast);
  white-space: nowrap;
}

.gw-cta:hover { filter: brightness(1.15); }

.gw-cta--ghost {
  background: transparent;
  color: var(--rd-text-strong);
  border: 1px solid var(--rd-border);
}

.gw-cta--ghost:hover {
  background: var(--rd-hover);
  filter: none;
}

.gw-cta--green {
  background: var(--gw-green);
}

.gw-cta--green:hover {
  background: var(--gw-green-dark);
  filter: none;
}

.gw-cta--whatsapp {
  background: var(--rd-bg);
  border: 1px solid var(--rd-border);
  color: var(--gw-green-dark);
  padding: 0;
  width: 40px;
  min-height: 40px;
  border-radius: var(--rd-r-lg);
  justify-content: center;
  transition: all var(--rd-tr-fast);
}

.gw-cta--whatsapp:hover {
  background: var(--gw-green-soft);
  border-color: var(--gw-green);
  color: var(--gw-green-dark);
  filter: none;
}

.gw-cta--whatsapp svg {
  display: block;
  width: 17px;
  height: 17px;
}

/* === CF7 form: zarif tasarım ile uyumlu === */
.gw-contact-form .wpcf7,
.gw-contact-form form.wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: var(--rd-s-5);
  margin: 0;
}

.cf7-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--rd-s-4);
}

.gw-contact-form .wpcf7-form-control-wrap { display: block; }

.gw-contact-form input.zarif-input,
.gw-contact-form textarea.zarif-textarea,
.gw-contact-form select {
  width: 100%;
  font-family: inherit;
  font-size: 16px;
  padding: 12px 14px;
  min-height: 48px;
  background: var(--rd-input-bg);
  border: 1px solid transparent;
  border-radius: var(--rd-r-lg);
  color: var(--rd-text);
  transition: all var(--rd-tr-fast);
}

.gw-contact-form input.zarif-input:focus,
.gw-contact-form textarea.zarif-textarea:focus,
.gw-contact-form select:focus {
  outline: none;
  background: var(--rd-bg);
  border-color: var(--gw-green);
  box-shadow: 0 0 0 3px rgba(31, 122, 62, 0.16);
}

.gw-contact-form input.wpcf7-submit {
  width: 100%;
  margin-top: var(--rd-s-5);
  justify-content: center;
  padding: 14px 20px;
  font-family: inherit;
  font-size: var(--rd-fs-14);
  font-weight: var(--rd-fw-medium);
  background: var(--gw-green);
  color: #fff;
  border: 0;
  border-radius: var(--rd-r-lg);
  cursor: pointer;
  min-height: 48px;
  transition: background var(--rd-tr-fast);
}

.gw-contact-form input.wpcf7-submit:hover {
  background: var(--gw-green-dark);
}

.gw-contact-form .wpcf7 form .wpcf7-response-output {
  margin: var(--rd-s-4) 0 0;
  padding: 12px 14px;
  border-radius: var(--rd-r-lg);
  font-size: var(--rd-fs-13);
  border-width: 1px;
}

.gw-contact-form .wpcf7-not-valid-tip {
  font-size: var(--rd-fs-12);
  color: var(--rd-red);
  margin-top: 4px;
}

@media (max-width: 720px) {
  .cf7-grid-2 { grid-template-columns: 1fr; }
}

/* === HAMBURGER (MOBILE) === */
.gw-burger {
  display: none;
  appearance: none;
  background: transparent;
  border: 1px solid var(--rd-border);
  border-radius: var(--rd-r-lg);
  width: 44px;
  height: 44px;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  font-family: inherit;
}

.gw-burger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--rd-text-strong);
  position: relative;
}

.gw-burger span::before,
.gw-burger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 1.5px;
  background: var(--rd-text-strong);
  transition: transform var(--rd-tr-fast);
}

.gw-burger span::before { top: -6px; }
.gw-burger span::after { top: 6px; }

.gw-mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--rd-bg);
  z-index: 99;
  padding: var(--rd-s-6) var(--rd-s-4);
  overflow-y: auto;
  flex-direction: column;
  gap: var(--rd-s-2);
  animation: gw-slide-in 220ms cubic-bezier(0.4, 0, 0.2, 1);
}

.gw-mobile-menu.is-open { display: flex; }

@keyframes gw-slide-in {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.gw-mobile-menu a {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 0 var(--rd-s-4);
  font-size: var(--rd-fs-16);
  font-weight: var(--rd-fw-medium);
  color: var(--rd-text-strong);
  text-decoration: none;
  border-radius: var(--rd-r-lg);
  border-bottom: 1px solid var(--rd-divider);
}

.gw-mobile-menu a:last-of-type { border-bottom: 0; }
.gw-mobile-menu a.is-active { background: var(--rd-bg-strong); }

.gw-mobile-menu .gw-cta {
  margin-top: var(--rd-s-5);
  min-height: 48px;
  font-size: var(--rd-fs-14);
}

.gw-mobile-menu .gw-lang {
  margin-top: var(--rd-s-4);
  align-self: flex-start;
}

.gw-mobile-menu .gw-lang button { min-height: 36px; padding: 6px 14px; font-size: var(--rd-fs-12); }

/* Header responsiveness: nav + dil seçici hamburger'a düşer,
   WhatsApp + Request a Quote butonları her zaman görünür */
@media (max-width: 880px) {
  .gw-nav { display: none; }
  .gw-header-actions > .gw-lang { display: none; }
  .gw-burger { display: inline-flex; }
}

@media (max-width: 540px) {
  .gw-header-actions { gap: var(--rd-s-2); }
  .gw-header-actions .gw-cta:not(.gw-cta--whatsapp) {
    padding: 8px 12px;
    font-size: var(--rd-fs-12);
    min-height: 40px;
  }
  .gw-cta--whatsapp { width: 40px; min-height: 40px; }
}

@media (max-width: 400px) {
  .gw-header-actions .gw-cta:not(.gw-cta--whatsapp) {
    padding: 8px 10px;
    font-size: var(--rd-fs-11);
  }
}

/* === HERO === */
.gw-hero {
  padding: var(--rd-s-12) 0 calc(var(--rd-s-12) + var(--rd-s-6));
  position: relative;
}

.gw-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: var(--rd-s-12);
  align-items: center;
}

.gw-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--rd-s-2);
  padding: 5px 12px 5px 8px;
  background: var(--gw-green-soft);
  color: var(--gw-green-dark);
  font-size: var(--rd-fs-11);
  font-weight: var(--rd-fw-semibold);
  border-radius: 999px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.gw-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gw-green);
  display: inline-block;
}

.gw-hero h1 {
  font-size: 44px !important;
  line-height: 1.08 !important;
  font-weight: var(--rd-fw-semibold) !important;
  color: var(--rd-text-strong);
  margin-top: var(--rd-s-5) !important;
  letter-spacing: -0.035em !important;
}

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

.gw-hero-sub {
  margin-top: var(--rd-s-5);
  font-size: var(--rd-fs-16);
  line-height: var(--rd-lh-relaxed);
  color: var(--rd-text-muted);
  max-width: 480px;
}

.gw-hero-actions {
  margin-top: var(--rd-s-8);
  display: flex;
  gap: var(--rd-s-3);
  flex-wrap: wrap;
}

.gw-hero-stats {
  margin-top: var(--rd-s-10);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--rd-s-6);
  padding-top: var(--rd-s-6);
  border-top: 1px solid var(--rd-divider);
}

.gw-stat-value {
  font-size: 22px;
  font-weight: var(--rd-fw-semibold);
  color: var(--rd-text-strong);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}

.gw-stat-label {
  margin-top: 4px;
  font-size: var(--rd-fs-12);
  color: var(--rd-text-muted);
}

/* Hero visual — abstract product mosaic */
.gw-hero-visual {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, 96px);
  gap: var(--rd-s-3);
  position: relative;
}

.gw-hero-tile {
  border-radius: var(--rd-r-xl);
  background: var(--rd-bg-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--rd-fs-12);
  color: var(--rd-text-muted);
  font-weight: var(--rd-fw-medium);
  letter-spacing: -0.01em;
  overflow: hidden;
  position: relative;
}

.gw-hero-tile-label {
  position: relative;
  z-index: 2;
}

.gw-hero-tile-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  display: block;
}

/* Resim yüklenince yazıyı okunur tutmak için alt overlay */
.gw-hero-tile--has-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,0.55));
  z-index: 1;
}

.gw-hero-tile--has-img .gw-hero-tile-label {
  color: #fff;
  position: absolute;
  bottom: 12px;
  left: 14px;
  font-weight: var(--rd-fw-semibold);
  font-size: var(--rd-fs-13);
  letter-spacing: -0.01em;
  text-shadow: 0 1px 4px rgba(0,0,0,0.35);
}

[dir="rtl"] .gw-hero-tile--has-img .gw-hero-tile-label {
  left: auto;
  right: 14px;
}

.gw-hero-tile--green {
  background: linear-gradient(135deg, var(--gw-green-soft) 0%, #D6EBDD 100%);
  color: var(--gw-green-dark);
}

.gw-hero-tile--dark {
  background: linear-gradient(135deg, #18181B 0%, #27272A 100%);
  color: #fff;
}

.gw-hero-tile--tall { grid-row: span 2; }

@media (max-width: 880px) {
  .gw-hero { padding: var(--rd-s-8) 0; }
  .gw-hero-grid { grid-template-columns: 1fr; gap: var(--rd-s-8); }
  .gw-hero h1 { font-size: 32px !important; letter-spacing: -0.03em !important; }
  .gw-hero-sub { font-size: var(--rd-fs-15); }
  .gw-hero-actions { gap: var(--rd-s-3); }
  .gw-hero-actions .gw-cta { flex: 1; min-height: 48px; padding: 12px 16px; }
  .gw-hero-visual { grid-template-rows: repeat(3, 80px); }
  .gw-hero-stats { gap: var(--rd-s-4); }
  .gw-stat-value { font-size: 18px; }
  .gw-stat-label { font-size: var(--rd-fs-11); }
}

@media (max-width: 480px) {
  .gw-hero h1 { font-size: 28px !important; }
  .gw-hero-stats { grid-template-columns: 1fr; gap: var(--rd-s-3); padding-top: var(--rd-s-5); }
  .gw-hero-stats > div { display: flex; align-items: baseline; gap: var(--rd-s-3); }
  .gw-hero-stats > div + div { padding-top: var(--rd-s-3); border-top: 1px solid var(--rd-divider); }
  .gw-stat-value { font-size: 20px; }
  .gw-stat-label { margin-top: 0; }
  .gw-hero-visual { grid-template-rows: repeat(3, 72px); gap: var(--rd-s-2); }
}

/* === SECTION === */
.gw-section {
  padding: var(--rd-s-12) 0;
  border-top: 1px solid var(--rd-divider);
}

@media (max-width: 720px) {
  .gw-section { padding: var(--rd-s-10) 0; }
}

@media (max-width: 480px) {
  .gw-section { padding: var(--rd-s-8) 0; }
}

.gw-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--rd-s-6);
  margin-bottom: var(--rd-s-8);
}

.gw-section-title {
  font-size: 28px !important;
  font-weight: var(--rd-fw-semibold) !important;
  color: var(--rd-text-strong);
  letter-spacing: -0.03em !important;
  max-width: 560px;
  line-height: 1.15 !important;
}

.gw-section-sub {
  margin-top: var(--rd-s-3);
  font-size: var(--rd-fs-15);
  color: var(--rd-text-muted);
  line-height: var(--rd-lh-relaxed);
  max-width: 520px;
}

.gw-section-link {
  font-size: var(--rd-fs-13);
  color: var(--rd-text-strong);
  text-decoration: none;
  font-weight: var(--rd-fw-medium);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.gw-section-link::after {
  content: "→";
  transition: transform var(--rd-tr-fast);
}

.gw-section-link:hover::after { transform: translateX(3px); }

@media (max-width: 720px) {
  .gw-section-head { flex-direction: column; align-items: flex-start; }
  .gw-section-title { font-size: 24px !important; }
}

/* === CATEGORY GRID === */
.gw-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--rd-s-4);
}

.gw-cat-card {
  display: flex;
  flex-direction: column;
  padding: var(--rd-s-6);
  background: var(--rd-bg);
  border: 1px solid var(--rd-divider);
  border-radius: var(--rd-r-xl);
  text-decoration: none;
  transition: all var(--rd-tr-base);
  min-height: 220px;
  position: relative;
  overflow: hidden;
}

.gw-cat-card:hover {
  border-color: var(--rd-border-strong);
  box-shadow: var(--rd-shadow-md);
  transform: translateY(-2px);
}

.gw-cat-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--rd-r-lg);
  background: var(--rd-bg-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: var(--rd-s-5);
  transition: all var(--rd-tr-base);
}

.gw-cat-card:hover .gw-cat-icon {
  background: var(--gw-green-soft);
}

.gw-cat-name {
  font-size: var(--rd-fs-15);
  font-weight: var(--rd-fw-semibold);
  color: var(--rd-text-strong);
  letter-spacing: -0.02em;
  margin-bottom: var(--rd-s-2);
}

.gw-cat-desc {
  font-size: var(--rd-fs-13);
  color: var(--rd-text-muted);
  line-height: var(--rd-lh-normal);
  flex: 1;
}

.gw-cat-count {
  margin-top: var(--rd-s-4);
  font-size: var(--rd-fs-11);
  color: var(--rd-text-soft);
  font-weight: var(--rd-fw-medium);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

@media (max-width: 960px) {
  .gw-cat-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 520px) {
  .gw-cat-grid { grid-template-columns: 1fr; }
}

/* === USP / FEATURES === */
.gw-usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--rd-s-6);
}

.gw-usp {
  padding: var(--rd-s-6);
  background: var(--rd-bg);
  border: 1px solid var(--rd-divider);
  border-radius: var(--rd-r-xl);
}

.gw-usp-num {
  font-size: var(--rd-fs-11);
  color: var(--rd-text-soft);
  font-weight: var(--rd-fw-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-variant-numeric: tabular-nums;
}

.gw-usp-title {
  margin-top: var(--rd-s-3);
  font-size: var(--rd-fs-16);
  font-weight: var(--rd-fw-semibold);
  color: var(--rd-text-strong);
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.gw-usp-desc {
  margin-top: var(--rd-s-3);
  font-size: var(--rd-fs-13);
  color: var(--rd-text-muted);
  line-height: var(--rd-lh-normal);
}

@media (max-width: 880px) {
  .gw-usp-grid { grid-template-columns: 1fr; gap: var(--rd-s-4); }
}

/* === CTA BAND === */
.gw-cta-band {
  margin: var(--rd-s-12) 0;
  padding: var(--rd-s-10) var(--rd-s-10);
  background: linear-gradient(135deg, #0E2818 0%, #16432A 100%);
  border-radius: var(--rd-r-xl);
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--rd-s-8);
  align-items: center;
}

.gw-cta-band h2 {
  font-size: 28px !important;
  color: #fff !important;
  font-weight: var(--rd-fw-semibold) !important;
  letter-spacing: -0.03em !important;
  line-height: 1.15 !important;
}

.gw-cta-band p {
  margin-top: var(--rd-s-4);
  font-size: var(--rd-fs-15);
  color: rgba(255, 255, 255, 0.7);
  line-height: var(--rd-lh-relaxed);
}

.gw-cta-band-actions {
  display: flex;
  flex-direction: column;
  gap: var(--rd-s-3);
}

.gw-cta-band .gw-cta {
  justify-content: center;
  padding: 12px 18px;
  font-size: var(--rd-fs-14);
}

.gw-cta-band .gw-cta--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.15);
}

.gw-cta-band .gw-cta--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

@media (max-width: 880px) {
  .gw-cta-band {
    grid-template-columns: 1fr;
    padding: var(--rd-s-8);
    margin: var(--rd-s-8) 0;
  }
  .gw-cta-band h2 { font-size: 22px !important; }
  .gw-cta-band .gw-cta { min-height: 48px; }
}

@media (max-width: 480px) {
  .gw-cta-band {
    padding: var(--rd-s-6);
    border-radius: var(--rd-r-lg);
  }
  .gw-cta-band h2 { font-size: 20px !important; }
  .gw-cta-band p { font-size: var(--rd-fs-14); }
}

/* === FOOTER === */
.gw-footer {
  margin-top: var(--rd-s-12);
  padding: var(--rd-s-10) 0 var(--rd-s-6);
  border-top: 1px solid var(--rd-divider);
  background: var(--rd-sidebar-bg);
}

.gw-footer a {
  display: inline-block;
  padding: 4px 0; /* touch target için ek dikey alan */
}

.gw-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--rd-s-8);
  margin-bottom: var(--rd-s-10);
}

.gw-footer h4 {
  font-size: var(--rd-fs-11) !important;
  font-weight: var(--rd-fw-semibold) !important;
  color: var(--rd-text-soft);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--rd-s-4) !important;
}

.gw-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--rd-s-3);
}

.gw-footer a {
  font-size: var(--rd-fs-13);
  color: var(--rd-text-muted);
  text-decoration: none;
  transition: color var(--rd-tr-fast);
}

.gw-footer a:hover { color: var(--rd-text-strong); }

.gw-footer-about {
  font-size: var(--rd-fs-13);
  color: var(--rd-text-muted);
  line-height: var(--rd-lh-relaxed);
  margin-top: var(--rd-s-4);
  max-width: 320px;
}

.gw-footer-bottom {
  padding-top: var(--rd-s-5);
  border-top: 1px solid var(--rd-divider);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--rd-fs-12);
  color: var(--rd-text-soft);
  flex-wrap: wrap;
  gap: var(--rd-s-3);
}

.gw-footer-credit {
  text-align: center;
  flex: 1;
  min-width: 200px;
}

.gw-footer-credit a {
  color: var(--rd-text-muted);
  text-decoration: none;
  font-weight: var(--rd-fw-medium);
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: all var(--rd-tr-fast);
}

.gw-footer-credit a:hover {
  color: var(--gw-green-dark);
  border-bottom-color: var(--gw-green-dark);
}

@media (max-width: 640px) {
  .gw-footer-bottom { justify-content: center; text-align: center; }
  .gw-footer-credit { flex-basis: 100%; order: 3; }
}

/* === Ürün/kategori kartlarında image (emoji fallback) === */
.gw-product-img img,
.gw-cat-image-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* === Ürün kartı tıklanabilir link versiyon === */
.gw-product-card--link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.gw-product-card--link:hover {
  box-shadow: var(--rd-shadow-md);
  transform: translateY(-2px);
}

/* === Kategori sayfa hero (image arka planlı) === */
.gw-cat-hero { position: relative; overflow: hidden; }

.gw-cat-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.gw-cat-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gw-cat-hero--with-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.85), rgba(255,255,255,0.92));
  z-index: 1;
}

.gw-cat-hero > .gw-wrap { position: relative; z-index: 2; }

/* === Ürün detay sayfası === */
.gw-breadcrumb {
  font-size: var(--rd-fs-12);
  color: var(--rd-text-muted);
  padding-top: var(--rd-s-6);
  margin-bottom: var(--rd-s-5);
}

.gw-breadcrumb a {
  color: var(--rd-text-muted);
  text-decoration: none;
  transition: color var(--rd-tr-fast);
}

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

.gw-product-detail {
  padding: 0 0 var(--rd-s-10);
}

.gw-product-detail-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--rd-s-10);
  align-items: start;
}

.gw-product-gallery-main {
  border-radius: var(--rd-r-xl);
  overflow: hidden;
  background: var(--rd-bg-strong);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

/* === CAROUSEL === */
.gw-carousel {
  position: relative;
  border-radius: var(--rd-r-xl);
  overflow: hidden;
  background: var(--rd-bg-strong);
  aspect-ratio: 4 / 3;
}

.gw-carousel-track {
  display: flex;
  height: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}

.gw-carousel-track::-webkit-scrollbar { display: none; }

.gw-carousel-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  height: 100%;
}

.gw-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gw-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--rd-divider);
  color: var(--rd-text-strong);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all var(--rd-tr-fast);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: var(--rd-shadow-sm);
}

.gw-carousel-arrow:hover {
  background: #fff;
  color: var(--gw-green-dark);
  box-shadow: var(--rd-shadow-md);
}

.gw-carousel-arrow--prev { left: 12px; }
.gw-carousel-arrow--next { right: 12px; }

.gw-carousel-arrow:disabled,
.gw-carousel-arrow[aria-disabled="true"] {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

.gw-carousel-counter {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: var(--rd-fs-11);
  font-weight: var(--rd-fw-medium);
  padding: 4px 10px;
  border-radius: 999px;
  font-variant-numeric: tabular-nums;
  z-index: 2;
  backdrop-filter: blur(8px);
}

[dir="rtl"] .gw-carousel-arrow--prev { left: auto; right: 12px; }
[dir="rtl"] .gw-carousel-arrow--next { right: auto; left: 12px; }
[dir="rtl"] .gw-carousel-counter { right: auto; left: 14px; }

/* Thumbs (carousel altında) */
.gw-product-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(64px, 80px));
  gap: var(--rd-s-2);
  margin-top: var(--rd-s-3);
}

@media (max-width: 480px) {
  .gw-carousel-arrow { width: 36px; height: 36px; }
  .gw-product-gallery-thumbs {
    grid-template-columns: repeat(auto-fill, minmax(52px, 64px));
  }
}

.gw-empty-image { font-size: 64px; color: var(--rd-text-soft); }

.gw-product-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(72px, 1fr));
  gap: var(--rd-s-2);
  margin-top: var(--rd-s-3);
}

.gw-thumb {
  appearance: none;
  border: 2px solid var(--rd-divider);
  background: var(--rd-bg-strong);
  border-radius: var(--rd-r-md);
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
  transition: border-color var(--rd-tr-fast);
}

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

.gw-thumb.is-active,
.gw-thumb:hover { border-color: var(--gw-green); }

.gw-product-info {
  padding-top: var(--rd-s-2);
}

.gw-product-info .gw-product-tag {
  display: inline-block;
  margin-bottom: var(--rd-s-3);
}

.gw-product-detail-title {
  font-size: 28px !important;
  font-weight: var(--rd-fw-semibold) !important;
  color: var(--rd-text-strong);
  letter-spacing: -0.03em !important;
  line-height: 1.15 !important;
  margin: 0 0 var(--rd-s-3) !important;
}

.gw-product-detail-subtitle {
  font-size: var(--rd-fs-16);
  color: var(--rd-text-muted);
  margin: 0 0 var(--rd-s-5);
  line-height: var(--rd-lh-relaxed);
}

.gw-product-detail-short {
  font-size: var(--rd-fs-14);
  color: var(--rd-text);
  margin: 0 0 var(--rd-s-6);
  line-height: var(--rd-lh-relaxed);
}

.gw-product-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--rd-s-4);
  padding: var(--rd-s-5);
  background: var(--rd-bg-strong);
  border-radius: var(--rd-r-xl);
  margin: 0 0 var(--rd-s-6);
}

.gw-product-spec dt {
  font-size: var(--rd-fs-11);
  color: var(--rd-text-soft);
  font-weight: var(--rd-fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.gw-product-spec dd {
  margin: 4px 0 0;
  font-size: var(--rd-fs-14);
  color: var(--rd-text-strong);
  font-weight: var(--rd-fw-medium);
}

.gw-product-actions {
  display: flex;
  gap: var(--rd-s-3);
  flex-wrap: wrap;
}

.gw-product-actions .gw-cta { flex: 1; min-width: 180px; }

.gw-product-bottom {
  margin-top: var(--rd-s-10);
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: var(--rd-s-8);
  padding-top: var(--rd-s-8);
  border-top: 1px solid var(--rd-divider);
}

.gw-product-content {
  font-size: var(--rd-fs-15);
  color: var(--rd-text);
  line-height: var(--rd-lh-relaxed);
}

.gw-product-content p { margin: 0 0 var(--rd-s-4); }

.gw-product-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--rd-s-2);
}

.gw-product-features li {
  padding: 10px 14px;
  background: var(--rd-bg-strong);
  border-radius: var(--rd-r-lg);
  font-size: var(--rd-fs-14);
  position: relative;
  padding-left: 32px;
}

.gw-product-features li::before {
  content: "✓";
  position: absolute;
  left: 12px;
  top: 10px;
  color: var(--gw-green);
  font-weight: var(--rd-fw-semibold);
}

[dir="rtl"] .gw-product-features li {
  padding-left: 14px;
  padding-right: 32px;
}

[dir="rtl"] .gw-product-features li::before {
  left: auto;
  right: 12px;
}

@media (max-width: 960px) {
  .gw-product-detail-grid { grid-template-columns: 1fr; gap: var(--rd-s-8); }
  .gw-product-bottom { grid-template-columns: 1fr; gap: var(--rd-s-6); }
}

@media (max-width: 480px) {
  .gw-product-specs { grid-template-columns: 1fr; }
  .gw-product-actions .gw-cta { min-width: 100%; }
}

/* === Pagination === */
.gw-pagination {
  margin-top: var(--rd-s-8);
  display: flex;
  gap: var(--rd-s-2);
  justify-content: center;
  flex-wrap: wrap;
}

.gw-pagination .page-numbers {
  padding: 8px 14px;
  background: var(--rd-bg-strong);
  border-radius: var(--rd-r-lg);
  font-size: var(--rd-fs-13);
  color: var(--rd-text);
  text-decoration: none;
  font-weight: var(--rd-fw-medium);
  transition: all var(--rd-tr-fast);
}

.gw-pagination .page-numbers.current {
  background: var(--gw-green-dark);
  color: #fff;
}

.gw-pagination .page-numbers:hover {
  background: var(--gw-green-soft);
}

.gw-cat-image-cover {
  position: absolute;
  inset: 0;
  border-radius: var(--rd-r-xl);
  overflow: hidden;
  z-index: 0;
  opacity: 0.08;
  pointer-events: none;
  transition: opacity var(--rd-tr-base);
}

.gw-cat-card:hover .gw-cat-image-cover { opacity: 0.14; }

.gw-cat-card > * {
  position: relative;
  z-index: 1;
}

@media (max-width: 720px) {
  .gw-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--rd-s-6);
  }
}

@media (max-width: 420px) {
  .gw-footer-grid { grid-template-columns: 1fr; }
}

/* === PAGE HEADER (inner pages) === */
.gw-page-hero {
  padding: var(--rd-s-12) 0 var(--rd-s-10);
}

.gw-page-hero h1 {
  font-size: 36px !important;
  font-weight: var(--rd-fw-semibold) !important;
  color: var(--rd-text-strong);
  letter-spacing: -0.035em !important;
  line-height: 1.1 !important;
  margin-top: var(--rd-s-4) !important;
  max-width: 720px;
}

.gw-page-hero p {
  margin-top: var(--rd-s-5);
  font-size: var(--rd-fs-16);
  color: var(--rd-text-muted);
  line-height: var(--rd-lh-relaxed);
  max-width: 640px;
}

@media (max-width: 720px) {
  .gw-page-hero { padding: var(--rd-s-8) 0 var(--rd-s-6); }
  .gw-page-hero h1 { font-size: 28px !important; }
  .gw-page-hero p { font-size: var(--rd-fs-15); }
}

@media (max-width: 480px) {
  .gw-page-hero h1 { font-size: 24px !important; }
}

/* === CONTACT === */
.gw-contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--rd-s-10);
  align-items: start;
}

.gw-contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--rd-s-5);
  padding: var(--rd-s-8);
  background: var(--rd-bg);
  border: 1px solid var(--rd-divider);
  border-radius: var(--rd-r-xl);
}

.gw-contact-form .zarif-input,
.gw-contact-form .zarif-textarea,
.gw-contact-form select {
  width: 100%;
  font-family: inherit;
  font-size: 16px; /* iOS auto-zoom önler — 16px altına düşürme */
  padding: 12px 14px;
  min-height: 48px;
  background: var(--rd-input-bg);
  border: 1px solid transparent;
  border-radius: var(--rd-r-lg);
  color: var(--rd-text);
  transition: all var(--rd-tr-fast);
}

.gw-contact-form .zarif-input:focus,
.gw-contact-form .zarif-textarea:focus,
.gw-contact-form select:focus {
  outline: none;
  background: var(--rd-bg);
  border-color: var(--rd-blue);
  box-shadow: 0 0 0 3px var(--rd-blue-ring);
}

.gw-contact-form .zarif-textarea {
  min-height: 120px;
  resize: vertical;
  font-family: inherit;
}

.gw-contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--rd-s-6);
}

.gw-info-row {
  display: flex;
  gap: var(--rd-s-4);
  padding: var(--rd-s-5);
  background: var(--rd-bg-strong);
  border-radius: var(--rd-r-xl);
}

.gw-info-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--rd-r-lg);
  background: var(--rd-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}

.gw-info-label {
  font-size: var(--rd-fs-11);
  font-weight: var(--rd-fw-semibold);
  color: var(--rd-text-soft);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.gw-info-value {
  margin-top: 4px;
  font-size: var(--rd-fs-14);
  color: var(--rd-text-strong);
  font-weight: var(--rd-fw-medium);
  line-height: 1.4;
}

@media (max-width: 880px) {
  .gw-contact-grid { grid-template-columns: 1fr; gap: var(--rd-s-6); }
  .gw-contact-form { padding: var(--rd-s-6); }
  /* form içindeki 2-col grid'leri mobilde tek sütun yap */
  .gw-contact-form div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 480px) {
  .gw-contact-form { padding: var(--rd-s-5); }
  .gw-info-row { padding: var(--rd-s-4); }
}

/* === PRODUCTS LIST === */
.gw-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--rd-s-5);
}

.gw-product-card {
  display: flex;
  flex-direction: column;
  background: var(--rd-bg);
  border: 1px solid var(--rd-divider);
  border-radius: var(--rd-r-xl);
  overflow: hidden;
  transition: all var(--rd-tr-base);
}

.gw-product-card:hover {
  box-shadow: var(--rd-shadow-md);
  transform: translateY(-2px);
}

.gw-product-img {
  height: 180px;
  background: var(--rd-bg-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: var(--rd-text-soft);
}

.gw-product-body {
  padding: var(--rd-s-5);
}

.gw-product-tag {
  font-size: var(--rd-fs-10);
  font-weight: var(--rd-fw-semibold);
  color: var(--gw-green-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.gw-product-name {
  margin-top: var(--rd-s-2);
  font-size: var(--rd-fs-15);
  font-weight: var(--rd-fw-semibold);
  color: var(--rd-text-strong);
  letter-spacing: -0.02em;
}

.gw-product-desc {
  margin-top: var(--rd-s-2);
  font-size: var(--rd-fs-13);
  color: var(--rd-text-muted);
  line-height: var(--rd-lh-normal);
}

@media (max-width: 880px) {
  .gw-product-grid { grid-template-columns: repeat(2, 1fr); }
}

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

/* === ABOUT === */
.gw-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--rd-s-12);
  align-items: start;
}

.gw-values-list {
  display: flex;
  flex-direction: column;
  gap: var(--rd-s-4);
}

.gw-value-item {
  padding: var(--rd-s-5);
  background: var(--rd-bg);
  border: 1px solid var(--rd-divider);
  border-radius: var(--rd-r-xl);
}

.gw-value-name {
  font-size: var(--rd-fs-14);
  font-weight: var(--rd-fw-semibold);
  color: var(--rd-text-strong);
  letter-spacing: -0.02em;
}

.gw-value-desc {
  margin-top: var(--rd-s-2);
  font-size: var(--rd-fs-13);
  color: var(--rd-text-muted);
  line-height: var(--rd-lh-normal);
}

@media (max-width: 880px) {
  .gw-about-grid { grid-template-columns: 1fr; gap: var(--rd-s-8); }
}

/* === ARABIC RTL === */
[dir="rtl"] {
  text-align: right;
}

[dir="rtl"] .gw-brand-suffix { margin-left: 0; margin-right: 2px; }

[dir="rtl"] .gw-section-link::after { content: "←"; }
[dir="rtl"] .gw-section-link:hover::after { transform: translateX(-3px); }

[dir="rtl"] .gw-eyebrow { padding: 5px 8px 5px 12px; }

[dir="rtl"] .gw-hero h1,
[dir="rtl"] .gw-page-hero h1,
[dir="rtl"] .gw-section-title {
  letter-spacing: 0 !important;
}

/* Arapça için Inter yerine sistem Arapça fontu — IBM Plex Sans Arabic + Inter fallback */
[dir="rtl"].zarif-app,
[dir="rtl"] .zarif-app {
  font-family: 'IBM Plex Sans Arabic', 'Inter', -apple-system, 'SF Arabic', Tahoma, Arial, sans-serif;
}

@font-face {
  font-family: 'IBM Plex Sans Arabic';
  font-display: swap;
  src: local('IBM Plex Sans Arabic'),
       local('SF Arabic'),
       local('Tahoma');
}
