/* ==========================================================================
   Ötüken Okçuluk Spor Kulübü - Premium, Sade & Ürün Odaklı Tasarım Sistemi
   ========================================================================== */

:root {
  --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  /* Arka Plan Renkleri */
  --bg-page: #f8fafc;
  --bg-surface: #ffffff;
  --bg-surface-elevated: #ffffff;
  --bg-dark: #090d16;
  --bg-dark-subtle: #0f172a;
  --bg-dark-card: #141c2e;
  
  /* Metin Renkleri */
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --text-light: #f8fafc;
  --text-light-muted: #94a3b8;
  
  /* Kenarlıklar */
  --border-light: #e2e8f0;
  --border-medium: #cbd5e1;
  --border-dark: rgba(255, 255, 255, 0.1);
  
  /* Premium Altın & Aksan Renkleri */
  --color-gold: #c5a059;
  --color-gold-hover: #b08d48;
  --color-gold-light: rgba(197, 160, 89, 0.12);
  --color-gold-border: rgba(197, 160, 89, 0.3);
  
  --color-accent: #0f172a;
  --color-accent-hover: #1e293b;
  --color-success: #10b981;
  --color-danger: #ef4444;
  
  /* Gölgeler */
  --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.05);
  --shadow-card: 0 4px 12px -2px rgba(15, 23, 42, 0.05), 0 2px 4px -1px rgba(15, 23, 42, 0.03);
  --shadow-card-hover: 0 16px 32px -4px rgba(15, 23, 42, 0.1), 0 4px 12px -2px rgba(15, 23, 42, 0.05);
  --shadow-drawer: -8px 0 24px rgba(0, 0, 0, 0.2);
  --shadow-modal: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  
  /* Ebat & Sınırlar */
  --max-width: 1240px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Temel Sıfırlama */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-page);
  color: var(--text-primary);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button, input, select {
  font-family: inherit;
  color: inherit;
  outline: none;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* 1. Üst Duyuru Çubuğu Kaldırıldı */

/* ==========================================================================
   2. Ana Header & Canlı Arama
   ========================================================================== */
.main-header {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 60;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
  gap: 1.5rem;
}

/* Marka / Logo */
.site-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.brand-text-block {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  line-height: 1.1;
}

.brand-sub {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--color-gold);
  margin-top: 2px;
}

/* Canlı Arama Kutusu */
.header-search-wrap {
  flex: 1;
  max-width: 520px;
}

.search-input-box {
  position: relative;
  display: flex;
  align-items: center;
  background-color: #f1f5f9;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 1rem;
  transition: var(--transition);
}

.search-input-box:focus-within {
  background-color: #ffffff;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.18);
}

.search-icon {
  color: var(--text-muted);
  flex-shrink: 0;
  margin-right: 0.6rem;
}

.search-input-box input {
  width: 100%;
  border: none;
  background: transparent;
  padding: 0.68rem 0;
  font-size: 0.88rem;
  color: var(--text-primary);
}

.search-input-box input::placeholder {
  color: #94a3b8;
}

.search-clear-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.2rem 0.4rem;
  font-size: 0.85rem;
  border-radius: 50%;
  transition: var(--transition);
}

.search-clear-btn:hover {
  color: var(--text-primary);
}

/* Sağ Aksiyonlar */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.btn-admin-header {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(15, 23, 42, 0.05);
  border: 1px solid var(--border-light);
  padding: 0.55rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  transition: var(--transition);
}

.btn-admin-header:hover {
  background: var(--color-gold-light);
  border-color: var(--color-gold-border);
  color: var(--color-gold-hover);
  transform: translateY(-1px);
}

/* ==========================================================================
   3. Kategori Hızlı Gezinme Şeridi (Category Bar)
   ========================================================================== */
.category-nav-bar {
  background-color: #ffffff;
  border-top: 1px solid var(--border-light);
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
}

.category-nav-bar::-webkit-scrollbar {
  display: none;
}

.category-nav-inner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.5rem;
}

.cat-nav-pill {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.cat-nav-pill:hover {
  color: var(--text-primary);
  background-color: #f1f5f9;
}

.cat-nav-pill.active {
  background-color: var(--bg-dark);
  color: #ffffff;
}

.cat-nav-count {
  font-size: 0.72rem;
  opacity: 0.75;
}

/* ==========================================================================
   4. Ürün Odaklı Hero Vitrini
   ========================================================================== */
.hero-showcase {
  background: linear-gradient(135deg, #090d16 0%, #0f172a 100%);
  color: #ffffff;
  padding: 2.8rem 0;
  position: relative;
  overflow: hidden;
}

.hero-showcase::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.12) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
}

.hero-intro-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 2.75rem;
  padding: 0 0.5rem;
}

.hero-clean-title {
  font-size: 2.35rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin-bottom: 0.65rem;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-clean-sub {
  font-size: 1.02rem;
  color: #94a3b8;
  line-height: 1.55;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Hero Kategori Görsel Vitrin Kaydırıcısı (Slider) */
.hero-slider-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}

.hero-categories-track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 0.5rem 0.25rem 1.25rem;
  width: 100%;
  scrollbar-width: thin;
  scrollbar-color: rgba(197, 160, 89, 0.35) transparent;
  -webkit-overflow-scrolling: touch;
}

.hero-categories-track::-webkit-scrollbar {
  height: 6px;
}

.hero-categories-track::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
}

.hero-categories-track::-webkit-scrollbar-thumb {
  background: rgba(197, 160, 89, 0.35);
  border-radius: 999px;
}

.hero-categories-track::-webkit-scrollbar-thumb:hover {
  background: var(--color-gold);
}

.hero-slider-btn {
  position: absolute;
  top: calc(50% - 0.5rem);
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(12px);
  border: 1.5px solid rgba(197, 160, 89, 0.4);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.5);
  transition: all 0.25s ease;
}

.hero-slider-btn:hover {
  background: var(--color-gold);
  color: #0b0f19;
  border-color: var(--color-gold);
  box-shadow: 0 6px 24px rgba(197, 160, 89, 0.5);
  transform: translateY(-50%) scale(1.08);
}

.hero-slider-btn.prev {
  left: -20px;
}

.hero-slider-btn.next {
  right: -20px;
}

@media (max-width: 768px) {
  .hero-slider-btn {
    display: none;
  }
}

.hero-cat-card {
  position: relative;
  flex: 0 0 255px;
  min-width: 255px;
  height: 180px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  background-color: #141c2e;
  scroll-snap-align: start;
}

.hero-cat-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-gold);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.4), 0 0 18px rgba(197, 160, 89, 0.25);
}

.hero-cat-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.hero-cat-card:hover .hero-cat-bg {
  transform: scale(1.08);
}

.hero-cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 13, 22, 0.15) 0%, rgba(9, 13, 22, 0.88) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  z-index: 2;
}

.hero-cat-badge {
  display: none !important;
}

.hero-cat-name {
  font-size: 1.18rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.35rem;
  line-height: 1.25;
}

.hero-cat-btn {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-gold);
  opacity: 0.92;
  transition: var(--transition);
}

.hero-cat-card:hover .hero-cat-btn {
  color: #ffffff;
  transform: translateX(4px);
  display: inline-block;
}

/* ==========================================================================
   5b. ULUN OKÇULUK - Geleneksel Kategori Özel Marka Stilleri
   ========================================================================== */

/* --- Header & Katalog Sekmeleri: Logo + Geleneksel Okçuluk Yazısı --- */
.cat-nav-pill-ulun {
  padding: 0.3rem 0.85rem 0.3rem 0.65rem !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  background: #ffffff !important;
  border: 1.5px solid rgba(0, 0, 0, 0.1) !important;
  border-radius: 999px !important;
  height: 34px !important;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  color: var(--text-primary) !important;
  transition: var(--transition) !important;
  white-space: nowrap !important;
}

.cat-nav-pill-ulun:hover {
  border-color: #0284c7 !important;
  box-shadow: 0 2px 8px rgba(2, 132, 199, 0.18) !important;
  transform: translateY(-1px);
}

.cat-nav-pill-ulun.active {
  background: #ffffff !important;
  border-color: #0284c7 !important;
  color: #0284c7 !important;
  box-shadow: 0 0 0 2px rgba(2, 132, 199, 0.25), 0 3px 10px rgba(0, 0, 0, 0.08) !important;
}

.header-nav-ulun-logo {
  height: 19px;
  width: auto;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.filter-tab-ulun {
  padding: 0.38rem 1rem 0.38rem 0.75rem !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.55rem !important;
  background-color: #ffffff !important;
  height: 38px !important;
  border: 1.5px solid rgba(0, 0, 0, 0.1) !important;
  border-radius: 999px !important;
  font-size: 0.84rem !important;
  font-weight: 600 !important;
  color: var(--text-primary) !important;
  white-space: nowrap !important;
}

.filter-tab-ulun:hover {
  border-color: #0284c7 !important;
  box-shadow: 0 2px 8px rgba(2, 132, 199, 0.15) !important;
}

.filter-tab-ulun.active {
  background-color: #ffffff !important;
  border-color: #0284c7 !important;
  color: #0284c7 !important;
  box-shadow: 0 0 0 2px rgba(2, 132, 199, 0.25), 0 4px 10px rgba(9, 13, 22, 0.08) !important;
}

.filter-tab-ulun-logo {
  height: 21px;
  width: auto;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

/* --- Kategoriye Girince Gelen Özel ULUN OKÇULUK Başlık & Logo Bannerı --- */
.ulun-brand-showcase-banner {
  margin-bottom: 1.75rem;
  border-radius: 14px;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 16px -2px rgba(15, 23, 42, 0.05);
  padding: 1.35rem 1.75rem;
  position: relative;
  overflow: hidden;
  animation: fadeInBanner 0.3s ease forwards;
}

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

.ulun-brand-showcase-banner::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #0284c7;
  border-radius: 14px 0 0 14px;
}

.ulun-banner-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.ulun-banner-logo-box {
  background: #ffffff;
  padding: 0.6rem 1rem;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ulun-banner-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
}

.ulun-banner-content {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.ulun-banner-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.2;
}

.ulun-banner-sub {
  font-size: 0.9rem;
  color: #64748b;
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .ulun-brand-showcase-banner {
    padding: 1.15rem;
  }
  .ulun-banner-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
  }
  .ulun-banner-logo {
    height: 38px;
  }
  .ulun-banner-title {
    font-size: 1.3rem;
  }
}

/* --- Hero Kart: Ulun Brand Özel Görünüm (Resimsiz, Tam Sığdırılmış Logo + Diğerleriyle Birebir Aynı Alt Bölüm) --- */
.ulun-brand-card {
  border-color: rgba(2, 132, 199, 0.25) !important;
  background-color: #ffffff !important;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08) !important;
}

.ulun-brand-card:hover {
  border-color: #0284c7 !important;
  box-shadow: 0 12px 28px rgba(2, 132, 199, 0.2), 0 4px 12px rgba(0, 0, 0, 0.06) !important;
  transform: translateY(-5px);
}

.ulun-hero-card-inner {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.25rem;
  box-sizing: border-box;
}

.ulun-hero-card-logo-box {
  flex: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding-bottom: 0.35rem;
}

.ulun-hero-card-logo {
  max-width: 90%;
  max-height: 76px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.ulun-brand-card:hover .ulun-hero-card-logo {
  transform: scale(1.05);
}

.ulun-hero-card-bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  width: 100%;
}

.ulun-hero-card-bottom .hero-cat-name {
  font-size: 1.18rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.35rem;
  line-height: 1.25;
}

.ulun-hero-card-bottom .hero-cat-btn {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-gold);
  opacity: 0.95;
  transition: var(--transition);
}

.ulun-brand-card:hover .hero-cat-btn {
  color: #0284c7;
  transform: translateX(4px);
  display: inline-block;
}

/* --- Ürün Kartı: Ulun Marka Logosu --- */
.ulun-product {
  border-color: rgba(2, 132, 199, 0.15);
}

.ulun-product:hover {
  border-color: rgba(2, 132, 199, 0.35);
  box-shadow: 0 16px 32px -4px rgba(2, 132, 199, 0.1), 0 4px 12px -2px rgba(15, 23, 42, 0.05);
}

.ulun-card-brand {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 3;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 6px;
  padding: 4px 7px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(4px);
  transition: transform 0.25s ease;
}

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

.ulun-card-logo {
  display: block;
  height: 22px;
  width: auto;
  object-fit: contain;
}

.ulun-product .card-category-label {
  color: var(--text-secondary);
  font-weight: 600;
}

/* --- Modal: Ulun Marka Logosu --- */
.ulun-modal-brand {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 5;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  padding: 6px 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.ulun-modal-logo {
  display: block;
  height: 36px;
  width: auto;
  object-fit: contain;
}

.ulun-modal-image {
  position: relative;
}

/* ==========================================================================
   6. Ana Ürün Kataloğu & Filtreler
   ========================================================================== */
.catalog-section {
  padding: 2.5rem 0 4rem;
  scroll-margin-top: 130px;
}

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

/* Alt Kategori Filtre Çubuğu */
.catalog-subcat-bar {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  overflow-x: auto;
  padding: 0.25rem 0 1.25rem;
  margin-bottom: 1.75rem;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
  scrollbar-width: none;
}

.catalog-subcat-bar::-webkit-scrollbar {
  display: none;
}

.subcat-pill-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-secondary);
  background-color: #f1f5f9;
  border: 1px solid var(--border-light);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.subcat-pill-btn:hover {
  color: var(--text-primary);
  border-color: var(--color-gold);
  background-color: #e2e8f0;
}

.subcat-pill-btn.active {
  color: #0b0f19;
  background-color: var(--color-gold);
  border-color: var(--color-gold);
  font-weight: 700;
  box-shadow: 0 3px 10px rgba(197, 160, 89, 0.35);
}

/* Kategori Sekmeleri */
.catalog-filter-tabs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.filter-tab-btn {
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.filter-tab-btn:hover {
  border-color: var(--color-gold);
  color: var(--text-primary);
}

.filter-tab-btn.active {
  background-color: var(--bg-dark);
  border-color: var(--bg-dark);
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(9, 13, 22, 0.15);
}

.filter-tab-badge {
  background-color: rgba(0, 0, 0, 0.08);
  font-size: 0.68rem;
  padding: 0.1rem 0.4rem;
  border-radius: 999px;
}

.filter-tab-btn.active .filter-tab-badge {
  background-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.catalog-meta-controls {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.products-counter {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.sort-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sort-label {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.sort-select {
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.84rem;
  color: var(--text-primary);
  cursor: pointer;
  transition: var(--transition);
}

.sort-select:focus {
  border-color: var(--color-gold);
}

/* ==========================================================================
   Ürünler Izgarası (Product Grid & Cards)
   ========================================================================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.5rem;
}

.empty-catalog-msg {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 1.5rem;
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px dashed var(--border-medium);
}

.empty-catalog-msg h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.empty-catalog-msg p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Ürün Kartı */
.product-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  position: relative;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--border-medium);
}

.product-card-top {
  position: relative;
  width: 100%;
  height: 240px;
  background-color: #f1f5f9;
  overflow: hidden;
  cursor: pointer;
}

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

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

.product-badge-pill {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  background-color: var(--bg-dark);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.25rem 0.55rem;
  border-radius: var(--radius-sm);
  z-index: 2;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.product-badge-pill.gold {
  background-color: var(--color-gold);
  color: #000000;
}

.product-card-body {
  padding: 1.15rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-category-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.35rem;
}

.card-category-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-gold-hover);
  letter-spacing: 0.05em;
}

.card-rating-stars {
  font-size: 0.76rem;
  color: #f59e0b;
  font-weight: 700;
}

.card-rating-count {
  color: var(--text-muted);
  font-weight: 400;
  margin-left: 2px;
}

.product-card-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.35;
  margin-bottom: 0.5rem;
  cursor: pointer;
  transition: color 0.15s ease;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.product-card-title:hover {
  color: var(--color-gold-hover);
}

.product-spec-chip {
  font-size: 0.74rem;
  color: var(--text-secondary);
  background-color: #f1f5f9;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  margin-bottom: 0.9rem;
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-price-section {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-top: auto;
  margin-bottom: 1rem;
}

.current-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

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

.discount-badge {
  font-size: 0.68rem;
  font-weight: 700;
  color: #b91c1c;
  background-color: #fee2e2;
  padding: 0.15rem 0.4rem;
  border-radius: var(--radius-sm);
}

.product-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.btn-card-addcart span,
.btn-card-quickview {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.btn-card-quickview {
  background-color: #f8fafc;
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
  padding: 0.55rem 0.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn-card-quickview:hover {
  background-color: #f1f5f9;
  color: var(--text-primary);
  border-color: var(--border-medium);
}

.btn-card-addcart {
  background: linear-gradient(135deg, #c5a059 0%, #b08d48 100%);
  border: 1px solid #b08d48;
  color: #0b0f19;
  padding: 0.55rem 0.6rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(197, 160, 89, 0.2);
}

.btn-card-addcart:hover {
  background: linear-gradient(135deg, #d4af65 0%, #bd9851 100%);
  border-color: #bd9851;
  color: #000000;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(197, 160, 89, 0.35);
}

/* ==========================================================================
   7. Kulüp Standartları & Güvence Şeridi
   ========================================================================== */
.trust-banner {
  background-color: #ffffff;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 2.5rem 0;
}

.trust-banner-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background-color: var(--color-gold-light);
  color: var(--color-gold-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}

.trust-text p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

/* ==========================================================================
   8. Sade ve Lüks Footer
   ========================================================================== */
.site-footer {
  background-color: var(--bg-dark);
  color: #94a3b8;
  padding: 4rem 0 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1.1fr 1.4fr;
  gap: 3.5rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.footer-logo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  padding: 6px 14px;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease;
}

.footer-logo-badge:hover {
  transform: translateY(-2px);
}

.footer-logo {
  height: 38px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  display: block;
}

.footer-brand-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.02em;
}

.footer-text {
  font-size: 0.84rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  color: #94a3b8;
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-size: 0.82rem;
  color: #cbd5e1;
}

.footer-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.04em;
  margin-bottom: 1.15rem;
}

.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-nav-list a {
  font-size: 0.84rem;
  color: #94a3b8;
  transition: var(--transition);
}

.footer-nav-list a:hover {
  color: var(--color-gold);
  transform: translateX(3px);
  display: inline-block;
}

.newsletter-desc {
  font-size: 0.82rem;
  margin-bottom: 1rem;
  color: #94a3b8;
  line-height: 1.5;
}

.footer-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  width: 100%;
  padding: 0.8rem 1.25rem;
  background-color: #25d366;
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  margin-bottom: 1rem;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25);
}

.footer-whatsapp-btn:hover {
  background-color: #20ba59;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.footer-whatsapp-btn svg {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.footer-whatsapp-btn:hover svg {
  transform: scale(1.1);
}

.payment-methods-strip {
  display: flex;
  gap: 1rem;
  font-size: 0.74rem;
  color: #64748b;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
  font-size: 0.76rem;
  color: #64748b;
  flex-wrap: wrap;
  gap: 1rem;
}

.badem-credit-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: transparent;
  border: none;
  padding: 0;
  text-decoration: none;
  color: #64748b;
  transition: all 0.2s ease;
}

.badem-credit-link:hover {
  color: #cbd5e1;
}

.badem-credit-logo {
  height: 18px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.badem-credit-link:hover .badem-credit-logo {
  opacity: 1;
  transform: scale(1.08);
}

.badem-credit-text {
  font-size: 0.76rem;
  letter-spacing: 0.01em;
}

.badem-credit-text strong {
  color: #94a3b8;
  font-weight: 600;
  transition: color 0.2s ease;
}

.badem-credit-link:hover .badem-credit-text strong {
  color: #f1f5f9;
}


/* ==========================================================================
   10. Hızlı İnceleme Modalı (Quick View Modal)
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(9, 13, 22, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 120;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-dialog {
  background-color: #ffffff;
  width: 100%;
  max-width: 860px;
  max-height: 90vh;
  border-radius: var(--radius-xl);
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-modal);
  transform: scale(0.95);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-backdrop.active .modal-dialog {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #f1f5f9;
  border: none;
  font-size: 1.1rem;
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: var(--transition);
}

.modal-close-btn:hover {
  background-color: #e2e8f0;
  color: var(--text-primary);
}

.modal-inner-content {
  padding: 2rem;
}

.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2rem;
  align-items: flex-start;
}

.modal-image-col {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-color: #f1f5f9;
}

.modal-image-col img {
  width: 100%;
  height: auto;
  display: block;
}

.modal-info-col {
  display: flex;
  flex-direction: column;
}

.modal-brand-badge {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--color-gold-hover);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.35rem;
}

.modal-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

.modal-price-line {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.modal-price-current {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--text-primary);
}

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

.modal-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

.modal-specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.25rem;
  font-size: 0.82rem;
}

.modal-specs-table tr {
  border-bottom: 1px solid var(--border-light);
}

.modal-specs-table th {
  text-align: left;
  padding: 0.45rem 0;
  color: var(--text-secondary);
  font-weight: 600;
  width: 40%;
}

.modal-specs-table td {
  padding: 0.45rem 0;
  color: var(--text-primary);
  font-weight: 500;
}

.modal-features-list {
  list-style: none;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.modal-features-list li {
  font-size: 0.82rem;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
}

.modal-features-list .check-icon {
  color: #10b981;
  font-weight: 700;
}

.modal-actions-box {
  margin-top: 1.5rem;
  display: flex;
}

.btn-modal-shopify {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  background: linear-gradient(135deg, #c5a059 0%, #b08d48 100%);
  color: #0b0f19;
  font-weight: 700;
  font-size: 0.98rem;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(197, 160, 89, 0.25);
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-modal-shopify:hover {
  background: linear-gradient(135deg, #d4af65 0%, #bd9851 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(197, 160, 89, 0.4);
  color: #000000;
}

/* ==========================================================================
   11. Toast Bildirim Kutusu
   ========================================================================== */
.toast-stack {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 150;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  pointer-events: none;
}

.toast-item {
  background-color: var(--bg-dark);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  border-left: 4px solid var(--color-gold);
  animation: toastSlideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  pointer-events: auto;
}

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

/* ==========================================================================
   12. Duyarlılık (Responsive Media Queries)
   ========================================================================== */

/* --- Tablet Landscape (≤1024px) --- */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero-right-spotlight {
    justify-content: center;
  }
  .spotlight-card {
    max-width: 100%;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .modal-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Tablet Portrait & Mobile (≤768px) --- */
@media (max-width: 768px) {
  /* Üst Duyuru Çubuğu */
  .top-bar-inner {
    justify-content: center;
    text-align: center;
  }
  .top-bar-right {
    display: none;
  }

  /* --- HEADER --- */
  .header-inner {
    height: auto;
    padding: 0.65rem 0;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .site-brand {
    gap: 0.6rem;
  }

  .brand-logo-img {
    height: 36px;
  }

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

  .brand-sub {
    font-size: 0.55rem;
  }

  .header-search-wrap {
    order: 3;
    max-width: 100%;
    width: 100%;
    margin-top: 0.25rem;
  }

  .search-input-box input {
    font-size: 0.84rem;
    padding: 0.6rem 0;
  }

  .search-input-box input::placeholder {
    font-size: 0.78rem;
  }

  /* Sepet butonu */
  .header-cart-btn {
    padding: 0.45rem 0.85rem;
    gap: 0.45rem;
  }

  .cart-btn-label {
    display: none;
  }

  .action-btn-whatsapp .wa-label {
    display: none;
  }

  .cart-btn-info {
    display: none;
  }

  /* --- KATEGORİ NAV BAR --- */
  .category-nav-inner {
    padding: 0.4rem 1rem;
    gap: 0.35rem;
  }

  .cat-nav-pill {
    font-size: 0.76rem;
    padding: 0.35rem 0.7rem;
  }

  /* --- HERO --- */
  .hero-showcase {
    padding: 2rem 0;
  }

  .hero-intro-head {
    margin-bottom: 2rem;
  }

  .hero-clean-title {
    font-size: 1.5rem;
    line-height: 1.25;
  }

  .hero-clean-sub {
    font-size: 0.85rem;
    padding: 0 0.25rem;
  }

  .hero-cat-card {
    flex: 0 0 210px;
    min-width: 210px;
    height: 155px;
  }

  .hero-cat-name {
    font-size: 1.02rem;
  }

  .hero-cat-btn {
    font-size: 0.74rem;
  }

  /* --- KATALOG FİLTRE & SIRALAMA --- */
  .catalog-section {
    padding: 1.75rem 0 3rem;
    scroll-margin-top: 110px;
  }

  .catalog-header-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
  }

  .catalog-filter-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    gap: 0.4rem;
    padding-bottom: 0.35rem;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .catalog-filter-tabs::-webkit-scrollbar {
    display: none;
  }

  .filter-tab-btn {
    flex-shrink: 0;
    font-size: 0.78rem;
    padding: 0.42rem 0.85rem;
  }

  .catalog-meta-controls {
    justify-content: space-between;
    width: 100%;
  }

  .sort-select {
    font-size: 0.8rem;
    padding: 0.4rem 0.65rem;
  }

  /* --- ÜRÜN GRID --- */
  .products-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
  }

  .product-card-top {
    height: 180px;
  }

  .product-card-body {
    padding: 0.85rem;
  }

  .product-card-title {
    font-size: 0.88rem;
    margin-bottom: 0.35rem;
  }

  .current-price {
    font-size: 1.08rem;
  }

  .old-price {
    font-size: 0.74rem;
  }

  .product-card-actions {
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem;
  }

  .btn-card-quickview,
  .btn-card-addcart {
    padding: 0.5rem 0.35rem;
    font-size: 0.72rem;
    text-align: center;
    justify-content: center;
  }

  /* --- ULUN BANNER (768px) --- */
  .ulun-brand-showcase-banner {
    padding: 1.15rem;
  }
  .ulun-banner-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
  }
  .ulun-banner-logo {
    height: 38px;
  }
  .ulun-banner-title {
    font-size: 1.3rem;
  }

  /* --- MODAL --- */
  .modal-backdrop {
    padding: 0;
    align-items: flex-end;
  }

  .modal-dialog {
    max-width: 100%;
    max-height: 92vh;
    border-radius: 20px 20px 0 0;
    transform: translateY(20px);
  }

  .modal-backdrop.active .modal-dialog {
    transform: translateY(0);
  }

  .modal-inner-content {
    padding: 1.25rem;
  }

  .modal-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .modal-title {
    font-size: 1.2rem;
  }

  .modal-price-current {
    font-size: 1.3rem;
  }

  .modal-cart-actions {
    flex-direction: column;
    gap: 0.75rem;
  }

  .modal-qty-control {
    width: 100%;
    justify-content: center;
  }

  /* --- FOOTER --- */
  .site-footer {
    padding: 2.5rem 0 1.25rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  .badem-credit-link {
    justify-content: center;
  }

  /* --- TOAST --- */
  .toast-stack {
    left: 50%;
    transform: translateX(-50%);
    bottom: 1.25rem;
    width: calc(100% - 2rem);
    max-width: 360px;
  }

  /* --- SAYFALAMA --- */
  .catalog-pagination-wrap {
    margin-top: 2.5rem;
  }

  .pagination-btn {
    min-width: 38px;
    height: 38px;
    font-size: 0.88rem;
  }

  .pagination-btn-arrow {
    padding: 0 0.75rem;
    font-size: 0.82rem;
  }
}

/* --- Small Mobile (≤600px) --- */
@media (max-width: 600px) {
  .container {
    padding: 0 1rem;
  }

  .hero-clean-title {
    font-size: 1.45rem;
  }

  .hero-clean-sub {
    font-size: 0.84rem;
  }

  .hero-cat-card {
    flex: 0 0 185px;
    min-width: 185px;
    height: 140px;
  }

  .hero-cat-overlay {
    padding: 1rem;
  }

  .hero-cat-name {
    font-size: 0.92rem;
  }

  .product-card-top {
    height: 160px;
  }

  .product-spec-chip {
    font-size: 0.68rem;
    padding: 0.2rem 0.4rem;
    margin-bottom: 0.6rem;
  }

  .footer-brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .footer-brand-title {
    font-size: 1.1rem;
  }

  .payment-methods-strip {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
}

/* --- Extra Small Mobile (≤480px) --- */
@media (max-width: 480px) {
  /* Header: Sadece logo resmi, yazı gizle */
  .brand-text-block {
    display: none;
  }

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

  .header-inner {
    gap: 0.4rem;
  }

  /* Arama */
  .search-input-box {
    padding: 0 0.75rem;
  }

  .search-input-box input::placeholder {
    font-size: 0.74rem;
  }

  /* Hero */
  .hero-showcase {
    padding: 1.5rem 0;
  }

  .hero-intro-head {
    margin-bottom: 1.5rem;
  }

  .hero-clean-title {
    font-size: 1.25rem;
  }

  .hero-clean-sub {
    font-size: 0.8rem;
  }

  .hero-categories-track {
    gap: 0.85rem;
    padding: 0.35rem 0.15rem 1rem;
  }

  .hero-cat-card {
    flex: 0 0 165px;
    min-width: 165px;
    height: 130px;
  }

  /* Ürün Grid: Tek sütun */
  .products-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .product-card-top {
    height: 220px;
  }

  .product-card-body {
    padding: 1rem;
  }

  .product-card-title {
    font-size: 0.92rem;
  }

  .current-price {
    font-size: 1.15rem;
  }

  .product-card-actions {
    grid-template-columns: 1fr 1fr;
    gap: 0.45rem;
  }

  .category-cards-grid {
    grid-template-columns: 1fr;
  }

  /* Sepet Çekmece */
  .cart-drawer {
    max-width: 100%;
  }

  .cart-drawer-header {
    padding: 1rem 1.15rem;
  }

  .cart-drawer-body {
    padding: 1rem 1.15rem;
  }

  .cart-drawer-footer {
    padding: 1rem 1.15rem;
  }

  .cart-header-title h3 {
    font-size: 1rem;
  }

  .cart-item-img {
    width: 60px;
    height: 60px;
  }

  /* Modal */
  .modal-close-btn {
    top: 0.65rem;
    right: 0.65rem;
    width: 32px;
    height: 32px;
    font-size: 0.95rem;
  }

  /* Footer */
  .site-footer {
    padding: 2rem 0 1rem;
  }

  .footer-text {
    font-size: 0.8rem;
  }

  .footer-contacts {
    font-size: 0.78rem;
  }

  .footer-title {
    font-size: 0.85rem;
  }

  .footer-nav-list a {
    font-size: 0.8rem;
  }

  .newsletter-desc {
    font-size: 0.78rem;
  }

  .footer-whatsapp-btn {
    font-size: 0.85rem;
    padding: 0.7rem 1rem;
  }

  .footer-bottom {
    font-size: 0.7rem;
  }

  /* Toast */
  .toast-item {
    font-size: 0.8rem;
    padding: 0.65rem 1rem;
  }

  /* Sayfalama */
  .pagination-btn {
    min-width: 34px;
    height: 34px;
    font-size: 0.82rem;
    border-radius: 8px;
  }

  .pagination-btn-arrow {
    padding: 0 0.6rem;
    font-size: 0.78rem;
  }

  .pagination-info {
    font-size: 0.8rem;
  }
}

/* ==========================================================================
   SAYFALAMA (PAGINATION - MAKSİMUM 28 ÜRÜN)
   ========================================================================== */
.catalog-pagination-wrap {
  margin-top: 3.5rem;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.pagination-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.pagination-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 0.85rem;
  border-radius: 12px;
  background: var(--bg-surface, #ffffff);
  border: 1px solid var(--border-color, #e2e8f0);
  color: var(--text-primary, #0f172a);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.pagination-btn:hover:not(:disabled) {
  border-color: var(--color-gold, #c5a059);
  color: var(--color-gold, #c5a059);
  background: rgba(197, 160, 89, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(197, 160, 89, 0.15);
}

.pagination-btn.active {
  background: linear-gradient(135deg, #d4af37, #aa8222);
  color: #ffffff;
  border-color: #aa8222;
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.4);
}

.pagination-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

.pagination-btn-arrow {
  gap: 0.4rem;
  font-weight: 600;
  padding: 0 1rem;
}

.pagination-info {
  font-size: 0.92rem;
  color: var(--text-muted, #64748b);
  font-weight: 600;
}

/* ==========================================================================
   HEADER SEPET BUTONU & BADGE
   ========================================================================== */
.header-cart-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: #ffffff;
  border: 1.5px solid var(--border-medium, #cbd5e1);
  padding: 0.55rem 1.15rem;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}

.header-cart-btn:hover {
  border-color: var(--color-gold, #c5a059);
  background: #fdfbf7;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(197, 160, 89, 0.2);
}

.cart-icon-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary, #0f172a);
}

.header-cart-btn:hover .cart-icon-wrap {
  color: var(--color-gold-hover, #a67c2e);
}

.cart-badge-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(239, 68, 68, 0.4);
  border: 2px solid #ffffff;
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cart-badge-count.pop {
  transform: scale(1.3);
}

.cart-btn-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-primary, #0f172a);
  letter-spacing: 0.01em;
}

/* ==========================================================================
   CART DRAWER & OVERLAY (SEPET ÇEKMECESİ)
   ========================================================================== */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cart-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 440px;
  background: #ffffff;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 32px rgba(15, 23, 42, 0.2);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-drawer.active {
  transform: translateX(0);
}

.cart-drawer-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-light, #e2e8f0);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f8fafc;
}

.cart-header-title {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.cart-header-title svg {
  color: var(--color-gold, #c5a059);
}

.cart-header-title h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-primary, #0f172a);
  margin: 0;
}

.cart-items-count-badge {
  background: rgba(197, 160, 89, 0.15);
  color: #926f25;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: 9999px;
}

.cart-drawer-close {
  background: transparent;
  border: none;
  font-size: 1.2rem;
  color: #64748b;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.cart-drawer-close:hover {
  background: #e2e8f0;
  color: #0f172a;
}

/* Sepet İçeriği */
.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3.5rem 1rem;
  color: #94a3b8;
}

.cart-empty-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
  color: #cbd5e1;
}

.cart-empty-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary, #0f172a);
  margin-bottom: 0.4rem;
}

.cart-empty-text {
  font-size: 0.85rem;
  color: var(--text-secondary, #64748b);
  max-width: 260px;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.btn-start-shopping {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--text-primary, #0f172a);
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 700;
  padding: 0.65rem 1.25rem;
  border-radius: 10px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-start-shopping:hover {
  background: var(--color-gold, #c5a059);
  color: #000000;
}

/* Sepet Ürün Kartı */
.cart-item-row {
  display: flex;
  gap: 1rem;
  padding: 0.9rem;
  border: 1px solid var(--border-light, #e2e8f0);
  border-radius: 12px;
  background: #ffffff;
  transition: all 0.2s ease;
}

.cart-item-row:hover {
  border-color: var(--border-medium, #cbd5e1);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
}

.cart-item-img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 8px;
  background: #f1f5f9;
  flex-shrink: 0;
}

.cart-item-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cart-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
}

.cart-item-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-primary, #0f172a);
  line-height: 1.3;
  margin: 0;
}

.cart-item-delete {
  background: none;
  border: none;
  color: #94a3b8;
  cursor: pointer;
  padding: 2px 4px;
  font-size: 1rem;
  line-height: 1;
  transition: color 0.15s ease;
}

.cart-item-delete:hover {
  color: #ef4444;
}

.cart-item-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.6rem;
}

.cart-item-price {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--color-gold-hover, #a67c2e);
}

.cart-qty-control {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--border-medium, #cbd5e1);
  border-radius: 8px;
  overflow: hidden;
  background: #f8fafc;
}

.cart-qty-btn {
  width: 28px;
  height: 28px;
  background: transparent;
  border: none;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary, #0f172a);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease;
}

.cart-qty-btn:hover {
  background: #e2e8f0;
}

.cart-qty-val {
  min-width: 26px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary, #0f172a);
}

/* Sepet Alt Toplam & Aksiyonlar */
.cart-drawer-footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--border-light, #e2e8f0);
  background: #f8fafc;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  color: var(--text-secondary, #64748b);
  margin-bottom: 0.4rem;
}

.cart-summary-row.total {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-primary, #0f172a);
  margin-top: 0.6rem;
  padding-top: 0.6rem;
  border-top: 1px dashed var(--border-medium, #cbd5e1);
  margin-bottom: 1.2rem;
}

.cart-total-val {
  color: var(--color-gold-hover, #a67c2e);
}

.cart-drawer-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.btn-whatsapp-order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  width: 100%;
  background: #25d366;
  color: #0b141a;
  font-weight: 800;
  font-size: 0.98rem;
  padding: 0.9rem 1.5rem;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
  transition: all 0.25s ease;
  cursor: pointer;
}

.btn-whatsapp-order:hover {
  background: #22bf5b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  color: #000000;
}

.btn-whatsapp-order:disabled,
.btn-whatsapp-order.disabled {
  opacity: 0.45;
  pointer-events: none;
  cursor: not-allowed;
  box-shadow: none;
}

.btn-clear-cart {
  background: transparent;
  border: none;
  color: #94a3b8;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0.4rem;
  text-align: center;
  transition: color 0.15s ease;
}

.btn-clear-cart:hover {
  color: #ef4444;
  text-decoration: underline;
}

/* Hızlı İnceleme Modalı İçindeki Sepete Ekle Butonu */
.modal-cart-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  width: 100%;
}

.modal-qty-control {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--border-medium, #cbd5e1);
  border-radius: 10px;
  background: #f8fafc;
  height: 48px;
}

.modal-qty-btn {
  width: 40px;
  height: 100%;
  background: transparent;
  border: none;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary, #0f172a);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease;
}

.modal-qty-btn:hover {
  background: #e2e8f0;
}

.modal-qty-val {
  min-width: 36px;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary, #0f172a);
}

.btn-modal-addcart {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  background: linear-gradient(135deg, #c5a059 0%, #b08d48 100%);
  color: #0b0f19;
  font-weight: 800;
  font-size: 0.98rem;
  height: 48px;
  padding: 0 1.5rem;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(197, 160, 89, 0.25);
  transition: all 0.2s ease;
}

.btn-modal-addcart:hover {
  background: linear-gradient(135deg, #d4af65 0%, #bd9851 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(197, 160, 89, 0.4);
  color: #000000;
}

