/* =============================================
   Çiçek74 - Ana Stil Dosyası
   Kurumsal Renkler: Yeşil #2e7d32 / Turuncu #f57c00
   ============================================= */

:root {
  --green: #2e7d32;
  --green-light: #4caf50;
  --green-pale: #e8f5e9;
  --orange: #f57c00;
  --orange-light: #ff9800;
  --orange-pale: #fff3e0;
  --text-dark: #212121;
  --text-gray: #616161;
  --text-light: #9e9e9e;
  --border: #e0e0e0;
  --bg-light: #f9f9f9;
  --white: #ffffff;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 30px rgba(0,0,0,0.15);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: all 0.3s ease;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: clip;   /* clip: sticky'i bozmadan yatay taşmayı engeller */
  max-width: 100vw;
}
body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  margin: 0;
  padding: 0;
  overflow-x: clip;   /* clip: sticky'i bozmadan yatay taşmayı engeller */
  max-width: 100vw;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; }
ul { list-style: none; padding: 0; margin: 0; }
p { margin: 0 0 1rem; }

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.3; margin: 0 0 1rem; color: var(--text-dark); }
h1 { font-size: clamp(1.8rem, 4vw, 2.5rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

/* =============================================
   HEADER — Premium Tasarım
   ============================================= */

/* ---- Üst Bilgi Şeridi ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 3px 20px rgba(0,0,0,0.12);
}

.header-top {
  background: linear-gradient(90deg, #1b5e20 0%, #2e7d32 50%, #33691e 100%);
  padding: 7px 0;
}

.header-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.header-top-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-top-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ht-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.ht-badge svg { opacity: 0.9; flex-shrink: 0; }

.ht-sep { width: 1px; height: 14px; background: rgba(255,255,255,0.25); }

.ht-link {
  color: rgba(255,255,255,0.88);
  font-size: 0.75rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.2s;
}

.ht-link:hover { color: #fff; }

.ht-social {
  display: flex;
  align-items: center;
  gap: 6px;
}

.ht-social a {
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  padding: 3px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}

.ht-social a:hover { color: #fff; background: rgba(255,255,255,0.15); }

/* ---- Ana Header ---- */
.header-main {
  background: var(--white);
  padding: 12px 0;
  border-bottom: 2px solid #f0f0f0;
  position: relative;
}

.header-main::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--orange) 0%, var(--orange-light) 100%);
}

.header-main-inner {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Logo */
.header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 0;
  text-decoration: none;
}

.header-logo img { height: 58px; width: auto; }

/* Arama */
.header-search {
  flex: 1;
  max-width: 520px;
  position: relative;
}

.search-wrap {
  display: flex;
  align-items: center;
  background: #f5f5f5;
  border: 2px solid transparent;
  border-radius: 50px;
  overflow: hidden;
  transition: all 0.25s ease;
  box-shadow: inset 0 1px 4px rgba(0,0,0,0.06);
}

.search-wrap:focus-within {
  background: #fff;
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(46,125,50,0.1), inset 0 1px 4px rgba(0,0,0,0.03);
}

.search-wrap input {
  flex: 1;
  padding: 11px 16px;
  border: none;
  outline: none;
  font-size: 0.88rem;
  background: transparent;
  color: var(--text-dark);
  font-family: inherit;
}

.search-wrap input::placeholder { color: var(--text-light); }

.search-wrap button {
  background: var(--green);
  color: var(--white);
  border: none;
  padding: 11px 20px;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.search-wrap button:hover { background: var(--green-light); }

/* Aksiyonlar */
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  margin-left: auto;
}

/* WhatsApp Butonu */
.btn-wa-header {
  background: linear-gradient(135deg, #25D366 0%, #1aad52 100%);
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  box-shadow: 0 3px 12px rgba(37,211,102,0.35);
  transition: all 0.2s ease;
  letter-spacing: 0.01em;
}

.btn-wa-header:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.45);
  background: linear-gradient(135deg, #1ebe57 0%, #17a349 100%);
}

/* Ara Butonu */
.btn-call-header {
  background: var(--white);
  color: var(--orange) !important;
  padding: 9px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  border: 2px solid var(--orange);
  transition: all 0.2s ease;
}

.btn-call-header:hover {
  background: var(--orange);
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(245,124,0,0.3);
}

/* Hamburger */
.hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  background: none;
  border: 2px solid rgba(0,0,0,0.12);
  border-radius: 8px;
  cursor: pointer;
  padding: 7px;
  color: var(--text-dark);
  transition: all 0.2s;
}

.hamburger:hover { background: var(--bg-light); border-color: var(--green); }

/* ---- Navigasyon — Beyaz & Temiz ---- */
.header-nav {
  background: #fff;
  border-top: 1px solid #f0f0f0;
  border-bottom: 3px solid var(--orange);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.nav-list {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.nav-link {
  color: var(--text-dark);
  padding: 14px 18px;
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
  letter-spacing: 0.01em;
  position: relative;
}

.nav-link svg { color: var(--green); }

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 3px;
  background: transparent;
  transition: background 0.2s;
}

.nav-link:hover {
  color: var(--orange);
  background: var(--orange-pale);
}

.nav-link:hover svg { color: var(--orange); }
.nav-link:hover::after { background: var(--orange); }

/* Dropdown */
.has-dropdown { position: relative; }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.14);
  border: 1px solid var(--border);
  border-top: 3px solid var(--orange);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s ease;
  z-index: 100;
}

.has-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px;
  color: var(--text-dark);
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.18s;
}

.nav-dropdown li a:hover {
  background: var(--orange-pale);
  color: var(--orange);
  padding-left: 22px;
}

.nav-dropdown li a img {
  width: 28px;
  height: 28px;
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Nav kategori görsel yokken nokta */
.nav-cat-dot {
  display: inline-block;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--orange-pale);
  flex-shrink: 0;
}

/* Header çalışma saati (eski - artık gizli) */
.header-contact-info { display: none; }
.hci-hours { display: none; }

/* ---- Mobil ---- */
@media (max-width: 900px) {
  .header-top-left .ht-badge:not(:first-child) { display: none; }
  .ht-social { display: none; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .header-logo img { height: 46px; }
  .header-search { display: none; }
  .call-text { display: none; }
  .header-main::before { display: none; }
  .btn-wa-header span { display: inline; }
  /* Mobil nav: yeşil arka plan geri geliyor */
  .header-nav { display: none; background: var(--green); border-bottom: none; }
  .header-nav.open { display: block; }
  .nav-list { flex-direction: column; align-items: stretch; }
  .nav-link { color: rgba(255,255,255,0.92); padding: 13px 20px; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .nav-link svg { color: rgba(255,255,255,0.7); }
  .nav-link:hover { color: #fff; background: rgba(255,255,255,0.12); }
  .nav-link::after { display: none; }
  .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-radius: 0;
    border: none;
    border-top: 1px solid rgba(255,255,255,0.1);
    background: rgba(0,0,0,0.15);
    padding: 4px 0;
  }
  .nav-dropdown li a { color: rgba(255,255,255,0.85); padding-left: 36px; }
  .nav-dropdown li a:hover { background: rgba(255,255,255,0.1); color: #fff; padding-left: 40px; }
  /* Mobilde sadece 1. badge ve saat göster, geri kalanı gizle */
  .ht-link.ht-phone { display: none; }
  .header-top-left .ht-badge:nth-child(1) { display: inline-flex; font-size: 0.72rem; padding: 3px 9px; }
  .header-top-left .ht-badge:not(:first-child) { display: none !important; }
  .ht-sep { display: none !important; }
}

@media (max-width: 480px) {
  .btn-call-header { display: none; }
  .header-top { display: none; }
}

/* =============================================
   CONTAINER
   ============================================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =============================================
   HERO SLIDER
   ============================================= */
.hero-slider {
  position: relative;
  overflow: hidden;
  background: var(--green-pale);
  border-radius: 0;
}

.slider-wrapper { display: flex; transition: transform 0.5s ease; }

.slide {
  min-width: 100%;
  position: relative;
  overflow: hidden;
}

.slide-img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
}

.slide-link {
  display: block;
  line-height: 0;
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  max-width: 500px;
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.slide-content h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); margin-bottom: 0.5rem; color: var(--white); }
.slide-content p { font-size: 1.1rem; margin-bottom: 1.5rem; opacity: 0.95; }
.slide-content .btn-primary { display: inline-flex; }

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.9);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--green);
  box-shadow: var(--shadow);
  transition: var(--transition);
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn:hover { background: var(--white); transform: translateY(-50%) scale(1.05); }
.slider-btn.prev { left: 20px; }
.slider-btn.next { right: 20px; }

.slider-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active { background: var(--white); width: 24px; border-radius: 4px; }

@media (max-width: 768px) {
  .slide img { height: 250px; }
  .slide-content { left: 5%; max-width: 80%; }
}

/* =============================================
   STORY KATEGORİLER
   ============================================= */
.story-section {
  padding: 40px 0 20px;
  background: var(--white);
}

.story-section .section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.story-section .section-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.story-scroll-wrapper {
  position: relative;
  overflow: hidden;
}

.story-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 10px 4px 16px;
}

.story-scroll::-webkit-scrollbar { display: none; }

.story-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  border: 2px solid var(--border);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  color: var(--text-dark);
  box-shadow: var(--shadow);
  transition: var(--transition);
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-btn:hover { border-color: var(--green); color: var(--green); }
.story-btn.prev { left: -10px; }
.story-btn.next { right: -10px; }

.story-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 100px;
  cursor: pointer;
  transition: var(--transition);
}

.story-item:hover { transform: translateY(-3px); }

.story-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 3px solid var(--green);
  padding: 4px;
  background: var(--white);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(46, 125, 50, 0.15);
}

.story-item:hover .story-circle {
  border-color: var(--orange);
  box-shadow: 0 6px 20px rgba(245, 124, 0, 0.25);
}

.story-circle img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.story-circle .story-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-pale), #c8e6c9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.story-name {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: center;
  max-width: 90px;
  line-height: 1.3;
}

@media (max-width: 576px) {
  .story-circle { width: 76px; height: 76px; }
  .story-item { min-width: 85px; }
}

/* =============================================
   SECTION STYLES
   ============================================= */
.section-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--orange));
  border-radius: 2px;
}

.section-title.center { text-align: center; }
.section-title.center::after { left: 50%; transform: translateX(-50%); }

.products-section { padding: 40px 0; }
.products-section .section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

/* =============================================
   ÜRÜN KARTI
   ============================================= */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  border: 1px solid var(--border);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--green-light);
}

.product-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
  background: var(--bg-light);
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-card-image img { transform: scale(1.06); }

/* Eski .product-badge position:absolute kaldırıldı — .product-badges wrapper kullanılıyor */

.product-card-body {
  padding: 14px 16px 16px;
}

.product-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
}

.product-price-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.product-price {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--green);
}

.product-old-price {
  font-size: 0.85rem;
  color: var(--text-light);
  text-decoration: line-through;
}

.btn-order {
  width: 100%;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  color: var(--white);
  border: none;
  padding: 10px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.btn-order:hover {
  background: linear-gradient(135deg, var(--green-light), var(--green));
  transform: translateY(-1px);
}

/* =============================================
   BUTTONS
   ============================================= */
.btn-primary {
  background: linear-gradient(135deg, var(--green), var(--green-light));
  color: var(--white);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46,125,50,0.3);
  color: var(--white);
}

.btn-orange {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: var(--white);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-orange:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245,124,0,0.3); color: var(--white); }

.btn-outline {
  background: transparent;
  color: var(--green);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.88rem;
  border: 2px solid var(--green);
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-outline:hover { background: var(--green); color: var(--white); }

.view-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
  font-weight: 600;
  font-size: 0.9rem;
}

.view-all:hover { color: var(--orange); }

/* =============================================
   BANNER / PROMO
   ============================================= */
.promo-banner {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 50%, var(--orange) 100%);
  padding: 50px 20px;
  text-align: center;
  color: var(--white);
  margin: 40px 0;
}

.promo-banner h2 { color: var(--white); font-size: clamp(1.5rem, 4vw, 2.2rem); }
.promo-banner p { opacity: 0.9; font-size: 1.1rem; margin-bottom: 1.5rem; }

/* =============================================
   FEATURES BAR
   ============================================= */
.features-bar {
  background: var(--green-pale);
  padding: 28px 0;
  border-top: 1px solid #c8e6c9;
  border-bottom: 1px solid #c8e6c9;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.feature-text h4 { font-size: 0.9rem; font-weight: 700; color: var(--text-dark); margin-bottom: 2px; }
.feature-text p { font-size: 0.78rem; color: var(--text-gray); margin: 0; }

@media (max-width: 768px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
}

/* =============================================
   ÜRÜN DETAY SAYFASI
   ============================================= */
.product-detail { padding: 40px 0 60px; }

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.product-gallery { position: sticky; top: 100px; }

.main-image-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--border);
  background: var(--bg-light);
  aspect-ratio: 1/1;
  position: relative;
}

.main-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
  transition: transform 0.3s ease;
}

/* Zoom artık JS ile inline style üzerinden yönetiliyor - overflow:hidden şart */
.main-image-wrap { overflow: hidden; }
.main-image-wrap img { transition: transform 0.25s ease; }

.thumb-list {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.thumb-item {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}

.thumb-item.active, .thumb-item:hover { border-color: var(--green); }

.thumb-item img { width: 100%; height: 100%; object-fit: cover; }

/* =============================================
   VIDEO PLAYER (Ürün Galerisi)
   ============================================= */
/* Video thumbnail */
.thumb-item.video-thumb {
  position: relative;
  background: #111;
  border-color: #555;
  overflow: hidden;
  flex-shrink: 0;
}
.thumb-item.video-thumb.active,
.thumb-item.video-thumb:hover { border-color: var(--green); }

.video-thumb-bg {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.35);
  color: #fff;
  pointer-events: none;
  transition: background 0.2s;
}
.thumb-item.video-thumb:hover .video-play-overlay { background: rgba(0,0,0,0.55); }
.video-play-overlay svg { filter: drop-shadow(0 1px 4px rgba(0,0,0,0.6)); }

/* Video player in main-image-wrap */
.main-video-wrap {
  position: absolute;
  inset: 0;
  background: #000;
  z-index: 5;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: inherit;
  overflow: hidden;
}
.main-video-wrap.video-active { display: flex; }

#video-player-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#video-player-container iframe,
#video-player-container video {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

.product-info-wrap { padding: 10px 0; }

.product-detail-name {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 700;
  margin-bottom: 10px;
}

.product-detail-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.cat-badge {
  background: var(--green-pale);
  color: var(--green);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  border: 1px solid #a5d6a7;
}

.product-detail-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 6px;
}

.product-detail-old-price {
  font-size: 1rem;
  color: var(--text-light);
  text-decoration: line-through;
  margin-bottom: 20px;
  display: block;
}

.product-short-desc {
  color: var(--text-gray);
  font-size: 0.95rem;
  margin-bottom: 24px;
  padding: 16px;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--green-light);
}

.product-detail-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.btn-order-large {
  background: linear-gradient(135deg, var(--green), var(--green-light));
  color: var(--white);
  padding: 16px 32px;
  border-radius: var(--radius);
  font-size: 1.05rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-order-large:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(46,125,50,0.35); }

.btn-whatsapp-large {
  background: #25D366;
  color: var(--white);
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
}

.btn-whatsapp-large:hover { background: #1ebe57; transform: translateY(-2px); color: var(--white); }

.product-meta { margin-top: 20px; font-size: 0.85rem; color: var(--text-gray); }
.product-meta span { margin-right: 16px; }

.product-tabs { margin-top: 50px; }
.tab-buttons { display: flex; border-bottom: 2px solid var(--border); gap: 0; }
.tab-btn {
  padding: 12px 24px;
  background: none;
  border: none;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-gray);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: var(--transition);
}
/* Tab aktif: turuncu */
.tab-btn.active, .tab-btn:hover { color: var(--orange); border-bottom-color: var(--orange); }
.tab-content { display: none; padding: 24px 0; }
.tab-content.active { display: block; }
.tab-content p { color: var(--text-gray); line-height: 1.8; }

@media (max-width: 768px) {
  .product-detail-grid { grid-template-columns: 1fr; gap: 30px; }
  .product-gallery { position: static; }
}

/* =============================================
   KATEGORİ SAYFASI
   ============================================= */
.page-hero {
  background: linear-gradient(135deg, var(--green), var(--green-light));
  padding: 50px 0;
  color: var(--white);
  text-align: center;
}

.page-hero h1 { color: var(--white); font-size: clamp(1.6rem, 4vw, 2.2rem); }
.page-hero p { opacity: 0.9; font-size: 1rem; margin-bottom: 0; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
  color: var(--text-light);
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.breadcrumb a { color: var(--green); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { color: var(--text-light); }

.category-page { padding: 40px 0 60px; }

.category-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 30px;
  align-items: start;
}

.category-sidebar {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  position: sticky;
  top: 90px;
}

.sidebar-title {
  padding: 16px 20px;
  background: var(--green);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
}

.sidebar-cats { padding: 10px 0; }
.sidebar-cat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  font-size: 0.88rem;
  color: var(--text-dark);
  transition: var(--transition);
  border-left: 3px solid transparent;
}

.sidebar-cat-item:hover,
.sidebar-cat-item.active {
  background: var(--green-pale);
  color: var(--green);
  border-left-color: var(--green);
}

.sidebar-cat-item img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}

.products-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}

.products-header-left { font-size: 0.88rem; color: var(--text-gray); }
.products-header-left strong { color: var(--text-dark); }

.sort-select {
  padding: 8px 14px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  background: var(--white);
  color: var(--text-dark);
  cursor: pointer;
  transition: border-color 0.2s;
}
.sort-select:focus { outline: none; border-color: var(--green); }

@media (max-width: 768px) {
  .category-layout { grid-template-columns: 1fr; }
  .category-sidebar { position: static; }
}

/* =============================================
   SİPARİŞ FORMU
   ============================================= */
.order-page { padding: 50px 0 70px; background: var(--bg-light); min-height: 70vh; }

.order-container {
  max-width: 900px;
  margin: 0 auto;
}

.order-card {
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.order-card-header {
  background: linear-gradient(135deg, var(--green), var(--green-light));
  padding: 30px;
  color: var(--white);
}

.order-product-summary {
  display: flex;
  align-items: center;
  gap: 20px;
}

.order-product-img {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  border: 3px solid rgba(255,255,255,0.3);
}

.order-product-info h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 4px; }
.order-product-info .price { font-size: 1.4rem; font-weight: 800; color: rgba(255,255,255,0.95); }

.order-card-body { padding: 36px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group { margin-bottom: 20px; }

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-label .required { color: #e53935; margin-left: 2px; }

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}

.form-control:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(46,125,50,0.1);
}

.form-control.error { border-color: #e53935; }

select.form-control { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23616161' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }

textarea.form-control { resize: vertical; min-height: 100px; }

.form-hint { font-size: 0.78rem; color: var(--text-light); margin-top: 4px; }
.form-error { font-size: 0.78rem; color: #e53935; margin-top: 4px; display: none; }
.form-error.visible { display: block; }

.order-info-box {
  background: var(--orange-pale);
  border: 1px solid #ffe0b2;
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin-bottom: 24px;
  font-size: 0.88rem;
  color: var(--text-dark);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.order-info-box .icon { font-size: 1.2rem; flex-shrink: 0; }

.btn-submit-order {
  width: 100%;
  background: #25D366;
  color: var(--white);
  padding: 18px;
  border-radius: var(--radius);
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 4px 15px rgba(37,211,102,0.3);
}

.btn-submit-order:hover {
  background: #1ebe57;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
}

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .order-card-body { padding: 20px; }
}

/* =============================================
   ARAMA SAYFASI
   ============================================= */
.search-page { padding: 40px 0 60px; }
.search-info { margin-bottom: 30px; font-size: 1rem; color: var(--text-gray); }
.search-info strong { color: var(--text-dark); }
.no-results { text-align: center; padding: 60px 20px; color: var(--text-gray); }
.no-results .icon { font-size: 4rem; display: block; margin-bottom: 16px; opacity: 0.4; }
.no-results h3 { font-size: 1.3rem; color: var(--text-dark); }

/* =============================================
   STATİK SAYFALAR
   ============================================= */
.static-page { padding: 50px 0 70px; }
.static-content { max-width: 800px; margin: 0 auto; }
.static-content h2 { color: var(--green); }
.static-content p, .static-content li { color: var(--text-gray); line-height: 1.9; }

/* İletişim */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-info-item { display: flex; gap: 16px; margin-bottom: 24px; }
.contact-info-icon { width: 48px; height: 48px; background: var(--green-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.contact-info-text h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 4px; }
.contact-info-text p { margin: 0; font-size: 0.9rem; color: var(--text-gray); }

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* =============================================
   MİNİ TAKVİM (Sipariş Formu)
   ============================================= */
.dp-wrap { position: relative; }
.dp-input-row { position: relative; }
.dp-cal-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  pointer-events: none;
  display: flex;
  align-items: center;
}
.mini-cal {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  z-index: 300;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.14);
  padding: 16px 14px 14px;
  width: 290px;
  border: 1.5px solid var(--border);
  display: none;
  animation: calFadeIn .18s ease;
}
.mini-cal.cal-open { display: block; }
@keyframes calFadeIn { from { opacity:0; transform:translateY(-6px); } to { opacity:1; transform:translateY(0); } }

.cal-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.cal-hd strong { font-size: 0.9rem; color: var(--text-dark); font-weight: 700; }
.cal-nav {
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  font-size: 1.2rem;
  color: var(--text-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
}
.cal-nav:hover { background: var(--green-pale); color: var(--green); }
.cal-dn {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 6px;
}
.cal-dn span {
  text-align: center;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-light);
  padding: 3px 0;
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}
.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background .15s;
  color: var(--text-dark);
}
.cal-day:not(.cal-disabled):hover { background: var(--green-pale); color: var(--green); }
.cal-today { font-weight: 700; color: var(--green) !important; }
.cal-sel {
  background: var(--green) !important;
  color: var(--white) !important;
  font-weight: 700;
  border-radius: 8px;
}
.cal-today.cal-sel { background: var(--green) !important; }
.cal-disabled { color: #d4d4d4 !important; cursor: default; pointer-events: none; }

@media (max-width: 400px) {
  .mini-cal { width: 100%; left: 0; right: 0; }
}

/* =============================================
   PAGINATION
   ============================================= */
.pagination-nav { margin: 40px 0 20px; }
.pagination { gap: 6px; }
.page-link {
  border-radius: var(--radius-sm) !important;
  border: 2px solid var(--border) !important;
  color: var(--text-dark) !important;
  font-weight: 600;
  min-width: 38px;
  text-align: center;
  transition: var(--transition);
}
.page-link:hover { background: var(--green-pale) !important; border-color: var(--green) !important; color: var(--green) !important; }
.page-item.active .page-link { background: var(--green) !important; border-color: var(--green) !important; color: var(--white) !important; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: #1a1a2e;
  color: rgba(255,255,255,0.8);
  padding: 60px 0 0;
  margin-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand img { height: 50px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; color: rgba(255,255,255,0.65); }

.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
  color: rgba(255,255,255,0.8);
}
.footer-social a:hover { background: var(--orange); color: var(--white); }

.footer-col h4 { color: var(--white); font-size: 0.95rem; font-weight: 700; margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: rgba(255,255,255,0.65); font-size: 0.85rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--green-light); padding-left: 4px; }

.footer-contact-item { display: flex; gap: 10px; margin-bottom: 14px; font-size: 0.85rem; color: rgba(255,255,255,0.7); }
.footer-contact-item .icon { color: var(--green-light); flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.7); }
.footer-contact-item a:hover { color: var(--green-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}

@media (max-width: 992px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 576px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* =============================================
   FLOATING WHATSAPP
   ============================================= */
.float-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  z-index: 999;
  transition: var(--transition);
  animation: pulse-wa 2s infinite;
}

.float-whatsapp:hover { background: #1ebe57; transform: scale(1.1); animation: none; }

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.7), 0 0 0 10px rgba(37,211,102,0.1); }
}

/* =============================================
   TOAST / ALERT
   ============================================= */
.toast-container { position: fixed; bottom: 100px; right: 28px; z-index: 9999; display: flex; flex-direction: column; gap: 10px; }
.toast {
  background: var(--text-dark);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  box-shadow: var(--shadow-hover);
  animation: slideInRight 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 320px;
}
.toast.success { background: var(--green); }
.toast.error { background: #e53935; }

@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* =============================================
   LOADER
   ============================================= */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.4s;
}
.page-loader.hidden { opacity: 0; pointer-events: none; visibility: hidden; }
.loader-ring, .loader-spinner { width: 48px; height: 48px; border: 4px solid rgba(46,125,50,0.15); border-top-color: var(--green); border-radius: 50%; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* =============================================
   UTILITY
   ============================================= */
.text-green { color: var(--green); }
.text-orange { color: var(--orange); }
.text-gray { color: var(--text-gray); }
.text-center { text-align: center; }
.mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; } .mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; } .mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; }
.py-5 { padding: 40px 0; }
.d-none { display: none !important; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 16px; }

/* Screen reader only - görsel olarak gizli ama ekran okuyucular için erişilebilir */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Image placeholder */
.img-placeholder {
  background: linear-gradient(135deg, var(--green-pale), #c8e6c9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--green-light);
}

/* Zoom overlay */
.zoom-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
  animation: fadeIn 0.2s ease;
}
.zoom-overlay img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: var(--radius-sm); }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* Back to top */
#back-to-top {
  position: fixed;
  bottom: 100px;
  right: 28px;
  width: 42px;
  height: 42px;
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  z-index: 998;
}
#back-to-top:hover { background: var(--green-light); transform: translateY(-2px); }
#back-to-top.visible { display: flex; }

/* Print */
@media print { .site-header, .site-footer, .float-whatsapp, #back-to-top { display: none !important; } }

/* =============================================
   HEADER - EKSİK SINIFLAR
   ============================================= */
.header-top-inner { display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:8px; }
.header-top-left, .header-top-right { display:flex; align-items:center; gap:12px; }
.header-contact-link { color:var(--white); font-weight:600; }
.header-sep { opacity:0.4; }
.header-info { opacity:0.85; }
.social-link { color:var(--white); opacity:0.85; font-size:0.8rem; }
.social-link:hover { opacity:1; }

.header-main-inner { display:flex; align-items:center; justify-content:space-between; gap:20px; }
.header-logo img { height:55px; width:auto; }

.header-search { flex:1; max-width:480px; }
.search-wrap { display:flex; border:2px solid var(--border); border-radius:var(--radius); overflow:hidden; transition:var(--transition); }
.search-wrap:focus-within { border-color:var(--green); }
.search-wrap input { flex:1; padding:10px 14px; border:none; outline:none; font-size:0.9rem; font-family:inherit; }
.search-wrap button { background:var(--green); color:var(--white); border:none; padding:10px 18px; cursor:pointer; font-size:1rem; transition:var(--transition); }
.search-wrap button:hover { background:var(--green-light); }

.header-actions { display:flex; align-items:center; gap:10px; }
.btn-wa-header { background:#25D366; color:var(--white); padding:9px 16px; border-radius:var(--radius-sm); font-size:0.85rem; font-weight:600; display:flex; align-items:center; gap:6px; white-space:nowrap; }
.btn-wa-header:hover { background:#1ebe57; color:var(--white); transform:translateY(-1px); }
.btn-call-header { background:var(--green-pale); color:var(--green); padding:9px 14px; border-radius:var(--radius-sm); font-size:0.85rem; font-weight:600; display:flex; align-items:center; gap:5px; }
.btn-call-header:hover { background:var(--green); color:var(--white); }

.hamburger { display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:6px; }
.hamburger span { width:24px; height:2px; background:var(--text-dark); border-radius:2px; transition:var(--transition); display:block; }

/* Nav */
.header-nav { background:var(--green); }
.nav-list { display:flex; align-items:center; gap:0; }
.nav-link { color:rgba(255,255,255,0.92); padding:13px 20px; font-size:0.88rem; font-weight:500; display:flex; align-items:center; gap:6px; transition:all 0.2s ease; letter-spacing:0.01em; }
.nav-link svg, .nav-link i { width:15px; height:15px; flex-shrink:0; }
.nav-link:hover, .nav-link.active { color:var(--white); background:rgba(255,255,255,0.15); }
.has-dropdown { position:relative; }
.nav-dropdown { position:absolute; top:100%; left:0; background:var(--white); border-radius:var(--radius-sm); box-shadow:var(--shadow-hover); min-width:200px; z-index:500; opacity:0; visibility:hidden; transform:translateY(-8px); transition:var(--transition); }
.has-dropdown:hover .nav-dropdown { opacity:1; visibility:visible; transform:translateY(0); }
.nav-dropdown li a { display:flex; align-items:center; gap:8px; padding:10px 16px; color:var(--text-dark); font-size:0.87rem; border-bottom:1px solid var(--border); }
.nav-dropdown li:last-child a { border-bottom:none; }
.nav-dropdown li a img { width:28px; height:28px; border-radius:50%; object-fit:cover; }
.nav-dropdown li a:hover { background:var(--green-pale); color:var(--green); }

@media (max-width:768px) {
  .hamburger { display:flex; }
  .header-search { display:none; }
  .call-text { display:none; }
  .header-nav { display:none; }
  .header-nav.open { display:block; }
  .nav-list { flex-direction:column; align-items:stretch; }
  .nav-dropdown { position:static; opacity:1; visibility:visible; transform:none; box-shadow:none; border-radius:0; }
}

/* =============================================
   WHATSAPP FLOAT (wa-float alias)
   ============================================= */
.wa-float {
  position:fixed; bottom:28px; right:28px; width:60px; height:60px;
  background:#25D366; border-radius:50%; display:flex; align-items:center; justify-content:center;
  color:var(--white); box-shadow:0 4px 20px rgba(37,211,102,0.45); z-index:999;
  transition:var(--transition); animation:pulse-wa 2s infinite;
}
.wa-float:hover { background:#1ebe57; transform:scale(1.1); animation:none; }

/* =============================================
   SECTION HELPERS
   ============================================= */
.section-pad { padding:60px 0; }
.section-header { display:flex; justify-content:space-between; align-items:center; margin-bottom:32px; flex-wrap:wrap; gap:12px; }
.section-title { font-size:clamp(1.3rem,3vw,1.8rem); font-weight:700; margin:0; }
.section-link { color:var(--green); font-weight:600; font-size:0.9rem; }
.section-link:hover { text-decoration:underline; }

/* =============================================
   STORY KATEGORİLER
   ============================================= */
.story-section { padding:20px 0 10px; background:var(--white); border-bottom:1px solid var(--border); }
.story-scroll-wrap { position:relative; display:flex; align-items:center; gap:8px; }
.story-nav-btn { width:36px; height:36px; border-radius:50%; border:2px solid var(--border); background:var(--white); cursor:pointer; font-size:0.9rem; display:flex; align-items:center; justify-content:center; flex-shrink:0; transition:var(--transition); z-index:2; }
.story-nav-btn:hover { border-color:var(--green); color:var(--green); }
.story-scroll { display:flex; gap:20px; overflow-x:auto; scroll-behavior:smooth; scrollbar-width:none; padding:12px 4px; flex:1; }
.story-scroll::-webkit-scrollbar { display:none; }
.story-item { display:flex; flex-direction:column; align-items:center; gap:8px; text-decoration:none; flex-shrink:0; cursor:pointer; transition:transform 0.25s ease; }
.story-item:hover { transform:translateY(-4px); }
.story-circle {
  width:84px; height:84px; border-radius:50%;
  padding:3px;
  overflow:hidden;
  background: linear-gradient(white,white) padding-box,
              linear-gradient(135deg,#2e7d32 0%,#66bb6a 50%,#f57c00 100%) border-box;
  border:3px solid transparent;
  box-shadow:0 3px 10px rgba(46,125,50,0.18);
  transition:box-shadow 0.3s ease, transform 0.25s ease;
}
.story-circle img { width:100%; height:100%; object-fit:cover; border-radius:50%; display:block; }
.story-placeholder { width:100%; height:100%; border-radius:50%; background:linear-gradient(135deg,#e8f5e9,#f1f8e9); display:flex; align-items:center; justify-content:center; font-size:1.6rem; }
.story-item:hover .story-circle {
  background: linear-gradient(white,white) padding-box,
              linear-gradient(135deg,#f57c00,#ff9800,#2e7d32) border-box;
  box-shadow:0 6px 20px rgba(245,124,0,0.3);
}
.story-label { font-size:0.73rem; font-weight:600; color:var(--text-dark); text-align:center; max-width:88px; line-height:1.3; margin-top:2px; }

/* =============================================
   FEATURES BAR  (çift-tek renk değişimi)
   ============================================= */
.features-section {
  background: #fff;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 3px solid var(--orange);
}
.features-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:0; }
.feature-item { display:flex; align-items:center; gap:14px; padding:14px 20px; position:relative; }
.feature-item:not(:last-child)::after { content:''; position:absolute; right:0; top:20%; height:60%; width:1px; background:var(--border); }

/* Tek — yeşil */
.feature-item:nth-child(odd) .feature-icon-wrap  {
  background: linear-gradient(135deg, var(--green), var(--green-light));
  box-shadow: 0 3px 10px rgba(46,125,50,0.2);
}
/* Çift — turuncu */
.feature-item:nth-child(even) .feature-icon-wrap {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  box-shadow: 0 3px 10px rgba(245,124,0,0.2);
}

.feature-icon-wrap { width:50px; height:50px; border-radius:50%; display:flex; align-items:center; justify-content:center; flex-shrink:0; color:var(--white); }
.feature-icon-wrap svg { width:22px; height:22px; stroke-width:2; }
.feature-text strong { display:block; font-size:0.88rem; font-weight:700; color:var(--text-dark); margin-bottom:2px; }
.feature-text span { font-size:0.76rem; color:var(--text-gray); }
@media(max-width:768px) { .features-grid { grid-template-columns:repeat(2,1fr); } .feature-item:nth-child(2)::after { display:none; } }
@media(max-width:480px) { .features-grid { grid-template-columns:1fr; } .feature-item::after { display:none !important; } }

/* =============================================
   ÜRÜN KARTI
   ============================================= */
.product-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(220px,1fr)); gap:20px; }
.product-card { background:var(--white); border-radius:var(--radius); box-shadow:var(--shadow); overflow:hidden; transition:var(--transition); display:flex; flex-direction:column; }
.product-card:hover { box-shadow:var(--shadow-hover); transform:translateY(-4px); }
.product-card-link { display:flex; flex-direction:column; flex:1; }
.product-card-img-wrap { position:relative; aspect-ratio:1/1; overflow:hidden; background:var(--bg-light); }
.product-card-img { width:100%; height:100%; object-fit:cover; transition:transform 0.4s ease; }
.product-card:hover .product-card-img { transform:scale(1.06); }
/* Badge wrapper - üst üste binmeyi önler */
.product-badges {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 2;
}
.product-badge { padding:4px 10px; border-radius:20px; font-size:0.72rem; font-weight:700; white-space:nowrap; }
.badge-new { background:var(--green); color:var(--white); }
.badge-discount { background:var(--orange); color:var(--white); }
.badge-out-of-stock { background:#e53935; color:var(--white); }

/* Ürün Detay - Stok Badge */
.product-stock-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.product-stock-badge.in-stock {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1.5px solid #a5d6a7;
}
.product-stock-badge.out-of-stock {
  background: #ffebee;
  color: #c62828;
  border: 1.5px solid #ffcdd2;
}
.product-card-body { padding:14px 14px 8px; flex:1; }
.product-card-name { font-size:0.95rem; font-weight:700; margin:0 0 6px; color:var(--text-dark); line-height:1.4; }
.product-card-desc { font-size:0.8rem; color:var(--text-gray); margin:0 0 8px; }
.product-card-price { display:flex; align-items:center; gap:8px; }
.price-current { font-size:1.1rem; font-weight:800; color:var(--green); }
.price-old { font-size:0.85rem; color:var(--text-light); text-decoration:line-through; }
.product-card-footer { padding:10px 14px 14px; }
.btn-order-card { display:block; text-align:center; background:linear-gradient(135deg,var(--green),var(--green-light)); color:var(--white); padding:10px; border-radius:var(--radius-sm); font-size:0.85rem; font-weight:600; transition:var(--transition); }
.btn-order-card:hover { opacity:0.92; transform:translateY(-1px); color:var(--white); }

/* =============================================
   KATEGORİ GRID (Anasayfa)
   ============================================= */
.cat-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(140px,1fr)); gap:16px; }
.cat-card { display:flex; flex-direction:column; align-items:center; gap:10px; text-decoration:none; transition:var(--transition); }
.cat-card:hover { transform:translateY(-4px); }
.cat-card-img { width:100%; aspect-ratio:1/1; border-radius:var(--radius); overflow:hidden; border:2px solid var(--border); background:var(--bg-light); transition:var(--transition); }
.cat-card:hover .cat-card-img { border-color:var(--green); }
.cat-card-img img { width:100%; height:100%; object-fit:cover; }
.cat-card-placeholder { display:flex; align-items:center; justify-content:center; font-size:2.5rem; background:var(--green-pale); }
.cat-card-name { font-size:0.85rem; font-weight:600; color:var(--text-dark); text-align:center; }

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section { padding:50px 0; background:linear-gradient(135deg,var(--orange) 0%,var(--orange-light) 40%,var(--green-light) 100%); }
.cta-box { display:flex; justify-content:space-between; align-items:center; gap:24px; flex-wrap:wrap; }
.cta-content { display:flex; align-items:center; gap:20px; color:var(--white); }
.cta-icon { font-size:3rem; }
.cta-title { font-size:clamp(1.2rem,3vw,1.8rem); color:var(--white); margin:0 0 8px; }
.cta-text { color:rgba(255,255,255,0.85); margin:0; font-size:0.95rem; }
.cta-btns { display:flex; gap:12px; flex-wrap:wrap; }
.btn-cta-wa { background:#25D366; color:var(--white); padding:14px 24px; border-radius:var(--radius); font-weight:700; font-size:0.95rem; display:flex; align-items:center; gap:8px; transition:var(--transition); }
.btn-cta-wa:hover { background:#1ebe57; color:var(--white); transform:translateY(-2px); }
.btn-cta-call { background:rgba(255,255,255,0.15); color:var(--white); padding:14px 24px; border-radius:var(--radius); font-weight:600; font-size:0.95rem; border:2px solid rgba(255,255,255,0.4); transition:var(--transition); }
.btn-cta-call:hover { background:rgba(255,255,255,0.25); color:var(--white); }

/* =============================================
   FOOTER - EKSİK SINIFLAR
   ============================================= */
.footer-title { color:var(--white); font-size:0.95rem; font-weight:700; margin-bottom:16px; }
.footer-links li { margin-bottom:8px; }
.footer-links a { color:rgba(255,255,255,0.65); font-size:0.85rem; transition:var(--transition); }
.footer-links a:hover { color:var(--green-light); padding-left:4px; }
.footer-contact { display:flex; flex-direction:column; gap:10px; }
.footer-contact li { display:flex; align-items:flex-start; gap:8px; color:rgba(255,255,255,0.7); font-size:0.85rem; }
.fc-icon { flex-shrink:0; }
.footer-contact a { color:rgba(255,255,255,0.7); }
.footer-contact a:hover { color:var(--green-light); }
.btn-wa-footer { display:inline-flex; align-items:center; gap:8px; background:#25D366; color:var(--white); padding:11px 20px; border-radius:var(--radius-sm); font-size:0.88rem; font-weight:600; margin-top:16px; transition:var(--transition); }
.btn-wa-footer:hover { background:#1ebe57; color:var(--white); }
.footer-bottom-inner { display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:8px; }
.social-btn { width:38px; height:38px; border-radius:50%; background:rgba(255,255,255,0.1); display:flex; align-items:center; justify-content:center; color:rgba(255,255,255,0.8); transition:var(--transition); }
.social-btn:hover { background:var(--green); color:var(--white); }
.social-btn-wa:hover { background:#25D366; }

/* =============================================
   BREADCRUMB BAR
   ============================================= */
.breadcrumb-bar { background:var(--bg-light); border-bottom:1px solid var(--border); padding:10px 0; }
.breadcrumb { display:flex; align-items:center; gap:6px; font-size:0.82rem; color:var(--text-gray); flex-wrap:wrap; }
.breadcrumb a { color:var(--green); }
.breadcrumb a:hover { text-decoration:underline; }

/* =============================================
   KATEGORİ SAYFASI - EKSİK
   ============================================= */
.catalog-header { display:flex; justify-content:space-between; align-items:flex-end; margin-bottom:28px; flex-wrap:wrap; gap:16px; }
.catalog-title-wrap { display:flex; align-items:center; gap:16px; }
.catalog-cat-img { width:70px; height:70px; border-radius:50%; border:3px solid var(--green); overflow:hidden; flex-shrink:0; }
.catalog-cat-img img { width:100%; height:100%; object-fit:cover; }
.catalog-title { margin:0; }
.catalog-desc { color:var(--text-gray); font-size:0.9rem; margin:4px 0 0; }
.catalog-count { font-size:0.82rem; color:var(--text-light); margin-top:4px; }
.catalog-sort .form-control { min-width:180px; }
.empty-catalog { text-align:center; padding:60px 20px; color:var(--text-gray); }
.empty-catalog h2 { margin:16px 0 8px; }

.cat-filter-bar { display:flex; gap:10px; overflow-x:auto; padding:16px 0 20px; scrollbar-width:none; flex-wrap:nowrap; }
.cat-filter-bar::-webkit-scrollbar { display:none; }
.cat-filter-btn { display:flex; align-items:center; gap:6px; padding:8px 16px; border:2px solid var(--border); border-radius:20px; font-size:0.85rem; font-weight:600; white-space:nowrap; background:var(--white); color:var(--text-dark); transition:var(--transition); flex-shrink:0; }
.cat-filter-btn img { width:22px; height:22px; border-radius:50%; object-fit:cover; }
.cat-filter-btn:hover, .cat-filter-btn.active { border-color:var(--green); background:var(--green); color:var(--white); }

/* Pagination */
.pagination { display:flex; justify-content:center; gap:8px; margin-top:40px; flex-wrap:wrap; }
.page-btn { display:inline-flex; align-items:center; justify-content:center; min-width:40px; height:40px; padding:0 12px; border:2px solid var(--border); border-radius:var(--radius-sm); font-size:0.88rem; font-weight:600; color:var(--text-dark); background:var(--white); transition:var(--transition); }
.page-btn:hover, .page-btn.active { border-color:var(--green); background:var(--green); color:var(--white); }

/* =============================================
   ÜRÜN DETAY - EKSİK SINIFLAR
   ============================================= */
.product-detail-section { padding:40px 0 60px; }
.product-info { padding:10px 0; }
.product-cats { display:flex; flex-wrap:wrap; gap:6px; margin-bottom:14px; }
.product-cat-badge { background:var(--green-pale); color:var(--green); padding:4px 12px; border-radius:20px; font-size:0.78rem; font-weight:600; border:1px solid #a5d6a7; transition:var(--transition); }
.product-cat-badge:hover { background:var(--green); color:var(--white); }
.product-title { font-size:clamp(1.4rem,3vw,1.9rem); font-weight:700; margin-bottom:12px; }
/* === ÜRÜN VARYANTLARI === */
.product-variants { display:flex; flex-direction:column; gap:8px; margin:16px 0; }
.variant-option {
    display:flex; align-items:center; gap:10px; padding:12px 16px;
    border:2px solid #e0e0e0; border-radius:10px; cursor:pointer;
    background:#fff; transition:border-color .18s, background .18s;
    position:relative; user-select:none;
}
.variant-option:hover { border-color:#81c784; background:#f8fdf8; }
.variant-option.selected { border-color:var(--green); background:#f0f9f0; }
.variant-option input[type=radio] { position:absolute; opacity:0; width:0; height:0; }
.variant-radio {
    width:20px; height:20px; border-radius:50%; border:2px solid #bdbdbd;
    flex-shrink:0; display:flex; align-items:center; justify-content:center; transition:border-color .18s;
}
.variant-option.selected .variant-radio {
    border-color:var(--green); border-width:6px;
}
.variant-name { flex:1; font-weight:500; color:var(--text-dark); font-size:0.95rem; }
.variant-price { font-weight:700; color:var(--text-dark); font-size:0.95rem; white-space:nowrap; }
.variant-option.selected .variant-price { color:var(--green); }
.variant-badge-cok-satan {
    background:#ff6f00; color:#fff; font-size:0.7rem; font-weight:700;
    padding:2px 8px; border-radius:20px; white-space:nowrap;
}
.variant-badge-indirim {
    background:#e53935; color:#fff; font-size:0.7rem; font-weight:700;
    padding:2px 7px; border-radius:20px; white-space:nowrap;
}

.product-price-box { margin:20px 0; }
.product-price-main { display:flex; align-items:center; gap:14px; flex-wrap:wrap; }
.product-price-current { font-size:2rem; font-weight:800; color:var(--green); }
.product-price-old { font-size:1rem; color:var(--text-light); text-decoration:line-through; }
.product-price-save { background:var(--orange-pale); color:var(--orange); padding:4px 10px; border-radius:20px; font-size:0.8rem; font-weight:700; }
.btn-order-main { display:flex; align-items:center; justify-content:center; gap:10px; background:linear-gradient(135deg,var(--green),var(--green-light)); color:var(--white); padding:16px 28px; border-radius:var(--radius); font-size:1rem; font-weight:700; margin-bottom:12px; transition:var(--transition); }
.btn-order-main:hover { transform:translateY(-2px); box-shadow:0 8px 25px rgba(46,125,50,0.35); color:var(--white); }
.btn-order-wa { display:flex; align-items:center; justify-content:center; gap:10px; background:#25D366; color:var(--white); padding:14px 28px; border-radius:var(--radius); font-size:0.95rem; font-weight:600; margin-bottom:20px; transition:var(--transition); }
.btn-order-wa:hover { background:#1ebe57; color:var(--white); transform:translateY(-2px); }
.product-meta-item { display:flex; align-items:center; gap:8px; padding:8px 0; font-size:0.85rem; color:var(--text-gray); border-bottom:1px solid var(--border); }
.pm-icon { font-size:1rem; }
.gallery-badge { position:absolute; top:12px; left:12px; padding:5px 12px; border-radius:20px; font-size:0.75rem; font-weight:700; z-index:2; }

/* Tab Nav */
.tab-nav { display:flex; border-bottom:2px solid var(--border); gap:0; margin-top:50px; }
.tab-panels { }

/* =============================================
   SİPARİŞ FORMU
   ============================================= */
.order-section { padding:40px 0 60px; background:var(--bg-light); }
.order-grid { display:grid; grid-template-columns:1fr 360px; gap:28px; align-items:start; }
.order-form-card { background:var(--white); border-radius:var(--radius); box-shadow:var(--shadow); padding:32px; }
.order-form-header { text-align:center; margin-bottom:28px; padding-bottom:20px; border-bottom:2px solid var(--green-pale); }
.order-form-header h1 { margin:0 0 8px; font-size:1.6rem; color:var(--green); }
.order-form-header p { color:var(--text-gray); margin:0; font-size:0.9rem; }
.order-section-title { font-size:0.85rem; font-weight:700; color:var(--green); text-transform:uppercase; letter-spacing:0.5px; margin:20px 0 12px; padding-bottom:6px; border-bottom:1px solid var(--green-pale); }
.order-note-box { background:var(--green-pale); border-radius:var(--radius-sm); padding:16px; margin:20px 0; border-left:4px solid var(--green); }
.order-note-box strong { display:block; margin-bottom:6px; font-size:0.88rem; }
.order-note-box p { margin:0; font-size:0.85rem; color:var(--text-gray); }
.btn-submit-order { width:100%; padding:18px; background:linear-gradient(135deg,#25D366,#1ebe57); color:var(--white); border:none; border-radius:var(--radius); font-size:1.05rem; font-weight:700; cursor:pointer; transition:var(--transition); display:flex; align-items:center; justify-content:center; gap:10px; }
.btn-submit-order:hover { transform:translateY(-2px); box-shadow:0 8px 25px rgba(37,211,102,0.4); }
.order-wa-note { text-align:center; margin-top:16px; font-size:0.82rem; color:var(--text-gray); display:flex; align-items:center; justify-content:center; gap:8px; flex-wrap:wrap; }
.order-wa-note a { color:var(--green); font-weight:600; }
.field-error { font-size:0.78rem; color:#e53935; margin-top:4px; display:none; }
.field-error.visible { display:block; }
.form-control.error { border-color:#e53935 !important; }

/* Order Sidebar */
.order-product-card, .order-info-card, .order-contact-card { background:var(--white); border-radius:var(--radius); box-shadow:var(--shadow); padding:20px; margin-bottom:16px; }
.order-product-card h3, .order-info-card h4, .order-contact-card h4 { margin:0 0 14px; font-size:1rem; color:var(--text-dark); }
.order-product-info { display:flex; gap:14px; align-items:flex-start; }
.order-product-info img { width:80px; height:80px; object-fit:cover; border-radius:var(--radius-sm); border:1px solid var(--border); flex-shrink:0; }
.op-name { font-weight:700; font-size:0.95rem; margin-bottom:4px; }
.op-desc { font-size:0.8rem; color:var(--text-gray); margin-bottom:6px; }
.op-price { font-weight:800; color:var(--green); font-size:1.1rem; }
.op-old-price { font-size:0.82rem; color:var(--text-light); text-decoration:line-through; }
.order-info-card ul { padding-left:0; margin:0; }
.order-info-card li { font-size:0.85rem; color:var(--text-gray); padding:5px 0; border-bottom:1px solid var(--border); }
.order-info-card li:last-child { border-bottom:none; }
.oc-phone { display:block; font-size:1.2rem; font-weight:700; color:var(--green); margin-bottom:10px; }
.oc-wa { display:flex; align-items:center; justify-content:center; gap:8px; background:#25D366; color:var(--white); padding:11px; border-radius:var(--radius-sm); font-weight:600; font-size:0.9rem; transition:var(--transition); }
.oc-wa:hover { background:#1ebe57; color:var(--white); }

@media(max-width:900px) { .order-grid { grid-template-columns:1fr; } .order-sidebar { order:-1; } }

/* =============================================
   ARAMA SAYFASI
   ============================================= */
.search-section { padding:40px 0 60px; }
.search-big-form { max-width:600px; margin:0 auto 32px; }
.search-big-form .search-wrap { border:2px solid var(--green); border-radius:var(--radius); }
.search-big-form input { font-size:1rem; padding:14px 18px; }
.search-big-form button { padding:14px 24px; font-size:1rem; }
.search-header { margin-bottom:24px; }

/* =============================================
   STATİK SAYFA
   ============================================= */
.static-page-section { padding:50px 0 80px; }
.static-page-wrap { max-width:820px; margin:0 auto; background:var(--white); border-radius:var(--radius); box-shadow:var(--shadow); padding:40px; }
.static-page-title { margin-bottom:28px; padding-bottom:16px; border-bottom:3px solid var(--green-pale); color:var(--green); }
.static-page-content { color:var(--text-gray); line-height:1.9; font-size:0.95rem; }
.static-page-content h2, .static-page-content h3 { color:var(--text-dark); margin:24px 0 12px; }
.static-page-content ul, .static-page-content ol { padding-left:20px; margin:12px 0; }
.static-page-content li { margin-bottom:6px; }

/* =============================================
   LOADER SPINNER ALİAS
   ============================================= */
.loader-spinner { width:48px; height:48px; border:4px solid var(--border); border-top-color:var(--green); border-radius:50%; animation:spin 0.8s linear infinite; }

/* =============================================
   HAKKIMIZDA SAYFASI
   ============================================= */
.about-hero {
  padding: 60px 0;
  background: var(--white);
}
.about-hero-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 50px;
  align-items: center;
}
.about-tag {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green);
  padding: 5px 16px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 14px;
  border: 1px solid #a5d6a7;
}
.about-title {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text-dark);
}
.about-lead {
  font-size: 1rem;
  color: var(--text-gray);
  line-height: 1.9;
  margin-bottom: 28px;
}
.about-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.about-hero-visual {
  display: flex;
  justify-content: center;
}
.about-logo-box {
  background: linear-gradient(135deg, #f1f8e9, #e8f5e9);
  border-radius: 24px;
  padding: 40px 36px;
  text-align: center;
  border: 2px solid #c8e6c9;
  box-shadow: 0 8px 30px rgba(46,125,50,0.12);
}
.about-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.about-why-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.about-why-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(46,125,50,0.12);
  border-color: #a5d6a7;
}
.about-why-icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--green);
  transition: var(--transition);
}
.about-why-item:hover .about-why-icon {
  background: var(--green);
  color: var(--white);
}
.about-why-item h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.about-why-item p {
  font-size: 0.85rem;
  color: var(--text-gray);
  line-height: 1.7;
  margin: 0;
}
.about-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  justify-content: center;
  flex-wrap: wrap;
}
.about-step {
  text-align: center;
  max-width: 180px;
  flex: 1;
  min-width: 130px;
}
.about-step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  box-shadow: 0 4px 14px rgba(46,125,50,0.3);
}
.about-step h3 {
  font-size: 0.95rem;
  margin-bottom: 8px;
}
.about-step p {
  font-size: 0.82rem;
  color: var(--text-gray);
  margin: 0;
  line-height: 1.6;
}
.about-step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 14px;
  color: var(--text-light);
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .about-hero-inner { grid-template-columns: 1fr; }
  .about-hero-visual { display: none; }
  .about-why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .about-why-grid { grid-template-columns: 1fr; }
  .about-step-arrow { display: none; }
}

/* =============================================
   İLETİŞİM SAYFASI
   ============================================= */
.contact-section { padding: 50px 0 70px; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.contact-title {
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text-dark);
}
.contact-lead {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 28px;
}
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
  text-decoration: none;
  color: var(--text-dark);
}
.contact-card:hover {
  border-color: var(--green);
  box-shadow: 0 4px 16px rgba(46,125,50,0.1);
  transform: translateX(4px);
}
.contact-card-icon {
  width: 48px;
  height: 48px;
  background: var(--green-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  flex-shrink: 0;
}
.contact-card-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.contact-card-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.contact-card-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
}
.contact-order-box {
  background: linear-gradient(135deg, #f1f8e9, #e8f5e9);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  border: 2px solid #c8e6c9;
  margin-bottom: 20px;
}
.contact-order-icon {
  width: 80px;
  height: 80px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 14px rgba(46,125,50,0.15);
}
.contact-order-box h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.contact-order-box p {
  font-size: 0.88rem;
  color: var(--text-gray);
  line-height: 1.7;
}
.contact-map-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  border: 1.5px solid var(--border);
}
.contact-districts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.contact-district-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-dark);
  padding: 6px 10px;
  background: var(--green-pale);
  border-radius: var(--radius-sm);
}
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* =============================================
   HEADER MOBILE FIX
   ============================================= */
@media (max-width: 900px) {
  .header-contact-info { display: none; }
}
@media (max-width: 768px) {
  .header-main .container { flex-wrap: nowrap; gap: 10px; }
  .header-search { display: none; }
  .hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    background: var(--bg-light);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    width: 42px;
    height: 42px;
    padding: 0;
    flex-shrink: 0;
  }
  .hamburger svg { display: block; }
}

/* =============================================
   MOBİL NAV - Dropdown düzeltme
   ============================================= */
@media (max-width: 768px) {
  .nav-dropdown {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    background: rgba(0,0,0,0.12) !important;
    display: none;
  }
  .has-dropdown.open .nav-dropdown { display: block; }
  .nav-dropdown li a {
    padding: 9px 16px 9px 36px !important;
    font-size: 0.84rem !important;
    border-bottom: 1px solid rgba(255,255,255,0.1) !important;
    color: rgba(255,255,255,0.85) !important;
    background: transparent !important;
  }
  .nav-dropdown li a:hover { background: rgba(255,255,255,0.1) !important; color: #fff !important; }
  .nav-link { padding: 14px 20px; font-size: 0.95rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
}

/* =============================================
   SLIDER MOBİL - object-fit:cover (yanlardan kırp)
   ============================================= */
@media (max-width: 768px) {
  .slide-img {
    height: 220px;
    object-fit: cover;
    object-position: center;
  }
}
@media (max-width: 480px) {
  .slide-img { height: 180px; }
}

/* =============================================
   ÜRÜN DETAY — Yeşil/Turuncu Dengesi
   ============================================= */

/* Galeri thumbnail aktif: turuncu vurgu */
.thumb-item.active { border-color: var(--orange); }
.thumb-item:hover  { border-color: var(--orange-light); }
.thumb-item.video-thumb.active,
.thumb-item.video-thumb:hover { border-color: var(--orange); }

/* Kısa açıklama sol kenarlık: turuncu */
.product-short-desc { border-left-color: var(--orange); background: var(--orange-pale); }

/* Meta satırları ikonları: çift-tek renk */
.product-meta-item:nth-child(odd)  { color: var(--green);  }
.product-meta-item:nth-child(even) { color: var(--orange); }

/* Kategori badge hover: turuncu */
.product-cat-badge:hover { background: var(--orange); border-color: var(--orange); color: var(--white); }

/* Tab nav — .tab-nav (ürün detay) */
.tab-nav { border-bottom: 2px solid var(--border); }
.tab-nav a, .tab-nav button {
  padding: 12px 22px;
  background: none;
  border: none;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-gray);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.tab-nav a:hover, .tab-nav button:hover,
.tab-nav a.active, .tab-nav button.active { color: var(--orange); border-bottom-color: var(--orange); }

/* Sipariş formu section başlık rengi turuncu */
.order-section-title { color: var(--orange); border-bottom-color: var(--orange-pale); }
.order-form-header h1 { color: var(--text-dark); }
.order-form-header h1 span { color: var(--orange); }

/* Sipariş formu form-control focus: turuncu */
/* .form-control:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(245,124,0,0.1); } */

/* =============================================
   HAKKIMIZDA — Yeşil/Turuncu Dengesi
   ============================================= */

/* Üst etiket: turuncu */
.about-tag {
  background: var(--orange-pale);
  color: var(--orange);
  border-color: #ffe0b2;
}

/* Logo kutusu: yeşil/turuncu gradient kenarlık */
.about-logo-box {
  background: linear-gradient(135deg, #fff8e1, #fff3e0);
  border-color: #ffe0b2;
  box-shadow: 0 8px 30px rgba(245,124,0,0.1);
}

/* "Neden Biz" ikonları: çift-tek renk */
.about-why-item:nth-child(odd)  .about-why-icon { background: var(--green-pale);  color: var(--green); }
.about-why-item:nth-child(even) .about-why-icon { background: var(--orange-pale); color: var(--orange); }

.about-why-item:nth-child(odd):hover  .about-why-icon { background: var(--green);  color: var(--white); }
.about-why-item:nth-child(even):hover .about-why-icon { background: var(--orange); color: var(--white); }

/* Adım numaraları: tek yeşil, çift turuncu */
.about-step:nth-child(odd)  .about-step-num {
  background: linear-gradient(135deg, var(--green), var(--green-light));
  box-shadow: 0 4px 14px rgba(46,125,50,0.3);
}
.about-step:nth-child(even) .about-step-num {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  box-shadow: 0 4px 14px rgba(245,124,0,0.3);
}

/* =============================================
   İLETİŞİM — Yeşil/Turuncu Dengesi
   ============================================= */

/* İletişim kartları: çift-tek ikon rengi */
.contact-card:nth-child(odd)  .contact-card-icon { background: var(--green-pale);  color: var(--green); }
.contact-card:nth-child(even) .contact-card-icon { background: var(--orange-pale); color: var(--orange); }

/* Hover: turuncu */
.contact-card:hover { border-color: var(--orange); box-shadow: 0 4px 16px rgba(245,124,0,0.1); }

/* İlçe kutucukları: dönüşümlü */
.contact-district-item:nth-child(odd)  { background: var(--green-pale); }
.contact-district-item:nth-child(even) { background: var(--orange-pale); }

/* Sipariş kutusu sağ taraf: turuncu kenarlık */
.contact-order-box {
  background: linear-gradient(135deg, #fff8e1, #fff3e0);
  border-color: #ffe0b2;
}
.contact-order-icon { box-shadow: 0 4px 14px rgba(245,124,0,0.15); }

/* =============================================
   GENEL STATİK SAYFA ŞABLon (sp-*)
   Gizlilik Politikası, Teslimat Bilgileri vb.
   ============================================= */

/* Hero başlık */
.sp-hero {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 60%, var(--orange-light) 100%);
  padding: 44px 0 40px;
  color: var(--white);
  text-align: center;
}
.sp-hero-title {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  margin: 0 0 8px;
}
.sp-hero-sub {
  font-size: 0.9rem;
  opacity: 0.85;
  margin: 0;
}

/* Ana alan */
.sp-section { padding: 44px 0 70px; background: var(--bg-light); }
.sp-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 28px;
  align-items: start;
}

/* İçerik kartı */
.sp-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.sp-body {
  padding: 36px 40px;
  font-size: 1rem;
  color: var(--text-gray);
  line-height: 1.9;
}

/* İçerik tipografisi */
.sp-body h1, .sp-body h2, .sp-body h3, .sp-body h4 {
  color: var(--text-dark);
  margin: 2rem 0 0.8rem;
  line-height: 1.35;
}
.sp-body h1 { font-size: 1.7rem; }
.sp-body h2 { font-size: 1.35rem; padding-bottom: 8px; border-bottom: 2px solid var(--green-pale); }
.sp-body h3 { font-size: 1.1rem; color: var(--green); }
.sp-body h4 { font-size: 1rem; color: var(--orange); }
.sp-body p  { margin: 0 0 1.1rem; }
.sp-body ul, .sp-body ol {
  padding-left: 1.6rem;
  margin: 0 0 1.1rem;
}
.sp-body ul li  { list-style: disc; margin-bottom: 6px; }
.sp-body ol li  { list-style: decimal; margin-bottom: 6px; }
.sp-body a  { color: var(--green); font-weight: 600; text-decoration: underline; }
.sp-body a:hover { color: var(--orange); }
.sp-body strong { color: var(--text-dark); font-weight: 700; }
.sp-body em { font-style: italic; color: var(--text-gray); }
.sp-body blockquote {
  border-left: 4px solid var(--orange);
  background: var(--orange-pale);
  padding: 14px 20px;
  margin: 1.2rem 0;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--text-dark);
  font-style: italic;
}
.sp-body table { width: 100%; border-collapse: collapse; margin-bottom: 1.2rem; font-size: 0.9rem; }
.sp-body th { background: var(--green); color: var(--white); padding: 10px 14px; text-align: left; }
.sp-body td { padding: 9px 14px; border-bottom: 1px solid var(--border); color: var(--text-gray); }
.sp-body tr:nth-child(even) td { background: var(--bg-light); }
.sp-body hr { border: none; border-top: 2px solid var(--border); margin: 2rem 0; }

/* Sidebar */
.sp-sidebar { display: flex; flex-direction: column; gap: 14px; position: sticky; top: 90px; }

.sp-info-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
  text-align: center;
  border-top: 3px solid var(--green);
}
.sp-info-card--wa { border-top-color: #25D366; }

.sp-info-icon {
  width: 56px;
  height: 56px;
  background: var(--green-pale);
  color: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}
.sp-info-icon--wa     { background: #e8f5e9; color: #25D366; }
.sp-info-icon--orange { background: var(--orange-pale); color: var(--orange); }

.sp-info-card h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 8px;
}

.sp-contact-link {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green);
}

.sp-wa-btn {
  display: inline-block;
  background: #25D366;
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: 4px;
  transition: var(--transition);
  text-decoration: none !important;
}
.sp-wa-btn:hover { background: #1ebe57; }

.sp-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  color: var(--white);
  padding: 14px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
  text-decoration: none;
}
.sp-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(46,125,50,0.3);
  color: var(--white);
}

@media (max-width: 900px) {
  .sp-layout { grid-template-columns: 1fr; }
  .sp-sidebar { position: static; flex-direction: row; flex-wrap: wrap; }
  .sp-info-card { flex: 1; min-width: 140px; }
  .sp-cta-btn { width: 100%; }
}
@media (max-width: 600px) {
  .sp-body { padding: 24px 20px; }
  .sp-sidebar { flex-direction: column; }
}

/* =============================================
   MOBİL OPTİMİZASYON — Kapsamlı Fix
   ============================================= */

/* --- Header Üst Şerit Gizle --- */
@media (max-width: 768px) {
  .header-top { display: none !important; }
  .header-main { padding: 8px 0; }
}

/* --- Header Ana Satır --- */
@media (max-width: 768px) {
  .header-main-inner,
  .header-main .container {
    display: flex !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    gap: 8px !important;
    padding: 0 12px !important;
    width: 100% !important;
    justify-content: space-between !important;
  }

  /* Logo küçült */
  .header-logo img {
    height: 42px !important;
    width: auto !important;
    max-width: 130px !important;
  }

  /* Arama gizle */
  .header-search { display: none !important; }

  /* Actions sağ taraf */
  .header-actions {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    flex-shrink: 0 !important;
    margin-left: auto !important;
  }

  /* WhatsApp butonu: sadece ikon + kısa metin */
  .btn-wa-header {
    padding: 9px 12px !important;
    font-size: 0.8rem !important;
    gap: 5px !important;
    border-radius: 8px !important;
  }
  /* WA buton text gizle — sadece ikon göster */
  .btn-wa-header span { display: none !important; }

  /* Telefon/Ara butonu gizle (user isteği) */
  .btn-call-header { display: none !important; }

  /* Hamburger göster */
  .hamburger {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 40px !important;
    height: 40px !important;
    padding: 0 !important;
    flex-shrink: 0 !important;
    background: var(--bg-light) !important;
    border: 1.5px solid var(--border) !important;
    border-radius: 8px !important;
  }
}

/* --- Container Taşma Düzelt --- */
@media (max-width: 768px) {
  .container {
    padding: 0 12px !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden;
  }
}

/* --- Genel Taşma Önleyici --- */
@media (max-width: 768px) {
  section, .section-pad, .hero-slider,
  .story-section, .features-section,
  .products-section, .breadcrumb-bar,
  .site-footer, .order-section,
  .product-detail-section {
    max-width: 100vw;
    overflow-x: hidden;
  }
}

/* --- Ürün Grid Mobil --- */
@media (max-width: 480px) {
  .product-grid,
  .products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
  .product-card-name { font-size: 0.85rem !important; }
  .price-current { font-size: 1rem !important; }
}

/* --- Story Scroll Mobil --- */
@media (max-width: 768px) {
  /* Ok butonlarını gizle — parmakla kaydırma yeterli */
  .story-btn,
  .story-nav-btn,
  #story-prev,
  #story-next {
    display: none !important;
  }
  /* Scroll wrapper'ı tam genişliğe al */
  .story-scroll-wrap,
  .story-scroll-wrapper {
    margin: 0 !important;
  }
  .story-scroll {
    padding: 8px 8px 14px !important;
  }
}
@media (max-width: 480px) {
  .story-circle { width: 72px !important; height: 72px !important; }
  .story-item { min-width: 80px !important; gap: 6px !important; }
  .story-label { font-size: 0.7rem !important; max-width: 78px !important; }
  .story-scroll { gap: 14px !important; padding: 8px 4px 12px !important; }
}

/* --- Footer Mobil --- */
@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  .site-footer { padding: 36px 0 0 !important; }
  .footer-bottom-inner {
    flex-direction: column !important;
    text-align: center !important;
    gap: 6px !important;
  }
  .btn-wa-footer { width: 100%; justify-content: center; }
}

/* --- Sipariş Formu Mobil --- */
@media (max-width: 900px) {
  .order-grid { grid-template-columns: 1fr !important; gap: 16px !important; }
  .order-form-card { padding: 20px 16px !important; }
  /* Sidebar artık form'un altında — DOM sırası: form önce, sidebar sonra */
  .order-sidebar { order: 1 !important; }
  .order-form-wrap { order: 0 !important; }
}

/* --- Ürün Detay Mobil --- */
@media (max-width: 768px) {
  .product-detail-grid { grid-template-columns: 1fr !important; gap: 20px !important; }
  .product-gallery { position: static !important; }
  .product-title { font-size: 1.4rem !important; }
  .product-price-current { font-size: 1.7rem !important; }
}

/* --- Breadcrumb Taşma --- */
@media (max-width: 480px) {
  .breadcrumb { font-size: 0.75rem !important; }
  .breadcrumb span:last-child {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 160px;
    display: inline-block;
  }
}

/* --- Footer Mobil Ortalama --- */
@media (max-width: 768px) {
  .site-footer .footer-col,
  .site-footer .footer-brand {
    text-align: center !important;
  }
  .site-footer .footer-links a,
  .site-footer .footer-contact li,
  .site-footer .footer-contact a {
    justify-content: center !important;
    text-align: center !important;
  }
  .site-footer .footer-contact {
    align-items: center !important;
  }
  .site-footer .footer-contact li {
    flex-direction: row !important;
    align-items: center !important;
  }
  .site-footer .footer-social {
    justify-content: center !important;
  }
  .site-footer .btn-wa-footer {
    margin: 12px auto 0 !important;
    display: flex !important;
    justify-content: center !important;
  }
  .site-footer .footer-brand p {
    text-align: center !important;
  }
  .footer-title,
  .footer-col h4 {
    text-align: center !important;
  }
  .footer-links {
    text-align: center !important;
  }
  .footer-links li a {
    display: block !important;
    text-align: center !important;
  }
  .footer-links li a:hover {
    padding-left: 0 !important;
  }
  .footer-bottom-inner {
    flex-direction: column !important;
    text-align: center !important;
    align-items: center !important;
    gap: 8px !important;
  }
}

/* --- Menü Yapışkan (Sticky) Header --- */
.site-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 1000 !important;
  box-shadow: 0 3px 20px rgba(0,0,0,0.12) !important;
}

/* --- Logo Mobil Boyut Artır --- */
@media (max-width: 768px) {
  .header-logo img {
    height: 50px !important;
    width: auto !important;
    max-width: 150px !important;
  }
}

/* --- Nav Mobile açık menü --- */
@media (max-width: 768px) {
  .header-nav.open {
    display: block !important;
    background: var(--green) !important;
    max-height: 85vh;
    overflow-y: auto;
  }
}
