:root {
  --black: #0a0a0a;
  --white: #ffffff;
  --gray-100: #eeece8;
  --gray-200: #d8d5cf;
  --gray-400: #9a9590;
  --gray-600: #5a5651;
  --accent: #c8b89a;
  --border: rgba(10, 10, 10, 0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Karla', sans-serif;
  background: var(--white);
  color: var(--black);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  height: 72px;
  background: rgba(245, 243, 239, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--black);
  text-decoration: none;
}

.logo span {
  font-style: italic;
  font-weight: 300;
  color: var(--gray-400);
}

nav ul {
  display: flex;
  gap: 40px;
  list-style: none;
}

nav ul a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gray-600);
  transition: color 0.2s;
}

nav ul a:hover {
  color: var(--black);
}

.nav-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.btn-nav-ghost {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gray-600);
  font-family: 'Karla', sans-serif;
  transition: color 0.2s;
}

.btn-nav-ghost:hover {
  color: var(--black);
}

.btn-nav-solid {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--black);
  color: var(--white);
  padding: 10px 22px;
  text-decoration: none;
  font-family: 'Karla', sans-serif;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}

.btn-nav-solid:hover {
  background: var(--gray-600);
}

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 72px;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 60px;
  position: relative;
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gray-400);
  display: block;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 5vw, 80px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
}

.hero-title em {
  font-style: italic;
  font-weight: 300;
}

.hero-desc {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.75;
  max-width: 420px;
  margin-bottom: 48px;
  font-weight: 300;
}

.hero-cta-group {
  display: flex;
  gap: 20px;
  align-items: center;
}

.btn-primary {
  background: var(--black);
  color: var(--white);
  font-family: 'Karla', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 36px;
  display: inline-block;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--white);
  transform: translateX(-101%);
  transition: transform 0.3s ease;
  mix-blend-mode: difference;
}

.btn-primary:hover::after {
  transform: translateX(0);
}

.btn-ghost {
  font-family: 'Karla', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}

.btn-ghost:hover {
  color: var(--black);
}

.btn-ghost .arrow {
  font-size: 18px;
  transition: transform 0.2s;
}

.btn-ghost:hover .arrow {
  transform: translateX(4px);
}

.hero-right {
  background: var(--gray-100);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-map-mockup {
  width: 380px;
  height: 480px;
  background: var(--white);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12), 0 8px 16px rgba(0, 0, 0, 0.06);
  position: relative;
  transform: rotate(-2deg);
  transition: transform 0.4s ease;
}

.hero-map-mockup:hover {
  transform: rotate(0deg);
}

.map-frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.map-svg {
  width: 100%;
  height: 100%;
  opacity: 0.25;
}

.map-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 32px;
  background: linear-gradient(to top, rgba(245, 243, 239, 0.95) 30%, transparent);
}

.map-location-label {
  text-align: center;
}

.map-city {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 0.05em;
}

.map-coords {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--gray-400);
  margin-top: 4px;
}

.map-pin {
  position: absolute;
  top: 38%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  border: 2px solid var(--black);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.map-pin::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 4px;
  height: 4px;
  background: var(--black);
  border-radius: 50%;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(10, 10, 10, 0.3);
  }

  50% {
    box-shadow: 0 0 0 12px rgba(10, 10, 10, 0);
  }
}

.material-tag {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--black);
  color: var(--white);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  font-family: 'Karla', sans-serif;
}

.hero-stats {
  position: absolute;
  bottom: 40px;
  left: 60px;
  display: flex;
  gap: 40px;
}

.stat-item {
  text-align: left;
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 300;
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-top: 4px;
}

/* HOW IT WORKS */
.section {
  padding: 120px 60px;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 80px;
}

.section-eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 3vw, 52px);
  font-weight: 300;
  line-height: 1.15;
}

.section-title em {
  font-style: italic;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}

.step-item {
  padding: 56px 48px;
  border-right: 1px solid var(--border);
  position: relative;
  transition: background 0.3s;
}

.step-item:last-child {
  border-right: none;
}

.step-item:hover {
  background: var(--gray-100);
}

.step-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  font-weight: 300;
  color: var(--gray-200);
  line-height: 1;
  margin-bottom: 32px;
}

.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 16px;
}

.step-desc {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.75;
  font-weight: 300;
}

/* PRODUCTS */
.products-section {
  background: var(--black);
  color: var(--white);
  padding: 120px 60px;
}

.products-section .section-eyebrow {
  color: var(--gray-400);
}

.products-section .section-title {
  color: var(--white);
}

.products-section .section-title em {
  color: var(--accent);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 64px;
}

.product-card {
  background: #111;
  padding: 48px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: background 0.3s;
  text-decoration: none;
  color: var(--white);
  display: block;
}

.product-card:hover {
  background: #1a1a1a;
}

.product-card-img {
  width: 100%;
  aspect-ratio: 3/4;
  background: #1e1e1e;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-material-icon {
  font-size: 48px;
  opacity: 0.15;
}

.product-material-lines {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg,
      transparent,
      transparent 20px,
      rgba(255, 255, 255, 0.02) 20px,
      rgba(255, 255, 255, 0.02) 21px),
    repeating-linear-gradient(90deg,
      transparent,
      transparent 20px,
      rgba(255, 255, 255, 0.02) 20px,
      rgba(255, 255, 255, 0.02) 21px);
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--accent);
  color: var(--black);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 10px;
  font-family: 'Karla', sans-serif;
  font-weight: 500;
}

.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  margin-bottom: 8px;
}

.product-desc {
  font-size: 13px;
  color: var(--gray-400);
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 24px;
}

.product-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 300;
}

.product-price span {
  font-size: 13px;
  font-family: 'Karla', sans-serif;
  color: var(--gray-400);
  margin-left: 4px;
}

/* TESTIMONIALS */
.testimonials {
  padding: 120px 60px;
  background: var(--gray-100);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 64px;
}

.testimonial-card {
  background: var(--white);
  padding: 48px 40px;
}

.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
}

.star {
  width: 12px;
  height: 12px;
  background: var(--black);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 32px;
}

.testimonial-author {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
}

/* CTA BANNER */
.cta-banner {
  padding: 120px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: 'Pintograf';
  position: absolute;
  font-family: 'Cormorant Garamond', serif;
  font-size: 200px;
  font-weight: 600;
  color: var(--gray-100);
  white-space: nowrap;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  letter-spacing: -0.02em;
  pointer-events: none;
  z-index: 0;
}

.cta-banner-content {
  position: relative;
  z-index: 1;
}

.cta-banner .section-eyebrow {
  display: inline-block;
  margin-bottom: 24px;
}

.cta-banner .section-title {
  margin-bottom: 48px;
}

.cta-banner .section-title {
  text-align: center;
}

/* --- FOOTER --- */
footer {
  background: var(--black);
  color: var(--gray-400);
  padding: 80px 60px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}

.footer-logo em {
  font-style: italic;
  font-weight: 300;
  color: var(--accent);
}

.footer-desc {
  font-size: 14px;
  line-height: 1.8;
  font-weight: 300;
  max-width: 320px;
  color: var(--gray-400);
}

.footer-col-title {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 28px;
  font-weight: 500;
}

.footer-col-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-col-links a {
  font-size: 15px;
  text-decoration: none;
  color: var(--gray-400);
  transition: all 0.3s ease;
  font-weight: 400;
}

.footer-col-links a:hover {
  color: var(--accent);
  transform: translateX(4px);
}

/* --- FOOTER BOTTOM (GÜNCELLENMİŞ ÜÇLÜ YAPI) --- */
.footer-bottom {
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 32px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Sütunların eşit genişlikte olması orta metni tam merkeze alır */
.footer-bottom-left,
.footer-bottom-center,
.footer-bottom-right {
  flex: 1;
  font-size: 12px;
  color: var(--gray-600);
}

.footer-bottom-center {
  text-align: center;
  color: var(--gray-500);
  /* Orta metni hafifçe belirginleştirdik */
  font-weight: 300;
}

.footer-bottom-right {
  text-align: right;
}

.brand-attribution a {
  color: var(--gray-400);
  text-decoration: none;
  font-weight: 400;
  transition: all 0.2s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.brand-attribution a:hover {
  color: var(--white);
  border-bottom-color: var(--white);
}

/* --- FOOTER RESPONSIVE --- */
@media (max-width: 1024px) {
  footer {
    grid-template-columns: 1fr 1fr;
    padding: 60px 40px;
    gap: 40px;
  }

  .footer-main-col {
    grid-column: 1 / -1;
    margin-bottom: 20px;
  }
}

@media (max-width: 992px) {
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    padding: 40px 24px;
    text-align: center;
  }

  .footer-bottom-left,
  .footer-bottom-center,
  .footer-bottom-right {
    text-align: center;
    flex: none;
  }

  /* Mobilde 'El İşçiliği' yazısını en üste çekmek istersen: */
  .footer-bottom-center {

    order: -1;
    margin-bottom: 8px;
  }
}

@media (max-width: 768px) {
  footer {
    grid-template-columns: 1fr;
    padding: 60px 24px;
    text-align: center;
  }

  .footer-desc {
    margin: 0 auto;
  }

  .footer-col-links {
    align-items: center;
  }

  .footer-col-links a:hover {
    transform: none;
  }
}


/* ANIMATIONS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-eyebrow {
  animation: fadeUp 0.6s ease both;
}

.hero-title {
  animation: fadeUp 0.6s 0.1s ease both;
}

.hero-desc {
  animation: fadeUp 0.6s 0.2s ease both;
}

.hero-cta-group {
  animation: fadeUp 0.6s 0.3s ease both;
}

.hero-stats {
  animation: fadeUp 0.6s 0.4s ease both;
}

.hero-map-mockup {
  animation: fadeUp 0.8s 0.2s ease both;
}

/* --- RESPONSIVE ADJUSTMENTS --- */

/* Tablet ve Küçük Masaüstü (1024px altı) */
@media (max-width: 1024px) {
  nav {
    padding: 0 30px;
  }

  nav ul {
    gap: 20px;
  }

  .hero {
    grid-template-columns: 1fr;
    /* Yan yana olan yapıyı alt alta getirir */
    text-align: center;
  }

  .hero-left {
    padding: 60px 30px;
    align-items: center;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .hero-stats {
    position: static;
    justify-content: center;
    margin-top: 40px;
    padding-bottom: 40px;
  }

  .hero-right {
    min-height: 500px;
    padding: 40px;
  }

  .steps-grid,
  .products-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    /* 3 sütundan 2 sütuna düşürür */
  }

  .step-item:nth-child(2) {
    border-right: none;
  }

  .step-item:nth-child(3) {
    border-top: 1px solid var(--border);
  }

  footer {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 60px 30px;
  }
}

/* Mobil Cihazlar (768px altı) */
@media (max-width: 768px) {
  nav {
    padding: 0 20px;
  }

  /* Navigasyon linklerini gizleyip sadece butonu bırakmak mobilde daha temiz durur */
  nav ul {
    display: none;
  }

  .section {
    padding: 80px 20px;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .hero-title {
    font-size: 42px;
  }

  .hero-map-mockup {
    width: 280px;
    /* Mobilde taşmaması için küçültüldü */
    height: 380px;
  }

  .steps-grid,
  .products-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
    /* Her şeyi tek sütun yapar */
  }

  .step-item,
  .product-card,
  .testimonial-card {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 40px 24px;
  }

  .cta-banner::before {
    font-size: 80px;
    /* Arka plandaki dev yazı mobilde küçülmeli */
  }

  footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    padding: 20px;
  }
}

/* Çok Küçük Ekranlar (480px altı) */
@media (max-width: 480px) {
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary,
  .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    gap: 20px;
  }

  .stat-num {
    font-size: 24px;
  }
}

.ajax-cart-alert {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #fff;
  border: 1px solid #eee;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  z-index: 999999;
  width: 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: alertSlideUp 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.aca-icon {
  background: #000;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.aca-btn {
  background: #000;
  color: #fff;
  text-decoration: none;
  text-align: center;
  padding: 14px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.aca-btn:hover {
  background: #333;
  transform: scale(1.02);
}

@keyframes alertSlideUp {
  from {
    transform: translateY(100px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}


/*
.woocommerce-Input .woocommerce-Input--text .input-text {
width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid var(--border);
  background: #fafafa;
  font-family: 'Karla', sans-serif;
  outline: none;
  transition: border-color 0.3s;
}

*/


/* WooCommerce Standart Input Düzenlemesi */
.woocommerce-Input.input-text {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #e2e8f0;
  /* Soft gri kenarlık */
  background-color: #f8fafc;
  /* Çok hafif arka plan */
  font-size: 15px;
  color: #1a1a1a;
  transition: all 0.3s ease;
  /* Geçiş efekti */
  outline: none;
  box-shadow: none;
  appearance: none;
}

/* Mouse ile üzerine gelince (Hover) */
.woocommerce-Input.input-text:hover {
  border-color: #cbd5e1;
}

/* Tıklayınca / Odaklanınca (Focus) */
.woocommerce-Input.input-text:focus {
  background-color: #ffffff;
  border-color: #000000;
  /* Siyah odak çizgisi */
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.05);
  /* Apple-style hafif gölge */
}

fieldset {
  border: none;
}

.woocommerce-Button.button {
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 18px 40px;
  cursor: pointer;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  width: 100%;
  transition: background 0.3s;
}

/* --- ANA NAVİGASYON (GENEL & DESKTOP) --- */
.site-navigation {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  height: 80px;
  background: rgba(245, 243, 239, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  padding: 0 40px;
}

.nav-logo {
  font-size: 22px;
  font-weight: 700;
  text-decoration: none;
  color: #0a0a0a;
  z-index: 10001;
  flex-shrink: 0;
}

.nav-logo span {
  color: #888;
  font-weight: 400;
}

.nav-content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
}

/* Orta Menü - Masaüstü */
.nav-menu-center {
  display: flex;
  list-style: none;
  gap: 32px;
  margin: 0;
  padding: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.nav-menu-center a {
  text-decoration: none;
  color: #0a0a0a;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}

.nav-menu-center a:hover {
  opacity: 0.5;
}

/* Sağ Butonlar */
.nav-actions-right {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.cart-count {
  background: #ff4444;
  color: #fff;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 10px;
  margin-left: 8px;
}

/* Masaüstünde kesinlikle gizlenmesi gerekenler */
.nav-mobile-toggle,
.nav-mobile-close {
  display: none !important;
}

/* --- MOBİL TASARIM (991px ve Altı) --- */
@media (max-width: 991px) {
  .site-navigation {
    padding: 0 20px;
    height: 70px;
  }

  .nav-mobile-toggle {
    display: flex !important;
    cursor: pointer;
    gap: 6px;
    flex-direction: column;
    z-index: 10001;
  }

  .nav-mobile-toggle span {
    width: 24px;
    height: 1.5px;
    background: #0a0a0a;
  }

  .nav-content-wrapper {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background: #f5f3ef;
    flex-direction: column;
    justify-content: flex-start;
    padding: 100px 30px 40px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 10000;
    display: flex;
    /* Overlay aktif olduğunda elemanları dizmek için */
  }

  .nav-content-wrapper.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }

  .nav-mobile-close {
    display: flex !important;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 200;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    background: #fff;
    z-index: 10002;
  }

  .nav-menu-center {
    position: static;
    transform: none;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 0;
  }

  .nav-menu-center li {
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .nav-menu-center a {
    font-size: 16px;
    padding: 18px 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    text-transform: none;
    letter-spacing: 0;
  }

  .nav-menu-center a::after {
    content: "→";
    opacity: 0.2;
  }

  .nav-actions-right {
    flex-direction: column;
    width: 100%;
    margin-top: auto;
    gap: 10px;
  }

  .btn-nav-ghost,
  .btn-nav-solid {
    width: 100%;
    height: 56px;
    border-radius: 12px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
  }
}