/* ==========================================================================
   KULA KOZMETİK - ŞÖVALYE KOZMETİK STİLİ MODERN E-TİCARET TASARIM SİSTEMİ
   (Desktop & Mobil Birebir Referans Tasarımı)
   ========================================================================== */

:root {
  --brand-gold: #F59E0B;
  --brand-orange: #EA580C;
  --hero-plum: #1E0B36;
  --hero-plum-dark: #120422;
  --ticker-bg: #E8EEF5;
  --ticker-text: #1E293B;

  --surface-white: #FFFFFF;
  --bg-page: #FAFBFD;
  --border-light: #ECEEF2;
  --border-card: #E5E7EB;

  --text-dark: #0F172A;
  --text-main: #1E293B;
  --text-muted: #64748B;
  --text-light: #94A3B8;

  --whatsapp-green: #25D366;
  --whatsapp-hover: #1EBE5D;

  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 14px rgba(0,0,0,0.07);
  --shadow-lg: 0 12px 30px rgba(0,0,0,0.11);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-page);
  color: var(--text-main);
  line-height: 1.5;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-fluid {
  max-width: 100%;
  padding: 0 20px;
}

/* ==========================================================================
   1. HEADER & ÜST NAVİGASYON (SCREENSHOT 1 & 2 STİLİ)
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--surface-white);
  border-bottom: 1px solid #EAEAEA;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04);
  width: 100%;
  max-width: 100%;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  gap: 20px;
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
}

/* Brand Logo - Kula Jeopark Kadın Kooperatifi */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
  white-space: nowrap;
}

.brand-logo-img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 50%;
  border: 1.5px solid #E2E8F0;
  background: #FFFFFF;
  padding: 2px;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

.brand-text-block {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  white-space: nowrap;
}

.brand-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: #1E293B;
  line-height: 1.15;
  letter-spacing: -0.01em;
  white-space: nowrap;
  display: block;
}

.brand-subtitle {
  font-size: 0.66rem;
  font-weight: 800;
  color: #6D28D9;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  display: block;
}

/* Masaüstü Gezinme Menüsü (Screenshot 1) */
.desktop-nav-menu {
  display: flex;
  align-items: center;
  gap: 18px;
  white-space: nowrap;
}

.nav-item {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  padding: 6px 4px;
  transition: color 0.2s;
  cursor: pointer;
}

.nav-item:hover {
  color: var(--brand-orange);
}

/* Sağ Aksiyon Kapsülü (Screenshot 1 & 2'deki Yuvarlak Hap) */
.header-utility-pill {
  background: #F4F4F6;
  border-radius: var(--radius-full);
  padding: 4px 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #E5E7EB;
}

.utility-icon-btn {
  background: none;
  border: none;
  color: #334155;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: background 0.2s, color 0.2s;
}

.utility-icon-btn:hover {
  background: #E2E8F0;
  color: var(--brand-orange);
}


.header-whatsapp-pill-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #FFFFFF;
  border: 1px solid #D1D5DB;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-dark);
  text-decoration: none;
  transition: all 0.2s ease;
}

.header-whatsapp-pill-btn:hover {
  background: #F0FDF4;
  border-color: var(--whatsapp-green);
  color: #15803D;
}

.header-phone-text {
  font-family: inherit;
  white-space: nowrap;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

/* ==========================================================================
   GELİŞMİŞ ARAMA SİSTEMİ & AÇILIR CANLI ARAMA PENCERESİ (SEARCH DRAWER)
   ========================================================================== */
.header-search-drawer {
  display: none;
  background: #FFFFFF;
  border-top: 1px solid #E2E8F0;
  border-bottom: 2px solid #EDE9FE;
  padding: 14px 0 16px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 990;
  animation: searchSlideDown 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.header-search-drawer.active {
  display: block;
}

.search-drawer-wrapper {
  position: relative;
}

.search-drawer-form {
  display: flex;
  align-items: center;
  gap: 12px;
}

.search-drawer-input-box {
  flex: 1;
  display: flex;
  align-items: center;
  position: relative;
  background: #F8FAFC;
  border: 1.5px solid #CBD5E1;
  border-radius: var(--radius-full);
  padding: 2px 14px;
  transition: all 0.2s ease;
}

.search-drawer-input-box:focus-within {
  border-color: #7C3AED;
  background: #FFFFFF;
  box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.14);
}

.search-input-icon {
  font-size: 1.1rem;
  color: #64748B;
  margin-right: 8px;
  flex-shrink: 0;
}

.search-drawer-input {
  flex: 1;
  padding: 10px 6px;
  border: none;
  background: transparent;
  outline: none;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.search-clear-btn {
  background: #E2E8F0;
  border: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: #475569;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}

.search-clear-btn:hover {
  background: #CBD5E1;
  color: #0F172A;
}

.btn-search-action {
  background: linear-gradient(135deg, #7C3AED 0%, #6D28D9 100%);
  color: #FFFFFF;
  border: none;
  padding: 11px 22px;
  border-radius: var(--radius-full);
  font-size: 0.90rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(109, 40, 217, 0.3);
}

.btn-search-action:hover {
  background: linear-gradient(135deg, #6D28D9 0%, #5B21B6 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(109, 40, 217, 0.4);
}

.search-drawer-close {
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #64748B;
  padding: 0 6px;
  line-height: 1;
  transition: color 0.2s;
}

.search-drawer-close:hover {
  color: #EF4444;
}

/* Canlı Arama Sonuçları Açılır Paneli */
.search-live-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-md);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  z-index: 1000;
  overflow: hidden;
  animation: searchFadeIn 0.18s ease;
}

@keyframes searchFadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

.search-live-results-list {
  max-height: 380px;
  overflow-y: auto;
  padding: 8px 0;
}

.search-live-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 18px;
  border-bottom: 1px solid #F1F5F9;
  cursor: pointer;
  transition: background 0.15s ease;
}

.search-live-item:last-child {
  border-bottom: none;
}

.search-live-item:hover {
  background: #F8FAFC;
}

.search-live-item-img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid #E2E8F0;
  background: #FFF;
  flex-shrink: 0;
}

.search-live-item-info {
  flex: 1;
  min-width: 0;
}

.search-live-item-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: #1E293B;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 2px;
}

.search-live-item-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
}

.search-live-item-category {
  color: #6D28D9;
  font-weight: 600;
}

.search-live-item-badge {
  background: #FEF3C7;
  color: #B45309;
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 0.70rem;
  font-weight: 700;
}

.search-live-item-price {
  text-align: right;
  flex-shrink: 0;
}

.search-live-price-final {
  font-size: 1rem;
  font-weight: 800;
  color: #1E293B;
}

.search-live-price-old {
  font-size: 0.78rem;
  color: #94A3B8;
  text-decoration: line-through;
}

.search-live-empty {
  padding: 28px 20px;
  text-align: center;
  color: #64748B;
  font-size: 0.90rem;
}

.search-live-footer {
  background: #F8FAFC;
  border-top: 1px solid #E2E8F0;
  padding: 10px 18px;
  text-align: center;
}

.btn-view-all-results {
  background: none;
  border: none;
  color: #6D28D9;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.15s;
}

.btn-view-all-results:hover {
  color: #5B21B6;
  text-decoration: underline;
}

/* Arama Filtre Bilgi Çubuğu (Katalog Üzerinde) */
.catalog-search-status-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #F5F3FF;
  border: 1.5px solid #DDD6FE;
  border-radius: var(--radius-md);
  padding: 12px 18px;
  margin-bottom: 24px;
  animation: searchFadeIn 0.2s ease;
}

.search-status-info {
  font-size: 0.92rem;
  color: #4C1D95;
}

.btn-clear-search-filter {
  background: #FFFFFF;
  border: 1px solid #C4B5FD;
  color: #6D28D9;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-clear-search-filter:hover {
  background: #EDE9FE;
  color: #5B21B6;
}

/* Mobil Menü Arama Kutusu */
.mobile-drawer-search-box {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  background: #F8FAFC;
  border-bottom: 1px solid #E2E8F0;
}

.mobile-search-input {
  flex: 1;
  padding: 9px 14px;
  border-radius: var(--radius-full);
  border: 1px solid #CBD5E1;
  outline: none;
  font-size: 0.88rem;
  background: #FFFFFF;
}

.mobile-search-input:focus {
  border-color: #6D28D9;
}

.mobile-search-btn {
  background: #6D28D9;
  color: #FFFFFF;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.95rem;
  flex-shrink: 0;
}

/* ==========================================================================
   2. HERO BANNER (KULA JEOPARK KADIN KOOPERATİFİ)
   ========================================================================== */
.sovalye-hero-slider {
  width: 100%;
  background: #140526;
  overflow: hidden;
}

.hero-slide-wrapper {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 520px;
  position: relative;
  background: linear-gradient(145deg, #200B3B 0%, #130424 60%, #0B0214 100%);
}

.hero-image-half {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 520px;
  overflow: hidden;
}

.hero-image-half::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 200px;
  background: linear-gradient(to right, rgba(32, 11, 59, 0) 0%, rgba(32, 11, 59, 0.7) 60%, #200B3B 100%);
  pointer-events: none;
  z-index: 2;
}

.hero-main-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-image-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, rgba(20, 7, 38, 0.15) 0%, rgba(20, 7, 38, 0.45) 100%);
  pointer-events: none;
}

.hero-text-half {
  background: linear-gradient(145deg, #200B3B 0%, #130424 60%, #0B0214 100%);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 50px 60px;
  color: #FFFFFF;
  position: relative;
  z-index: 3;
}

.hero-text-content {
  max-width: 500px;
}

.hero-eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(251, 191, 36, 0.12);
  border: 1px solid rgba(251, 191, 36, 0.35);
  color: #FBBF24;
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 0.80rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FBBF24;
  box-shadow: 0 0 8px #FBBF24;
  display: inline-block;
}

.hero-headline {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.15;
  color: #FFFFFF;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.hero-subtext {
  font-size: 0.96rem;
  line-height: 1.65;
  color: #DDD6FE;
  margin-bottom: 24px;
}

.hero-btn-group {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-hero-cta {
  background: #FFFFFF;
  color: #1E0B36;
  border: none;
  padding: 13px 28px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  white-space: nowrap;
}

.btn-hero-cta:hover {
  background: #F3E8FF;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(168, 85, 247, 0.35);
}

.btn-hero-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--whatsapp-green);
  color: #FFFFFF;
  border: none;
  padding: 13px 24px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
  white-space: nowrap;
}

.btn-hero-whatsapp:hover {
  background: var(--whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.5);
}

.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  flex-wrap: wrap;
}

.hero-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.80rem;
  font-weight: 600;
  color: #DDD6FE;
}

.hero-trust-item svg {
  color: #A78BFA;
  flex-shrink: 0;
}

/* ==========================================================================
   3. AÇIK MAVİ/GRİ ŞERİT (DUYURU BARI - SCREENSHOT 1, 2, 3)
   ========================================================================== */
.sovalye-ticker-strip {
  background: var(--ticker-bg);
  color: var(--ticker-text);
  padding: 12px 0;
  font-size: 0.80rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid #DCE4EE;
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  width: 100%;
  max-width: 100%;
  user-select: none;
  contain: paint;
}

.ticker-content-track {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-shrink: 0;
  white-space: nowrap;
  flex-wrap: nowrap;
  animation: tickerMarquee 35s linear infinite;
}

.ticker-content-track:hover {
  animation-play-state: paused;
}

.ticker-content-track span {
  white-space: nowrap;
  flex-shrink: 0;
}

.ticker-bullet {
  color: #94A3B8;
  font-size: 0.70rem;
  flex-shrink: 0;
}

@keyframes tickerMarquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ==========================================================================
   4. 4 BÜYÜK FOTOĞRAFLI KATEGORİ BANNERLARI (SCREENSHOT 2)
   ========================================================================== */
.featured-categories-section {
  padding: 24px 0 36px;
}

.category-banners-container {
  max-width: 1380px;
  margin: 0 auto;
}

.category-banners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.category-banner-card {
  position: relative;
  height: 380px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-banner-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.cat-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-banner-card:hover .cat-card-img {
  transform: scale(1.06);
}

.cat-card-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.25) 45%, rgba(0, 0, 0, 0) 100%);
}

.cat-card-caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  color: #FFFFFF;
  z-index: 2;
}

.cat-card-caption h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.cat-card-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: #F8FAFC;
  opacity: 0.9;
  text-decoration: underline;
}

/* ==========================================================================
   5. ÜRÜN KATALOĞU (SCREENSHOT 2 KARTLARI)
   ========================================================================== */
.catalog-section {
  padding: 20px 0 60px;
}

.catalog-header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-light);
}

.catalog-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-dark);
}

.catalog-subtitle {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
}

.catalog-filter-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-tag-btn {
  background: #FFFFFF;
  border: 1px solid var(--border-card);
  padding: 7px 16px;
  border-radius: var(--radius-full);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.2s;
}

.filter-tag-btn:hover {
  background: #F1F5F9;
  border-color: #CBD5E1;
}

.filter-tag-btn.active {
  background: #18181B;
  color: #FFFFFF;
  border-color: #18181B;
}

/* Ürün Grid'i (Screenshot 2) */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

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

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

/* Ürün İndirim Rozeti (Screenshot 2'deki gibi lacivert/mavi küçük rozet) */
.card-discount-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 4;
  background: #1E3A8A;
  color: #FFFFFF;
  font-size: 0.70rem;
  font-weight: 800;
  padding: 3px 7px;
  border-radius: 4px;
  letter-spacing: 0.02em;
}

.card-img-wrap {
  width: 100%;
  padding-top: 100%;
  position: relative;
  background: #F8FAFC;
  cursor: pointer;
  overflow: hidden;
}

.card-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.card-body {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-brand {
  font-size: 0.72rem;
  font-weight: 800;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.card-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.35;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  cursor: pointer;
  min-height: 2.6em;
}

.card-title:hover {
  color: var(--brand-orange);
}

.card-rating-row {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 10px;
}

.card-stars {
  color: #F59E0B;
  font-size: 0.85rem;
}

.card-rating-score {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--text-muted);
}

.card-price-row {
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 12px;
}

.card-final-price {
  font-size: 1.30rem;
  font-weight: 800;
  color: var(--text-main);
}

.card-old-price {
  font-size: 0.82rem;
  color: var(--text-light);
  text-decoration: line-through;
  font-weight: 500;
}

.btn-card-whatsapp {
  width: 100%;
  background: var(--whatsapp-green);
  color: #FFFFFF;
  border: none;
  padding: 10px;
  border-radius: 8px;
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: background 0.2s;
}

.btn-card-whatsapp:hover {
  background: var(--whatsapp-hover);
}

/* ==========================================================================
   6. HİKAYE VE KOOPERATİF
   ========================================================================== */
.about-section {
  padding: 60px 0;
  background: #FFFFFF;
  border-top: 1px solid var(--border-light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}

.about-img {
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}

.about-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  color: #EA580C;
  background: #FFF7ED;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
  border: 1px solid #FFEDD5;
}

.about-text-wrap h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 16px;
}

.about-text-wrap p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
}

.highlight-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ECFDF5;
  color: #059669;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.btn-whatsapp-pill-large {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--whatsapp-green);
  color: #FFFFFF;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.90rem;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
  transition: background 0.2s;
}

.btn-whatsapp-pill-large:hover {
  background: var(--whatsapp-hover);
}

/* ==========================================================================
   7. FOOTER
   ========================================================================== */
.site-footer {
  background: #18181B;
  color: #FFFFFF;
  padding: 60px 0 24px;
}

.footer-columns {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.2fr 1.2fr;
  gap: 36px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 16px;
}

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

.footer-links a {
  font-size: 0.85rem;
  color: #CBD5E1;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

/* Sosyal Medya İkonlu Bağlantılar */
.footer-social-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-social-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
  transition: all 0.22s ease;
}

.footer-social-link:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateX(4px);
}

.social-icon-badge {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  flex-shrink: 0;
}

.social-icon-badge.insta-badge {
  background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
}

.social-icon-badge.fb-badge {
  background: #1877F2;
}

.social-icon-badge.tiktok-badge {
  background: #000000;
  border: 1px solid #333333;
}

.social-text-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.social-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
}

.social-handle {
  font-size: 0.72rem;
  color: #94A3B8;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* İletişim & Konum Alanı */
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: #CBD5E1;
  line-height: 1.4;
}

.contact-icon-badge {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-text {
  font-size: 0.85rem;
  color: #CBD5E1;
}

.contact-link {
  color: #CBD5E1;
  transition: color 0.2s;
  font-size: 0.85rem;
}

.contact-link.phone {
  color: #FFFFFF;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.contact-link:hover {
  color: #A78BFA;
  text-decoration: underline;
}

.footer-bottom-bar {
  border-top: 1px solid #27272A;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: #94A3B8;
  flex-wrap: wrap;
  gap: 10px;
}

/* ==========================================================================
   8. YÜZEN WHATSAPP BUTONU (SCREENSHOT 1, 2, 3)
   ========================================================================== */
.floating-whatsapp-pill {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  background: var(--whatsapp-green);
  color: #FFFFFF;
  padding: 11px 20px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s, background 0.2s;
  text-decoration: none;
}

.floating-whatsapp-pill:hover {
  background: var(--whatsapp-hover);
  transform: translateY(-3px) scale(1.03);
}

/* ==========================================================================
   9. DETAY MODALI
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
}

.modal-dialog {
  background: #FFFFFF;
  width: 780px;
  max-width: 100%;
  border-radius: 16px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  max-height: 90vh;
}

.modal-close {
  position: absolute;
  top: 14px; right: 14px;
  background: #F1F5F9;
  border: none;
  width: 32px; height: 32px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.modal-left-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-right-body {
  padding: 28px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.modal-cat-label {
  font-size: 0.72rem;
  font-weight: 800;
  color: #EA580C;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.modal-product-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.modal-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 14px;
}

.modal-final-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-main);
}

.modal-old-price {
  font-size: 0.95rem;
  color: var(--text-light);
  text-decoration: line-through;
}

.modal-discount-pill {
  font-size: 0.75rem;
  font-weight: 700;
  background: #ECFDF5;
  color: #059669;
  padding: 2px 8px;
  border-radius: 4px;
}

.modal-section-title {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-dark);
  margin: 10px 0 4px;
}

.modal-desc-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 6px;
}

.modal-benefits-list {
  list-style: none;
  margin-bottom: 10px;
}

.modal-benefits-list li {
  font-size: 0.84rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.modal-order-action {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
}

.modal-qty-stepper {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border-card);
  border-radius: 8px;
  overflow: hidden;
}

.stepper-btn {
  background: #F8FAFC;
  border: none;
  width: 32px;
  height: 38px;
  font-weight: 700;
  cursor: pointer;
}

.stepper-input {
  width: 36px;
  text-align: center;
  border: none;
  font-weight: 700;
}

.btn-whatsapp-order-modal {
  flex: 1;
  background: var(--whatsapp-green);
  color: #FFFFFF;
  border: none;
  padding: 11px;
  border-radius: 8px;
  font-size: 0.90rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* Mobil Çekmece */
.mobile-drawer-backdrop {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1500;
  display: none;
}

.mobile-drawer-backdrop.active {
  display: block;
}

.mobile-side-drawer {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 300px;
  max-width: 85vw;
  background: #FFFFFF;
  z-index: 1501;
  transform: translateX(-100%);
  visibility: hidden;
  transition: transform 0.3s ease, visibility 0.3s ease;
  display: flex;
  flex-direction: column;
}

.mobile-side-drawer.active {
  transform: translateX(0);
  visibility: visible;
}

.mobile-drawer-top {
  padding: 18px 20px;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-drawer-close {
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
}

.mobile-drawer-nav {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-drawer-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.2s ease;
}

.mobile-drawer-link:hover {
  color: #6D28D9;
}

.mobile-drawer-social-section {
  padding: 16px 20px;
  border-top: 1px solid var(--border-light);
  background: #F8FAFC;
}

.mobile-social-title {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.mobile-social-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-social-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
}

.mobile-social-item.instagram {
  color: #E1306C;
}

.mobile-social-item.instagram:hover {
  background: #FFF1F2;
  border-color: #FECDD3;
}

.mobile-social-item.facebook {
  color: #1877F2;
}

.mobile-social-item.facebook:hover {
  background: #EFF6FF;
  border-color: #BFDBFE;
}

.mobile-social-item.tiktok {
  color: #000000;
}

.mobile-social-item.tiktok:hover {
  background: #F4F4F5;
  border-color: #D4D4D8;
}

.mobile-drawer-footer {
  margin-top: auto;
  padding: 20px;
  border-top: 1px solid var(--border-light);
}

.btn-whatsapp-drawer {
  width: 100%;
  background: var(--whatsapp-green);
  color: #FFFFFF;
  padding: 12px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* Toast Bildirimi */
.app-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #18181B;
  color: #FFFFFF;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  z-index: 3000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.app-toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ==========================================================================
   10. MOBİL DUYARLILIK (SCREENSHOT 3 İLE BİREBİR MOBİL GÖRÜNÜM)
   ========================================================================== */
@media (max-width: 1024px) {
  .desktop-nav-menu {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
  .category-banners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .category-banner-card {
    height: 280px;
  }
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .container,
  .container-fluid {
    padding-left: 14px;
    padding-right: 14px;
    width: 100%;
    max-width: 100%;
  }

  .header-container {
    padding: 10px 14px;
    gap: 8px;
    width: 100%;
    max-width: 100%;
  }

  .brand-logo {
    gap: 8px;
    min-width: 0;
  }

  .brand-logo-img {
    width: 40px;
    height: 40px;
  }

  .brand-title {
    font-size: 1.05rem;
  }

  .brand-subtitle {
    font-size: 0.60rem;
  }

  .header-utility-pill {
    padding: 3px 8px;
    gap: 6px;
    flex-shrink: 0;
  }

  .utility-icon-btn {
    width: 30px;
    height: 30px;
  }

  /* Mobilde telefon numarasını gizleyip sadece yeşil WhatsApp ikonunu göstererek taşmayı önle */
  .header-phone-text {
    display: none;
  }

  .header-whatsapp-pill-btn {
    padding: 6px 8px;
    gap: 0;
  }

  .search-drawer-form {
    flex-wrap: wrap;
    gap: 8px;
  }

  .search-drawer-input-box {
    width: 100%;
  }

  .btn-search-action {
    flex: 1;
    justify-content: center;
    padding: 10px 14px;
    font-size: 0.82rem;
  }

  /* Mobil Hero */
  .hero-slide-wrapper {
    grid-template-columns: 1fr;
    min-height: 420px;
    position: relative;
    width: 100%;
    max-width: 100%;
  }

  .hero-image-half {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    min-height: 420px;
    width: 100%;
    max-width: 100%;
  }

  .hero-image-half::after {
    display: none;
  }

  .hero-text-half {
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, rgba(20, 7, 38, 0.92) 0%, rgba(20, 7, 38, 0.75) 60%, rgba(10, 2, 20, 0.4) 100%);
    padding: 36px 16px;
    min-height: 420px;
    width: 100%;
    max-width: 100%;
  }

  .hero-text-content {
    max-width: 100%;
    width: 100%;
  }

  .hero-eyebrow-pill {
    font-size: 0.74rem;
    padding: 5px 12px;
  }

  .hero-headline {
    font-size: 1.65rem;
    line-height: 1.2;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .hero-subtext {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 18px;
  }

  .hero-btn-group {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    width: 100%;
  }

  .btn-hero-cta,
  .btn-hero-whatsapp {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 12px 18px;
    font-size: 0.80rem;
  }

  .hero-trust-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-top: 18px;
    padding-top: 16px;
    width: 100%;
  }

  .hero-trust-item {
    font-size: 0.78rem;
  }

  .sovalye-ticker-strip {
    padding: 9px 0;
    font-size: 0.74rem;
    width: 100%;
    max-width: 100%;
  }

  /* Kategori Bannerları 2'li */
  .category-banners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    width: 100%;
  }

  .category-banner-card {
    height: 210px;
    border-radius: 10px;
    min-width: 0;
  }

  .cat-card-caption h3 {
    font-size: 0.82rem;
  }

  /* Ürün Kataloğu & Filtreler */
  .catalog-section {
    padding: 16px 0 40px;
    width: 100%;
    max-width: 100%;
  }

  .catalog-header-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .catalog-filter-tags {
    width: 100%;
    gap: 6px;
  }

  .filter-tag-btn {
    padding: 6px 12px;
    font-size: 0.78rem;
  }

  /* Ürün Kartları 2'li */
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    width: 100%;
  }

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

  .card-body {
    padding: 10px;
  }

  .card-title {
    font-size: 0.82rem;
  }

  .card-final-price {
    font-size: 1.05rem;
  }

  .btn-card-whatsapp {
    font-size: 0.75rem;
    padding: 8px;
  }

  .about-section {
    padding: 40px 0;
    width: 100%;
    max-width: 100%;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    width: 100%;
  }

  .about-highlights {
    grid-template-columns: 1fr;
  }

  .about-img {
    width: 100%;
    height: auto;
  }

  .modal-overlay {
    padding: 12px;
  }

  .modal-dialog {
    grid-template-columns: 1fr;
    max-height: 88vh;
    width: 100%;
    max-width: 100%;
  }

  .modal-left-img {
    height: 190px;
  }

  .modal-right-body {
    padding: 18px 16px;
  }

  .footer-columns {
    grid-template-columns: 1fr;
    gap: 24px;
    width: 100%;
  }

  .footer-col {
    min-width: 0;
    word-break: break-word;
  }

  .footer-bottom-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    text-align: left;
  }

  .floating-whatsapp-pill {
    bottom: 16px;
    right: 16px;
    padding: 10px 16px;
    font-size: 0.82rem;
    max-width: calc(100% - 32px);
  }
}

@media (max-width: 380px) {
  .header-container {
    padding: 8px 10px;
    gap: 6px;
  }

  .brand-logo {
    gap: 6px;
  }

  .brand-logo-img {
    width: 34px;
    height: 34px;
  }

  .brand-title {
    font-size: 0.94rem;
  }

  .brand-subtitle {
    font-size: 0.54rem;
    letter-spacing: 0.04em;
  }

  .header-utility-pill {
    padding: 2px 6px;
    gap: 4px;
  }

  .hero-headline {
    font-size: 1.42rem;
  }

  .hero-text-half {
    padding: 28px 12px;
  }

  .category-banners-grid,
  .products-grid {
    gap: 8px;
  }

  .cat-card-caption h3 {
    font-size: 0.74rem;
  }

  .card-final-price {
    font-size: 0.95rem;
  }

  .floating-whatsapp-pill {
    padding: 8px 12px;
    font-size: 0.78rem;
  }
}
