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

* { margin: 0; padding: 0; box-sizing: border-box; }
html { overflow-x: hidden; }

body {
  font-family: 'Inter', sans-serif;
  background: #f5f5f5;
  color: #333;
  line-height: 1.5;
  overflow-x: hidden;
  max-width: 100vw;
}
img, video, iframe { max-width: 100%; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: #333;
  color: #fff;
  font-size: 12px;
  padding: 6px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar a { color: #ccc; text-decoration: none; margin: 0 10px; transition: color .2s; }
.top-bar a:hover { color: #fff; }
.top-bar-left { display: flex; align-items: center; gap: 8px; }
.top-bar-right { display: flex; align-items: center; gap: 4px; }

/* ===== DEPRECATED (hidden) ===== */
.top-bar, .promo-bar, .countdown-banner, .categories-section, .sidebar { display: none !important; }

/* ===== MAIN HEADER — NEW CLEAN ===== */
.main-header {
  background: #fff;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #f0f0f0;
  position: sticky;
  top: 0;
  z-index: 100;
  gap: 12px;
}
.hamburger-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: #333;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.header-action-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #333;
  padding: 4px;
  transition: color 0.2s;
}
.header-action-icon:hover { color: #c8102e; }
.header-actions { display: flex; align-items: center; gap: 6px; }

/* ===== MOBILE SEARCH ===== */
.mobile-search {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
}
.mobile-search input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 14px;
  color: #333;
  background: transparent;
  font-family: 'Inter', sans-serif;
}

/* ===== PAGE CONTENT FULL WIDTH ===== */
.page-content--full {
  max-width: 100%;
  padding: 0;
}
.page-content--full .products-area {
  width: 100%;
}

/* ===== GÜNÜN FIRSAT ÜRÜNLERİ ===== */
.firsat-section {
  background: #1a1a2e;
  padding: 16px 16px 20px;
  margin: 0;
}
.firsat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.firsat-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
.firsat-tumü {
  font-size: 13px;
  color: #f5a623;
  text-decoration: none;
  font-weight: 600;
}
.firsat-tumü:hover { opacity: 0.8; }
.firsat-timer {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 6px 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 14px;
  width: fit-content;
}
.firsat-timer strong { color: #fff; font-size: 13px; }
.firsat-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.firsat-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.firsat-card:hover { transform: translateY(-2px); }
.firsat-card-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: #f5f5f5;
}
.firsat-card-body { padding: 10px; }
.firsat-card-badge {
  display: inline-block;
  background: #c8102e;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 4px;
  margin-bottom: 4px;
}
.firsat-card-shipping {
  display: inline-block;
  background: #e8f5e9;
  color: #27ae60;
  font-size: 10px;
  font-weight: 600;
  padding: 3px 7px;
  border-radius: 4px;
  margin-bottom: 4px;
}
.firsat-card-brand {
  font-size: 10px;
  color: #999;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}
.firsat-card-name {
  font-size: 11px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.4;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.firsat-card-old { font-size: 11px; color: #aaa; text-decoration: line-through; }
.firsat-card-price { font-size: 15px; font-weight: 800; color: #1a1a1a; }

/* ===== NAV BAR — scrollable ===== */
/* ===== LOGO ===== */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
  display: block;
}
.search-bar {
  flex: 1;
  max-width: 560px;
  margin: 0 40px;
  position: relative;
}
.search-bar input {
  width: 100%;
  padding: 12px 48px 12px 20px;
  border: 2px solid #eee;
  border-radius: 50px;
  font-size: 14px;
  outline: none;
  transition: border-color .2s;
  font-family: 'Inter', sans-serif;
}
.search-bar input:focus { border-color: #333; }
.search-bar .search-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  font-size: 18px;
  cursor: pointer;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}
.header-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: #333;
  font-size: 11px;
  cursor: pointer;
  transition: color .2s;
}
.header-action:hover { color: #c8102e; }
.header-action .icon { font-size: 22px; }
.header-action .badge {
  background: #c8102e;
  color: #fff;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  top: -2px;
}

/* ===== NAV BAR ===== */
.nav-bar {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
}
.nav-bar a {
  padding: 14px 18px;
  text-decoration: none;
  color: #333;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: all .2s;
}
.nav-bar a:hover, .nav-bar a.active {
  color: #c8102e;
  border-bottom-color: #c8102e;
}

/* ===== COUNTDOWN BANNER ===== */
.countdown-banner {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 40%, #0f3460 100%);
  padding: 0;
  position: relative;
  overflow: hidden;
}
.cb-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.cb-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
}
.cb-shape-1 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #e74c3c, transparent 70%);
  top: -80px; right: -60px;
  animation: cbFloat 6s ease-in-out infinite;
}
.cb-shape-2 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, #f39c12, transparent 70%);
  bottom: -60px; left: 10%;
  animation: cbFloat 8s ease-in-out infinite reverse;
}
.cb-shape-3 {
  width: 150px; height: 150px;
  background: radial-gradient(circle, #e84393, transparent 70%);
  top: 40%; left: 50%;
  animation: cbFloat 5s ease-in-out infinite;
}
@keyframes cbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -15px) scale(1.15); }
}

.cb-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 48px;
  position: relative;
  z-index: 2;
  gap: 32px;
}

/* Left side */
.cb-flash-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
  animation: cbTagPulse 2s ease-in-out infinite;
}
@keyframes cbTagPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(231,76,60,0.5); }
  50% { box-shadow: 0 0 0 10px rgba(231,76,60,0); }
}
.cb-title {
  font-size: 38px;
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}
.cb-title span {
  background: linear-gradient(135deg, #f39c12, #e74c3c, #e84393);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cb-subtitle {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* Right side */
.cb-right { text-align: center; flex-shrink: 0; }
.cb-timer-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.cb-timer {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cb-time-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 14px 18px;
  min-width: 72px;
  text-align: center;
  transition: transform 0.2s, background 0.3s;
}
.cb-time-card:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-2px);
}
.cb-time-num {
  font-size: 36px;
  font-weight: 900;
  color: #fff;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  transition: transform 0.3s, opacity 0.3s;
}
.cb-time-num.cb-flip {
  animation: cbFlipIn 0.35s ease;
}
@keyframes cbFlipIn {
  0% { transform: translateY(-8px) scale(1.1); opacity: 0.4; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}
.cb-time-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.45);
  margin-top: 6px;
}
.cb-colon {
  font-size: 32px;
  font-weight: 800;
  color: rgba(255,255,255,0.3);
  animation: cbBlink 1s step-end infinite;
  margin: 0 -2px;
  padding-bottom: 18px;
}
@keyframes cbBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

/* Urgency */
.cb-urgency {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}
.cb-urgency-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #2ecc71;
  display: inline-block;
  animation: cbDotPulse 1.5s ease-in-out infinite;
}
@keyframes cbDotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(46,204,113,0.6); transform: scale(1); }
  50% { box-shadow: 0 0 0 6px rgba(46,204,113,0); transform: scale(1.2); }
}

/* Progress bar */
.cb-progress-wrap {
  width: 100%;
  height: 3px;
  background: rgba(255,255,255,0.06);
  position: relative;
  z-index: 2;
}
.cb-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #f39c12, #e74c3c, #e84393);
  width: 0%;
  transition: width 1s linear;
  border-radius: 0 2px 2px 0;
}

/* Urgent mode (last 5 min) */
.cb-urgent .cb-time-card {
  background: rgba(231,76,60,0.15);
  border-color: rgba(231,76,60,0.4);
}
.cb-urgent .cb-time-num { color: #ff6b6b; }
.cb-urgent .cb-flash-tag { animation-duration: 0.6s; }

/* Responsive */
@media (max-width: 768px) {
  .cb-content {
    flex-direction: column;
    padding: 28px 20px 20px;
    gap: 20px;
    text-align: center;
  }
  .cb-left { order: 1; }
  .cb-right { order: 2; }
  .cb-title { font-size: 26px; }
  .cb-subtitle { font-size: 13px; }
  .cb-time-card { padding: 10px 12px; min-width: 56px; border-radius: 10px; }
  .cb-time-num { font-size: 26px; }
  .cb-colon { font-size: 24px; padding-bottom: 14px; }
  .cb-timer { gap: 6px; justify-content: center; }
  .cb-shape-1 { width: 180px; height: 180px; }
  .cb-shape-2 { width: 120px; height: 120px; }
  .cb-shape-3 { width: 80px; height: 80px; }
}
@media (max-width: 400px) {
  .cb-title { font-size: 22px; }
  .cb-time-card { padding: 8px 10px; min-width: 50px; }
  .cb-time-num { font-size: 22px; }
  .cb-colon { font-size: 20px; }
}

/* ===== PAGE LAYOUT ===== */
.page-content {
  display: flex;
  max-width: 1440px;
  margin: 0 auto;
  padding: 24px 40px;
  gap: 24px;
}

/* ===== SIDEBAR FILTERS ===== */
.sidebar {
  width: 260px;
  flex-shrink: 0;
}
.filter-group {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 12px;
}
.filter-group h3 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.filter-group h3::after { content: '▾'; font-size: 12px; color: #999; }
.filter-search {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #eee;
  border-radius: 6px;
  font-size: 12px;
  margin-bottom: 10px;
  outline: none;
  font-family: 'Inter', sans-serif;
}
.filter-search:focus { border-color: #333; }
.filter-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
  font-size: 13px;
  color: #555;
  cursor: pointer;
  transition: color .2s;
}
.filter-option:hover { color: #333; }
.filter-option input[type="checkbox"] {
  accent-color: #c8102e;
  width: 16px;
  height: 16px;
}
.filter-option .count { color: #999; font-size: 11px; margin-left: auto; }
.color-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.color-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid #eee;
  cursor: pointer;
  transition: transform .2s, border-color .2s;
}
.color-dot:hover { transform: scale(1.15); border-color: #333; }

/* ===== SORT BAR ===== */
.products-area { flex: 1; min-width: 0; }
.sort-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  background: #fff;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid #eee;
}
.sort-bar .result-count { font-size: 13px; color: #666; }
.sort-bar .result-count strong { color: #333; }
.sort-bar select {
  padding: 8px 12px;
  border: 1px solid #eee;
  border-radius: 6px;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  outline: none;
  cursor: pointer;
}

/* ===== PRODUCT GRID ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* ===== PRODUCT CARD ===== */
.product-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow .3s, transform .2s;
  position: relative;
  cursor: pointer;
}
.product-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}
.product-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: #f0f0f0;
}

/* Skeleton shimmer — görsel yüklenene kadar */
.product-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: imgShimmer 1.4s infinite;
  z-index: 0;
}
@keyframes imgShimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease, opacity .3s ease;
  opacity: 0;
  position: relative;
  z-index: 1;
}
/* Görsel yüklenince shimmer'ı gizle, görseli belirginleştir */
.product-image img[src] { animation: imgFadeIn .4s ease forwards; }
@keyframes imgFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.product-card:hover .product-image img { transform: scale(1.05); }

.badge-top-left {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.badge {
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
}
.badge-dark { background: #333; color: #fff; }
.badge-blue { background: #1a73e8; color: #fff; }
.badge-pink { background: #fce4ec; color: #c8102e; }
.discount-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #28a745;
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
}
.wishlist-btn {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  transition: all .2s;
  color: #ccc;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}
.wishlist-btn:hover { color: #c8102e; border-color: #c8102e; }
.wishlist-btn.active { color: #c8102e; }

/* Product Info */
.product-info { padding: 14px; }
.product-brand {
  font-size: 13px;
  font-weight: 700;
  color: #333;
  margin-bottom: 2px;
}
.product-name {
  font-size: 12px;
  color: #666;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
  min-height: 34px;
}
.product-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 6px;
}
.stars { color: #ffc107; font-size: 13px; letter-spacing: 1px; }
.rating-count { font-size: 11px; color: #999; }
.product-social {
  font-size: 11px;
  color: #e53935;
  margin-bottom: 8px;
  font-weight: 500;
}
.product-social::before {
  content: '';
  display: inline-block;
  width: 14px; height: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='%23e53935' stroke='%23e53935' stroke-width='2'%3E%3Cpath d='M20.84 4.61a5.5 5.5 0 00-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 00-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 000-7.78z'/%3E%3C/svg%3E") no-repeat center;
  vertical-align: -2px;
  margin-right: 3px;
}
.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.price-info { display: flex; flex-direction: column; }
.old-price {
  font-size: 12px;
  color: #999;
  text-decoration: line-through;
}
.current-price {
  font-size: 18px;
  font-weight: 800;
  color: #333;
}
.installment {
  font-size: 10px;
  color: #1a73e8;
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.installment::before {
  content: '';
  display: inline-block;
  width: 14px; height: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%231a73e8' stroke-width='2'%3E%3Crect x='1' y='4' width='22' height='16' rx='2'/%3E%3Cline x1='1' y1='10' x2='23' y2='10'/%3E%3C/svg%3E") no-repeat center;
  vertical-align: -2px;
  margin-right: 3px;
}
.add-to-cart {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: #333;
  color: #fff;
  border: none;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .2s;
}
.add-to-cart:hover { background: #c8102e; transform: scale(1.08); }

/* ===== KARGO BADGE ===== */
.shipping-badges {
  display: flex;
  gap: 8px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}
.ship-badge {
  font-size: 10px;
  padding: 3px 6px;
  border-radius: 3px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 3px;
}
.ship-free { background: #e3f2fd; color: #1565c0; }
.ship-fast { background: #333; color: #fff; }

/* ===== FOOTER ===== */
.footer {
  background: #333;
  color: #fff;
  padding: 48px 40px 24px;
  margin-top: 48px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 32px;
  max-width: 1440px;
  margin: 0 auto;
}
.footer h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #fff;
}
.footer a {
  display: block;
  color: #aaa;
  text-decoration: none;
  font-size: 13px;
  padding: 3px 0;
  transition: color .2s;
}
.footer a:hover { color: #fff; }
.footer-bottom {
  max-width: 1440px;
  margin: 32px auto 0;
  padding-top: 24px;
  border-top: 1px solid #555;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #888;
}
.footer-social { display: flex; gap: 16px; }
.footer-social a { font-size: 18px; color: #aaa; }
.footer-social a:hover { color: #fff; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 992px) {
  .sidebar { display: none; }
  .page-content { padding: 16px 20px; }
  .main-header { padding: 12px 20px; }
  .nav-bar { padding: 0 20px; }
}
@media (max-width: 768px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .top-bar { display: none; }
  .search-bar { margin: 0 8px; flex: 1; min-width: 0; }
  .search-bar input { padding: 9px 36px 9px 12px; font-size: 13px; }
  .header-actions { gap: 12px; flex-shrink: 0; }
  .header-action span:not(.icon):not(.badge) { display: none; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .current-price { font-size: 15px; }
  .product-info { padding: 10px; }
}
@media (max-width: 480px) {
  .main-header { padding: 10px 12px; }
  .logo-img { height: 30px; }
  .search-bar input { padding: 9px 36px 9px 12px; font-size: 13px; }
  .header-actions { gap: 10px; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ===== HERO SLIDER ===== */
.hero-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 380px;
}
.hero-track {
  display: flex;
  height: 100%;
  transition: transform 0.65s cubic-bezier(0.77, 0, 0.175, 1);
  will-change: transform;
}
.hero-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.hero-bg-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.9;
  pointer-events: none;
}
.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
  height: 100%;
  position: relative;
  z-index: 2;
  gap: 40px;
}
.hero-left { flex: 1; }
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #c8102e, #9c001e);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.hero-title {
  font-size: 44px;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 14px;
  letter-spacing: -1px;
}
.hero-title span {
  background: linear-gradient(135deg, #f5a623, #e74c3c, #e84393);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 440px;
}
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #c8102e, #9c001e);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 24px rgba(200,16,46,0.35);
}
.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(200,16,46,0.5);
}
.hero-right { flex-shrink: 0; }
.hero-badge-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero-stat {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  padding: 14px 24px;
  text-align: center;
  min-width: 160px;
  transition: background 0.2s, transform 0.2s;
}
.hero-stat:hover { background: rgba(255,255,255,0.14); transform: translateX(-4px); }
.hero-stat-num {
  display: block;
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.5px;
}
.hero-stat-label {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
  letter-spacing: 1px;
  margin-top: 2px;
  text-transform: uppercase;
}

/* Arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.2s, transform 0.2s;
  line-height: 1;
}
.hero-arrow:hover { background: rgba(255,255,255,0.25); transform: translateY(-50%) scale(1.1); }
.hero-prev { left: 20px; }
.hero-next { right: 20px; }

/* Dots */
.hero-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: background 0.3s, width 0.3s, border-radius 0.3s;
}
.hero-dot.active {
  background: #fff;
  width: 28px;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .hero-slider { height: 300px; }
  .hero-content { padding: 0 20px; gap: 16px; }
  .hero-title { font-size: 26px; }
  .hero-desc { font-size: 13px; margin-bottom: 18px; display: none; }
  .hero-badge-stack { flex-direction: row; gap: 8px; }
  .hero-stat { padding: 10px 14px; min-width: auto; }
  .hero-stat-num { font-size: 15px; }
  .hero-btn { padding: 10px 20px; font-size: 13px; }
  .hero-arrow { width: 36px; height: 36px; font-size: 22px; }
}

/* ===== CATEGORIES SECTION ===== */
.categories-section {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 0 40px;
}
.categories-inner {
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  max-width: 1440px;
  margin: 0 auto;
}
.categories-inner::-webkit-scrollbar { display: none; }
.cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 18px;
  text-decoration: none;
  color: #555;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
  min-width: 80px;
}
.cat-card:hover {
  color: #c8102e;
  border-bottom-color: #c8102e;
}
.cat-card:hover .cat-icon { color: #c8102e; transform: scale(1.15) translateY(-2px); }
.cat-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  transition: color 0.2s, transform 0.2s;
}
.cat-icon svg {
  width: 28px;
  height: 28px;
}

@media (max-width: 768px) {
  .categories-section { padding: 0 16px; }
  .cat-card { padding: 12px 12px; font-size: 11px; min-width: 68px; }
  .cat-icon { font-size: 22px; }
}

/* ===== PRODUCT CARD — QUICK VIEW OVERLAY ===== */
.qv-overlay-btn {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(30,30,30,0.82);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  border: none;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.25s, transform 0.25s;
  z-index: 5;
}
.product-card:hover .qv-overlay-btn {
  opacity: 1;
  transform: translateY(0);
}
.qv-overlay-btn:hover { background: rgba(200,16,46,0.9); }

/* ===== QUICK VIEW MODAL ===== */
.qv-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  pointer-events: none;
}
.qv-modal.open {
  visibility: visible;
  pointer-events: auto;
}
.qv-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 0.3s;
}
.qv-modal.open .qv-overlay { opacity: 1; }
.qv-panel {
  position: relative;
  background: #fff;
  border-radius: 20px;
  width: 90%;
  max-width: 740px;
  max-height: 90vh;
  overflow-y: auto;
  z-index: 1;
  box-shadow: 0 32px 80px rgba(0,0,0,0.3);
  transform: scale(0.9) translateY(30px);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s;
}
.qv-modal.open .qv-panel { transform: scale(1) translateY(0); opacity: 1; }
.qv-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: #f5f5f5;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  transition: background 0.2s, color 0.2s;
}
.qv-close:hover { background: #c8102e; color: #fff; }
.qv-body { display: flex; gap: 0; }
.qv-img-wrap {
  width: 50%;
  flex-shrink: 0;
  position: relative;
  background: #f8f8f8;
  border-radius: 20px 0 0 20px;
  overflow: hidden;
}
.qv-img-wrap img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}
.qv-discount {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #28a745;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 6px;
}
.qv-info {
  flex: 1;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.qv-brand { font-size: 12px; font-weight: 700; color: #c8102e; text-transform: uppercase; letter-spacing: 1px; }
.qv-name { font-size: 20px; font-weight: 700; color: #222; line-height: 1.3; }
.qv-rating { font-size: 16px; color: #f5a623; }
.qv-rating span { font-size: 12px; color: #999; margin-left: 4px; }
.qv-prices { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.qv-old { font-size: 14px; color: #999; text-decoration: line-through; }
.qv-current { font-size: 28px; font-weight: 900; color: #333; }
.qv-install { font-size: 12px; color: #1a73e8; }
.qv-actions { display: flex; gap: 10px; margin-top: auto; }
.qv-cart-btn {
  flex: 1;
  background: #333;
  color: #fff;
  border: none;
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s;
}
.qv-cart-btn:hover { background: #c8102e; }
.qv-detail-btn {
  padding: 14px 20px;
  border: 2px solid #eee;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
}
.qv-detail-btn:hover { border-color: #333; }

@media (max-width: 600px) {
  .qv-body { flex-direction: column; }
  .qv-img-wrap { width: 100%; border-radius: 20px 20px 0 0; }
  .qv-img-wrap img { min-height: 220px; }
  .qv-info { padding: 20px; }
}

/* ===== TOAST NOTIFICATIONS ===== */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}
.toast {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #1e1e1e;
  color: #fff;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  pointer-events: auto;
  transform: translateX(120%);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s;
  max-width: 340px;
  min-width: 240px;
  border-left: 4px solid #28a745;
}
.toast.show { transform: translateX(0); opacity: 1; }
.toast-success { border-left-color: #28a745; }
.toast-error { border-left-color: #c8102e; }
.toast-info { border-left-color: #1a73e8; }
.toast-warning { border-left-color: #f5a623; }
.toast-icon { font-size: 18px; flex-shrink: 0; }
.toast-msg { flex: 1; }
.toast-close {
  background: none;
  border: none;
  color: #888;
  font-size: 18px;
  cursor: pointer;
  padding: 0 0 0 8px;
  line-height: 1;
  transition: color 0.2s;
  flex-shrink: 0;
}
.toast-close:hover { color: #fff; }

/* ===== SCROLL TO TOP ===== */
.scroll-top-btn {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #c8102e;
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9000;
  box-shadow: 0 4px 16px rgba(200,16,46,0.4);
  opacity: 0;
  transform: translateY(20px) scale(0.8);
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
}
.scroll-top-btn.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.scroll-top-btn:hover {
  background: #9c001e;
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 8px 24px rgba(200,16,46,0.5);
}

/* ===== FOOTER BRAND COL ===== */
.footer-brand-col { display: flex; flex-direction: column; gap: 14px; }
.footer-logo { display: inline-block; }
.footer-logo img {
  height: 34px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  transition: opacity 0.2s;
}
.footer-logo img:hover { opacity: 1; }
.footer-desc {
  font-size: 13px;
  color: #aaa;
  line-height: 1.7;
}
.footer-socials { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  color: #aaa;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.footer-social-btn:hover { background: #c8102e; color: #fff; border-color: #c8102e; transform: translateY(-3px); }

@media (max-width: 1200px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand-col { grid-column: 1 / -1; flex-direction: row; align-items: center; gap: 24px; }
  .footer-desc { flex: 1; }
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer-brand-col { grid-column: 1 / -1; flex-direction: column; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ===== KAMPANYA UST BARI ===== */
.promo-bar { background: linear-gradient(90deg,#1a1a2e 0%,#c8102e 50%,#1a1a2e 100%); background-size: 200% auto; animation: promoGradient 4s linear infinite; color:#fff; font-size:13px; padding:10px 20px; display:flex; align-items:center; justify-content:center; gap:12px; position:relative; z-index:200; }
@keyframes promoGradient { 0%{background-position:0% center} 100%{background-position:200% center} }
.promo-bar-inner { display:flex; align-items:center; gap:12px; flex-wrap:wrap; justify-content:center; }
.promo-bar-icon { display:flex; align-items:center; opacity:.85; }
.promo-bar-btn { background:rgba(255,255,255,.18); border:1px solid rgba(255,255,255,.3); color:#fff; padding:5px 14px; border-radius:20px; font-size:12px; font-weight:700; text-decoration:none; transition:background .2s; white-space:nowrap; }
.promo-bar-btn:hover { background:rgba(255,255,255,.3); }
.promo-bar-close { position:absolute; right:14px; background:none; border:none; color:rgba(255,255,255,.6); font-size:20px; cursor:pointer; line-height:1; padding:0; transition:color .2s; }
.promo-bar-close:hover { color:#fff; }
@media(max-width:600px){ .promo-bar{font-size:11px;padding:8px 36px 8px 16px} .promo-bar-btn{display:none} }

/* ===== GUVEN ROZETLERI ===== */
.trust-bar { background:#fff; border-top:1px solid #eee; border-bottom:1px solid #eee; padding:20px 40px; margin-top:48px; }
.trust-bar-inner { display:flex; align-items:center; justify-content:center; max-width:1200px; margin:0 auto; flex-wrap:wrap; }
.trust-item { display:flex; align-items:center; gap:12px; padding:10px 32px; flex:1; min-width:160px; justify-content:center; }
.trust-divider { width:1px; height:40px; background:#eee; flex-shrink:0; }
.trust-icon { width:44px; height:44px; background:#fff5f5; border-radius:12px; display:flex; align-items:center; justify-content:center; flex-shrink:0; color:#c8102e; }
.trust-icon svg { width:22px; height:22px; }
.trust-text { display:flex; flex-direction:column; gap:2px; }
.trust-text strong { font-size:13px; color:#222; font-weight:700; }
.trust-text span { font-size:11px; color:#888; }
@media(max-width:900px){ .trust-bar{padding:16px 20px} .trust-item{padding:8px 16px} }
@media(max-width:600px){ .trust-item{min-width:140px;padding:10px 12px} .trust-divider{display:none} }

/* ===== SEPET ABANDON BAR ===== */
.abandon-bar { position:fixed; bottom:0; left:0; right:0; z-index:8000; transform:translateY(100%); transition:transform .4s cubic-bezier(.34,1.56,.64,1); }
.abandon-bar.abandon-bar-visible { transform:translateY(0); }
.abandon-bar-inner { background:linear-gradient(135deg,#1a1a2e,#0f3460); color:#fff; display:flex; align-items:center; justify-content:space-between; padding:14px 32px; gap:16px; border-top:2px solid #c8102e; box-shadow:0 -4px 24px rgba(0,0,0,.25); }
.abandon-bar-left { display:flex; align-items:center; gap:10px; font-size:14px; font-weight:500; }
.abandon-bar-right { display:flex; align-items:center; gap:14px; flex-shrink:0; }
.abandon-bar-price { font-size:18px; font-weight:800; color:#f5a623; }
.abandon-bar-btn { background:linear-gradient(135deg,#c8102e,#9c001e); color:#fff; padding:10px 22px; border-radius:8px; font-size:13px; font-weight:700; text-decoration:none; white-space:nowrap; transition:transform .2s,box-shadow .2s; box-shadow:0 4px 14px rgba(200,16,46,.4); }
.abandon-bar-btn:hover { transform:translateY(-1px); box-shadow:0 6px 20px rgba(200,16,46,.5); }
.abandon-bar-dismiss { background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.2); color:#fff; width:32px; height:32px; border-radius:50%; font-size:18px; cursor:pointer; display:flex; align-items:center; justify-content:center; transition:background .2s; }
.abandon-bar-dismiss:hover { background:rgba(255,255,255,.2); }
@media(max-width:600px){ .abandon-bar-inner{padding:12px 16px;flex-wrap:wrap} .abandon-bar-price{font-size:15px} }

/* ===== STOK UYARISI ===== */
.stock-warning { display:flex; align-items:center; gap:5px; font-size:11px; font-weight:600; color:#c8102e; background:#fff0f0; border:1px solid #fcc; border-radius:5px; padding:4px 8px; margin-bottom:4px; animation:stockPulse 2s ease-in-out infinite; }
@keyframes stockPulse { 0%,100%{opacity:1} 50%{opacity:.65} }
