/* ============================================================
   RULMAN TEDARİK — Modern v3.0
   Antrasit Gri + Altın Sarısı — Kurumsal & Lüks
   ============================================================ */

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

:root {
  --bg-0:  #0a0a0a;
  --bg-1:  #111111;
  --bg-2:  #181818;
  --bg-3:  #202020;
  --bg-4:  #2a2a2a;
  --bg-5:  #333333;

  --gold:        #d4a017;
  --gold-2:      #f0bc2e;
  --gold-3:      #fcd34d;
  --gold-dim:    rgba(212,160,23,0.10);
  --gold-glow:   rgba(212,160,23,0.22);
  --border-gold: rgba(212,160,23,0.18);

  --text-0: #f0f0f0;
  --text-1: #b8b8b8;
  --text-2: #707070;
  --text-3: #404040;

  --green:  #22c55e;
  --red:    #ef4444;
  --border: rgba(255,255,255,0.07);

  --r-xs: 4px;
  --r-sm: 8px;
  --r:    12px;
  --r-lg: 18px;
  --r-xl: 24px;

  --header-h: 72px;
  --ease: cubic-bezier(0.4,0,0.2,1);
  --shadow: 0 20px 60px rgba(0,0,0,0.6);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg-1);
  color: var(--text-1);
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 9000;
  background: rgba(10,10,10,0.88);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border-bottom: 1px solid var(--border);
  transition: background .3s var(--ease), border-color .3s, box-shadow .3s;
}

.site-header.scrolled {
  background: rgba(10,10,10,0.97);
  border-color: var(--border-gold);
  box-shadow: 0 4px 40px rgba(0,0,0,0.8);
}

.header-inner {
  display: flex;
  align-items: center;
  height: var(--header-h);
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-right: 32px;
}

.site-logo .custom-logo-link { display: flex; align-items: center; }
.site-logo .custom-logo-link img,
.site-logo img { max-height: 50px; width: auto; }

.logo-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Roboto', sans-serif;
  font-size: 16px; font-weight: 800;
  color: #000;
  flex-shrink: 0;
}

.logo-text .brand {
  display: block;
  font-family: 'Roboto', sans-serif;
  font-size: 18px; font-weight: 800;
  letter-spacing: 1px;
  color: var(--text-0);
  line-height: 1.1;
}

.logo-text .tagline {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 3px;
  opacity: 0.8;
}

/* ============================================================
   NAV — Normal + Mega Menü
   ============================================================ */
.nav-primary {
  display: flex;
  align-items: center;
  height: 100%;
  flex: 1;
}

.nav-primary > ul,
.nav-primary ul { display: flex; align-items: center; height: 100%; gap: 2px; list-style: none; }

.nav-primary > ul > li,
.nav-primary ul > li { position: relative; height: 100%; display: flex; align-items: center; }

.nav-primary ul > li > a {
  display: flex; align-items: center; gap: 4px;
  padding: 0 15px; height: 100%;
  font-size: 13.5px; font-weight: 600;
  color: var(--text-1); letter-spacing: 0.2px;
  transition: color .2s; white-space: nowrap; position: relative;
}

.nav-primary ul > li > a:hover,
.nav-primary ul > li.current-menu-item > a { color: var(--gold-2); }

.nav-primary ul > li > a::after {
  content: ''; position: absolute;
  bottom: 0; left: 15px; right: 15px;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s var(--ease);
  border-radius: 2px 2px 0 0;
}
.nav-primary ul > li > a:hover::after,
.nav-primary ul > li.current-menu-item > a::after { transform: scaleX(1); }

.nav-arrow {
  font-size: 8px; color: var(--gold);
  transition: transform .22s var(--ease); display: inline-block;
}
.has-mega:hover .nav-arrow,
.has-dropdown:hover .nav-arrow { transform: rotate(180deg); }

/* Standart Dropdown */
.dropdown-menu {
  position: absolute;
  top: calc(var(--header-h) - 1px); left: 0;
  min-width: 210px;
  background: var(--bg-2);
  border: 1px solid var(--border-gold);
  border-top: 2px solid var(--gold);
  border-radius: 0 0 var(--r) var(--r);
  box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: all .22s var(--ease);
  pointer-events: none; z-index: 9100; padding: 8px 0;
}

.has-dropdown:hover > .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto;
}

.dropdown-menu li { height: auto; display: block; }
.dropdown-menu li a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 18px; font-size: 13.5px; color: var(--text-1);
  transition: all .18s; border-left: 2px solid transparent; height: auto;
}
.dropdown-menu li a:hover {
  background: var(--gold-dim); color: var(--gold-2);
  border-left-color: var(--gold); padding-left: 22px;
}
.dropdown-menu li a::after { display: none; }
.dropdown-icon { font-size: 12px; }

/* MEGA DROPDOWN */
.mega-dropdown {
  position: absolute;
  top: calc(var(--header-h) - 1px); left: -100px;
  width: 680px;
  background: var(--bg-2);
  border: 1px solid var(--border-gold);
  border-top: 2px solid var(--gold);
  border-radius: 0 0 var(--r-lg) var(--r-lg);
  box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: all .25s var(--ease);
  pointer-events: none; z-index: 9100; padding: 26px;
}

.has-mega:hover > .mega-dropdown {
  opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto;
}

.mega-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid var(--border);
}

.mega-header-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold);
}

.mega-all-link {
  font-size: 12px; font-weight: 600; color: var(--text-2);
  display: flex; align-items: center; gap: 5px; transition: color .18s;
}
.mega-all-link:hover { color: var(--gold); }

.mega-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }

.mega-item {
  display: flex; align-items: flex-start; gap: 11px;
  padding: 12px 13px; border-radius: var(--r-sm);
  border: 1px solid transparent;
  transition: all .2s var(--ease); color: var(--text-1);
}
.mega-item:hover { background: var(--gold-dim); border-color: var(--border-gold); color: var(--text-0); }

.mega-item-icon {
  width: 36px; height: 36px;
  background: var(--bg-3); border: 1px solid var(--border);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0; transition: all .2s;
}
.mega-item:hover .mega-item-icon { background: var(--gold-dim); border-color: var(--border-gold); }

.mega-item-name { font-size: 13px; font-weight: 600; line-height: 1.3; margin-bottom: 3px; }
.mega-item-desc { font-size: 11px; color: var(--text-2); line-height: 1.5; }

/* Header sağ */
.header-right {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  flex-shrink: 0;
}

/* Arama ikonu */
.header-search-btn {
  width: 38px; height: 38px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-1);
  transition: all .2s;
  flex-shrink: 0;
}

.header-search-btn:hover {
  background: var(--gold-dim);
  border-color: var(--border-gold);
  color: var(--gold);
}

.header-search-btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* Telefon */
.header-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #000 !important;
  font-weight: 700;
  font-size: 13.5px;
  padding: 9px 17px;
  border-radius: var(--r-sm);
  white-space: nowrap;
  transition: all .2s;
  letter-spacing: 0.2px;
  border: none;
}

.header-phone:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px var(--gold-glow);
  color: #000 !important;
}

.header-phone svg { width: 14px; height: 14px; fill: #000; flex-shrink: 0; }

/* Mobile toggle */
.menu-toggle {
  display: none;
  background: var(--bg-3);
  border: 1px solid var(--border);
  color: var(--text-1);
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  align-items: center;
  justify-content: center;
  font-size: 17px;
  transition: all .2s;
  flex-shrink: 0;
}

.menu-toggle:hover { border-color: var(--border-gold); color: var(--gold); }

/* ============================================================
   ARAMA OVERLAY
   ============================================================ */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 100px;
  opacity: 0;
  visibility: hidden;
  transition: all .28s var(--ease);
}

.search-overlay.open { opacity: 1; visibility: visible; }

.search-box {
  width: 100%;
  max-width: 660px;
  padding: 0 24px;
  transform: translateY(-24px);
  transition: transform .3s var(--ease);
}

.search-overlay.open .search-box { transform: translateY(0); }

.search-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 2.5px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}

.search-input-wrap {
  display: flex;
  align-items: center;
  background: var(--bg-2);
  border: 2px solid var(--border-gold);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.search-input-wrap svg {
  width: 19px; height: 19px;
  stroke: var(--gold); fill: none; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
  margin-left: 20px;
  flex-shrink: 0;
}

#search-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  padding: 18px 14px;
  font-size: 18px;
  color: var(--text-0);
  font-family: 'Roboto', sans-serif;
}

#search-input::placeholder { color: var(--text-3); }

.search-submit {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  border: none;
  color: #000;
  font-weight: 700;
  font-size: 13px;
  padding: 18px 22px;
  white-space: nowrap;
  transition: opacity .2s;
  cursor: pointer;
}

.search-submit:hover { opacity: 0.9; }

.search-hints {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.search-hint {
  background: var(--bg-3);
  border: 1px solid var(--border);
  color: var(--text-2);
  padding: 5px 12px;
  border-radius: 30px;
  font-size: 12px;
  cursor: pointer;
  transition: all .18s;
}

.search-hint:hover { background: var(--gold-dim); border-color: var(--border-gold); color: var(--gold-2); }

.search-close {
  display: block;
  text-align: center;
  margin-top: 14px;
  font-size: 12px;
  color: var(--text-3);
  cursor: pointer;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 1px;
}

.search-close:hover { color: var(--text-1); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--header-h);
  background: var(--bg-0);
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 72% 38%, rgba(40,32,0,0.6) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 12% 88%, rgba(212,160,23,0.05) 0%, transparent 50%),
    var(--bg-0);
}

.hero-grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(212,160,23,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,160,23,0.03) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse 100% 100% at 50% 50%, black 10%, transparent 75%);
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 1240px; margin: 0 auto;
  padding: 60px 32px;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 80px;
  align-items: center;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  color: var(--gold-2);
  padding: 5px 14px 5px 10px;
  border-radius: 30px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-badge::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0.3;} }

.hero-title {
  font-family: 'Roboto', sans-serif;
  font-size: clamp(40px, 5.2vw, 66px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.5px;
  color: var(--text-0);
  margin-bottom: 18px;
}

.hero-title span { color: var(--gold); display: block; }

.hero-desc {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 34px;
  max-width: 500px;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 50px; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #000; font-weight: 700; font-size: 14px;
  padding: 13px 24px; border-radius: var(--r-sm);
  border: 2px solid transparent;
  transition: all .22s var(--ease);
  white-space: nowrap;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--gold-glow);
  color: #000;
}

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--text-0);
  font-weight: 600; font-size: 14px;
  padding: 13px 24px; border-radius: var(--r-sm);
  border: 2px solid var(--border);
  transition: all .22s var(--ease);
  white-space: nowrap;
}

.btn-secondary:hover {
  border-color: var(--border-gold);
  color: var(--gold-2);
  background: var(--gold-dim);
}

.hero-stats {
  display: flex;
  border-top: 1px solid var(--border);
  padding-top: 28px;
}

.hero-stat {
  flex: 1; padding-right: 24px;
  border-right: 1px solid var(--border);
}

.hero-stat:last-child { border-right: none; padding-right: 0; }
.hero-stat:not(:first-child) { padding-left: 24px; }

.hero-stat .num {
  font-family: 'Roboto', sans-serif;
  font-size: 32px; font-weight: 800;
  color: var(--gold); line-height: 1;
}

.hero-stat .lbl {
  font-size: 10px; color: var(--text-3);
  text-transform: uppercase; letter-spacing: 1.5px;
  margin-top: 5px; font-family: 'JetBrains Mono', monospace;
}

/* Hero görseli */
.hero-visual { display: flex; align-items: center; justify-content: center; }

.gear-container { position: relative; width: 360px; height: 360px; }

.gear-ring { position: absolute; border-radius: 50%; }
.gear-ring-1 { inset: 0;    border: 1px solid rgba(212,160,23,0.12); animation: rotate 35s linear infinite; }
.gear-ring-2 { inset: 40px; border: 1px dashed rgba(212,160,23,0.08); animation: rotate 22s linear infinite reverse; }
.gear-ring-3 { inset: 80px; border: 2px solid rgba(212,160,23,0.18); animation: rotate 14s linear infinite; }

@keyframes rotate { to { transform: rotate(360deg); } }

.gear-center {
  position: absolute; inset: 125px;
  background: radial-gradient(circle at 40% 40%, var(--bg-3), var(--bg-0));
  border: 2px solid rgba(212,160,23,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 50px rgba(212,160,23,0.07), inset 0 0 30px rgba(0,0,0,0.5);
}

.gear-center svg { width: 48px; height: 48px; fill: var(--gold); opacity: 0.75; }

.gear-tag {
  position: absolute;
  background: var(--bg-2);
  border: 1px solid var(--border-gold);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--r-xs) var(--r-xs) 0;
  padding: 6px 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--gold-2);
  white-space: nowrap;
  animation: floatTag 4s ease-in-out infinite;
}

.gear-tag:nth-child(5) { top: 10%; right: 0;    animation-delay: 0s; }
.gear-tag:nth-child(6) { top: 36%; right: -4%;  animation-delay: 1s; }
.gear-tag:nth-child(7) { bottom: 22%; right: 0; animation-delay: 2s; }
.gear-tag:nth-child(8) { bottom: 8%; left: 8%;  animation-delay: 0.5s; }

@keyframes floatTag { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-6px);} }

/* ============================================================
   MARKA TICKER
   ============================================================ */
.brands-strip {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
}

.brands-strip::before,
.brands-strip::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 90px; z-index: 2; pointer-events: none;
}

.brands-strip::before { left: 0;  background: linear-gradient(to right, var(--bg-2), transparent); }
.brands-strip::after  { right: 0; background: linear-gradient(to left,  var(--bg-2), transparent); }

.marquee-track { display: flex; animation: marquee 22s linear infinite; width: max-content; }
.marquee-track:hover { animation-play-state: paused; }

.brand-item {
  display: flex; align-items: center; gap: 8px;
  padding: 0 34px;
  color: var(--text-3);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  white-space: nowrap; transition: color .2s;
}

.brand-item:hover { color: var(--gold); }
.brand-item::before { content: '◆'; color: var(--gold); font-size: 5px; opacity: 0.4; }

@keyframes marquee { from{transform:translateX(0);} to{transform:translateX(-50%);} }

/* ============================================================
   SECTION — Ortak
   ============================================================ */
section { padding: 100px 0; }

.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--gold);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  margin-bottom: 12px;
}

.section-label::before { content: ''; width: 20px; height: 2px; background: var(--gold); border-radius: 2px; }

.section-title {
  font-family: 'Roboto', sans-serif;
  font-size: clamp(28px, 3.8vw, 48px);
  font-weight: 800; letter-spacing: -0.5px;
  color: var(--text-0); line-height: 1.1; margin-bottom: 12px;
}

.section-desc { color: var(--text-2); font-size: 15px; max-width: 540px; line-height: 1.75; }

/* ============================================================
   ÜRÜNLER
   ============================================================ */
#urunler { background: var(--bg-1); }

.products-header {
  display: flex; align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px; flex-wrap: wrap; gap: 20px;
}

.products-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }

.product-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: all .28s var(--ease);
  cursor: pointer;
  display: block; color: inherit; text-decoration: none;
  position: relative;
}

.product-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--gold-dim), transparent);
  opacity: 0; transition: opacity .28s; pointer-events: none; z-index: 0;
}

.product-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5), 0 0 0 1px var(--border-gold);
  color: inherit;
}

.product-card:hover::before { opacity: 1; }

.product-card-img {
  aspect-ratio: 4/3;
  background: var(--bg-3);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}

.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.product-card:hover .product-card-img img { transform: scale(1.04); }
.placeholder-icon { font-size: 54px; opacity: 0.15; }

.product-card-body { padding: 16px 18px 18px; position: relative; z-index: 1; }

.product-cat {
  font-size: 10px; font-family: 'JetBrains Mono', monospace;
  color: var(--gold); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 7px;
}

.product-card-body h3 {
  font-family: 'Roboto', sans-serif;
  font-size: 15px; font-weight: 700;
  color: var(--text-0); margin-bottom: 6px; line-height: 1.3;
}

.product-card-body p { font-size: 13px; color: var(--text-2); line-height: 1.6; }

.product-meta {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 13px; padding-top: 11px; border-top: 1px solid var(--border);
}

.product-brand { font-family: 'JetBrains Mono', monospace; font-size: 10px; color: var(--text-3); }

.product-stok {
  font-size: 10px; font-weight: 600;
  padding: 3px 9px; border-radius: 20px;
  font-family: 'JetBrains Mono', monospace;
}

.stok-var   { background: rgba(34,197,94,0.1);  color: #4ade80; }
.stok-sorgu { background: var(--gold-dim);        color: var(--gold-2); }
.stok-yok   { background: rgba(239,68,68,0.1);   color: #f87171; }

.product-card-cta {
  margin-top: 11px;
  font-size: 12px; font-weight: 600;
  color: var(--gold);
  opacity: 0; transform: translateX(-6px);
  transition: all .22s var(--ease);
  display: flex; align-items: center; gap: 5px;
}

.product-card:hover .product-card-cta { opacity: 1; transform: translateX(0); }

/* ============================================================
   HAKKIMIZDA
   ============================================================ */
#hakkimizda { background: var(--bg-2); }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 32px; }

.stat-box {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 18px;
  transition: border-color .2s;
}

.stat-box:hover { border-color: var(--border-gold); }

.stat-box .num {
  font-family: 'Roboto', sans-serif;
  font-size: 34px; font-weight: 800; color: var(--gold); line-height: 1;
}

.stat-box .lbl {
  font-size: 10px; font-family: 'JetBrains Mono', monospace;
  color: var(--text-3); margin-top: 5px;
  text-transform: uppercase; letter-spacing: 1.2px;
}

.about-features { display: flex; flex-direction: column; gap: 16px; margin-top: 26px; }

.feature-item { display: flex; gap: 12px; align-items: flex-start; }

.feature-icon {
  width: 38px; height: 38px;
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}

.feature-item h4 { color: var(--text-0); font-size: 14px; font-weight: 600; margin-bottom: 3px; }
.feature-item p  { font-size: 13px; color: var(--text-2); line-height: 1.6; }

.about-visual-wrap { position: relative; }

.about-img-main {
  border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--bg-3);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
}

.about-img-main img { width: 100%; height: 100%; object-fit: cover; }

.about-badge {
  position: absolute; bottom: -20px; left: -20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #000;
  padding: 16px 20px;
  border-radius: var(--r);
  text-align: center;
}

.about-badge .badge-num { font-family: 'Roboto', sans-serif; font-size: 36px; font-weight: 800; line-height: 1; color: #000; }
.about-badge .badge-text { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: rgba(0,0,0,0.65); }

/* ============================================================
   İLETİŞİM
   ============================================================ */
#iletisim { background: var(--bg-1); }

.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; }

.contact-info-list { display: flex; flex-direction: column; gap: 16px; margin-top: 26px; }

.contact-item { display: flex; gap: 14px; align-items: flex-start; }

.contact-item-icon {
  width: 44px; height: 44px;
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}

.contact-item-text label {
  display: block;
  font-size: 10px; font-family: 'JetBrains Mono', monospace;
  color: var(--gold); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 4px;
}

.contact-item-text span,
.contact-item-text a { font-size: 15px; color: var(--text-0); font-weight: 500; }
.contact-item-text a:hover { color: var(--gold-2); }

.contact-form {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px;
}

.contact-form h3 {
  font-family: 'Roboto', sans-serif;
  font-size: 24px; font-weight: 800; letter-spacing: -0.3px;
  color: var(--text-0); margin-bottom: 6px;
}

.contact-form > p { color: var(--text-2); font-size: 13px; margin-bottom: 24px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 12px; }

.form-group label { font-size: 12px; font-weight: 600; color: var(--text-1); }

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 11px 13px;
  color: var(--text-0);
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  transition: all .2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--border-gold);
  background: rgba(212,160,23,0.04);
  box-shadow: 0 0 0 3px rgba(212,160,23,0.07);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-3); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select option { background: var(--bg-2); color: var(--text-0); }

.form-submit { width: 100%; padding: 13px; font-size: 14px; cursor: pointer; border: none; border-radius: var(--r-sm); }

.form-message { display: none; padding: 10px 14px; border-radius: var(--r-sm); font-size: 13px; margin-top: 10px; }
.form-message.success { background: rgba(34,197,94,0.1); color: #4ade80; border: 1px solid rgba(34,197,94,0.25); display: block; }
.form-message.error   { background: rgba(239,68,68,0.1);  color: #f87171; border: 1px solid rgba(239,68,68,0.25); display: block; }

.whatsapp-cta {
  margin-top: 18px;
  display: flex; align-items: center; gap: 11px;
  background: rgba(37,211,102,0.07);
  border: 1px solid rgba(37,211,102,0.18);
  border-radius: var(--r-sm);
  padding: 13px 17px;
  color: #25d366; font-weight: 600; font-size: 13.5px;
  transition: all .2s;
}

.whatsapp-cta:hover { background: rgba(37,211,102,0.13); transform: translateY(-1px); color: #25d366; }
.whatsapp-cta svg  { width: 21px; height: 21px; fill: currentColor; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg-0);
  border-top: 1px solid var(--border);
  padding: 60px 0 22px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 44px;
}

.footer-about p { color: var(--text-3); font-size: 13px; line-height: 1.8; margin-top: 14px; max-width: 260px; }

.footer-col h4 {
  font-size: 10px; font-weight: 700;
  color: var(--text-0); letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 16px; padding-bottom: 10px;
  border-bottom: 1px solid var(--border-gold);
  font-family: 'JetBrains Mono', monospace;
}

.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: var(--text-3); font-size: 13px; transition: all .18s; }
.footer-col ul li a:hover { color: var(--gold-2); padding-left: 5px; }

.footer-contact-item { display: flex; gap: 9px; align-items: flex-start; margin-bottom: 10px; color: var(--text-3); font-size: 13px; }
.footer-contact-item span:first-child { font-size: 14px; margin-top: 1px; flex-shrink: 0; }

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

.footer-bottom p { color: var(--text-3); font-size: 11px; font-family: 'JetBrains Mono', monospace; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
  .hero-content  { gap: 40px; }
}

@media (max-width: 768px) {
  section { padding: 70px 0; }
  .container { padding: 0 20px; }

  .nav-primary { display: none; }
  .header-right .header-phone { display: none; }
  .menu-toggle { display: flex; }

  .nav-primary.open {
    display: block;
    position: fixed;
    top: var(--header-h); left: 0; right: 0;
    background: var(--bg-1);
    border-bottom: 1px solid var(--border-gold);
    padding: 12px 16px 20px;
    z-index: 8999;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }

  .nav-primary.open > ul,
  .nav-primary.open ul { flex-direction: column; height: auto; gap: 2px; }
  .nav-primary.open ul > li { height: auto; }
  .nav-primary.open ul > li > a { padding: 12px 14px; height: auto; }
  .nav-primary.open ul > li > a::after { display: none; }

  .mega-dropdown,
  .dropdown-menu {
    position: static; opacity: 1; visibility: visible;
    transform: none; box-shadow: none; border: none;
    background: var(--bg-2); border-radius: var(--r-sm);
    margin-top: 4px; width: auto !important; padding: 8px;
  }

  .mega-grid { grid-template-columns: 1fr 1fr; }

  .hero-content  { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual   { display: none; }
  .hero-stats    { flex-wrap: wrap; }
  .hero-stat     { border-right: none; padding: 0 0 14px 0; border-bottom: 1px solid var(--border); width: 50%; }
  .hero-stat:last-child { border-bottom: none; }

  .about-grid        { grid-template-columns: 1fr; }
  .about-visual-wrap { display: none; }
  .contact-grid      { grid-template-columns: 1fr; }
  .form-row          { grid-template-columns: 1fr; }
  .products-grid     { grid-template-columns: 1fr; }
  .footer-grid       { grid-template-columns: 1fr 1fr; }
  .products-header   { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .footer-grid   { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .contact-form  { padding: 20px; }
}

/* ── FONT OVERRIDE — Barlow Condensed başlıklar, Roboto metinler ── */
body {
  font-family: 'Roboto', sans-serif !important;
}

h1, h2, h3, h4, h5, h6,
.hero-title,
.section-title,
.logo-text .brand,
.product-card-body h3,
.contact-form h3,
.about-badge .badge-num,
.stat-box .num,
.hero-stat .num,
.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px !important;
}

p, span, a, li, label, input, textarea, select, button,
.hero-desc, .section-desc, .feature-item p,
.contact-item-text span, .contact-item-text a,
.product-card-body p, .footer-about p,
.footer-col ul li a, .footer-contact-item {
  font-family: 'Roboto', sans-serif !important;
}

/* Mono etiketler — değişmesin */
.section-label, .product-cat, .product-brand,
.product-stok, .hero-badge, .logo-text .tagline,
.gear-tag, .search-label, .search-hint,
.footer-bottom p, .stat-box .lbl, .hero-stat .lbl,
.mega-header-title, .search-close {
  font-family: 'JetBrains Mono', monospace !important;
}
