/* ==========================================================================
   Lioncure Mağaza — Stil Sistemi
   Lioncure kurumsal sitesindeki tasarım dilinden (koyu lacivert zemin +
   camgöbeği/mor/magenta gradyan aksan, altın "Suite" vurgusu) türetilmiştir.
   ========================================================================== */

:root {
  --bg-body: #080b16;
  --bg-body-alt: #0c1020;
  --bg-surface: #12172b;
  --bg-surface-2: #161d38;
  --border-subtle: rgba(148, 163, 210, 0.14);
  --border-glow: rgba(139, 92, 246, 0.35);

  --color-cyan: #22d3ee;
  --color-purple: #8b5cf6;
  --color-magenta: #e879f9;
  --color-gold: #d4af37;
  --gradient-gold: linear-gradient(145deg, #bf953f 0%, #fcf6ba 25%, #b38728 50%, #fbf5b7 75%, #aa771c 100%);
  --gradient-brand: linear-gradient(90deg, var(--color-cyan) 0%, var(--color-purple) 55%, var(--color-magenta) 100%);
  --gradient-brand-soft: linear-gradient(135deg, rgba(34, 211, 238, 0.18), rgba(139, 92, 246, 0.18) 55%, rgba(232, 121, 249, 0.18));

  --text-primary: #f4f6ff;
  --text-secondary: #a7b0d1;
  --text-muted: #6b7398;

  --radius-xl: 24px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --shadow-glow: 0 0 50px -10px rgba(139, 92, 246, 0.35);
  --shadow-card: 0 20px 40px -20px rgba(0, 0, 0, 0.6);

  --container-width: 1240px;
  --header-height: 84px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg-body);
  color: var(--text-primary);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: "Manrope", "Inter", sans-serif;
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 16px;
  color: var(--text-primary);
}

p { margin: 0 0 16px; color: var(--text-secondary); }
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; }

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

.gradient-text {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-cyan);
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 3px;
  border-radius: 4px;
  background: var(--gradient-brand);
}

/* --------------------------------------------------------------------------
   Butonlar
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-brand);
  color: #08101f;
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover { transform: translateY(-2px); opacity: 0.92; }

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
}

.btn-outline:hover { border-color: var(--color-purple); color: var(--color-cyan); }

.btn-gold {
  background: var(--gradient-gold);
  color: #2a1e02;
  border: 1px solid rgba(255, 240, 190, 0.5);
  box-shadow: 0 10px 30px -10px rgba(184, 134, 11, 0.75), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-gold:hover { transform: translateY(-2px); opacity: 0.94; }

.btn-block { width: 100%; }
.btn-sm { padding: 9px 18px; font-size: 13.5px; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none !important; }

.btn-icon {
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: var(--radius-sm);
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
}

.btn-icon:hover { border-color: var(--color-purple); color: var(--color-cyan); }
.btn-icon svg { width: 18px; height: 18px; }

/* --------------------------------------------------------------------------
   Header / Navigasyon
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 20px;
  z-index: 100;
  height: var(--header-height);
  display: flex;
  align-items: center;
  margin: 20px 24px 0;
  background: rgba(13, 17, 33, 0.9);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 48px -24px rgba(0, 0, 0, 0.65);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 32px;
}

.brand { display: flex; align-items: baseline; gap: 8px; }

.brand-word {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 21px;
  letter-spacing: -0.01em;
}

.brand-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.main-nav { display: flex; align-items: center; gap: 8px; }

.main-nav a {
  position: relative;
  padding: 10px 16px;
  font-weight: 600;
  font-size: 15px;
  color: var(--text-primary);
  border-radius: var(--radius-sm);
  transition: color 0.2s ease;
}

.main-nav a:hover { color: var(--color-cyan); }
.main-nav a.active { color: var(--color-cyan); }

.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 2px;
  height: 2px;
  border-radius: 2px;
  background: var(--color-cyan);
}

.header-actions { display: flex; align-items: center; gap: 12px; }

.cart-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.cart-link:hover { border-color: var(--color-purple); color: var(--color-cyan); }
.cart-link svg { width: 20px; height: 20px; }

.cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--gradient-brand);
  color: #08101f;
  font-size: 11px;
  font-weight: 800;
  display: none;
  align-items: center;
  justify-content: center;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  touch-action: manipulation;
  cursor: pointer;
}

.nav-toggle svg { pointer-events: none; }

/* --------------------------------------------------------------------------
   Genel bölümler
   -------------------------------------------------------------------------- */
.section { padding: 72px 0; }
.section-alt { background: var(--bg-body-alt); }
.section-sm { padding: 40px 0; }

.section-header { max-width: 640px; margin: 0 0 44px; }
.section-header.center { margin-left: auto; margin-right: auto; text-align: center; }

.card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 30px;
}

.page-banner {
  position: relative;
  overflow: hidden;
  padding: 56px 0;
  background: radial-gradient(circle at 80% 0%, rgba(139, 92, 246, 0.2), transparent 50%), var(--bg-body);
  border-bottom: 1px solid var(--border-subtle);
  text-align: center;
}

.page-banner h1 { font-size: clamp(28px, 3.4vw, 40px); margin-bottom: 10px; }
.page-banner p { max-width: 560px; margin: 0 auto; }

.breadcrumb { display: inline-flex; gap: 8px; font-size: 14px; color: var(--text-muted); margin-bottom: 14px; }
.breadcrumb a:hover { color: var(--color-cyan); }

/* --------------------------------------------------------------------------
   Mağaza vitrini (Hero)
   -------------------------------------------------------------------------- */
.store-hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 64px;
  background:
    radial-gradient(circle at 85% 15%, rgba(139, 92, 246, 0.22), transparent 45%),
    radial-gradient(circle at 10% 85%, rgba(34, 211, 238, 0.14), transparent 40%),
    var(--bg-body);
  text-align: center;
}

.store-hero h1 { font-size: clamp(32px, 4vw, 50px); margin-bottom: 18px; }
.store-hero > p { font-size: 17.5px; max-width: 620px; margin: 0 auto 32px; }
.store-hero .hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.trust-strip {
  display: flex;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border-subtle);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 600;
}

.trust-item svg { width: 20px; height: 20px; stroke: var(--color-cyan); flex-shrink: 0; }

/* --------------------------------------------------------------------------
   Sayısal istatistik şeridi (deneyim yılı, müşteri sayısı vb.)
   -------------------------------------------------------------------------- */
.stats-band { padding: 40px 0 8px; }

.stats-band-inner {
  display: flex;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
  background: var(--gradient-brand-soft);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
}

.stat-block { text-align: center; min-width: 140px; }

.stat-value {
  font-family: "Manrope", "Inter", sans-serif;
  font-weight: 800;
  font-size: 42px;
  line-height: 1;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 8px;
}

.stat-label { font-size: 13.5px; color: var(--text-secondary); font-weight: 600; }

/* --------------------------------------------------------------------------
   Hizmet verilen sektörler
   -------------------------------------------------------------------------- */
.sector-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.sector-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 26px 18px;
  border-radius: var(--radius-lg);
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

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

.sector-ico {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-brand-soft);
  border: 1px solid var(--border-glow);
}

.sector-ico svg { width: 28px; height: 28px; stroke: url(#iconGradient); }

.sector-card h4 { font-size: 15px; margin: 0; }

@media (max-width: 780px) {
  .sector-grid { grid-template-columns: repeat(2, 1fr); }
}

.tech-stack-line { text-align: center; margin-top: 22px; font-size: 12.5px; color: var(--text-muted); }
.tech-stack-line .tech-stack-names { color: var(--text-secondary); font-weight: 600; }

.partner-badges-label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 22px;
  letter-spacing: 0.01em;
}
.partner-badges { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-top: 10px; }
.partner-badge {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--color-cyan);
  border: 1px solid rgba(34, 211, 238, 0.35);
  background: rgba(34, 211, 238, 0.08);
  padding: 6px 14px;
  border-radius: 999px;
}

@media (max-width: 560px) {
  .stats-band-inner { gap: 36px; padding: 26px 24px; }
  .stat-value { font-size: 34px; }
}

/* --------------------------------------------------------------------------
   Kategori filtre çipleri
   -------------------------------------------------------------------------- */
.chip-row { display: flex; gap: 10px; flex-wrap: wrap; }

.chip {
  padding: 9px 20px;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  background: transparent;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.chip:hover { color: var(--text-primary); border-color: var(--color-purple); }

.chip.active {
  background: var(--gradient-brand);
  color: #08101f;
  border-color: transparent;
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   Ürün kartı / ızgara
   -------------------------------------------------------------------------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

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

.product-card-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 18px; }

.product-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-brand-soft);
  border: 1px solid var(--border-glow);
  flex-shrink: 0;
}

.product-icon svg { width: 28px; height: 28px; stroke: url(#iconGradient); }

.badge-pill {
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #2a1e02;
  background: var(--gradient-gold);
  white-space: nowrap;
}

.category-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-cyan);
  margin-bottom: 8px;
  display: block;
}

.product-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  line-height: 1.3;
}

.product-card .product-short {
  font-size: 14.5px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  flex-grow: 1;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--border-subtle);
}

.price-tag { display: flex; flex-direction: column; }

.price-value {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 21px;
  color: var(--text-primary);
  line-height: 1.2;
}

.price-unit { font-size: 12px; color: var(--text-muted); }

.product-card-link {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
}

.product-card-footer .btn { position: relative; z-index: 1; }

/* --------------------------------------------------------------------------
   Ürün detay sayfası
   -------------------------------------------------------------------------- */
.product-detail {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}

.product-media {
  position: sticky;
  top: 128px;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(120% 120% at 30% 20%, rgba(139, 92, 246, 0.22), transparent 60%),
    var(--bg-surface);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-media .product-icon {
  width: 140px;
  height: 140px;
  border-radius: 32px;
}

.product-media .product-icon svg { width: 70px; height: 70px; }

.product-info .category-label { margin-bottom: 12px; }
.product-info h1 { font-size: clamp(26px, 3vw, 34px); margin-bottom: 14px; }

.exclusive-note {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--gradient-gold);
  color: #2a1e02;
  font-size: 13.5px;
  font-weight: 700;
  padding: 12px 16px;
  border-radius: 12px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 240, 190, 0.5);
  box-shadow: 0 10px 30px -10px rgba(184, 134, 11, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.exclusive-note svg { width: 20px; height: 20px; flex-shrink: 0; }

.product-info .product-desc { font-size: 15.5px; margin-bottom: 28px; }

.product-price-box {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-subtle);
}

.product-price-box .price-value { font-size: 34px; }
.product-price-box .price-unit { font-size: 14px; }

.feature-list { margin-bottom: 32px; display: flex; flex-direction: column; gap: 13px; }

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 15px;
  color: var(--text-secondary);
}

.feature-list li svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-cyan);
  flex-shrink: 0;
  margin-top: 2px;
}

.qty-row { display: flex; align-items: center; gap: 18px; margin-bottom: 22px; flex-wrap: wrap; }

.qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.qty-stepper button {
  width: 42px;
  height: 46px;
  background: var(--bg-surface-2);
  border: none;
  color: var(--text-primary);
  font-size: 18px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.qty-stepper button:hover { background: rgba(139, 92, 246, 0.18); }

.qty-stepper input {
  width: 54px;
  height: 46px;
  border: none;
  border-left: 1px solid var(--border-subtle);
  border-right: 1px solid var(--border-subtle);
  background: transparent;
  color: var(--text-primary);
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  -moz-appearance: textfield;
}

.qty-stepper input::-webkit-outer-spin-button,
.qty-stepper input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.qty-label { font-size: 13.5px; color: var(--text-muted); }

.product-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.product-note {
  margin-top: 24px;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: var(--gradient-brand-soft);
  border: 1px solid var(--border-glow);
  font-size: 13.5px;
  color: var(--text-secondary);
}

/* --------------------------------------------------------------------------
   Sepet
   -------------------------------------------------------------------------- */
.cart-layout { display: grid; grid-template-columns: 1.6fr 1fr; gap: 40px; align-items: start; }

.cart-table { display: flex; flex-direction: column; gap: 16px; }

.cart-row {
  display: grid;
  grid-template-columns: auto 1fr auto auto auto;
  align-items: center;
  gap: 20px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 20px;
}

.cart-row .product-icon { width: 52px; height: 52px; border-radius: var(--radius-sm); }
.cart-row .product-icon svg { width: 24px; height: 24px; }

.cart-row-name { font-size: 15.5px; font-weight: 700; margin-bottom: 4px; }
.cart-row-unit { font-size: 13px; color: var(--text-muted); }

.cart-row-price { font-weight: 700; font-size: 15px; white-space: nowrap; }

.cart-row-remove {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.cart-row-remove:hover { border-color: #fb7185; color: #fb7185; }
.cart-row-remove svg { width: 16px; height: 16px; }

.summary-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: sticky;
  top: 128px;
}

.summary-box h3 { font-size: 18px; margin-bottom: 20px; }

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 14.5px;
  color: var(--text-secondary);
  margin-bottom: 14px;
}

.summary-row.total {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
  font-size: 18px;
  font-weight: 800;
  color: var(--text-primary);
}

.summary-note { font-size: 12.5px; color: var(--text-muted); margin: 16px 0 22px; }

.empty-state {
  text-align: center;
  padding: 80px 24px;
  background: var(--bg-surface);
  border: 1px dashed var(--border-subtle);
  border-radius: var(--radius-lg);
}

.empty-state svg { width: 56px; height: 56px; stroke: var(--text-muted); margin: 0 auto 20px; }
.empty-state h3 { margin-bottom: 10px; }

/* --------------------------------------------------------------------------
   Ödeme (checkout)
   -------------------------------------------------------------------------- */
.checkout-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; align-items: start; }

.checkout-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 30px;
  margin-bottom: 24px;
}

.checkout-card h3 {
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.step-badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gradient-brand-soft);
  border: 1px solid var(--border-glow);
  color: var(--color-cyan);
  font-size: 13px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .span-2 { grid-column: 1 / -1; }

.form-group { margin-bottom: 18px; }
.form-grid .form-group { margin-bottom: 0; }

.form-label { display: block; font-size: 13.5px; font-weight: 600; color: var(--text-secondary); margin-bottom: 8px; }

.form-control {
  width: 100%;
  padding: 13px 16px;
  background: var(--bg-surface-2);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 14.5px;
  transition: border-color 0.2s ease;
}

.form-control:focus { outline: none; border-color: var(--color-purple); }
.form-control::placeholder { color: var(--text-muted); }

.pay-methods { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 20px; }

.pay-method {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.pay-method input { accent-color: var(--color-purple); }
.pay-method.active,
.pay-method:has(input:checked) { border-color: var(--color-purple); background: var(--gradient-brand-soft); }
.pay-method span { font-size: 14px; font-weight: 600; }

.pay-fields { display: none; }
.pay-fields.active { display: grid; }

.summary-line-items { margin-bottom: 18px; display: flex; flex-direction: column; gap: 10px; }

.summary-line-item {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  color: var(--text-secondary);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-subtle);
}

.summary-line-item span:first-child { color: var(--text-primary); font-weight: 600; }

/* --------------------------------------------------------------------------
   Sipariş onay sayfası
   -------------------------------------------------------------------------- */
.confirm-box { max-width: 560px; margin: 0 auto; text-align: center; }

.confirm-icon {
  width: 84px;
  height: 84px;
  margin: 0 auto 26px;
  border-radius: 50%;
  background: var(--gradient-brand-soft);
  border: 1px solid var(--border-glow);
  display: flex;
  align-items: center;
  justify-content: center;
}

.confirm-icon svg { width: 40px; height: 40px; stroke: var(--color-cyan); }

.order-number {
  display: inline-block;
  margin: 20px 0 28px;
  padding: 10px 24px;
  border-radius: 999px;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  letter-spacing: 0.08em;
  background: var(--bg-surface);
  border: 1px solid var(--border-glow);
  color: var(--color-cyan);
}

/* --------------------------------------------------------------------------
   Toast bildirimi
   -------------------------------------------------------------------------- */
.lc-toast {
  position: fixed;
  left: 50%;
  bottom: 32px;
  transform: translate(-50%, 20px);
  padding: 14px 26px;
  background: var(--bg-surface);
  border: 1px solid var(--border-glow);
  border-radius: 999px;
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--shadow-card);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 999;
}

.lc-toast.show { opacity: 1; transform: translate(-50%, 0); }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  margin: 40px 24px 0;
  padding: 44px 40px 26px;
  background: var(--bg-body-alt);
  border: 1px solid var(--border-subtle);
  border-bottom: none;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.site-footer .container { padding: 0; }

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--border-subtle);
}

.footer-nav { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-nav a { font-size: 14.5px; color: var(--text-primary); }
.footer-nav a:hover { color: var(--color-cyan); }

.footer-bottom {
  padding-top: 18px;
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-mail { color: var(--color-cyan); font-weight: 600; }

/* --------------------------------------------------------------------------
   Yardımcı sınıflar
   -------------------------------------------------------------------------- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }

/* --------------------------------------------------------------------------
   Duyarlı (responsive)
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .site-header { backdrop-filter: none; -webkit-backdrop-filter: none; }

  .main-nav {
    position: fixed;
    inset: var(--header-height) 0 0 0;
    z-index: 99;
    background: var(--bg-body);
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    display: none;
    overflow-y: auto;
  }

  .main-nav.open { display: flex; }
  .nav-toggle { display: inline-flex; }

  .product-detail { grid-template-columns: 1fr; }
  .product-media { position: relative; top: 0; max-width: 420px; margin: 0 auto 8px; }

  .cart-layout,
  .checkout-layout { grid-template-columns: 1fr; }
  .summary-box { position: relative; top: 0; }
}

@media (max-width: 900px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .pay-methods { grid-template-columns: 1fr; }
  .section { padding: 52px 0; }
  .cart-row { grid-template-columns: auto 1fr; row-gap: 12px; }
  .cart-row-price { grid-column: 2; justify-self: start; }
  .cart-row-remove { position: absolute; top: 16px; right: 16px; }
  .cart-row { position: relative; }
}

@media (max-width: 620px) {
  .product-grid { grid-template-columns: 1fr; }
  .store-hero { padding: 64px 0 48px; }
}

/* --------------------------------------------------------------------------
   Marka logosu (gerçek görsel)
   -------------------------------------------------------------------------- */
.brand-logo {
  height: 34px;
  width: auto;
  display: block;
}

/* --------------------------------------------------------------------------
   WhatsApp sabit buton
   -------------------------------------------------------------------------- */
.whatsapp-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px -8px rgba(37, 211, 102, 0.6);
  transition: transform 0.2s ease;
}

.whatsapp-fab:hover { transform: translateY(-3px) scale(1.05); }
.whatsapp-fab svg { width: 30px; height: 30px; fill: #ffffff; }

/* --------------------------------------------------------------------------
   Karşılaştırma tablosu
   -------------------------------------------------------------------------- */
.compare-table-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--border-subtle); }

.compare-table { width: 100%; border-collapse: collapse; background: var(--bg-surface); min-width: 640px; }

.compare-table th,
.compare-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 14px;
  color: var(--text-secondary);
}

.compare-table th {
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  background: var(--bg-surface-2);
}

.compare-table td:first-child,
.compare-table th:first-child { color: var(--text-primary); font-weight: 600; }

.compare-table tr:last-child td { border-bottom: none; }

/* --------------------------------------------------------------------------
   Referanslar (testimonials)
   -------------------------------------------------------------------------- */
.testimonial-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 26px;
}

.testimonial-stars { color: var(--color-gold); letter-spacing: 3px; margin-bottom: 14px; font-size: 15px; }

.testimonial-quote { font-size: 14.5px; color: var(--text-secondary); font-style: italic; margin-bottom: 20px; }

.testimonial-author { display: flex; align-items: center; gap: 12px; }

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-brand-soft);
  border: 1px solid var(--border-glow);
  flex-shrink: 0;
}

.testimonial-author strong { display: block; font-size: 14px; color: var(--text-primary); }
.testimonial-author span { font-size: 12.5px; color: var(--text-muted); }

.placeholder-note {
  max-width: 720px;
  margin: 0 auto 32px;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  background: rgba(251, 113, 133, 0.1);
  border: 1px solid rgba(251, 113, 133, 0.35);
  color: #fca5b1;
  font-size: 13px;
  text-align: center;
}

/* --------------------------------------------------------------------------
   SSS (accordion)
   -------------------------------------------------------------------------- */
.faq-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  overflow: hidden;
}

.faq-item summary {
  padding: 18px 22px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-size: 20px;
  color: var(--color-cyan);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item-body { padding: 0 22px 20px; font-size: 14.5px; color: var(--text-secondary); }

/* --------------------------------------------------------------------------
   Arama kutusu
   -------------------------------------------------------------------------- */
.search-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-bottom: 22px; }

.search-input {
  flex: 1 1 260px;
  max-width: 360px;
  padding: 12px 16px;
  background: var(--bg-surface-2);
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  color: var(--text-primary);
  font-size: 14px;
}

.search-input:focus { outline: none; border-color: var(--color-purple); }

@media (max-width: 620px) {
  .whatsapp-fab { right: 16px; bottom: 16px; width: 52px; height: 52px; }
  .whatsapp-fab svg { width: 26px; height: 26px; }
}

.kvkk-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 18px;
  cursor: pointer;
}

.kvkk-checkbox input[type="checkbox"] {
  flex-shrink: 0;
  width: 17px;
  height: 17px;
  margin-top: 2px;
  accent-color: var(--color-purple);
  cursor: pointer;
}

.kvkk-checkbox span {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.kvkk-checkbox a { color: var(--color-cyan); font-weight: 600; }

/* --------------------------------------------------------------------------
   Hukuki metin (KVKK) sayfa düzeni
   -------------------------------------------------------------------------- */
.legal-content { max-width: 780px; }

.legal-meta { font-size: 13px; color: var(--text-muted); margin-bottom: 18px; }

.legal-disclaimer {
  background: rgba(251, 113, 133, 0.1);
  border: 1px solid rgba(251, 113, 133, 0.35);
  color: #fca5b1;
  font-size: 13.5px;
  line-height: 1.6;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  margin-bottom: 36px;
}

.legal-content h2 {
  font-size: 19px;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
}

.legal-content h2:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }

.legal-content p { font-size: 14.5px; line-height: 1.75; }

.legal-list { margin: 0 0 16px; padding: 0; }

.legal-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-secondary);
}

.legal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gradient-brand);
}

.legal-list a, .legal-content p a { color: var(--color-cyan); font-weight: 600; }

/* --------------------------------------------------------------------------
   KVKK onay ekranı (site geneli gate)
   -------------------------------------------------------------------------- */
.kvkk-gate-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(5, 7, 16, 0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.kvkk-gate-card {
  max-width: 520px;
  width: 100%;
  background: var(--bg-surface);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glow), var(--shadow-card);
  padding: 32px 30px;
  text-align: center;
}

.kvkk-gate-card img { height: 34px; width: auto; margin: 0 auto 18px; }

.kvkk-gate-card h2 {
  font-size: 18px;
  margin-bottom: 12px;
}

.kvkk-gate-card p {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 14px;
}

.kvkk-gate-card a.kvkk-gate-link {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-cyan);
  margin-bottom: 22px;
}

.kvkk-gate-actions { display: flex; justify-content: center; }

.kvkk-gate-note {
  margin-top: 16px;
  font-size: 11.5px;
  color: var(--text-muted);
}

@media (max-width: 480px) {
  .kvkk-gate-card { padding: 26px 20px; }
}
