/**
 * Rukiye Atelier — premium moda e-ticaret arayüzü
 * Nötr taş / sıcak kağıt tonları, geniş boşluk, editoryal tipografi.
 * (Başka markaların telifli görselleri veya özel tasarımları kullanılmaz.)
 */

/* Fonts: DM Sans (UI) + Cormorant Garamond (başlıklar) — header’da preload */

:root {
  --ink: #0c0a09;
  --ink-soft: #292524;
  /* Ana etkileşim: sıcak antrasit — “lüks minimal” buton ve vurgular */
  --primary-50: #fafaf9;
  --primary-100: #f5f5f4;
  --primary-200: #e7e5e4;
  --primary-400: #a8a29e;
  --primary-500: #78716c;
  --primary-600: #44403c;
  --primary-700: #292524;
  --primary-800: #1c1917;
  --primary-900: #0c0a09;
  --accent-sage: #57534e;
  --accent-gold: #a16207;
  --accent-cream: #f5f0e8;
  --secondary-500: #292524;
  --gray-50: #fafaf9;
  --gray-100: #f5f5f4;
  --gray-200: #e7e5e4;
  --gray-300: #d6d3d1;
  --gray-400: #a8a29e;
  --gray-500: #78716c;
  --gray-600: #57534e;
  --gray-700: #44403c;
  --gray-800: #292524;
  --gray-900: #1c1917;
  --heading-color: var(--ink);
  --body-color: #44403c;
  --container-max: 1280px;
  /* Hero: tüm kırılımlarda aynı en-boy oranı (görsel/video kırpımı tutarlı) */
  --hero-aspect-ratio: 16 / 9;
  --zen-orange: #ea580c;
  --zen-orange-soft: #fff7ed;
  --radius: 0.375rem;
  --radius-lg: 0.5rem;
  --radius-xl: 0.75rem;
  --radius-2xl: 1rem;
  --shadow: 0 1px 2px 0 rgb(0 0 0 / 0.04);
  --shadow-md: 0 4px 16px -4px rgb(0 0 0 / 0.08);
  --shadow-lg: 0 20px 40px -12px rgb(0 0 0 / 0.1);
  --shadow-header: 0 1px 0 rgba(0, 0, 0, 0.06), 0 8px 32px rgba(0, 0, 0, 0.04);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* Erişilebilirlik: klavye odağı */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0.75rem;
  z-index: 10002;
  padding: 0.5rem 1rem;
  background: var(--primary-900);
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: var(--radius-lg);
  text-decoration: none;
}
.skip-link:focus {
  left: 0.75rem;
  outline: 2px solid #fff;
  outline-offset: 2px;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--primary-700);
  outline-offset: 2px;
}
.btn:focus-visible {
  outline: 2px solid var(--primary-900);
  outline-offset: 2px;
}
body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--body-color);
  background: var(--gray-50);
  background-image: linear-gradient(180deg, #fafaf9 0%, #f5f5f4 100%);
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  margin: 0 0 0.5em;
  letter-spacing: 0.02em;
  color: var(--heading-color);
}
.heading-1, .heading-2 { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 600; }
.btn { transition: all 0.25s ease; }
.btn:hover { transform: translateY(-1px); }

/* Layout */
.site-wrap { flex: 1; display: flex; flex-direction: column; }
.container-custom {
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 640px) { .container-custom { padding-left: 1.5rem; padding-right: 1.5rem; } }
@media (min-width: 1024px) { .container-custom { padding-left: 2rem; padding-right: 2rem; } }

.section { padding: 4rem 0; }
@media (min-width: 768px) { .section { padding: 5rem 0; } }
@media (min-width: 1024px) { .section { padding: 6rem 0; } }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius-lg);
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.btn:focus { outline: none; box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--primary-400); }
.btn-primary {
  background: var(--primary-800);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.8125rem;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-lg);
}
.btn-primary:hover { background: var(--primary-900); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-secondary { background: var(--secondary-500); color: #fff; }
.btn-outline {
  background: transparent;
  border: 2px solid var(--gray-300);
  color: var(--gray-700);
}
.btn-outline:hover { border-color: var(--primary-800); color: var(--primary-900); background: var(--gray-50); }
.btn-outline.active { border-color: var(--primary-800); color: var(--primary-900); background: var(--gray-100); }
.btn-sm {
  padding: 0.45rem 0.85rem;
  font-size: 0.8125rem;
  text-transform: none;
  letter-spacing: 0.03em;
  font-weight: 600;
}
.btn-lg { padding: 0.75rem 1.5rem; font-size: 1rem; }
.btn-danger { background: #dc2626; color: #fff; border: none; }
.btn-danger:hover { background: #b91c1c; }

/* WhatsApp sipariş butonu (ürün detay) */
.btn-whatsapp-order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #25D366 !important;
  color: #fff !important;
  border: none !important;
  padding: 0.75rem 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.btn-whatsapp-order:hover {
  background: #20bd5a !important;
  color: #fff !important;
  transform: translateY(-1px);
}
.btn-whatsapp-icon { font-size: 1.25rem; }

/* Form */
.input, .textarea, select {
  display: block;
  width: 100%;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-lg);
  background: #fff;
}
.input:focus, .textarea:focus {
  outline: none;
  border-color: var(--primary-700);
  box-shadow: 0 0 0 3px rgba(28, 25, 23, 0.08);
}
.label { display: block; font-size: 0.875rem; font-weight: 500; color: var(--gray-700); margin-bottom: 0.25rem; }
.form-group { margin-bottom: 1rem; }
.form-error { font-size: 0.75rem; color: #dc2626; margin-top: 0.25rem; }

/* Card & Badge */
.card {
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
  overflow: hidden;
}
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.125rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 9999px;
}
.badge-primary { background: var(--gray-100); color: var(--primary-900); border: 1px solid var(--gray-200); }
.badge-success { background: #d1fae5; color: #065f46; }
.badge-warning { background: #fef3c7; color: #92400e; }
.badge-danger { background: #fee2e2; color: #991b1b; }
.badge-secondary { background: var(--gray-100); color: var(--gray-800); }
.badge-info { background: #dbeafe; color: #1e40af; }
.badge-purple { background: #ede9fe; color: #5b21b6; }
.badge-indigo { background: #e0e7ff; color: #3730a3; }
.badge-cyan { background: #cffafe; color: #0e7490; }
.badge-sky { background: #e0f2fe; color: #0369a1; }
.badge-orange { background: #ffedd5; color: #c2410c; }

/* Scroll reveal (JS ile opacity/transform güncellenir) */
.reveal-on-scroll { opacity: 0; }
.reveal-on-scroll.reveal-visible { opacity: 1; }

/* Ürün listesi Ajax yükleme */
.section.listing-loading { position: relative; }
.section.listing-loading #productsListingContent,
.section.listing-loading #categoryListingContent { opacity: 0.6; pointer-events: none; transition: opacity 0.2s; }

/* Skeleton loader */
.skeleton { background: linear-gradient(90deg, var(--gray-200) 25%, var(--gray-100) 50%, var(--gray-200) 75%); background-size: 200% 100%; animation: skeleton 1.2s ease-in-out infinite; border-radius: var(--radius); }
.skeleton-text { height: 1em; }
.skeleton-card { aspect-ratio: 1; }
@keyframes skeleton { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* Ürün kartı hover Sepete Ekle alanı */
.product-card-actions-bottom { position: absolute; bottom: 0; left: 0; right: 0; padding: 0.75rem 1rem; background: rgba(255,255,255,0.98); opacity: 0; transform: translateY(8px); transition: opacity 0.25s ease, transform 0.25s ease; display: flex; gap: 0.5rem; align-items: center; justify-content: center; flex-wrap: wrap; }
.product-card:hover .product-card-actions-bottom { opacity: 1; transform: translateY(0); }
.product-card-add-form .btn { width: 100%; font-size: 0.8rem; padding: 0.5rem 0.75rem; }
.btn-favori-card { background: transparent; border: 1px solid var(--gray-300); color: var(--gray-600); padding: 0.5rem; border-radius: var(--radius); cursor: pointer; transition: color 0.2s, border-color 0.2s; }
.btn-favori-card:hover { color: var(--primary-800); border-color: var(--primary-600); }

/* Product card */
.product-card {
  transition: box-shadow 0.4s ease, transform 0.4s ease;
  border: 1px solid var(--gray-200);
}
.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: var(--gray-300);
}
.product-card-image {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--gray-100);
}
.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.product-card:hover .product-card-image:not(:has(.product-card-image--dual)) img {
  transform: scale(1.05);
}
.product-card-image-inner.product-card-image--dual {
  position: absolute;
  inset: 0;
}
.product-card-image--dual .product-card-img-primary,
.product-card-image--dual .product-card-img-secondary {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.35s ease;
}
.product-card-image--dual .product-card-img-secondary {
  opacity: 0;
}
.product-card:hover .product-card-image--dual:has(.product-card-img-secondary) .product-card-img-primary {
  opacity: 0;
  transform: none;
}
.product-card:hover .product-card-image--dual:has(.product-card-img-secondary) .product-card-img-secondary {
  opacity: 1;
  transform: none;
}
.product-card-content { padding: 1rem 1rem 1.125rem; }
.product-card-content h3 {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--ink);
  line-height: 1.45;
}
.product-card-content .price {
  font-variant-numeric: tabular-nums;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 0.35rem;
}

/* Ürün detay: beden/renk seçilebilir liste */
.product-option-label input { margin-right: 0.35rem; }
.product-option-label:has(input:checked) { border-color: var(--primary-800) !important; background: rgba(28, 25, 23, 0.06); }
.product-option-label:has(input:not(:disabled)):hover { border-color: var(--gray-400); }
.price { font-size: 1.125rem; font-weight: 600; color: var(--gray-900); }
.price-original { font-size: 0.875rem; color: var(--gray-400); text-decoration: line-through; }
.price-discount { color: var(--primary-800); font-weight: 700; }
.discount-badge {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  background: var(--primary-900);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.6rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: var(--gray-800);
}
.line-clamp-2 a { color: var(--primary-800); }
.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: var(--gray-800);
}
.line-clamp-3 a { color: var(--primary-800); }

/* Grid */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}
.home-review-card {
  margin: 0;
  padding: 1.5rem;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.home-review-stars { font-size: 0.875rem; letter-spacing: 0.1em; color: var(--gray-300); }
.home-review-stars .is-on { color: #b45309; }
.home-review-text {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--gray-700);
  margin: 0;
  flex: 1;
}
.home-review-meta {
  font-size: 0.8125rem;
  color: var(--gray-500);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.home-review-name { font-weight: 600; color: var(--gray-800); }
.home-reviews-section { background: linear-gradient(180deg, var(--gray-50) 0%, #fff 100%); }
/* Ürün detay: sticky sidebar + galeri */
.product-detail-grid { align-items: start; }
.product-detail-sidebar {
  position: sticky;
  top: 6rem;
}
@media (max-width: 767px) {
  .product-detail-sidebar { position: static; }
}
/* Checkout adım göstergesi */
.checkout-steps { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-bottom: 2rem; flex-wrap: wrap; }
.checkout-steps .step { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--gray-500); }
.checkout-steps .step.active { color: var(--primary-800); font-weight: 600; }
.checkout-steps .step.done { color: var(--gray-700); }
.checkout-steps .step-num { width: 1.75rem; height: 1.75rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: var(--gray-200); color: var(--gray-600); font-weight: 600; }
.checkout-steps .step.active .step-num { background: var(--primary-800); color: #fff; }
.checkout-steps .step.done .step-num { background: var(--primary-100); color: var(--primary-800); }
.checkout-steps .step-sep { width: 2rem; height: 2px; background: var(--gray-200); }
/* Mini sepet (slide-out) */
.mini-cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 380px;
  height: 100vh;
  background: #fff;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
  z-index: 10001;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  pointer-events: none;
}
.mini-cart-drawer.is-open {
  transform: translateX(0);
  pointer-events: auto;
}
.mini-cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s, visibility 0.3s;
}
.mini-cart-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.mini-cart-drawer .drawer-header { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.25rem; border-bottom: 1px solid var(--gray-100); }
.mini-cart-drawer .drawer-body { flex: 1; padding: 1rem 1.25rem; overflow-y: auto; }
.mini-cart-drawer .drawer-footer { padding: 1rem 1.25rem; border-top: 1px solid var(--gray-100); }
.mini-cart-item { display: flex; gap: 0.75rem; padding: 0.75rem 0; border-bottom: 1px solid var(--gray-100); }
.mini-cart-item img { width: 60px; height: 60px; object-fit: cover; border-radius: var(--radius); }
.mini-cart-item .mc-name { font-size: 0.875rem; font-weight: 500; }
.mini-cart-item .mc-qty { font-size: 0.75rem; color: var(--gray-500); }
.mini-cart-item .mc-price { font-size: 0.875rem; font-weight: 600; color: var(--primary-800); margin-top: 0.25rem; }
.mini-cart-drawer-content { display: flex; flex-direction: column; height: 100%; min-height: 0; }
.mini-cart-drawer .mini-cart-drawer-inner { display: flex; flex-direction: column; flex: 1; min-height: 0; }

/* Ürün detay sekmeler */
.product-detail-tab-buttons .product-detail-tab-btn.active { background: var(--primary-800); color: #fff; border-color: var(--primary-800); }

/* Ürün detay: mobilde tek sütun, görsel üstte ve her zaman görünür */
@media (max-width: 767px) {
  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .product-detail-grid .product-detail-gallery {
    order: -1;
  }
  .product-detail-grid #mainProductImage,
  .product-detail-grid .product-card-image:not(:has(.product-card-image--dual)) img {
    display: block !important;
    visibility: visible !important;
    min-height: 200px;
    object-fit: contain;
  }
  .product-detail-grid .product-card-image--dual img {
    object-fit: cover !important;
    min-height: 0 !important;
  }
  .product-detail-grid .product-card-image {
    min-height: 200px;
    background: var(--gray-100);
  }
}
.grid-4 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
@media (min-width: 768px) {
  .grid-4 { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}
@media (min-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); gap: 2rem; }
}
.grid-cat-5 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 768px) { .grid-cat-5 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .grid-cat-5 { grid-template-columns: repeat(5, 1fr); } }

/* Header */
.site-header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-header);
  position: sticky;
  top: 0;
  z-index: 50;
  transition: box-shadow 0.25s ease, background 0.25s ease;
}
.site-header.header-scrolled {
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06), 0 12px 40px rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.98);
}
.top-bar {
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-600);
}
.top-bar-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem 0.75rem;
  min-height: 2.25rem;
  padding: 0.2rem 0;
  min-width: 0;
}
.top-bar-start {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
  flex: 0 1 auto;
  max-width: 48%;
}
.top-bar-phone-link {
  color: inherit;
  text-decoration: none;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.top-bar-phone-link:hover {
  color: var(--primary-800);
  text-decoration: underline;
}
.top-bar-kicker {
  display: none;
  font-weight: 600;
  color: var(--gray-700);
  white-space: nowrap;
}
@media (min-width: 480px) {
  .top-bar-kicker {
    display: inline;
  }
}
.top-bar-links {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem 1rem;
  flex: 1 1 auto;
  min-width: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.top-bar-links::-webkit-scrollbar {
  display: none;
}
.top-bar-links .top-bar-link {
  flex: 0 0 auto;
  color: var(--gray-700);
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
}
.top-bar-links .top-bar-link:hover {
  color: var(--primary-800);
  text-decoration: underline;
}
.top-bar-phone { max-width: 100%; }

body.mobile-menu-open {
  overflow: hidden;
}

/* Masaüstü üst bilgi şeridi — mobilde toolbar yanında tekrarlanmasın */
@media (max-width: 1023px) {
  .top-bar--desktop {
    display: none !important;
  }
}

/* Mobil referans: ince çizgili sandviç ikonu */
.mobile-menu-bars {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 1.25rem;
  height: 0.75rem;
}
.mobile-menu-bars span {
  display: block;
  height: 1.5px;
  background: #000000;
  border-radius: 0;
}

.header-action-icon {
  color: #000000;
}
.header-action-icon .header-svg-icon {
  display: block;
}
@media (min-width: 1024px) {
  .header-profile-link.header-action-icon .header-svg-icon {
    display: none;
  }
  .header-profile-link.header-action-icon .header-profile-name {
    display: inline !important;
  }
  .header-guest-login.header-action-icon .header-svg-icon {
    display: none;
  }
  .header-guest-login .header-login-text {
    position: static !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
    clip: auto !important;
    white-space: normal !important;
    border: 0 !important;
    clip-path: none !important;
  }
}

/* Header arama: mobilde çerçeve + sağda gönder; masaüstünde tek input */
.search-header-submit {
  display: none;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0 0.75rem;
  margin: 0;
  border: none;
  border-left: 1px solid var(--gray-200);
  background: #fff;
  color: var(--gray-700);
  cursor: pointer;
  line-height: 0;
}
.search-header-submit:hover {
  color: #0c0a09;
  background: var(--gray-50);
}
@media (min-width: 1024px) {
  .search-header-form.search-desktop .search-header-submit {
    display: none !important;
  }
}

.main-header .container-custom.main-header-inner {
  display: grid;
  align-items: center;
  gap: 0.5rem;
  min-height: 3.75rem;
  min-width: 0;
}
/* Mobil: toolbar satırı (flex) + tam genişlik arama */
@media (max-width: 1023px) {
  .main-header .container-custom.main-header-inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.6rem;
    min-height: auto;
    padding-top: 0.35rem;
    padding-bottom: 0.5rem;
  }
  .header-toolbar-row {
    display: grid;
    grid-template-columns: 2.75rem minmax(0, 1fr) auto;
    align-items: center;
    width: 100%;
    min-height: 3.5rem;
    padding: 0.35rem 0;
    gap: 0.35rem 0.5rem;
    border-bottom: 1px solid #e0e0e0;
  }
  .header-toolbar-start {
    grid-column: 1;
    flex: none;
    width: auto;
    min-width: 0;
    max-width: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    position: relative;
    z-index: 200;
  }
  .header-toolbar-center {
    grid-column: 2;
    min-width: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 0.25rem;
    pointer-events: none;
  }
  .header-toolbar-center .logo.logo-link {
    pointer-events: auto;
  }
  .header-toolbar-end {
    grid-column: 3;
    flex: none;
    min-width: 0;
    max-width: none;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .header-toolbar-hide-mobile {
    display: none !important;
  }
  .header-toolbar-end .header-actions {
    width: 100%;
    min-width: 0;
    justify-content: flex-end;
    flex-wrap: nowrap;
    gap: 0.1rem;
  }
  .mobile-menu-btn--lead {
    width: 2.5rem;
    height: 2.5rem;
    min-width: 2.5rem;
    min-height: 2.5rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 0;
    line-height: 0;
    background: transparent;
    border: none;
    color: #0c0a09;
    border-radius: var(--radius-lg);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    position: relative;
    z-index: 250;
    pointer-events: auto;
  }
  .header-brand {
    min-width: 0;
    max-width: 100%;
    width: 100%;
    margin: 0;
    justify-content: center;
    text-align: center;
  }
  .header-brand .logo.logo-link {
    justify-content: center;
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
    font-size: 1rem !important;
    line-height: 1.2;
    gap: 0;
  }
  .header-brand .logo-text {
    display: block;
    text-align: center;
    font-size: clamp(0.8125rem, 3.8vw, 1rem) !important;
    line-height: 1.2;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-family: 'DM Sans', system-ui, sans-serif;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #000000;
  }
  .header-brand .logo-img {
    display: block;
    object-position: center center;
    margin: 0 auto;
    max-width: min(110px, 34vw);
    height: auto;
  }
  .search-header-wrap.search-desktop-wrapper {
    display: block !important;
    max-width: none !important;
    margin: 0.15rem 0 0 !important;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    flex: none;
  }
  .search-header-form.search-desktop {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    width: 100%;
    border: 1px solid #e0e0e0;
    border-radius: 9999px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: none;
  }
  .search-header-form.search-desktop #headerSearchInput,
  .search-header-form.search-desktop input[type='search'] {
    flex: 1 1 auto;
    min-width: 0;
    border: none !important;
    border-radius: 0 !important;
    background: #ffffff !important;
    padding: 0.65rem 0.85rem !important;
    font-size: 0.875rem;
    font-family: 'DM Sans', system-ui, sans-serif;
    color: #000000;
    box-shadow: none !important;
  }
  .search-header-form.search-desktop input::placeholder {
    color: #b0b0b0;
  }
  .search-header-form.search-desktop input:focus {
    outline: none !important;
    box-shadow: none !important;
  }
  .search-header-form .search-header-submit {
    display: flex !important;
    border-left: 1px solid #e0e0e0;
    color: #000000;
  }
  .search-header-form .search-header-submit svg {
    stroke-width: 1.35;
  }
  .header-action-cart .header-action-label {
    display: none;
  }
  .header-profile-name {
    display: none;
  }
  .header-guest-login .header-login-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  .header-guest-login.header-action-icon {
    font-size: 0;
    padding: 0.5rem 0.4rem !important;
  }
  .header-profile-link.header-action-icon {
    max-width: none;
    padding: 0.5rem 0.4rem !important;
    font-size: 0;
  }
  .header-profile-link.header-action-icon .header-profile-name {
    display: none !important;
  }
  .header-action-cart.header-action-icon {
    padding: 0.5rem 0.4rem !important;
  }
  .header-cart-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header-action-cart .cart-count.header-cart-badge {
    position: absolute;
    top: 0.1rem;
    right: 0.05rem;
    min-width: 1.125rem;
    height: 1.125rem;
    padding: 0 0.2rem;
    font-size: 0.625rem;
    font-weight: 700;
    background: #000000;
    color: #ffffff;
    border-radius: 9999px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    line-height: 1;
  }
  .main-header {
    background: #ffffff;
    border-bottom: none;
  }
  .site-header {
    background: #ffffff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
  }
}
@media (min-width: 1024px) {
  .main-header .container-custom.main-header-inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 1rem;
    min-height: 5rem;
    grid-template-rows: auto;
    align-items: center;
  }
  .header-toolbar-row,
  .header-toolbar-start,
  .header-toolbar-center,
  .header-toolbar-end {
    display: contents;
  }
  .mobile-menu-btn--lead {
    display: none !important;
  }
  .header-brand {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }
  .search-desktop-wrapper {
    grid-column: 2;
    grid-row: 1;
  }
  .header-actions {
    grid-column: 3;
    grid-row: 1;
  }
}

.header-brand {
  min-width: 0;
  max-width: 100%;
  display: flex;
  align-items: center;
}

.logo.logo-link {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  gap: 0.5rem;
  min-width: 0;
}
.logo-img {
  display: block;
  max-width: min(160px, 42vw);
  max-height: clamp(32px, 10vw, 48px);
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: left center;
}
.logo-text {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(0.9375rem, 4.2vw, 1.875rem);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.03em;
  line-height: 1.15;
}

.logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.625rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.04em;
}
@media (min-width: 1024px) {
  .logo:not(.logo-link) { font-size: 1.875rem; }
}
.logo span.secondary { color: var(--accent-gold); }

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 0.125rem;
  min-width: 0;
  flex-shrink: 0;
}
@media (min-width: 480px) {
  .header-actions { gap: 0.35rem; }
}
@media (min-width: 1024px) {
  .header-actions { gap: 1rem; }
}
.header-actions a, .header-actions button {
  display: flex;
  align-items: center;
  padding: 0.5rem 0.35rem;
  color: var(--gray-600);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: clamp(0.75rem, 2.8vw, 0.875rem);
}
.header-action-cart,
.header-whatsapp,
.header-icon-search {
  flex-shrink: 0;
  white-space: nowrap;
}
.header-action-cart {
  position: relative;
}
@media (max-width: 1023px) {
  .header-toolbar-hide-below-lg {
    display: none !important;
  }
}
.header-actions .header-action-label {
  display: inline;
}
@media (max-width: 639px) {
  .header-action-secondary { display: none !important; }
}
.header-profile-link {
  max-width: 7rem;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 640px) {
  .header-profile-link { max-width: 11rem; }
}
.header-profile-name {
  display: inline-block;
  max-width: 5rem;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: bottom;
}
@media (min-width: 640px) {
  .header-profile-name { max-width: 8rem; }
}
.header-guest-login .header-login-text {
  font-size: clamp(0.7rem, 3vw, 0.875rem);
}
.header-icon-search {
  font-size: 1.125rem;
  padding: 0.5rem 0.4rem !important;
}
.header-actions a:hover, .header-actions button:hover { color: var(--primary-900); }
.cart-count {
  position: absolute;
  top: -0.25rem;
  right: -0.25rem;
  background: var(--primary-900);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-desktop { display: none; border-top: 1px solid var(--gray-100); }
@media (min-width: 1024px) { .nav-desktop { display: block; } }
.nav-desktop-inner {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.nav-desktop-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.125rem;
  min-height: 3rem;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.nav-desktop ul.nav-desktop-list {
  list-style: none;
}
.nav-desktop .nav-desktop-list a {
  display: flex;
  align-items: center;
  padding: 0.5rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-700);
  text-decoration: none;
  border-radius: var(--radius-lg);
  transition: color 0.2s, background 0.2s;
}
.nav-desktop .nav-desktop-list a:hover { color: var(--primary-900); background: transparent; }
.header-whatsapp {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #128c7e;
  text-decoration: none;
  padding: 0.35rem 0.5rem;
  border-radius: var(--radius-lg);
}
.header-whatsapp:hover { background: rgba(37, 211, 102, 0.12); color: #0d6b5c; }

/* Masaüstü: ara çubuğu yanındaki WhatsApp + büyüteç ikon linkleri kaldır; yalnızca "Ara" metin linki kalsın */
@media (min-width: 1024px) {
  .header-actions > .header-whatsapp,
  .header-actions > .header-icon-search {
    display: none !important;
  }
  .header-actions > .header-ara-text-link {
    display: flex !important;
    align-items: center;
  }
}

/* Ana sayfa — premium section & USP */
.section-eyebrow {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--gray-500);
  margin: 0 0 0.5rem;
  font-weight: 600;
}
.section-header-premium .heading-2 { margin-top: 0; }
.usp-bar {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--gray-200);
  background: #fff;
  border-top: 1px solid var(--gray-200);
}
.usp-bar-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .usp-bar-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .usp-bar-grid { grid-template-columns: repeat(5, 1fr); gap: 0.75rem; }
}
.usp-item {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  padding: 0.5rem 0;
}
.usp-item-icon { font-size: 1.35rem; line-height: 1; flex-shrink: 0; }
.usp-item-title { display: block; font-size: 0.8125rem; font-weight: 600; color: var(--gray-900); margin-bottom: 0.15rem; }
.usp-item-desc { font-size: 0.75rem; color: var(--gray-600); margin: 0; line-height: 1.4; }

.editorial-split {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .editorial-split { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
.editorial-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.editorial-card--accent {
  border-color: var(--gray-200);
  background: linear-gradient(165deg, var(--gray-50) 0%, #fff 60%);
}

.faq-details { border: 1px solid var(--gray-200); border-radius: var(--radius-lg); overflow: hidden; }
.faq-summary {
  cursor: pointer;
  font-weight: 600;
  padding: 1rem 1.25rem;
  list-style: none;
}
.faq-summary::-webkit-details-marker { display: none; }
.faq-details[open] .faq-summary { border-bottom: 1px solid var(--gray-100); }

.newsletter-strip {
  background: linear-gradient(145deg, var(--primary-900) 0%, var(--primary-800) 45%, #292524 100%);
  color: #fff;
  padding: 3.5rem 0;
}
.newsletter-strip .heading-2 { color: #fff; }
.newsletter-strip .text-body { color: rgba(255,255,255,0.92); }
.newsletter-strip-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: stretch;
}
@media (min-width: 768px) {
  .newsletter-strip-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.newsletter-strip-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  min-width: min(100%, 320px);
}
.newsletter-strip-form .input { flex: 1; min-width: 200px; margin: 0; }
.newsletter-strip .btn-primary {
  background: #fff;
  color: var(--ink);
  border: 1px solid #fff;
}
.newsletter-strip .btn-primary:hover {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.85);
}
.newsletter-strip .input {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
}
.newsletter-strip .input::placeholder { color: rgba(255, 255, 255, 0.55); }
.newsletter-strip .input:focus {
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.12);
}
.mobile-menu-btn { display: block; }
@media (min-width: 1024px) { .mobile-menu-btn { display: none; } }
.search-desktop-wrapper { display: none; flex: 1; max-width: 32rem; margin: 0 2rem; position: relative; }
@media (min-width: 1024px) { .search-desktop-wrapper { display: block; } }
.search-desktop { display: flex; width: 100%; }
.search-desktop input {
  width: 100%;
  padding: 0.5rem 1rem 0.5rem 2.5rem;
  border: 1px solid var(--gray-200);
  border-radius: 9999px;
  font-size: 0.875rem;
}
.search-desktop input:focus { outline: none; border-color: var(--primary-700); }
.search-suggest-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 0.25rem;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  max-height: 20rem;
  overflow-y: auto;
  z-index: 1000;
}
.search-suggest-dropdown .suggest-section { padding: 0.5rem 0; }
.search-suggest-dropdown .suggest-section-title { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--gray-500); padding: 0.35rem 1rem; }
.search-suggest-dropdown a.suggest-item { display: block; padding: 0.5rem 1rem; font-size: 0.875rem; color: var(--body-color); text-decoration: none; transition: background 0.15s; }
.search-suggest-dropdown a.suggest-item:hover { background: var(--gray-100); }
.search-suggest-dropdown .suggest-item-price { font-size: 0.75rem; color: var(--gray-500); margin-top: 0.15rem; }
.search-suggest-dropdown .suggest-empty { padding: 1rem; font-size: 0.875rem; color: var(--gray-500); }

/* Footer */
.site-footer {
  background: linear-gradient(180deg, var(--gray-800) 0%, var(--gray-900) 100%);
  color: #fff;
}
.site-footer p,
.site-footer span,
.site-footer li,
.site-footer h4,
.site-footer .footer-feature p,
.site-footer .footer-brand p,
.site-footer .footer-links h4,
.site-footer .footer-bottom p {
  color: #fff;
}
.site-footer a {
  color: #fff;
}
.site-footer a:hover {
  color: rgba(255,255,255,0.85);
  text-decoration: underline;
  margin-top: auto;
}
.footer-features {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 2rem 0;
}
.footer-features .grid-4 { gap: 1.5rem; }
.footer-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer-feature-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.footer-feature h4 { font-size: 0.875rem; margin: 0; }
.footer-feature p { font-size: 0.75rem; color: var(--gray-400); margin: 0.25rem 0 0; }
.footer-main { padding: 3rem 0; }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr; } }
.footer-brand .logo { color: #fff; }
.footer-brand p { color: var(--gray-400); font-size: 0.875rem; margin: 1rem 0 0; line-height: 1.6; }
.footer-links h4 { font-size: 0.875rem; margin: 0 0 1rem; }
.footer-links ul { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { color: var(--gray-400); font-size: 0.875rem; text-decoration: none; }
.footer-links a:hover { color: #fff; }

/* Sosyal medya ikonları (Bizi Takip Edin) */
.site-footer .social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  color: var(--gray-400);
  border-radius: 0.5rem;
  transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}
.site-footer .social-icon:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}
.site-footer .social-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* Footer: WhatsApp CTA (sosyal satırının altı) */
.footer-wa-wrap {
  margin-top: 1.25rem;
  max-width: 22rem;
}
.footer-wa-cta {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.8rem 1rem;
  border-radius: 0.875rem;
  text-decoration: none;
  color: #fff !important;
  background: linear-gradient(135deg, #0f766e 0%, #25d366 52%, #16a34a 100%);
  box-shadow:
    0 4px 16px rgba(15, 118, 110, 0.35),
    0 1px 2px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.footer-wa-cta:hover {
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow:
    0 10px 28px rgba(15, 118, 110, 0.38),
    0 2px 6px rgba(0, 0, 0, 0.08);
}
.footer-wa-cta:focus-visible {
  outline: 2px solid #86efac;
  outline-offset: 3px;
}
.footer-wa-cta__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 0.75rem;
}
.footer-wa-cta__text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
  flex: 1;
  text-align: left;
}
.footer-wa-cta__title {
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.25;
}
.footer-wa-cta__sub {
  font-size: 0.75rem;
  opacity: 0.95;
  font-weight: 500;
  line-height: 1.3;
}
.footer-wa-cta__arrow {
  flex-shrink: 0;
  font-size: 1.125rem;
  opacity: 0.85;
  line-height: 1;
}

/* Sabit WhatsApp balonu */
.whatsapp-widget-root {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 1000;
}
.whatsapp-widget-float {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  min-width: 4.25rem;
  padding: 0.65rem 0.85rem 0.45rem;
  background: linear-gradient(165deg, #0d9488 0%, #22c55e 100%);
  color: #fff !important;
  border-radius: 1.1rem;
  box-shadow:
    0 10px 32px rgba(13, 148, 136, 0.42),
    0 2px 8px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.whatsapp-widget-float:hover {
  color: #fff !important;
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 14px 40px rgba(13, 148, 136, 0.48),
    0 4px 12px rgba(0, 0, 0, 0.1);
}
.whatsapp-widget-float:focus-visible {
  outline: 2px solid #86efac;
  outline-offset: 3px;
}
.whatsapp-widget-float__pulse {
  position: absolute;
  inset: -4px;
  border-radius: 1.25rem;
  border: 2px solid rgba(34, 197, 94, 0.45);
  animation: whatsapp-ring 2.4s ease-out infinite;
  pointer-events: none;
}
@keyframes whatsapp-ring {
  0% {
    transform: scale(1);
    opacity: 0.55;
  }
  70% {
    transform: scale(1.08);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.whatsapp-widget-float__icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}
.whatsapp-widget-float__label {
  position: relative;
  z-index: 1;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.98;
}
@media (max-width: 768px) {
  .whatsapp-widget-root {
    bottom: 1rem;
    right: 1rem;
  }
  .whatsapp-widget-float {
    min-width: 3.75rem;
    padding: 0.55rem 0.7rem 0.4rem;
  }
}

/* Ürün detayı paylaş ikonları */
.social-share .social-share-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  color: var(--gray-500);
  border-radius: 0.5rem;
  transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}
.social-share .social-share-icon:hover {
  color: var(--primary-600);
  background-color: var(--gray-100);
  transform: translateY(-1px);
}
.social-share .social-share-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}
/* Sitelinks: arama sonucu alt linkleri - alt alta liste, kategori basliklari gibi */
.footer-sitelinks .sitelinks-list { list-style: none; margin: 0; padding: 0; }
.footer-sitelinks .sitelinks-list li { display: block; margin-bottom: 0.6rem; }
.footer-sitelinks .sitelinks-list li a { color: #93c5fd; font-size: 0.9375rem; text-decoration: none; display: block; }
.footer-sitelinks .sitelinks-list li a:hover { color: #fff; text-decoration: underline; }
.footer-bottom {
  border-top: 1px solid var(--gray-800);
  padding: 1.5rem 0;
}
.footer-bottom .container-custom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
@media (min-width: 768px) { .footer-bottom .container-custom { flex-direction: row; } }
.footer-bottom p { font-size: 0.875rem; color: #fff; margin: 0; }
/* Bülten bandı açık arka planlı; metin koyu kalsın */
.site-footer .footer-newsletter,
.site-footer .footer-newsletter p,
.site-footer .footer-newsletter h4,
.site-footer .footer-newsletter input,
.site-footer .footer-newsletter label { color: var(--body-color); }
.site-footer .footer-newsletter a { color: var(--primary-800); }
.site-footer .footer-newsletter a:hover { color: var(--primary-900); text-decoration: underline; }

/* Footer: SSL / ETBİS güven bildirimi */
.footer-trust {
  background: var(--gray-900);
  border-top: 1px solid var(--gray-800);
  padding: 1.75rem 0;
}
.footer-trust-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .footer-trust-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}
.footer-trust-item {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
}
.footer-trust-icon {
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
}
.footer-trust-title {
  display: block;
  font-size: 0.8125rem;
  color: #fff;
  margin-bottom: 0.35rem;
}
.footer-trust-text {
  font-size: 0.75rem;
  color: var(--gray-400);
  margin: 0;
  line-height: 1.55;
}
.footer-trust-meta {
  font-size: 0.6875rem;
  color: var(--gray-500);
  margin: 0.5rem 0 0;
  line-height: 1.45;
}
.footer-trust-link {
  color: #93c5fd;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-trust-link:hover { color: #bfdbfe; }

/* Hero Slider — sabit en-boy oranı (tüm ekranlarda aynı kırpım oranı) */
.hero-slider {
  position: relative;
  width: 100%;
  aspect-ratio: var(--hero-aspect-ratio);
  min-height: 0;
  overflow: hidden;
  background: var(--gray-900);
}
.hero-slider .hero-slide {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  pointer-events: none;
}
.hero-slider .hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
.hero-slider .hero-slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(12, 10, 9, 0.72) 0%, rgba(12, 10, 9, 0.35) 45%, rgba(12, 10, 9, 0.2) 100%);
}
.hero-content {
  position: relative;
  height: 100%;
  min-height: 0;
  display: flex;
  align-items: center;
  z-index: 2;
  padding-top: max(0.75rem, env(safe-area-inset-top, 0px));
  padding-bottom: max(1.25rem, env(safe-area-inset-bottom, 0px));
  box-sizing: border-box;
}
.hero-content.container-custom {
  width: 100%;
  max-width: min(var(--container-max), 100%);
  margin-left: auto;
  margin-right: auto;
  padding-left: max(1rem, env(safe-area-inset-left, 0px));
  padding-right: max(1rem, env(safe-area-inset-right, 0px));
}
.hero-content .max-w-2xl {
  min-width: 0;
  width: 100%;
}
.hero-dots {
  position: absolute;
  bottom: max(1rem, env(safe-area-inset-bottom, 0px));
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 2;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}
.hero-dot:hover { background: rgba(255,255,255,0.5); }
.hero-dot.active { background: #fff; }
.hero-content h1 {
  color: #fff;
  font-size: clamp(1.35rem, 5vw + 0.35rem, 3.25rem);
  margin-bottom: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.12;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-wrap: break-word;
  hyphens: auto;
}
@media (min-width: 1024px) {
  .hero-content h1 { max-width: 22ch; }
}
.hero-content p {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.875rem, 2vw + 0.25rem, 1.0625rem);
  margin-bottom: clamp(1rem, 3vw, 2rem);
  max-width: 100%;
  line-height: 1.55;
  font-weight: 400;
  overflow-wrap: anywhere;
}
@media (min-width: 768px) {
  .hero-content p { max-width: 42ch; }
}
.hero-content .btn { margin-top: 0.5rem; }
/* Hero CTA: çerçeveli lüks buton */
.hero-slider .btn-primary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: none;
}
.hero-slider .btn-primary:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
  box-shadow: var(--shadow-md);
}

/* Features bar */
.features-bar {
  padding: 2rem 0;
  background: linear-gradient(180deg, var(--accent-cream) 0%, #fff 100%);
}
.features-bar .grid-4 .flex { display: flex; align-items: center; gap: 0.75rem; }
.feature-icon {
  width: 3rem;
  height: 3rem;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary-800);
}
.feature-icon svg { width: 1.5rem; height: 1.5rem; }
.feature-text h3 { font-size: 0.875rem; margin: 0; }
.feature-text p { font-size: 0.75rem; color: var(--gray-500); margin: 0.25rem 0 0; }

/* Headings */
.heading-1 { font-size: 1.875rem; font-weight: 700; }
@media (min-width: 768px) { .heading-1 { font-size: 2.25rem; } }
@media (min-width: 1024px) { .heading-1 { font-size: 3rem; } }
.heading-2 { font-size: 1.5rem; font-weight: 600; letter-spacing: 0.03em; }
@media (min-width: 768px) { .heading-2 { font-size: 1.875rem; } }
@media (min-width: 1024px) { .heading-2 { font-size: 2.125rem; } }
.text-body { color: var(--gray-600); line-height: 1.6; }
.text-center { text-align: center; }
.link-primary {
  color: var(--primary-800);
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s ease, opacity 0.2s ease;
}
.link-primary:hover { color: var(--primary-900); text-decoration: underline; text-underline-offset: 3px; }

/* Category card */
.category-card {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  display: block;
  box-shadow: var(--shadow-md);
  transition: transform 0.25s, box-shadow 0.25s;
}
.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.category-card:hover img { transform: scale(1.08); }
.category-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 10, 9, 0.78), rgba(12, 10, 9, 0.25), transparent 65%);
}
.category-card h3 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.25rem;
  color: #fff;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
  z-index: 1;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

/* CTA section */
.cta-section {
  position: relative;
  padding: 5rem 0;
  background-size: cover;
  background-position: center;
}
.cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(12, 10, 9, 0.88) 0%, rgba(41, 37, 36, 0.92) 100%);
}
.cta-section .container-custom { position: relative; z-index: 1; text-align: center; color: #fff; }
.cta-section h2 { color: #fff; margin-bottom: 1rem; }
.cta-section p { color: rgba(255, 255, 255, 0.88); margin-bottom: 2rem; }
.cta-section .btn-primary {
  background: #fff;
  color: var(--ink);
  border: 1px solid #fff;
}
.cta-section .btn-primary:hover {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.9);
}

/* Skeleton */
.skeleton { background: var(--gray-200); border-radius: var(--radius-xl); animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

/* Alert */
.alert { padding: 1rem; border-radius: var(--radius-lg); margin-bottom: 1rem; }
.alert-success { background: #d1fae5; color: #065f46; }
.alert-error { background: #fee2e2; color: #991b1b; }
.alert-warning { background: #fef3c7; color: #92400e; }

/* Table */
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; }
th, td { padding: 0.75rem 1rem; text-align: left; border-bottom: 1px solid var(--gray-200); }
th { font-weight: 600; background: var(--gray-50); }

/* Pagination */
.pagination { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-top: 2rem; }
.pagination a, .pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.5rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  text-decoration: none;
  color: var(--gray-700);
  border: 1px solid var(--gray-200);
}
.pagination a:hover { background: var(--gray-50); border-color: var(--gray-400); color: var(--primary-900); }
.pagination .current { background: var(--primary-900); color: #fff; border-color: var(--primary-900); }
.pagination .disabled { opacity: 0.5; pointer-events: none; }

/* Mobile menu — tam ekran panel (vitrin mobil) */
.mobile-menu-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
  z-index: 10018;
}
.mobile-menu-backdrop.is-open { display: block; }
@media (min-width: 1024px) {
  .mobile-menu-backdrop.is-open { display: none !important; }
}
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  top: 0;
  flex-direction: column;
  padding: 0;
  background: #ffffff;
  z-index: 10019;
  overflow: hidden;
  box-shadow: inset 0 1px 0 #e7e5e4;
}
.mobile-menu.is-open { display: flex; }
@media (max-width: 1023px) {
  #mobileMenu.mobile-menu.is-open {
    display: flex !important;
    visibility: visible;
  }
}
.mobile-menu-header {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: calc(0.65rem + env(safe-area-inset-top, 0px)) 1rem 0.75rem;
  border-bottom: 1px solid #f5f5f4;
  background: #fff;
}
.mobile-menu-title {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #0c0a09;
}
.mobile-menu-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.75rem;
  min-height: 2.75rem;
  margin: -0.25rem -0.35rem -0.25rem 0;
  padding: 0;
  border: none;
  background: transparent;
  font-size: 1.75rem;
  line-height: 1;
  color: #44403c;
  cursor: pointer;
  border-radius: 0.375rem;
}
.mobile-menu-close:hover { background: #fafaf9; }
.mobile-menu-nav {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0 1rem 1.5rem;
  padding-bottom: calc(1.5rem + env(safe-area-inset-bottom, 0px));
}
.mobile-menu-nav a {
  display: block;
  padding: 0.9rem 0.25rem;
  font-weight: 500;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  color: #0c0a09;
  text-decoration: none;
  border-bottom: 1px solid #f5f5f4;
}
.mobile-menu-nav a:hover { background: #fafaf9; }
.mobile-menu-nav hr { margin: 1rem 0; border: none; border-top: 1px solid var(--gray-200); }
/* Masaüstü: tam ekran mobil paneli tamamen kapat (yeniden boyutlandırmada da) */
@media (min-width: 1024px) {
  #mobileMenu.mobile-menu {
    display: none !important;
    pointer-events: none;
  }
}

/* Mobil alt sepet çubuğu (thumb erişimi) */
.mobile-cart-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9970;
  padding: 0.5rem 1rem;
  padding-bottom: calc(0.5rem + env(safe-area-inset-bottom, 0px));
  background: #fff;
  border-top: 1px solid var(--gray-200);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.06);
}
@media (max-width: 1023px) {
  .mobile-cart-bar { display: block; }
}
@media (min-width: 1024px) {
  .mobile-cart-bar { display: none !important; }
}
.mobile-cart-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  max-width: 72rem;
  margin: 0 auto;
}
.mobile-cart-bar-preview {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  min-width: 0;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--gray-200);
  border-radius: 0.5rem;
  background: var(--gray-50, #fafaf9);
  font-size: 0.9375rem;
  font-weight: 600;
  color: #0c0a09;
  cursor: pointer;
  text-align: left;
}
.mobile-cart-bar-ico { flex-shrink: 0; }
.mobile-cart-bar-text { flex: 1; min-width: 0; }
.mobile-cart-bar-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.5rem;
  height: 1.5rem;
  padding: 0 0.35rem;
  border-radius: 9999px;
  background: var(--primary-900, #1c1917);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
}
.mobile-cart-bar-badge[hidden] { display: none !important; }
.mobile-cart-bar-link {
  flex-shrink: 0;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  background: var(--primary-900, #1c1917);
}
.mobile-cart-bar-link:hover { opacity: 0.92; color: #fff; }
body.has-mobile-cart-bar #main-content {
  padding-bottom: calc(4rem + env(safe-area-inset-bottom, 0px));
}
@media (min-width: 1024px) {
  body.has-mobile-cart-bar #main-content { padding-bottom: 0; }
}
@media (max-width: 1023px) {
  body.has-mobile-cart-bar #whatsapp-widget {
    bottom: calc(4.75rem + env(safe-area-inset-bottom, 0px));
  }
  body.has-mobile-cart-bar .social-proof-widget {
    bottom: calc(9rem + env(safe-area-inset-bottom, 0px));
  }
}

/* Utility */
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-4 { margin-top: 1rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-2xl { max-width: 42rem; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.hidden { display: none; }
@media (min-width: 768px) { .md\:block { display: block; } .md\:flex { display: flex; } }
@media (min-width: 1024px) { .lg\:block { display: block; } }
.bg-gray-50 { background: var(--gray-50); }
.aspect-square { aspect-ratio: 1; }
.relative { position: relative; }
.absolute { position: absolute; }

/* PDP — güven şeridi + mobil yapışkan sepet */
.pdp-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-bottom: 1.25rem;
  padding: 0.875rem 1.125rem;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  font-size: 0.8125rem;
  color: var(--gray-700);
}
.pdp-trust-item { white-space: nowrap; }
.pdp-micro-trust {
  margin: 0 0 1.25rem;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--gray-600);
}
.pdp-micro-trust a {
  color: var(--gray-800);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.pdp-micro-trust a:hover { color: var(--primary-600, #0d9488); }

.pdp-mobile-sticky-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom, 0));
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid var(--gray-200);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(100%);
  transition: transform 0.28s ease, opacity 0.2s ease;
  opacity: 0;
  pointer-events: none;
}
.pdp-mobile-sticky-bar.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.pdp-mobile-sticky-inner {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.pdp-sticky-price {
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--gray-900);
}
@media (max-width: 767px) {
  .pdp-mobile-sticky-bar { display: block; }
  body:has(.pdp-mobile-sticky-bar.is-visible) { padding-bottom: 5rem; }
}

/* --- Ürün detay (PDP) — premium satın alma sütunu --- */
.section--pdp {
  padding-top: 2.5rem;
}
@media (min-width: 1024px) {
  .section--pdp { padding-top: 3rem; }
}
.breadcrumb-premium {
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
}
.breadcrumb-premium ol li span[aria-hidden] {
  color: var(--gray-400);
  margin: 0 0.15rem;
}
.pdp-share-row {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray-200);
}
.pdp-share-row .social-share-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  border: 1px solid var(--gray-200);
  color: var(--gray-600);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.pdp-share-row .social-share-icon:hover {
  color: var(--primary-900);
  border-color: var(--gray-300);
  background: var(--gray-50);
}
.pdp-gallery-main {
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200);
  background: #fff;
}
.pdp-gallery-main.product-card-image {
  aspect-ratio: 3 / 4;
}
.pdp-gallery-main #productMainImg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}
.product-thumbnail {
  border: 2px solid transparent !important;
  border-radius: var(--radius-lg) !important;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.product-thumbnail.active,
.product-thumbnail:focus-visible {
  border-color: var(--primary-800) !important;
  box-shadow: 0 0 0 1px var(--primary-800);
}
.pdp-sidebar {
  padding: 0;
}
.pdp-buy-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 1.5rem 1.5rem 1.75rem;
  box-shadow: var(--shadow-md);
}
@media (min-width: 1024px) {
  .pdp-buy-card { padding: 2rem; }
}
.pdp-title {
  font-size: 1.75rem;
  line-height: 1.2;
  letter-spacing: 0.02em;
  margin-bottom: 1rem !important;
}
@media (min-width: 768px) {
  .pdp-title { font-size: 2rem; }
}
.pdp-price-display {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  font-size: 1.75rem !important;
  letter-spacing: 0.02em;
  color: var(--ink);
  margin-bottom: 1.25rem !important;
}
.pdp-brand-line {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gray-500);
  margin-bottom: 0.5rem;
}
.pdp-brand-line a {
  color: var(--primary-800);
  font-weight: 600;
  text-decoration: none;
}
.pdp-brand-line a:hover { text-decoration: underline; }
.pdp-installment-note {
  font-size: 0.8125rem;
  color: var(--gray-600);
  padding: 0.75rem 1rem;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  margin-bottom: 1rem;
}
.pdp-mobile-sticky-bar {
  border-top-color: var(--gray-200);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.08);
}
.heading-3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--heading-color);
  margin: 0 0 0.75rem;
}
.heading-4 {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--heading-color);
  margin: 0 0 0.5rem;
}

/* --- Sepet & ödeme --- */
.section--checkout {
  padding-top: 2rem;
  padding-bottom: 4rem;
}
.cart-page .checkout-steps {
  margin-bottom: 2rem;
}
.cart-trust-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  align-items: center;
  padding: 1rem 1.25rem;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  margin-bottom: 2rem;
  font-size: 0.8125rem;
  color: var(--gray-600);
}
.cart-trust-inline span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.cart-free-ship {
  margin-bottom: 2rem;
  padding: 1rem 1.25rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
}
.cart-free-ship-bar {
  height: 0.35rem;
  background: var(--gray-200);
  border-radius: 9999px;
  overflow: hidden;
  margin-top: 0.65rem;
}
.cart-free-ship-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-700), var(--primary-900));
  border-radius: 9999px;
  transition: width 0.4s ease;
}
.cart-table-wrap {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.cart-table-wrap table {
  margin: 0;
}
.cart-table-wrap th {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--gray-500);
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}
.cart-table-wrap td {
  vertical-align: middle;
  padding: 1rem 1.25rem;
}
.cart-table-wrap tbody tr:not(:last-child) td {
  border-bottom: 1px solid var(--gray-100);
}
.cart-table-wrap .cart-thumb {
  width: 72px;
  height: 90px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
}
.cart-summary-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 6.5rem;
}
.cart-summary-card .cart-total-row {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
  padding-top: 0.5rem;
  margin-top: 0.5rem;
  border-top: 1px solid var(--gray-200);
}
.checkout-page .grid-2 {
  align-items: start;
}
.checkout-order-panel {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 1.5rem 1.75rem;
  box-shadow: var(--shadow);
}
.checkout-order-panel ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.9375rem;
}
.checkout-order-panel ul li:last-child {
  border-bottom: none;
}
.checkout-form-card {
  border: 1px solid var(--gray-200) !important;
  border-radius: var(--radius-xl) !important;
  box-shadow: var(--shadow-md) !important;
}
.checkout-form-card .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-600);
}
.odeme-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  align-items: center;
  padding: 1rem 1.25rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  font-size: 0.8125rem;
  color: var(--gray-600);
  margin: 1.25rem 0;
}
.odeme-trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.payment-card-fields {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  margin-top: 0.75rem;
  background: var(--gray-50);
}

/* PDP alt sekmeler */
.product-detail-tabs {
  max-width: 52rem;
  margin-left: auto;
  margin-right: auto;
}
.product-detail-tab-buttons .product-detail-tab-btn {
  border-radius: 9999px !important;
  font-size: 0.75rem !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  border-color: var(--gray-300) !important;
  color: var(--gray-700) !important;
}
.product-detail-tab-buttons .product-detail-tab-btn:hover {
  border-color: var(--gray-400) !important;
  background: var(--gray-50);
}

/* ========== Referans vitrin (ana sayfa) — üç sütun hero, şerit, header düzeni ========== */
.promo-ribbon {
  background: #8e826b;
  color: #ffffff;
  text-align: center;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.55rem 1rem;
  line-height: 1.4;
}

@media (min-width: 1024px) {
  .page-home .main-header-inner {
    grid-template-columns: minmax(10rem, 1.25fr) auto minmax(10rem, 1.25fr);
    gap: 1rem 1.5rem;
  }
  .page-home .header-brand { order: 2; justify-self: center; }
  .page-home .search-desktop-wrapper { order: 1; justify-self: start; max-width: 22rem; width: 100%; margin: 0; }
  .page-home .header-actions { order: 3; justify-self: end; }
  .page-home .search-desktop input {
    border-radius: 0;
    border: none;
    border-bottom: 1px solid var(--gray-300);
    background: transparent;
    padding-left: 2rem;
  }
  .page-home .search-desktop {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2378716c' viewBox='0 0 24 24'%3E%3Cpath d='M15.5 14h-.79l-.28-.27A6.471 6.471 0 0016 9.5 6.5 6.5 0 109.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z'/%3E%3C/svg%3E") no-repeat 0 55%;
  }
}

.nav-desktop .nav-link-outlet,
.mobile-menu .nav-link-outlet {
  color: #dc2626 !important;
  font-weight: 700;
}
.nav-desktop .nav-link-outlet:hover {
  color: #b91c1c !important;
}

.font-serif {
  font-family: 'Cormorant Garamond', Georgia, serif;
}

/* Üç sütunlu hero */
.home-triptych {
  width: 100%;
  background: var(--gray-900);
}
.home-triptych-grid {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: min(72vh, 720px);
}
@media (min-width: 768px) {
  .home-triptych-grid {
    flex-direction: row;
    min-height: min(78vh, 820px);
  }
}
.home-triptych-panel {
  position: relative;
  flex: 1 1 0;
  min-height: 220px;
  min-width: 0;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  color: #fff;
  overflow: hidden;
  transition: transform 0.45s ease;
}
@media (hover: hover) {
  .home-triptych-panel:hover {
    z-index: 2;
    transform: scale(1.02);
  }
}
.home-triptych-bg,
.home-triptych-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.home-triptych-bg {
  background-size: cover;
  background-position: center;
}
.home-triptych-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 10, 9, 0.15) 0%, rgba(12, 10, 9, 0.75) 100%);
  pointer-events: none;
}
.home-triptych-inner {
  position: relative;
  z-index: 2;
  padding: 1.25rem 1rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 100%;
}
@media (min-width: 768px) {
  .home-triptych-inner { padding: 2rem 1.25rem 2.25rem; }
}
.home-triptych-title {
  font-size: clamp(1.25rem, 2.5vw, 1.85rem);
  font-weight: 600;
  line-height: 1.2;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}
.home-triptych-desc {
  font-size: clamp(0.8rem, 1.5vw, 0.95rem);
  opacity: 0.92;
  line-height: 1.45;
  max-width: 28ch;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}
.home-triptych-cta {
  display: inline-block;
  margin-top: 0.35rem;
  align-self: flex-start;
  background: #fff;
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.55rem 1rem;
  border-radius: 2px;
}

/* Duyuru şeridi */
.home-ticker {
  background: #fff;
  border-bottom: 1px solid var(--gray-200);
  overflow: hidden;
  font-size: 0.8125rem;
  color: var(--gray-800);
}
.home-ticker-track {
  display: flex;
  width: max-content;
  gap: 4rem;
  padding: 0.65rem 0;
  animation: homeTickerMarquee 38s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .home-ticker-track { animation: none; justify-content: center; width: 100%; flex-wrap: wrap; }
}
@keyframes homeTickerMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.home-ticker-item {
  white-space: nowrap;
  font-weight: 500;
}

.section-tight-top {
  padding-top: 2.5rem !important;
}

/* İki sütun sezon trendleri */
.home-editorial-duo {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .home-editorial-duo {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 1.25rem;
  }
}
.home-editorial-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 320px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
@media (min-width: 768px) {
  .home-editorial-card { min-height: 420px; }
}
.home-editorial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.home-editorial-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.home-editorial-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(12, 10, 9, 0.82) 100%);
}
.home-editorial-content {
  position: relative;
  z-index: 2;
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.home-editorial-title {
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 600;
  line-height: 1.15;
}
.home-editorial-sub {
  font-size: 0.9rem;
  opacity: 0.9;
  line-height: 1.5;
  max-width: 36ch;
}
.home-editorial-btn {
  display: inline-block;
  align-self: flex-start;
  margin-top: 0.5rem;
  background: #fff;
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
}

/* Footer — üst USP şeridi (açık zemin) */
.footer-usp-strip {
  background: #f5f5f4;
  border-bottom: 1px solid var(--gray-200);
  padding: 1.25rem 0;
}
.footer-usp-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .footer-usp-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .footer-usp-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem 1.25rem; }
}
@media (min-width: 1280px) {
  .footer-usp-grid { grid-template-columns: repeat(6, 1fr); }
}
.footer-usp-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.65rem 0.75rem;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--gray-800);
}
.footer-usp-ico { font-size: 1.25rem; line-height: 1; flex-shrink: 0; }
.footer-usp-text { display: flex; flex-direction: column; gap: 0.15rem; min-width: 0; }
.footer-usp-text strong { font-size: 0.65rem; font-weight: 700; color: var(--gray-900); }
.footer-usp-sub { font-size: 0.65rem; font-weight: 500; color: var(--gray-600); text-transform: none; letter-spacing: 0.02em; line-height: 1.35; }
.footer-usp-link { color: var(--primary-800); text-decoration: underline; text-underline-offset: 2px; }

/* Açık zeminli footer şeritleri: .site-footer span/p beyaz kuralını geç — metin siyah */
.site-footer .footer-usp-strip {
  color: #0c0a09;
}
.site-footer .footer-usp-strip .footer-usp-item,
.site-footer .footer-usp-strip .footer-usp-ico,
.site-footer .footer-usp-strip .footer-usp-text,
.site-footer .footer-usp-strip .footer-usp-text strong,
.site-footer .footer-usp-strip .footer-usp-sub {
  color: #0c0a09;
}
.site-footer .footer-usp-strip .footer-usp-sub {
  color: #44403c;
}
.site-footer .footer-usp-strip .footer-usp-link {
  color: #1c1917;
}
.site-footer .footer-usp-strip .footer-usp-link:hover {
  color: #000000;
}

.site-footer .footer-payments-row {
  color: #0c0a09;
}
.site-footer .footer-payments-row .footer-payments-inner,
.site-footer .footer-payments-row .footer-pay-label,
.site-footer .footer-payments-row .footer-pay-site,
.site-footer .footer-payments-row .footer-pay-badges {
  color: #0c0a09;
}
.site-footer .footer-payments-row .footer-pay-badges {
  color: #57534e;
}

.footer-grid-zenne {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .footer-grid-zenne { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .footer-grid-zenne {
    grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
    gap: 2.5rem;
    align-items: start;
  }
}

.footer-follow-script {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-style: italic;
  margin: 0 0 0.75rem;
  color: rgba(255, 255, 255, 0.95);
}
.footer-brand-desc,
.footer-brand-contact,
.footer-brand-legal {
  font-size: 0.8125rem;
  color: var(--gray-400);
  margin: 0.75rem 0 0;
  line-height: 1.55;
}
.footer-brand-legal { font-size: 0.6875rem; color: var(--gray-500); }
.footer-etbis-badge {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-top: 1.25rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  max-width: 16rem;
}
.footer-etbis-qr { font-size: 1.75rem; line-height: 1; }
.footer-etbis-title { display: block; font-size: 0.75rem; margin-bottom: 0.25rem; color: #fff; }
.footer-etbis-desc { font-size: 0.6875rem; color: var(--gray-400); margin: 0; line-height: 1.45; }

.footer-col-newsletter h4 {
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
}
.footer-newsletter-lead {
  font-size: 0.8125rem;
  color: var(--gray-400);
  margin: 0 0 1rem;
  line-height: 1.5;
}
.footer-newsletter-label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.footer-newsletter-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding-bottom: 0.35rem;
  margin-bottom: 0.75rem;
}
.footer-newsletter-icon {
  font-size: 0.65rem;
  color: var(--gray-500);
}
.footer-newsletter-input {
  flex: 1;
  background: transparent !important;
  border: none !important;
  color: #fff !important;
  padding: 0.35rem 0 !important;
  margin: 0 !important;
  font-size: 0.875rem;
}
.footer-newsletter-input::placeholder {
  color: var(--gray-500);
}
.footer-newsletter-submit {
  width: 100%;
}
.footer-newsletter-msg {
  font-size: 0.8125rem;
  margin: 0.5rem 0 0;
  min-height: 1.25rem;
}

.footer-payments-row {
  background: #fafaf9;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 1rem 0;
}
.footer-payments-inner {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  text-align: center;
  font-size: 0.75rem;
  color: var(--gray-600);
}
@media (min-width: 768px) {
  .footer-payments-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.footer-pay-label {
  display: block;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 0.25rem;
}
.footer-pay-badges {
  font-size: 0.6875rem;
  color: var(--gray-500);
}
.footer-pay-site {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-800);
}

.footer-tagline-bar {
  background: #0c0a09;
  color: #fff;
  text-align: center;
  padding: 0.65rem 1rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.footer-tagline-bar p {
  margin: 0;
  color: #fff !important;
}

/* Ana sayfa: açık zeminde siyah metin, koyu foto/CTA üzerinde beyaz metin */
.page-home #main-content > .section:not(.cta-section),
.page-home #main-content .section.bg-gray-50 {
  color: #0c0a09;
}
.page-home #main-content .heading-2,
.page-home #main-content .editorial-card .heading-2 {
  color: #000000;
}
.page-home #main-content .product-card h3 {
  color: #000000;
}
.page-home #main-content .text-body,
.page-home #main-content .faq-details .text-body,
.page-home #main-content .editorial-card .text-body {
  color: #292524;
}
.page-home #main-content .section-eyebrow {
  color: #1c1917;
}
.page-home #main-content .link-primary {
  color: #0c0a09;
}
.page-home #main-content .link-primary:hover {
  color: #000000;
}
.page-home #main-content .price,
.page-home #main-content .price-discount {
  color: #000000;
}
.page-home #main-content .price-original {
  color: #57534e;
}
.page-home .home-review-text {
  color: #1c1917;
}
.page-home .home-review-meta,
.page-home .home-review-name {
  color: #0c0a09;
}
.page-home .home-review-card .link-primary {
  color: #0c0a09;
}
.page-home .faq-summary {
  color: #000000;
}
.page-home .hero-gallery-title {
  display: block;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #000000;
}
.page-home .home-ticker,
.page-home .home-ticker-item {
  color: #0c0a09;
}
.page-home .home-footer-usp .usp-item-title {
  color: #000000;
}
.page-home .home-footer-usp .usp-item-desc {
  color: #292524;
}
.page-home .cta-section h2,
.page-home .cta-section .container-custom {
  color: #ffffff;
}
.page-home .cta-section p {
  color: rgba(255, 255, 255, 0.92);
}

/* ========== Mobil vitrin (zenne-benzeri: beyaz zemin, alt çizgili arama, yatay kategori şeridi) ========== */
.nav-mobile-cat {
  display: none;
}
@media (max-width: 1023px) {
  .nav-mobile-cat {
    display: block;
    background: #ffffff;
    border-bottom: 1px solid #e7e5e4;
  }
  .nav-mobile-cat-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 0.75rem;
  }
  .nav-mobile-cat-scroll {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.5rem 1.25rem;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    padding: 0.65rem 0;
    margin: 0 -0.25rem;
  }
  .nav-mobile-cat-scroll::-webkit-scrollbar {
    display: none;
  }
  .nav-mobile-cat-link {
    flex: 0 0 auto;
    scroll-snap-align: start;
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    color: #0c0a09;
    white-space: nowrap;
    padding: 0.35rem 0.15rem;
  }
  .nav-mobile-cat-link--outlet,
  .nav-mobile-cat-link.nav-mobile-cat-link--outlet {
    color: #dc2626 !important;
    font-weight: 700;
  }
  .nav-mobile-cat-link:active {
    opacity: 0.75;
  }

  body.site-premium {
    background: #ffffff;
    background-image: none;
  }
  .section {
    padding: 2.25rem 0;
  }
  .container-custom {
    padding-left: max(0.75rem, env(safe-area-inset-left));
    padding-right: max(0.75rem, env(safe-area-inset-right));
  }

  .home-triptych-panel {
    min-height: 52vh;
  }
  .home-editorial-card {
    min-height: 280px;
  }
  .home-ticker-track {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .footer-usp-grid {
    grid-template-columns: 1fr !important;
  }
  @media (min-width: 480px) {
    .footer-usp-grid {
      grid-template-columns: repeat(2, 1fr) !important;
    }
  }

  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 1rem !important;
  }
  .grid-cat-5 {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem !important;
  }

  .site-header {
    z-index: 100;
  }
}
