/* =============================================
   SoftGün Yazılım — E-Ticaret CSS
   Tema: Turuncu (#FF6600) + Beyaz
   Yazı Tipi: Inter (Google Fonts)
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ======== DEĞİŞKENLER ======== */
:root {
  --orange:        #FF6600;
  --orange-dark:   #E55A00;
  --orange-light:  #FF8533;
  --orange-pale:   #FFF3EB;
  --orange-ultra:  #FFF8F3;
  --white:         #FFFFFF;
  --gray-50:       #F9FAFB;
  --gray-100:      #F3F4F6;
  --gray-200:      #E5E7EB;
  --gray-300:      #D1D5DB;
  --gray-400:      #9CA3AF;
  --gray-500:      #6B7280;
  --gray-600:      #4B5563;
  --gray-700:      #374151;
  --gray-800:      #1F2937;
  --gray-900:      #111827;
  --font:          'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --shadow-sm:     0 1px 3px rgba(0,0,0,.08);
  --shadow-md:     0 4px 12px rgba(0,0,0,.10);
  --shadow-lg:     0 8px 24px rgba(0,0,0,.12);
  --shadow-orange: 0 4px 16px rgba(255,102,0,.30);
  --r-sm:  6px;
  --r-md:  10px;
  --r-lg:  14px;
  --r-xl:  20px;
  --ease:  all .25s ease;
}

/* ======== RESET ======== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a  { text-decoration: none; color: inherit; transition: var(--ease); }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; outline: none; font-family: var(--font); }
.sr-only { position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); }

/* ======== GENEL YARDIMCILAR ======== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }

.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  position: relative;
  padding-left: 14px;
}
.section-title::before {
  content: '';
  position: absolute;
  left: 0; top: 4px;
  width: 4px; height: calc(100% - 8px);
  background: var(--orange);
  border-radius: 2px;
}

.btn-orange {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 24px;
  background: var(--orange);
  color: var(--white);
  font-size: .875rem; font-weight: 600;
  border-radius: var(--r-md);
  transition: var(--ease);
  white-space: nowrap;
  border: none;
}
.btn-orange:hover {
  background: var(--orange-dark);
  box-shadow: var(--shadow-orange);
  transform: translateY(-1px);
  color: var(--white);
}

.btn-outline-orange {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px;
  background: transparent;
  color: var(--orange);
  font-size: .875rem; font-weight: 600;
  border: 2px solid var(--orange);
  border-radius: var(--r-md);
  transition: var(--ease);
}
.btn-outline-orange:hover { background: var(--orange); color: var(--white); }

.btn-white {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 18px;
  background: var(--white);
  color: var(--gray-900);
  font-size: .8rem; font-weight: 700;
  border-radius: var(--r-md);
  transition: var(--ease);
}
.btn-white:hover { background: rgba(255,255,255,.9); }

.view-all-link {
  font-size: .83rem; font-weight: 600;
  color: var(--orange);
  display: flex; align-items: center; gap: 4px;
}
.view-all-link:hover { color: var(--orange-dark); }

/* ======== SAYFA YÜKLEYİCİ ======== */
.page-loader {
  position: fixed; inset: 0;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  z-index: 99999;
  transition: opacity .5s ease;
}
.page-loader.hidden { opacity: 0; pointer-events: none; }
.loader-ring {
  width: 50px; height: 50px;
  border: 4px solid var(--orange-pale);
  border-top-color: var(--orange);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ======== TOP BAR ======== */
.top-bar {
  background: #f8fafc;
  color: #64748b;
  font-size: .78rem;
  padding: 8px 0;
  border-bottom: 1px solid #e2e8f0;
}
.top-bar .container {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
}
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 16px; }
.top-bar-left span strong { color: var(--gray-800); }
.top-bar a { transition: var(--ease); color: #475569; }
.top-bar a:hover { color: var(--orange); }
.top-bar-divider { color: #cbd5e1; }

/* ======== HEADER ======== */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  position: sticky; top: 0; z-index: 1000;
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px 0;
}

/* Logo */
.site-logo { display: flex; align-items: center; gap: 10px; }
.logo-mark {
  width: 42px; height: 42px;
  background: var(--orange);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-mark svg { width: 24px; height: 24px; fill: white; }
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-name { font-size: 1.15rem; font-weight: 800; color: var(--gray-900); letter-spacing: -.3px; }
.logo-name span { color: var(--orange); }
.logo-tagline { font-size: .68rem; color: var(--gray-400); font-weight: 500; letter-spacing: .5px; text-transform: uppercase; }

/* Arama */
.header-search { position: relative; }
.search-form { display: flex; }
.search-input {
  width: 100%;
  padding: 12px 18px;
  border: 2px solid var(--gray-200); border-right: none;
  border-radius: var(--r-md) 0 0 var(--r-md);
  font-size: .875rem; font-family: var(--font);
  color: var(--gray-800); background: var(--gray-50);
  transition: var(--ease); outline: none;
}
.search-input:focus { border-color: var(--orange); background: var(--white); }
.search-input::placeholder { color: var(--gray-400); }
.search-btn {
  padding: 12px 22px;
  background: var(--orange);
  color: var(--white);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-size: .85rem; font-weight: 600;
  transition: var(--ease);
  display: flex; align-items: center; gap: 6px;
}
.search-btn:hover { background: var(--orange-dark); }
.search-btn svg { width: 16px; height: 16px; }

/* Header eylemler */
.header-actions { display: flex; align-items: center; gap: 6px; }
.header-action-btn {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  padding: 8px 12px;
  border-radius: var(--r-md);
  background: transparent;
  color: var(--gray-700);
  font-size: .68rem; font-weight: 500;
  transition: var(--ease);
  position: relative;
  border: 1px solid transparent;
}
.header-action-btn:hover {
  background: var(--orange-pale);
  color: var(--orange);
  border-color: var(--orange);
}
.header-action-btn svg { width: 22px; height: 22px; stroke: currentColor; fill: none; }
.action-badge {
  position: absolute; top: 4px; right: 8px;
  min-width: 18px; height: 18px;
  background: var(--orange); color: var(--white);
  border-radius: 50%;
  font-size: .65rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--white);
}
.mobile-menu-toggle {
  display: none;
  background: none; border: none;
  padding: 8px; cursor: pointer;
  flex-direction: column; gap: 5px;
}
.mobile-menu-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--gray-700); border-radius: 2px;
  transition: var(--ease);
}

/* ======== NAV MENU (PÜRÜZSÜZ GEÇİŞ VE YENİ ANIMASYON) ======== */
.nav-menu-bar {
  background: var(--white);
  border-bottom: 2px solid var(--gray-100);
}
.nav-list { display: flex; align-items: stretch; }
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 5px;
  padding: 14px 16px;
  font-size: .84rem; font-weight: 500;
  color: var(--gray-700);
  white-space: nowrap;
  transition: var(--ease);
  border-bottom: 3px solid transparent;
}
.nav-link:hover, .nav-item:hover .nav-link {
  color: var(--orange);
  border-bottom-color: var(--orange);
}
.nav-link svg { width: 12px; height: 12px; stroke: currentColor; fill: none; transition: var(--ease); }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute; top: 100%; left: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-top: 3px solid var(--orange);
  border-radius: 0 var(--r-md) var(--r-md) var(--r-md);
  box-shadow: var(--shadow-lg);
  min-width: 220px; z-index: 999;
  opacity: 0; visibility: hidden;
  transform: translateY(12px);
  transition: transform .25s cubic-bezier(0.16, 1, 0.3, 1), opacity .25s ease, visibility .25s ease;
}
.nav-item:hover .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown-link {
  display: block; padding: 10px 18px;
  font-size: .83rem; color: var(--gray-600);
  transition: var(--ease);
  border-bottom: 1px solid var(--gray-100);
}
.dropdown-link:last-child { border-bottom: none; }
.dropdown-link:hover { background: var(--orange-pale); color: var(--orange); padding-left: 24px; }

/* ======== STORY HİGHLİGHTS (YATAY KAYDIRILABİLİR HİKAYELER) ======== */
.story-highlights {
  padding: 16px 0 8px;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  width: 100%;
}
.story-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Hide scrollbar Firefox */
  padding: 8px 16px;
  margin: -8px 0;
}
.story-track::-webkit-scrollbar {
  display: none; /* Hide scrollbar Chrome/Safari */
}
@media (min-width: 1200px) {
  .story-track {
    justify-content: center;
  }
}
.story-item {
  scroll-snap-align: start;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 76px;
  text-align: center;
  cursor: pointer;
}
.story-avatar-wrap {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF6600 0%, #FF8533 50%, #FFB380 100%);
  padding: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
}
.story-item:hover .story-avatar-wrap {
  transform: scale(1.06);
}
.story-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--white);
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.story-avatar svg {
  width: 24px;
  height: 24px;
  stroke: var(--orange);
  fill: none;
}
.story-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.story-label {
  font-size: .7rem;
  font-weight: 700;
  color: var(--gray-700);
  margin-top: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  transition: var(--ease);
}
.story-item:hover .story-label {
  color: var(--orange-dark);
}

/* ======== HERO SLIDER (PREMİUM FADE GEÇİŞLİ & METİN ÇAKIŞMASIZ) ======== */
.hero-section { padding: 20px 0 10px; background: var(--gray-50); }
.hero-slider-wrapper { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.slider-container { position: relative; height: 400px; }
.slider-track { position: relative; height: 100%; width: 100%; overflow: hidden; }
.slide {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0; visibility: hidden; z-index: 1;
  transition: opacity .6s cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility .6s ease;
  border-radius: var(--r-lg);
}
.slide.active {
  opacity: 1; visibility: visible; z-index: 2;
}
.slide-bg { width: 100%; height: 100%; }

.slide-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: center;
  padding: 40px 60px;
  background: linear-gradient(90deg, rgba(255,255,255,.94) 45%, transparent 75%);
}
.slide-tag {
  font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--orange); margin-bottom: 8px;
}
.slide-title {
  font-size: 2.4rem; font-weight: 900; line-height: 1.15;
  color: var(--gray-900); margin-bottom: 4px;
}
.slide-title span { color: var(--orange); }
.slide-subtitle { font-size: .9rem; color: var(--gray-600); margin-bottom: 16px; max-width: 360px; }
.slide-features { display: flex; gap: 20px; margin-bottom: 24px; flex-wrap: wrap; }
.slide-feature {
  display: flex; align-items: center; gap: 6px;
  font-size: .75rem; color: var(--gray-600); font-weight: 500;
}
.slide-feature svg { width: 16px; height: 16px; stroke: var(--orange); fill: none; flex-shrink: 0; }

/* Slider butonları */
.slider-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 42px; height: 42px;
  background: var(--white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md); z-index: 10;
  transition: var(--ease);
  border: 1px solid var(--gray-200);
}
.slider-btn:hover { background: var(--orange); border-color: var(--orange); }
.slider-btn:hover svg { stroke: white; }
.slider-btn svg { width: 18px; height: 18px; stroke: var(--gray-600); fill: none; }
.slider-prev { left: 16px; }
.slider-next { right: 16px; }

.slider-dots {
  display: flex; justify-content: center; gap: 8px;
  position: absolute; bottom: 16px;
  left: 50%; transform: translateX(-50%);
  z-index: 10;
}
.dot {
  width: 8px; height: 8px;
  background: rgba(255,255,255,.6); border-radius: 50%;
  cursor: pointer; transition: var(--ease); border: none;
}
.dot.active { background: var(--orange); width: 24px; border-radius: 4px; }

.discount-badge {
  position: absolute; top: 20px; right: 20px;
  background: var(--orange); color: var(--white);
  border-radius: var(--r-md); padding: 10px 14px;
  text-align: center; font-weight: 900;
  box-shadow: var(--shadow-orange);
  animation: pulse 2s infinite;
}
.discount-badge .pct { font-size: 1.4rem; line-height: 1; }
.discount-badge .label { font-size: .65rem; text-transform: uppercase; letter-spacing: .5px; opacity: .9; }
@keyframes pulse { 0%,100%{ transform:scale(1); } 50%{ transform:scale(1.04); } }

/* ======== ÖZELLİKLER BANDİ ======== */
.features-band {
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  padding: 32px 0;
}
.features-band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  border-right: 1px solid var(--gray-200);
}
.feat-item:last-child {
  border-right: none;
}
.feat-icon-wrap {
  width: 54px;
  height: 54px;
  background: #FFF0E6;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feat-icon-wrap svg {
  width: 24px;
  height: 24px;
  stroke: var(--orange);
  fill: none;
}
.feat-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 2px;
}
.feat-text p {
  font-size: 0.78rem;
  color: var(--gray-400);
  font-weight: 500;
}

/* ======== ALT BANNERLAR ======== */
.sub-banners { padding: 12px 0 24px; background: var(--gray-50); }
.sub-banners-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.sub-banner {
  border-radius: var(--r-lg); overflow: hidden;
  position: relative; min-height: 220px;
  cursor: pointer; box-shadow: var(--shadow-sm);
  transition: var(--ease);
}
.sub-banner:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.sub-banner-bg { width: 100%; }
.sub-banner-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: center;
  padding: 24px 28px;
}
.sub-banner-1 .sub-banner-overlay { background: linear-gradient(90deg,rgba(245,239,230,.95) 55%,transparent 100%); }
.sub-banner-2 .sub-banner-overlay { background: linear-gradient(90deg,rgba(238,242,255,.95) 55%,transparent 100%); }
.sub-banner-tag { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--orange); margin-bottom: 6px; }
.sub-banner-title { font-size: 1.15rem; font-weight: 800; color: var(--gray-900); line-height: 1.2; margin-bottom: 6px; }
.sub-banner-desc { font-size: .75rem; color: var(--gray-500); margin-bottom: 14px; }

/* ======== KATEGORİLER ======== */
.quick-cats { padding: 40px 0; background: var(--white); }
.quick-cats-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.cats-grid { display: grid; grid-template-columns: repeat(8, 1fr); gap: 16px; }
.cat-card {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 16px 12px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  text-align: center; cursor: pointer;
  transition: var(--ease);
}
.cat-card:hover {
  border-color: var(--orange);
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 102, 0, 0.08);
}
.cat-icon {
  width: 48px; height: 48px;
  background: var(--gray-50); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: var(--ease);
  border: 1px solid var(--gray-100);
}
.cat-card:hover .cat-icon { background: var(--orange-pale); border-color: var(--orange-light); }
.cat-icon svg { width: 22px; height: 22px; stroke: var(--gray-500); fill: none; transition: var(--ease); }
.cat-card:hover .cat-icon svg { stroke: var(--orange); }
.cat-name { font-size: .78rem; font-weight: 600; color: var(--gray-700); transition: var(--ease); }
.cat-card:hover .cat-name { color: var(--orange-dark); }

/* ======== PRODUCT CAROUSELS ======== */
.product-slider-section {
  padding: 40px 0;
}
.slider-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.carousel-wrapper {
  position: relative;
  width: 100%;
}
.c-prev, .c-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: var(--ease);
  z-index: 10;
  cursor: pointer;
  color: var(--gray-700);
}
.c-prev {
  left: -21px;
}
.c-next {
  right: -21px;
}
.c-prev:hover, .c-next:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  box-shadow: var(--shadow-orange);
}
.c-prev svg, .c-next svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.8;
}
.products-carousel {
  position: relative;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  scrollbar-width: none;
  padding: 12px 6px;
  margin: -12px -6px;
}
.products-carousel::-webkit-scrollbar {
  display: none;
}
.products-carousel-track {
  display: flex;
  gap: 16px;
}
.carousel-item-wrap {
  scroll-snap-align: start;
  flex-shrink: 0;
  width: 224px;
  min-width: 224px;
  box-sizing: border-box;
}

/* ======== ÜRÜN KART ======== */
.product-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  transition: var(--ease);
  cursor: pointer;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  border-color: var(--orange);
  box-shadow: 0 8px 30px rgba(255,102,0,.12);
  transform: translateY(-2px);
}
.product-img-wrap {
  position: relative;
  background: var(--gray-50);
  overflow: hidden;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-img-wrap a { display: block; width: 100%; height: 100%; }
.product-img-wrap img {
  width: 100%; height: 100%;
  object-fit: contain; padding: 16px;
  transition: transform .4s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.04); }

.product-labels {
  position: absolute; top: 10px; left: 10px;
  display: flex; flex-direction: column; gap: 4px;
}
.product-label {
  display: inline-block; padding: 3px 8px;
  color: var(--white); font-size: .65rem; font-weight: 700;
  border-radius: 4px; text-transform: uppercase;
}
.label-new  { background: #10B981; }
.label-hot  { background: #EF4444; }
.label-sale { background: var(--orange); }

.product-wishlist {
  position: absolute; top: 10px; right: 10px;
  width: 34px; height: 34px;
  background: var(--white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
  opacity: 1;
  transition: var(--ease);
  border: 1px solid var(--gray-200);
}
.product-wishlist:hover { background: #FEF2F2; border-color: #EF4444; }
.product-wishlist svg { width: 16px; height: 16px; stroke: var(--gray-400); fill: none; transition: var(--ease); }
.product-wishlist:hover svg { stroke: #EF4444; }

.product-body { padding: 14px; display: flex; flex-direction: column; flex-grow: 1; justify-content: space-between; }
.product-brand { font-size: .68rem; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; color: var(--orange); margin-bottom: 4px; }
.product-name {
  font-size: .84rem; font-weight: 600; color: var(--gray-800);
  margin-bottom: 8px; line-height: 1.35;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  height: 2.7em;
}
.product-name a { color: inherit; }
.product-name a:hover { color: var(--orange); }

.product-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 8px; }
.stars { display: flex; gap: 2px; }
.star { width: 12px; height: 12px; fill: #FBBF24; stroke: #FBBF24; }
.star-empty { fill: var(--gray-200); stroke: var(--gray-200); }
.rating-count { font-size: .7rem; color: var(--gray-400); }

.product-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 12px; flex-wrap: wrap; }
.price-current { font-size: 1.1rem; font-weight: 800; color: var(--gray-900); }
.price-old     { font-size: .8rem; color: var(--gray-400); text-decoration: line-through; }
.price-save    { font-size: .72rem; font-weight: 700; color: #10B981; background: #ECFDF5; padding: 2px 6px; border-radius: 4px; }

/* Sepete Ekle Butonu */
.product-add-btn {
  width: 100%; padding: 10px;
  background: var(--orange); color: var(--white);
  border-radius: var(--r-md);
  font-size: .83rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  opacity: 0;
  transform: translateY(12px);
  transition: transform .3s cubic-bezier(0.16, 1, 0.3, 1), opacity .3s ease;
}
.product-card:hover .product-add-btn {
  opacity: 1;
  transform: translateY(0);
}
.product-add-btn:hover { background: var(--orange-dark); box-shadow: var(--shadow-orange); }
.product-add-btn svg { width: 16px; height: 16px; stroke: white; fill: none; }
.product-add-btn.added { background: #10B981; }

/* ======== KAMPANYA BANNERLAR ======== */
.promo-banner-section { padding: 40px 0; }
.promo-banner-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
.promo-banner {
  border-radius: var(--r-lg); overflow: hidden;
  position: relative; min-height: 160px;
  display: flex; align-items: center; padding: 24px;
  cursor: pointer; transition: var(--ease);
}
.promo-banner:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.promo-bg-1 { background: linear-gradient(135deg, #FF6600 0%, #FF8533 60%, #FFB380 100%); }
.promo-bg-2 { background: linear-gradient(135deg, #1F2937 0%, #374151 60%, #4B5563 100%); }
.promo-bg-3 { background: linear-gradient(135deg, #FF6600 0%, #cc5200 100%); }
.promo-content { position: relative; z-index: 1; }
.promo-tag   { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,.8); margin-bottom: 6px; }
.promo-title { font-size: 1.35rem; font-weight: 900; color: var(--white); margin-bottom: 10px; line-height: 1.2; }
.promo-desc  { font-size: .78rem; color: rgba(255,255,255,.85); margin-bottom: 14px; }

/* ======== FOOTER ======== */
.footer-newsletter {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 32px 0;
}
.newsletter-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.newsletter-info { display: flex; align-items: center; gap: 16px; }
.newsletter-icon {
  width: 52px; height: 52px;
  background: var(--orange-pale); border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.newsletter-icon svg { width: 24px; height: 24px; stroke: var(--orange); fill: none; }
.newsletter-label { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--orange); margin-bottom: 4px; }
.newsletter-title { font-size: 1.15rem; font-weight: 800; color: var(--gray-900); margin-bottom: 2px; }
.newsletter-desc  { font-size: .8rem; color: var(--gray-500); }
.newsletter-form  { display: flex; max-width: 480px; width: 100%; flex: 1; }
.newsletter-input {
  flex: 1; padding: 13px 18px;
  border: 2px solid var(--gray-200); border-right: none;
  border-radius: var(--r-md) 0 0 var(--r-md);
  font-size: .875rem; font-family: var(--font);
  outline: none; transition: var(--ease); background: var(--white);
}
.newsletter-input:focus { border-color: var(--orange); }
.newsletter-btn {
  padding: 13px 24px;
  background: var(--orange); color: var(--white);
  font-weight: 700; font-size: .875rem;
  border-radius: 0 var(--r-md) var(--r-md) 0;
  transition: var(--ease); font-family: var(--font);
  display: flex; align-items: center; gap: 6px;
}
.newsletter-btn:hover { background: var(--orange-dark); }

.site-footer { background: var(--white); padding: 50px 0 0; border-top: 1px solid var(--gray-100); }
.footer-grid {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 40px; padding-bottom: 40px;
  border-bottom: 1px solid var(--gray-200);
}
.footer-brand .site-logo { margin-bottom: 14px; }
.footer-brand-desc { font-size: .83rem; color: var(--gray-500); line-height: 1.7; margin-bottom: 18px; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.footer-contact-item { display: flex; align-items: center; gap: 8px; font-size: .83rem; color: var(--gray-600); }
.footer-contact-item svg { width: 16px; height: 16px; stroke: var(--orange); fill: none; flex-shrink: 0; }
.footer-contact-item a:hover { color: var(--orange); }
.footer-socials { display: flex; gap: 8px; }
.social-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  transition: var(--ease); color: var(--gray-500);
  border: 1px solid var(--gray-200);
}
.social-btn:hover { background: var(--orange); color: var(--white); border-color: var(--orange); }
.social-btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; }

.footer-col-title { font-size: .9rem; font-weight: 800; color: var(--gray-900); margin-bottom: 16px; text-transform: uppercase; letter-spacing: .5px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: .83rem; color: var(--gray-500); transition: var(--ease); }
.footer-links a:hover { color: var(--orange); padding-left: 6px; }

.footer-bottom { background: var(--gray-50); padding: 18px 0; border-top: 1px solid var(--gray-200); }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-bottom-links { display: flex; gap: 16px; }
.footer-bottom-links a { font-size: .75rem; color: var(--gray-400); transition: var(--ease); }
.footer-bottom-links a:hover { color: var(--orange); }
.footer-copyright { font-size: .75rem; color: var(--gray-400); }
.footer-copyright strong { color: var(--orange); }
.payment-icons { display: flex; align-items: center; gap: 10px; }
.payment-icon {
  height: 26px; padding: 4px 10px;
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--r-sm);
  font-size: .72rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-600);
}
.pay-visa    { color: #1A1F71; }
.pay-mc      { color: #EB001B; }
.pay-maestro { color: #0099DF; }

/* ======== MOBİL DRAWER (TAM EKRAN KAPLAYAN SÜRÜM) ======== */
.mobile-drawer {
  position: fixed; top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: var(--white); z-index: 9999;
  transform: translateX(-100%); transition: transform .3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-lg); overflow-y: auto;
}
.mobile-drawer.open { transform: translateX(0); }
.drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.5); z-index: 9998;
  opacity: 0; visibility: hidden; transition: var(--ease);
}
.drawer-overlay.open { opacity: 1; visibility: visible; }
.drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid var(--gray-200);
  background: var(--orange-pale);
}
.drawer-close {
  width: 36px; height: 36px;
  background: var(--white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--gray-200);
}
.drawer-close svg { width: 18px; height: 18px; stroke: var(--gray-600); fill: none; }
.drawer-nav { padding: 24px 0; }
.drawer-nav-item { border-bottom: 1px solid var(--gray-100); }
.drawer-nav-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px;
  font-size: .95rem; font-weight: 500; color: var(--gray-700);
  transition: var(--ease);
}
.drawer-nav-link:hover { color: var(--orange); background: var(--orange-ultra); }
.drawer-nav-link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; }
.drawer-sub { display: none; background: var(--gray-50); }
.drawer-sub.open { display: block; }
.drawer-sub a { display: block; padding: 12px 36px; font-size: .88rem; color: var(--gray-500); border-bottom: 1px solid var(--gray-100); }
.drawer-sub a:hover { color: var(--orange); }

/* ======== SCROLL TO TOP ======== */
.scroll-top {
  position: fixed; bottom: 24px; right: 24px;
  width: 44px; height: 44px;
  background: var(--orange); color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-orange); z-index: 999;
  opacity: 0; visibility: hidden; transition: var(--ease); border: none;
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--orange-dark); transform: translateY(-3px); }
.scroll-top svg { width: 20px; height: 20px; stroke: white; fill: none; }

/* ======== ANİMASYONLAR ======== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in-up { animation: fadeInUp .5s ease forwards; }

/* ======== CART ======== */
.cart-container { max-width: 1100px; margin: 40px auto; padding: 0 20px; }
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th, .cart-table td { padding: 14px 12px; border-bottom: 1px solid var(--gray-200); text-align: left; }
.cart-table th { font-size: .8rem; font-weight: 700; text-transform: uppercase; color: var(--gray-500); }
.cart-summary { background: var(--gray-50); border-radius: var(--r-lg); padding: 24px; margin-top: 24px; }

/* ======== ULTRA PREMIUM CENTERED FORM CARD ======== */
.auth-centered-card {
  max-width: 480px;
  margin: 60px auto;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-xl);
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
  transition: var(--ease);
}
.auth-centered-card:hover {
  border-color: var(--orange);
}
.auth-social-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 11px; border: 2px solid var(--gray-200);
  border-radius: var(--r-md); font-size: .83rem; font-weight: 600;
  color: var(--gray-700); background: var(--white); transition: var(--ease);
}
.auth-social-btn:hover {
  background: var(--gray-50); border-color: var(--gray-300);
}
.auth-separator {
  display: flex; align-items: center; text-align: center;
  color: var(--gray-400); font-size: .78rem; font-weight: 600;
  margin: 20px 0;
}
.auth-separator::before, .auth-separator::after {
  content: ''; flex: 1; border-bottom: 1px solid var(--gray-200);
}
.auth-separator:not(:empty)::before { margin-right: .5em; }
.auth-separator:not(:empty)::after { margin-left: .5em; }

/* Custom Checkbox */
.custom-checkbox {
  accent-color: var(--orange);
  width: 17px;
  height: 17px;
  cursor: pointer;
}

/* Active Filter Pills */
.active-filters-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange-pale);
  color: var(--orange-dark);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: .78rem;
  font-weight: 600;
  border: 1px solid var(--orange-light);
}
.filter-pill-close {
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  color: var(--orange-dark);
  transition: var(--ease);
}
.filter-pill-close:hover {
  color: var(--orange);
}

/* ======== RESPONSİVE VE MOBİL UYUMLULUK (TAM RESPONSİVE FİX) ======== */
@media (max-width: 1200px) {
  .cats-grid          { grid-template-columns: repeat(6, 1fr); }
}

@media (max-width: 992px) {
  .header-actions { display: none; }
  .nav-list { display: none; }
  .mobile-menu-toggle { display: flex; }
  .features-band-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .feat-item { border-right: none; }
  .feat-item:nth-child(even) { border-left: 1px solid var(--gray-200); padding-left: 24px; }
  .promo-banner-grid { grid-template-columns: 1fr 1fr; }
  .cats-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 520px) {
  /* Üyelik sayfalarındaki kartın taşmasını çözmek için mobil genişliği */
  .auth-centered-card {
    width: 100% !important;
    margin: 20px 0 !important;
    padding: 28px 20px !important;
    border-radius: var(--r-lg) !important;
    box-sizing: border-box !important;
    box-shadow: var(--shadow-sm) !important;
  }
}

@media (max-width: 768px) {
  .c-prev, .c-next { display: none !important; }
  .top-bar { display: none; }

  /* Header Düzeni (Taşmayan, Mobil Uyumlu Grid Sütunları) */
  .header-inner {
    grid-template-columns: 44px 1fr auto;
    grid-template-areas: 
      "toggle logo actions"
      "search search search";
    gap: 12px;
    padding: 10px 0;
    width: 100%;
    box-sizing: border-box;
  }
  .mobile-menu-toggle { grid-area: toggle; display: flex; }
  .site-logo          { grid-area: logo; justify-content: center; }
  .header-search      { grid-area: search; width: 100%; margin-top: 4px; box-sizing: border-box; }
  .header-actions     { grid-area: actions; display: flex; gap: 8px; }
  .header-action-btn span { display: none; }
  .search-btn span    { display: none; }

  /* Arama çubuğu buton sığdırma ve esnetme (min-width: 0 ekleyerek flexbox taşmasını çözüyoruz) */
  .search-form {
    width: 100%;
    box-sizing: border-box;
  }
  .search-input {
    flex-grow: 1;
    min-width: 0;
  }

  .sub-banners-grid { grid-template-columns: 1fr; }
  
  /* Carousel mobil ayarı: Elle kaydırmalı CSS Snap uyumu */
  .carousel-item-wrap {
    min-width: calc(50% - 8px);
  }
  
  /* Mobilde Sepete Ekle Butonu her zaman açık */
  .product-add-btn {
    opacity: 1;
    transform: translateY(0);
    margin-top: 10px;
  }
  
  .cats-grid { grid-template-columns: repeat(3, 1fr); }
  .features-band-grid { grid-template-columns: 1fr; gap: 14px; }
  .feat-item { padding-left: 0 !important; border: none !important; }
  .promo-banner-grid { grid-template-columns: 1fr; }
  .newsletter-inner { flex-direction: column; align-items: flex-start; }
  .newsletter-form { max-width: 100%; }
  
  /* Slayt Taşma Düzeltmesi */
  .slider-container { height: 260px !important; }
  .slide-bg { height: 260px !important; }
  .slide-overlay { padding: 20px 24px; background: rgba(255,255,255,.94) !important; }
  .slide-title { font-size: 1.4rem !important; }
  .slide-features { display: none; }
  
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .profile-wrap { grid-template-columns: 1fr; }
  .logo-tagline { display: none; }
}

@media (max-width: 480px) {
  .cats-grid { grid-template-columns: repeat(2, 1fr); }
  .logo-tagline { display: none; }
}

/* Prevent horizontal shaking and align grids */
html, body {
  overflow-x: hidden;
  width: 100%;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  justify-content: center;
  width: 100%;
}
@media (max-width: 576px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

/* ======== STORY MODAL VIEWER ======== */
.story-modal {
  position: fixed; inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s ease;
}
.story-modal.active {
  display: flex;
  opacity: 1;
}
.story-modal-bg {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.92);
  backdrop-filter: blur(10px);
}
.story-modal-container {
  position: relative;
  width: 100%;
  max-width: 440px;
  height: 100%;
  max-height: 800px;
  background: #000;
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 50px rgba(0,0,0,.5);
  z-index: 1;
}
@media (max-width: 480px) {
  .story-modal-container {
    max-width: 100%;
    height: 100%;
    max-height: 100%;
    border-radius: 0;
  }
}
.story-modal-progress-container {
  display: flex;
  gap: 4px;
  padding: 12px 16px 0;
  position: absolute; top: 0; left: 0; right: 0;
  z-index: 10;
}
.story-progress-bar-bg {
  flex: 1;
  height: 3px;
  background: rgba(255,255,255,.35);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.story-progress-bar-fill {
  height: 100%;
  width: 0;
  background: var(--white);
  transition: width 0.1s linear;
}

.story-modal-header {
  position: absolute; top: 20px; left: 0; right: 0;
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 16px;
  z-index: 10;
}
.story-modal-user {
  display: flex; align-items: center; gap: 8px;
}
.story-modal-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--orange);
  overflow: hidden;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
}
.story-modal-avatar img {
  width: 100%; height: 100%; object-fit: contain;
}
.story-modal-username {
  color: var(--white); font-weight: 700; font-size: .85rem; text-shadow: 0 1px 4px rgba(0,0,0,.8);
}
.story-modal-close-btn {
  background: none; border: none; color: var(--white); font-size: 2rem; cursor: pointer; transition: var(--ease); text-shadow: 0 1px 4px rgba(0,0,0,.8); line-height: 1;
}
.story-modal-close-btn:hover { transform: scale(1.15); color: var(--orange); }

.story-modal-body {
  flex: 1;
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.story-modal-image-wrap {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  padding: 60px 0;
}
.story-modal-image-wrap img {
  max-width: 100%; max-height: 100%; object-fit: contain;
}
.story-modal-nav {
  position: absolute; top: 0; bottom: 0;
  width: 20%;
  background: none; border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 5;
  opacity: 0;
  transition: opacity .3s ease;
}
.story-modal-nav:hover { opacity: 1; }
.story-modal-nav-left { left: 0; justify-content: flex-start; padding-left: 16px; background: linear-gradient(90deg, rgba(0,0,0,.25), transparent); }
.story-modal-nav-right { right: 0; justify-content: flex-end; padding-right: 16px; background: linear-gradient(-90deg, rgba(0,0,0,.25), transparent); }
.story-modal-nav svg { width: 32px; height: 32px; stroke: var(--white); fill: none; stroke-width: 2.5; filter: drop-shadow(0 1px 4px rgba(0,0,0,.8)); }

.story-modal-footer {
  position: absolute; bottom: 30px; left: 0; right: 0;
  padding: 0 32px;
  text-align: center;
  z-index: 10;
}
