/* iZAP24 tarzı - açık tema */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body.izap-style {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: #333;
  -webkit-font-smoothing: antialiased;
  background: #f5f5f7;
}

body:not(.izap-style) {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #f5f5f5;
  background-color: #050509;
  background-image: linear-gradient(135deg, rgba(0,0,0,0.86), rgba(0,0,0,0.96)), url("../images/banner.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

body.izap-style .container {
  max-width: 1200px;
  margin: 20px auto 0;
  padding: 24px 20px 40px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

body:not(.izap-style) .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px 48px;
  background: rgba(5, 5, 15, 0.92);
  border-radius: 24px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.95), 0 0 0 1px rgba(255, 255, 255, 0.02);
}

/* iZAP24 ÜST BAR */
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 24px;
  background: #e8e8ec;
  font-size: 13px;
  color: #555;
}
.top-bar a {
  color: #444;
  margin-right: 16px;
}
.top-bar a:hover {
  color: #e65100;
}
.top-bar-sep { margin: 0 8px; opacity: 0.5; }
.top-bar-region { font-weight: 500; }

/* iZAP24 ANA HEADER */
.main-header {
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
  padding: 12px 24px;
  position: relative;
  z-index: 200;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 12px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #1a1a1a;
}
.site-logo:hover { color: #e65100; }
.logo-img {
  max-height: 55px;
  width: auto;
  object-fit: contain;
}
.logo-text-group {
  display: flex;
  flex-direction: column;
}
.logo-text {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.05em;
}
.logo-tagline {
  font-size: 11px;
  color: #888;
  margin-top: -2px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  padding: 10px 14px;
  font-size: 14px;
  color: #444;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.nav-link:hover {
  background: #f5f5f5;
  color: #e65100;
}
.nav-dropdown {
  position: relative;
}
.nav-link-drop::after {
  content: " ▾";
  font-size: 10px;
  opacity: 0.7;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  max-height: 400px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  padding: 8px 0;
  margin-top: 4px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
  z-index: 200;
}
.dropdown-menu a {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  color: #333;
}
.dropdown-menu a:hover,
.nav-dropdown-menu a:hover {
  background: #f5f5f5;
  color: #e65100;
}
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  padding: 8px 0;
  margin-top: 4px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
  z-index: 200;
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  color: #333;
}
.dropdown-all {
  border-top: 1px solid #eee;
  font-weight: 600;
  margin-top: 4px;
  padding-top: 12px !important;
}
.header-actions {
  flex-shrink: 0;
  margin-left: auto;
}
.cart-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: #e65100;
  color: #fff !important;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s;
}
.cart-btn:hover {
  background: #d84315;
  transform: translateY(-1px);
}
.cart-icon { font-size: 18px; }
.cart-count {
  background: rgba(255,255,255,0.3);
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 12px;
}
.cart-sum { font-size: 13px; opacity: 0.95; }

/* BANNER ARAMA (sarı şerit) */
.banner-search {
  background: linear-gradient(135deg, #ffc107 0%, #ff9800 50%, #f57c00 100%);
  padding: 20px 24px;
  margin-bottom: 0;
}
.banner-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.search-tabs {
  margin-bottom: 12px;
}
.search-tab {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255,255,255,0.9);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #5d4037;
}
.banner-search-form .search-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.banner-search-form select {
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.15);
  background: #fff;
  font-size: 14px;
  min-width: 140px;
}
.banner-search-form .search-submit {
  padding: 12px 28px;
  background: #333;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s;
}
.banner-search-form .search-submit:hover {
  background: #1a1a1a;
}
.search-hint {
  margin: 10px 0 0;
  font-size: 12px;
  color: rgba(0,0,0,0.5);
}
.vpn-warning {
  margin: 0 0 10px;
  font-size: 12px;
  color: #c62828;
  font-weight: 500;
}

/* MARKA LOGOLARI (tıklanabilir) */
.brand-logos-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.brand-logo-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 60px;
  padding: 10px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  transition: all 0.2s;
  overflow: hidden;
}
.brand-logo-btn:hover {
  border-color: #ff9800;
  box-shadow: 0 4px 16px rgba(255, 152, 0, 0.25);
  transform: translateY(-2px);
}
.brand-logo-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.brand-logo-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #666;
  background: #f0f0f0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
}
body.izap-style .brand-logos-section h3 { color: #333; }
body.izap-style .brand-instruction { color: #666; }
body.izap-style .stats-title { color: #333; }
body.izap-style .stats-desc,
body.izap-style .stats-bold { color: #555; }
body.izap-style .stats-daily { color: #555; }
body.izap-style .stats-update { color: #777; }
body.izap-style .brand-list-section h3 { color: #333; }
body.izap-style .brand-col a { color: #444; }
body.izap-style .brand-col a:hover { color: #e65100; }
body.izap-style .products h2 { color: #333; }
body.izap-style .product h3 { color: #222; }
body.izap-style .product p { color: #e65100; }
body.izap-style .product {
  background: #fff;
  border: 1px solid #eee;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
body.izap-style .product::before { display: none; }
body.izap-style .product:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  border-color: #ff9800;
}
body.izap-style .product img { background: #f5f5f5; }
body.izap-style .footer { background: #2d2d2d; }
body.izap-style main h1 { color: #333; }
body.izap-style main h2 { color: #333; }

/* izap-style: vehicle-filter */
body.izap-style .vehicle-filter {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  padding: 16px 20px;
  margin-left: 0;
  margin-top: 10px;
}
body.izap-style .vehicle-filter select,
body.izap-style .vehicle-filter input[type="number"] {
  background: #fff;
  border: 1px solid #ccc;
  color: #333;
  border-radius: 10px;
}
body.izap-style .vehicle-filter select:focus,
body.izap-style .vehicle-filter input[type="number"]:focus {
  border-color: #e65100;
}

/* izap-style: filter-btn */
body.izap-style .filter-btn {
  background: #fff;
  border: 1px solid #ddd;
  color: #444;
}
body.izap-style .filter-btn:hover {
  border-color: #e65100;
  color: #e65100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
body.izap-style .filter-btn-active {
  background: #e65100;
  color: #fff;
  border-color: #e65100;
  box-shadow: none;
}

/* izap-style: product detay */
body.izap-style .product-page h1 { color: #222; }
body.izap-style .product-page .price { color: #e65100; }
body.izap-style .product-page p { color: #444; }
body.izap-style .stock-options-box { background: #fafafa; border-color: #e8e8e8; }
body.izap-style .stock-options-notice { background: #f1f8e9; border-color: #c5e1a5; }
body.izap-style .card-wa-notice { color: #888; }
body.izap-style .product .card-wa-notice strong { color: #25d366; }
body.izap-style .product-page img {
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  background: #f5f5f5;
}
body.izap-style .gallery-main { background: #f5f5f5; border-radius: 16px; }
body.izap-style .gallery-thumb.active { border-color: #e65100; }

/* izap-style: cart */
body.izap-style .cart-item {
  background: #fff;
  border: 1px solid #eee;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
body.izap-style .cart-item h3 { color: #222; }
body.izap-style .cart-item p { color: #e65100; }

/* izap-style: tüm formlar */
body.izap-style form {
  background: #fff;
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
body.izap-style form fieldset {
  border-color: #ddd;
  background: #fff;
  border-radius: 14px;
}
body.izap-style form legend { color: #333; }
body.izap-style form label { color: #555; }
body.izap-style form input,
body.izap-style form textarea,
body.izap-style form select {
  background: #fff;
  border: 1px solid #ccc;
  color: #333;
  border-radius: 10px;
  padding: 10px 12px;
}
body.izap-style form input::placeholder,
body.izap-style form textarea::placeholder {
  color: #999;
}
body.izap-style form input:focus,
body.izap-style form textarea:focus {
  border-color: #e65100;
  box-shadow: 0 0 0 2px rgba(230, 81, 0, 0.15);
  outline: none;
  background: #fff;
}
body.izap-style .radio-label { color: #333; }
body.izap-style .order-summary { color: #333; }
body.izap-style .order-summary strong { color: #e65100; }

/* izap-style: whatsapp btn */
body.izap-style .whatsapp-btn {
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

/* izap-style: genel buton */
body.izap-style .btn {
  background: linear-gradient(135deg, #e65100, #ff8a3d);
  color: #fff;
  box-shadow: 0 4px 12px rgba(230, 81, 0, 0.25);
}
body.izap-style .btn:hover {
  box-shadow: 0 6px 20px rgba(230, 81, 0, 0.35);
  transform: translateY(-1px);
}

/* izap-style: container içi genel */
body.izap-style .container p { color: #555; }
body.izap-style .container a:not(.btn):not(.filter-btn):not(.filter-btn-active):not(.whatsapp-btn):not(.cart-btn):not(.nav-link) { color: #e65100; }
body.izap-style .container a:not(.btn):hover { color: #bf4400; }

/* Popüler kategoriler */
.popular-categories {
  margin: 32px 0;
}
.popular-categories h3 {
  font-size: 18px;
  margin: 0 0 16px;
  color: #333;
}
.category-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.cat-card {
  display: inline-block;
  padding: 14px 22px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #444;
  transition: all 0.2s;
}
.cat-card:hover {
  border-color: #ff9800;
  color: #e65100;
  box-shadow: 0 4px 12px rgba(255, 152, 0, 0.2);
}
.cat-card-all {
  background: #ff9800;
  border-color: #ff9800;
  color: #fff !important;
}
.cat-card-all:hover {
  background: #f57c00;
  border-color: #f57c00;
  color: #fff !important;
}
.subcategory-cards {
  gap: 8px;
}
.cat-card-sub {
  padding: 10px 16px;
  font-size: 13px;
  background: #f8f9fa;
  border-color: #dee2e6;
  color: #495057;
}
.cat-card-sub:hover {
  border-color: #ff9800;
  color: #e65100;
  background: #fff8e1;
}

/* HEADER (eski - izap-style olmayan sayfalar için) */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  background: rgba(3, 3, 6, 0.96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.logo {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f5f5f5;
}

.logo::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  margin-right: 10px;
  background: radial-gradient(circle at 30% 30%, #ffecd2 0, #ff2b44 55%, #800010 100%);
  box-shadow: 0 0 16px rgba(255, 43, 68, 0.9);
}

nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

nav a {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #d0d0d5;
  padding: 6px 0;
  transition: color 0.2s ease;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff2b44, #ffb347);
  transition: width 0.22s ease;
}

nav a:hover {
  color: #ffffff;
}

nav a:hover::after {
  width: 100%;
}

/* HERO */

.hero {
  position: relative;
  margin: 32px auto 40px;
  padding: 90px 32px;
  border-radius: 26px;
  overflow: hidden;
  background:
    radial-gradient(circle at 0 0, rgba(255, 43, 68, 0.32), transparent 55%),
    radial-gradient(circle at 100% 0, rgba(41, 196, 255, 0.32), transparent 55%),
    linear-gradient(135deg, #050509, #111322);
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.9),
    inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  text-align: left;
}

.hero-parts {
  background-image:
    linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.95)),
    url("../images/banner.png");
  background-size: cover;
  background-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: -40%;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.08), transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05), transparent 55%);
  opacity: 0.25;
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.hero h1 {
  position: relative;
  margin: 0 0 16px;
  font-size: clamp(32px, 3.3vw, 40px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-shadow: 0 0 24px rgba(0, 0, 0, 0.9);
}

.hero p {
  position: relative;
  max-width: 520px;
  margin: 0 0 26px;
  font-size: 15px;
  color: #d3d4de;
  text-shadow: 0 0 18px rgba(0, 0, 0, 0.9);
}

.hero .btn {
  position: relative;
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff2b44, #ff8a3d);
  color: #111111;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12),
    0 18px 40px rgba(0, 0, 0, 0.8),
    0 0 22px rgba(255, 43, 68, 0.65);
  transition:
    transform 0.16s ease,
    box-shadow 0.16s ease,
    filter 0.16s ease;
}

.btn:hover {
  transform: translateY(-1px) translateZ(0);
  filter: brightness(1.04);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.2),
    0 24px 52px rgba(0, 0, 0, 0.92),
    0 0 26px rgba(255, 43, 68, 0.9);
}

.btn:active {
  transform: translateY(0) scale(0.99);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.18),
    0 12px 28px rgba(0, 0, 0, 0.9);
}

/* ANA SAYFA – POPÜLER ÜRÜNLER */

.products {
  margin: 16px 0 0;
}

.products h2 {
  font-size: 20px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #f0f0f5;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
}

.product {
  position: relative;
  padding: 18px 18px 20px;
  border-radius: 20px;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.03), transparent 60%),
    linear-gradient(145deg, #12121d, #05050b);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.9),
    inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  overflow: hidden;
  transform: translateY(0) translateZ(0);
  transition:
    transform 0.16s ease,
    box-shadow 0.16s ease,
    border-color 0.16s ease,
    background-position 0.25s ease;
}

.product::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 0 0, rgba(255, 43, 68, 0.22), transparent 60%);
  opacity: 0;
  transition: opacity 0.18s ease;
  pointer-events: none;
}

.product:hover {
  transform: translateY(-6px) translateZ(0);
  box-shadow:
    0 26px 64px rgba(0, 0, 0, 0.95),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

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

.product img {
  border-radius: 14px;
  margin-bottom: 12px;
  object-fit: cover;
  width: 100%;
  height: 170px;
  background: #14141c;
}

.product h3 {
  margin: 4px 0 4px;
  font-size: 16px;
  font-weight: 600;
}

.product p {
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 500;
  color: #ffb347;
}

.product .btn {
  font-size: 13px;
  padding-inline: 18px;
}

/* ANA SAYFA – ÜST BİLGİ ÇUBUĞU */
.top-info-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 20px;
  margin: 0 -24px 20px -24px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 0 0 16px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.top-info-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.top-info-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #b0b0c5;
  transition: color 0.2s;
}
.top-info-links a:hover {
  color: #ffb347;
}
.top-info-links .icon {
  font-size: 14px;
  opacity: 0.9;
}
.top-info-date {
  font-size: 12px;
  color: #7a7a8f;
}

/* 5 ADIMLI FİLTRE ŞERİDİ (sarı vurgulu) */
.filter-strip {
  margin: 0 0 24px;
  padding: 20px 24px;
  background: linear-gradient(135deg, #f5c842 0%, #e8a82a 50%, #d4890f 100%);
  border-radius: 16px;
  box-shadow:
    0 8px 32px rgba(245, 200, 66, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.filter-wrapper {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 0;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.filter-logo {
  flex: 0 0 40%;
  max-width: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: #fff;
}
.filter-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  max-height: 220px;
}

@media (max-width: 640px) {
  .filter-wrapper {
    flex-direction: column;
    gap: 0;
  }
  .filter-logo {
    max-width: 100%;
    padding: 20px;
  }
  .filter-form-5 {
    border-radius: 0 0 20px 20px;
    padding: 20px;
  }
}

.filter-form-5 {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
  width: 100%;
  background: #1a1a24;
  padding: 28px 32px;
  border-radius: 0 20px 20px 0;
}
.filter-form-5 .filter-step {
  width: 100%;
}
.filter-form-5 .filter-step label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #e8a82a;
  margin-bottom: 5px;
}
.filter-form-5 .filter-step select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.95);
  color: #1a1a1a;
  font-size: 13px;
  outline: none;
}
.filter-form-5 .filter-step select:focus {
  border-color: #b8860b;
  box-shadow: 0 0 0 2px rgba(184, 134, 11, 0.3);
}
.filter-search-btn {
  align-self: flex-end;
  padding: 12px 32px;
  margin-top: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2a2a35, #0f0f14);
  color: #f5f5f5;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  transition: transform 0.15s, box-shadow 0.15s;
}
.filter-search-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

/* İSTATİSTİK BÖLÜMÜ */
.stats-section {
  margin: 28px 0 32px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.stats-title {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 12px;
  color: #f5f5f5;
  line-height: 1.35;
}
.stats-desc {
  font-size: 15px;
  color: #b0b0c5;
  margin: 0 0 6px;
}
.stats-numbers {
  margin-top: 18px;
}
.stats-bold {
  font-size: 16px;
  color: #e0e0eb;
  margin: 0 0 8px;
}
.stats-bold strong {
  color: #ffb347;
}
.stats-daily {
  font-size: 14px;
  color: #b0b0c5;
  margin: 0 0 6px;
}
.stats-daily .highlight {
  color: #ff6b6b;
  font-weight: 600;
}
.stats-update {
  font-size: 13px;
  color: #8a8a9f;
  margin: 0;
}

/* POPÜLER MARKA LOGOLARI */
.brand-logos-section {
  margin: 28px 0 32px;
}
.brand-logos-section h3 {
  font-size: 18px;
  margin: 0 0 8px;
  color: #f0f0f5;
}
.brand-instruction {
  font-size: 14px;
  color: #a0a0b5;
  margin: 0 0 18px;
}
.brand-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.brand-logo-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 600;
  color: #e0e0eb;
  transition: all 0.2s;
}
.brand-logo-item:hover {
  background: linear-gradient(135deg, rgba(255, 43, 68, 0.2), rgba(255, 138, 61, 0.15));
  border-color: rgba(255, 43, 68, 0.4);
  color: #ffb347;
  transform: translateY(-2px);
}

/* ALFABETİK MARKA LİSTESİ */
.brand-list-section {
  margin: 28px 0 36px;
}
.brand-list-section h3 {
  font-size: 18px;
  margin: 0 0 16px;
  color: #f0f0f5;
}
.brand-list-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 40px;
}
.brand-col {
  list-style: none;
  padding: 0;
  margin: 0;
}
.brand-col li {
  margin-bottom: 8px;
  padding-left: 16px;
  position: relative;
}
.brand-col li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: #ff2b44;
  border-radius: 2px;
}
.brand-col a {
  font-size: 14px;
  color: #c0c0d5;
  transition: color 0.2s;
}
.brand-col a:hover {
  color: #ffb347;
}

@media (max-width: 768px) {
  .brand-list-two-col {
    grid-template-columns: 1fr;
  }
  .filter-form-5 .filter-step {
    min-width: 100%;
  }
}

/* KATEGORİ FİLTRE BUTONLARI (shop) */

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 4px 0 22px;
}

.filter-btn {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d3d3e5;
  background: rgba(10, 10, 18, 0.9);
  transition:
    background 0.16s ease,
    color 0.16s ease,
    border-color 0.16s ease,
    box-shadow 0.16s ease,
    transform 0.16s ease;
}

.filter-btn:hover {
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.7);
  transform: translateY(-1px);
}

.filter-btn-active {
  background: linear-gradient(135deg, #ff2b44, #ff8a3d);
  color: #111111;
  border-color: transparent;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.16),
    0 18px 40px rgba(0, 0, 0, 0.86),
    0 0 22px rgba(255, 43, 68, 0.75);
}

.vehicle-filter {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.vehicle-filter select,
.vehicle-filter input[type="number"] {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(10, 10, 18, 0.9);
  color: #f5f5f5;
  padding: 8px 14px;
  font-size: 13px;
  min-width: 130px;
}

.vehicle-filter select:focus,
.vehicle-filter input[type="number"]:focus {
  border-color: #ff2b44;
  outline: none;
}

/* GENEL SAYFA BAŞLIKLARI */

main h1 {
  font-size: 26px;
  margin: 32px 0 18px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

main h2 {
  font-size: 20px;
  margin: 26px 0 12px;
}

/* ÜRÜN LİSTESİ SAYFASI (shop) */

body > .header + .container > h1 {
  /* ürünler, blog, sepet, iletişim, checkout başlıkları */
}

/* ÜRÜN DETAY SAYFASI */

.product-page {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 40px;
  margin: 40px 0;
  align-items: center;
}

.product-page img {
  border-radius: 24px;
  box-shadow:
    0 26px 64px rgba(0, 0, 0, 0.9),
    0 0 0 1px rgba(255, 255, 255, 0.03);
  background: radial-gradient(circle at 20% 0, rgba(255, 255, 255, 0.15), transparent 55%),
    #050509;
}

/* Ürün galerisi (çoklu görsel) */
.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.gallery-main {
  border-radius: 24px;
  overflow: hidden;
  background: #0a0a12;
}
.gallery-main img {
  width: 100%;
  height: auto;
  display: block;
}
.gallery-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.gallery-thumb {
  width: 64px;
  height: 64px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  background: transparent;
  transition: border-color 0.2s, opacity 0.2s;
}
.gallery-thumb:hover {
  opacity: 0.9;
}
.gallery-thumb.active {
  border-color: #ff2b44;
  opacity: 1;
}
.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-page h1 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 26px;
}

.product-page .price {
  font-size: 22px;
  font-weight: 700;
  color: #ffb347;
  margin: 0 0 14px;
}

.product-page p {
  color: #d0d0dd;
  margin-bottom: 18px;
}

.product-page .btn + .btn {
  margin-left: 10px;
}

.whatsapp-btn {
  background: #25d366;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.14),
    0 18px 40px rgba(0, 0, 0, 0.9),
    0 0 24px rgba(37, 211, 102, 0.9);
  color: #04130a;
}

.whatsapp-btn:hover {
  filter: brightness(1.05);
}

/* FOOTER */

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: radial-gradient(circle at top, #080812, #020208);
  padding: 32px 0 28px;
  margin-top: 40px;
  font-size: 14px;
  color: #b7b7c7;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1.4fr 1.4fr;
  gap: 32px;
}

.footer h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 600;
  color: #f1f1f7;
}

.footer p {
  margin: 0;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer li {
  margin-bottom: 6px;
}

.footer li::before {
  content: "•";
  color: #ff2b44;
  margin-right: 6px;
}

/* FLOATING WHATSAPP */

.footer-whatsapp-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-whatsapp-link:hover {
  color: #25d366;
}

/* WhatsApp FAB */
.whatsapp-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9999;
}
.whatsapp-fab-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 4px 20px rgba(37, 211, 102, 0.5),
    0 8px 30px rgba(0,0,0,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  z-index: 2;
}
.whatsapp-fab-btn:hover {
  transform: scale(1.08);
  box-shadow:
    0 6px 28px rgba(37, 211, 102, 0.6),
    0 10px 40px rgba(0,0,0,0.35);
}
.whatsapp-fab-btn:active {
  transform: scale(0.95);
}
.whatsapp-fab-icon {
  width: 30px;
  height: 30px;
}

/* FAB menu */
.whatsapp-fab-menu {
  position: absolute;
  bottom: 68px;
  right: 0;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18), 0 2px 8px rgba(0,0,0,0.08);
  min-width: 280px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.95);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  overflow: hidden;
}
.whatsapp-fab.open .whatsapp-fab-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.whatsapp-fab-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  text-decoration: none;
  color: #333;
  transition: background 0.15s;
  border-bottom: 1px solid #f0f0f0;
}
.whatsapp-fab-option:last-child {
  border-bottom: none;
}
.whatsapp-fab-option:hover {
  background: #f0faf3;
}
.whatsapp-fab-option-icon {
  font-size: 24px;
  flex-shrink: 0;
}
.whatsapp-fab-option-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.whatsapp-fab-option-text strong {
  font-size: 15px;
  color: #1a1a1a;
}
.whatsapp-fab-option-text small {
  font-size: 12px;
  color: #888;
}

/* DOLANDIRICILIK UYARI POP-UP */
.fraud-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.fraud-modal.fraud-modal-visible {
  opacity: 1;
  visibility: visible;
}
.fraud-modal.fraud-modal-hidden {
  display: none;
}
.fraud-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}
.fraud-modal-content {
  position: relative;
  max-width: 520px;
  width: 100%;
  background: #fff;
  border-radius: 16px;
  padding: 28px 32px 24px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
}
.fraud-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: none;
  background: #f0f0f0;
  border-radius: 8px;
  font-size: 24px;
  line-height: 1;
  color: #666;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.fraud-modal-close:hover {
  background: #e0e0e0;
  color: #333;
}
.fraud-modal-title {
  margin: 0 0 18px;
  font-size: 22px;
  font-weight: 700;
  color: #8b6914;
  text-align: center;
}
.fraud-modal-content p {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.6;
  color: #444;
}
.fraud-modal-content p:last-of-type {
  margin-bottom: 24px;
}
.fraud-modal-btn {
  display: block;
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  padding: 14px 24px;
  background: #1976d2;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.fraud-modal-btn:hover {
  background: #1565c0;
}

/* RESPONSIVE */

/* FORM / İLETİŞİM / CHECKOUT */

form {
  max-width: 520px;
  padding: 22px 22px 24px;
  border-radius: 20px;
  background: linear-gradient(145deg, #10101a, #050509);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.9),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 30px;
}

input,
textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(4, 4, 10, 0.9);
  color: #f5f5f5;
  padding: 11px 12px;
  font-size: 14px;
  outline: none;
  transition:
    border-color 0.16s ease,
    box-shadow 0.16s ease,
    background 0.16s ease;
}

input::placeholder,
textarea::placeholder {
  color: #7e7e8f;
}

input:focus,
textarea:focus {
  border-color: #ff2b44;
  box-shadow: 0 0 0 1px rgba(255, 43, 68, 0.6);
  background: rgba(8, 8, 16, 0.96);
}

textarea {
  min-height: 110px;
  resize: vertical;
}

/* SEPET */

.cart-item {
  padding: 14px 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, #10101a, #05050b);
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-item h3 {
  margin: 0;
  font-size: 15px;
}

.cart-item p {
  margin: 0;
  font-weight: 600;
  color: #ffb347;
}

/* BLOG */

.blog-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.blog-list li {
  margin-bottom: 10px;
}

.blog-list a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(15, 15, 26, 0.9);
  color: #e6e6f3;
  font-size: 14px;
  transition:
    background 0.15s ease,
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

.blog-list a::before {
  content: "▶";
  font-size: 10px;
  color: #ffb347;
}

.blog-list a:hover {
  background: linear-gradient(135deg, #151526, #050509);
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.7);
}

/* CHECKOUT / ÖDEME */

.checkout-form fieldset {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 16px;
}

.checkout-form legend {
  font-size: 14px;
  font-weight: 600;
  padding: 0 8px;
}

.checkout-form label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 4px;
  color: #b0b0c0;
}

.radio-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 15px;
}

.radio-label input[type="radio"] {
  width: auto;
}

.order-summary {
  margin: 16px 0;
  font-size: 17px;
}

.bank-info {
  max-width: 520px;
  padding: 24px 28px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e0e0e0;
  margin-bottom: 28px;
  color: #333;
}

.bank-info h2 {
  margin-top: 0;
  font-size: 18px;
  color: #1a1a1a;
}

.bank-info p {
  color: #444;
  font-size: 15px;
  line-height: 1.7;
}

.bank-info strong {
  color: #1a1a1a;
}

.bank-info code {
  font-size: 15px;
  padding: 4px 10px;
  background: #f0f0f0;
  border-radius: 8px;
  color: #222;
  font-weight: 600;
}

.bank-info .order-total {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #e0e0e0;
  color: #e65100;
  font-size: 16px;
  font-weight: 600;
}

.bank-info .note {
  margin-top: 12px;
  font-size: 13px;
  color: #666;
}

.receipt-upload {
  max-width: 520px;
  padding: 24px 28px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e0e0e0;
  color: #333;
}

.receipt-upload h2 {
  margin-top: 0;
  font-size: 18px;
  color: #1a1a1a;
}

.receipt-upload p {
  color: #555;
}

.receipt-upload input[type="file"] {
  margin-bottom: 12px;
  padding: 10px;
  color: #333;
}

.success-msg {
  padding: 16px 20px;
  border-radius: 12px;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  color: #2e7d32;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
}

.error-msg {
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(220, 53, 69, 0.2);
  border: 1px solid rgba(220, 53, 69, 0.5);
  color: #ff8a8a;
  margin-bottom: 12px;
}

/* CHECKOUT MESAJI */

.checkout-message {
  margin-top: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(25, 135, 84, 0.15);
  border: 1px solid rgba(25, 135, 84, 0.7);
  color: #c7f7d8;
  font-size: 14px;
}

/* ADMIN TABLOLARI / PANEL */

.admin-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.admin-table-wrap {
  width: 100%;
  overflow-x: auto;
  border-radius: 16px;
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.9),
    inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  background: linear-gradient(145deg, #10101a, #050509);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

.admin-table th,
.admin-table td {
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 13px;
}

.admin-table th {
  text-align: left;
  font-weight: 600;
  color: #e5e5f4;
  background: rgba(255, 255, 255, 0.02);
}

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

.admin-description {
  max-width: 260px;
}

.admin-actions {
  white-space: nowrap;
}

.admin-btn-small {
  padding: 8px 14px;
  font-size: 11px;
  letter-spacing: 0.1em;
}

.admin-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  background: #ff2b44;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

tr.activity-unread {
  background: rgba(255, 43, 68, 0.08);
}

.admin-btn-danger {
  background: linear-gradient(135deg, #6c1b1b, #b82525);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12), 0 18px 40px rgba(0, 0, 0, 0.9);
}

/* Sipariş durum etiketleri */
.order-status {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 600;
}
.order-status-pending_payment { background: rgba(255, 193, 7, 0.2); color: #ffc107; }
.order-status-pending_confirmation { background: rgba(33, 150, 243, 0.2); color: #64b5f6; }
.order-status-confirmed { background: rgba(76, 175, 80, 0.2); color: #81c784; }
.order-status-shipped { background: rgba(156, 39, 176, 0.2); color: #ce93d8; }

/* Sipariş detay sayfası */
.order-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.order-detail-card {
  padding: 20px 24px;
  border-radius: 16px;
  background: linear-gradient(145deg, #10101a, #080810);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.order-detail-card h2 {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 16px;
}

@media (max-width: 900px) {
  .header {
    padding-inline: 18px;
  }

  nav {
    gap: 12px;
  }

  .hero {
    padding: 70px 22px;
    border-radius: 20px;
  }

  .product-page {
    grid-template-columns: 1fr;
  }
}

/* HAMBURGER MENÜ BUTONU */
.mobile-menu-btn {
  display: none;
  background: none;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 22px;
  padding: 6px 12px;
  cursor: pointer;
  color: #333;
  line-height: 1;
}

@media (max-width: 768px) {
  /* Top bar mobil */
  .top-bar {
    font-size: 11px;
    padding: 6px 12px;
  }

  /* Header mobil */
  .main-header {
    padding: 8px 12px;
  }
  .header-inner {
    gap: 8px;
  }
  .logo-img {
    max-height: 36px;
  }
  .logo-text {
    font-size: 16px;
  }
  .logo-tagline {
    font-size: 9px;
  }
  .site-logo {
    gap: 8px;
  }

  /* Hamburger menü göster */
  .mobile-menu-btn {
    display: block;
    order: 2;
  }

  /* Nav gizle (mobilde) */
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #eee;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    flex-direction: column;
    padding: 8px 0;
    z-index: 300;
  }
  .main-nav.nav-open {
    display: flex;
  }
  .nav-link {
    padding: 14px 20px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 15px;
  }
  .nav-dropdown {
    position: static;
  }
  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    border-radius: 0;
    margin: 0;
    padding: 0 0 0 20px;
    background: #fafafa;
  }
  .nav-dropdown-menu a {
    padding: 10px 16px;
    font-size: 13px;
    border-bottom: 1px solid #f0f0f0;
  }

  /* Sepet butonu küçült */
  .cart-btn {
    padding: 8px 12px;
    font-size: 12px;
    gap: 4px;
  }
  .cart-sum {
    display: none;
  }
  .header-actions {
    order: 3;
  }

  /* Container */
  body.izap-style .container {
    margin: 8px 6px;
    padding: 16px 12px 28px;
    border-radius: 10px;
  }

  /* Grid ürünler */
  .grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .product {
    padding: 10px;
    border-radius: 14px;
  }
  .product img {
    height: 130px;
    border-radius: 10px;
  }
  .product h3 {
    font-size: 13px;
  }
  .product p {
    font-size: 13px;
  }
  .product .btn {
    font-size: 11px;
    padding: 6px 10px;
  }

  /* Sayfa başlıkları */
  main h1 {
    font-size: 20px;
    margin: 16px 0 12px;
  }
  main h2 {
    font-size: 17px;
  }

  /* Filtre bar */
  .filter-bar {
    gap: 6px;
    margin-bottom: 14px;
  }
  .filter-btn {
    font-size: 10px;
    padding: 6px 10px;
    letter-spacing: 0.06em;
  }

  /* Araç filtre form */
  .vehicle-filter {
    flex-direction: column;
    align-items: stretch;
    margin-left: 0;
  }
  .vehicle-filter select,
  .vehicle-filter input[type="number"] {
    min-width: 100%;
  }

  /* Filtre strip (ana sayfa) */
  .filter-strip {
    padding: 12px;
    border-radius: 12px;
    margin-bottom: 16px;
  }
  .filter-wrapper {
    flex-direction: column;
    padding: 16px;
    gap: 16px;
    max-width: 100%;
  }
  .filter-logo {
    max-width: 160px;
    flex: none;
    padding: 12px;
  }
  .filter-form-5 {
    padding: 16px;
    border-radius: 0 0 16px 16px;
    gap: 10px;
  }

  /* Ürün detay sayfası */
  .product-page {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 16px 0;
  }
  .product-page h1 {
    font-size: 18px;
  }
  .product-page .price {
    font-size: 18px;
  }
  .gallery-main {
    border-radius: 14px;
  }

  /* Sepet */
  .cart-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 12px;
  }

  /* Checkout form */
  .checkout-form fieldset {
    padding: 12px;
  }

  /* Bank info & dekont */
  .bank-info,
  .receipt-upload {
    max-width: 100%;
    padding: 16px;
  }

  /* Footer */
  .footer {
    padding: 20px 0;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 16px;
  }

  /* İletişim sayfası */
  .contact-grid {
    grid-template-columns: 1fr;
  }

  /* Floating WhatsApp FAB */
  .whatsapp-fab {
    right: 12px;
    bottom: 12px;
  }
  .whatsapp-fab-btn {
    width: 48px;
    height: 48px;
  }
  .whatsapp-fab-icon {
    width: 26px;
    height: 26px;
  }
  .whatsapp-fab-menu {
    min-width: 250px;
    right: 0;
  }
}

@media (max-width: 400px) {
  .grid {
    grid-template-columns: 1fr;
  }
  .logo-text {
    font-size: 14px;
  }
  .top-bar-right {
    display: none;
  }
}

/* ===== SİPARİŞ TAKİP SAYFASI ===== */
.order-track-page {
  max-width: 800px;
  margin: 0 auto;
}
.order-track-page h1 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 8px;
}
.order-track-subtitle {
  text-align: center;
  color: #777;
  margin-bottom: 28px;
}
.order-track-form {
  background: #f8f9fa;
  border: 1px solid #e0e0e0;
  border-radius: 14px;
  padding: 24px;
  margin-bottom: 24px;
}
.order-track-form-row {
  display: flex;
  gap: 14px;
  align-items: flex-end;
}
.order-track-field {
  flex: 1;
}
.order-track-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #555;
  margin-bottom: 6px;
}
.order-track-field input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 15px;
  background: #fff;
  color: #333;
  transition: border-color .2s;
}
.order-track-field input:focus {
  border-color: #e65100;
  box-shadow: 0 0 0 3px rgba(230, 81, 0, 0.12);
  outline: none;
}
.order-track-field-btn {
  flex: 0 0 auto;
}
.order-track-btn {
  padding: 12px 32px !important;
  font-size: 15px;
  border-radius: 10px;
  white-space: nowrap;
}
.order-track-error {
  background: #fff5f5;
  border: 1px solid #fecaca;
  color: #dc2626;
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.order-track-error-icon {
  font-size: 20px;
}

.order-track-result {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.order-track-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid #eee;
  flex-wrap: wrap;
  gap: 12px;
}
.order-track-header h2 {
  margin: 0;
  font-size: 22px;
  color: #222;
}
.order-track-date {
  color: #888;
  font-size: 13px;
}
.order-track-status-badge {
  color: #fff;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

/* Progress stepper */
.order-track-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 20px;
  overflow-x: auto;
}
.order-track-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 70px;
  position: relative;
}
.order-track-step-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e0e0e0;
  color: #999;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  transition: all .3s;
  position: relative;
  z-index: 1;
}
.order-track-step.active .order-track-step-dot {
  background: #27ae60;
  color: #fff;
}
.order-track-step.current .order-track-step-dot {
  background: #e65100;
  color: #fff;
  box-shadow: 0 0 0 4px rgba(230, 81, 0, 0.2);
  animation: pulseStep 2s infinite;
}
@keyframes pulseStep {
  0%, 100% { box-shadow: 0 0 0 4px rgba(230, 81, 0, 0.2); }
  50% { box-shadow: 0 0 0 8px rgba(230, 81, 0, 0.1); }
}
.order-track-step-label {
  font-size: 11px;
  color: #999;
  margin-top: 8px;
  text-align: center;
  max-width: 80px;
  line-height: 1.3;
}
.order-track-step.active .order-track-step-label {
  color: #333;
  font-weight: 600;
}
.order-track-step-line {
  flex: 1;
  height: 3px;
  background: #e0e0e0;
  min-width: 20px;
  margin-bottom: 26px;
}
.order-track-step-line.active {
  background: #27ae60;
}

/* Cargo info */
.order-track-cargo {
  margin: 0 24px;
  padding: 16px 20px;
  background: #f0f7ff;
  border: 1px solid #bdd7f1;
  border-radius: 10px;
}
.order-track-cargo h3 {
  margin: 0 0 8px;
  font-size: 15px;
  color: #1a5276;
}
.order-track-cargo p {
  margin: 4px 0;
  font-size: 14px;
  color: #333;
}
.order-track-code {
  background: #e8f4fd;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  color: #1a5276;
  letter-spacing: 1px;
}

/* Status note */
.order-track-note {
  margin: 16px 24px 0;
  padding: 14px 18px;
  background: #fffbeb;
  border: 1px solid #fcd34d;
  border-radius: 10px;
  font-size: 14px;
  color: #92400e;
}

/* Order items */
.order-track-items {
  padding: 20px 24px;
}
.order-track-items h3 {
  margin: 0 0 14px;
  font-size: 16px;
  color: #333;
}
.order-track-items-list {
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
}
.order-track-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid #f0f0f0;
}
.order-track-item:last-child {
  border-bottom: none;
}
.order-track-item-info {
  display: flex;
  flex-direction: column;
}
.order-track-item-name {
  font-weight: 500;
  color: #333;
  font-size: 14px;
}
.order-track-item-qty {
  font-size: 12px;
  color: #888;
  margin-top: 2px;
}
.order-track-item-price {
  font-weight: 600;
  color: #e65100;
  font-size: 15px;
  white-space: nowrap;
}
.order-track-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  background: #f8f9fa;
  border-radius: 10px;
  margin-top: 12px;
  font-size: 16px;
}
.order-track-total strong {
  color: #e65100;
  font-size: 20px;
}

/* Receipt success page */
.receipt-success {
  text-align: center;
  padding: 40px 20px;
}
.receipt-success-icon {
  width: 64px;
  height: 64px;
  background: #27ae60;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 20px;
}
.receipt-success h2 {
  color: #27ae60;
  margin-bottom: 12px;
}
.receipt-success p {
  color: #555;
  margin-bottom: 8px;
}
.receipt-success-order {
  font-size: 18px;
  margin: 16px 0 !important;
}
.receipt-success-order strong {
  color: #e65100;
}
.receipt-success-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
  flex-wrap: wrap;
}

/* Admin order status colors */
.order-status-pending_payment { color: #e67e22; }
.order-status-pending_confirmation { color: #3498db; }
.order-status-confirmed { color: #27ae60; }
.order-status-preparing { color: #8e44ad; }
.order-status-shipped { color: #2980b9; }
.order-status-delivered { color: #27ae60; font-weight: 700; }
.order-status-cancelled { color: #e74c3c; }

/* izap-style overrides for order tracking */
body.izap-style .order-track-page h1 { color: #222; }
body.izap-style .order-track-form { background: #f8f9fa; }
body.izap-style .order-track-result { background: #fff; }

@media (max-width: 768px) {
  .order-track-form-row {
    flex-direction: column;
  }
  .order-track-field-btn {
    width: 100%;
  }
  .order-track-btn {
    width: 100%;
  }
  .order-track-progress {
    padding: 20px 8px;
    gap: 0;
  }
  .order-track-step {
    min-width: 50px;
  }
  .order-track-step-dot {
    width: 28px;
    height: 28px;
    font-size: 11px;
  }
  .order-track-step-label {
    font-size: 9px;
    max-width: 56px;
  }
  .order-track-step-line {
    min-width: 10px;
  }
  .order-track-header {
    padding: 16px;
  }
  .order-track-items {
    padding: 16px;
  }
  .order-track-cargo {
    margin: 0 16px;
  }
  .order-track-note {
    margin: 12px 16px 0;
  }
}

/* ═══════════════════════════════════════ */
/* OEM & Stok Badge Stilleri               */
/* ═══════════════════════════════════════ */
.product { position: relative; }
.product-badges { position: absolute; top: 8px; left: 8px; z-index: 2; display: flex; gap: 6px; flex-wrap: wrap; }
.stock-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.stock-in { background: rgba(39,174,96,0.18); color: #27ae60; border: 1px solid rgba(39,174,96,0.3); }
.stock-low { background: rgba(230,126,34,0.18); color: #e67e22; border: 1px solid rgba(230,126,34,0.3); }
.stock-out { background: rgba(231,76,60,0.18); color: #e74c3c; border: 1px solid rgba(231,76,60,0.3); }
.oem-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  font-family: 'Courier New', monospace;
  background: rgba(224,160,64,0.12);
  color: #e0a040;
  border: 1px solid rgba(224,160,64,0.25);
}
.oem-number {
  font-size: 12px;
  font-family: 'Courier New', monospace;
  color: #e0a040;
  margin: 4px 0;
  letter-spacing: 0.5px;
}

/* Stok seçenekleri kutusu (ürün detay sayfası) */
.stock-options-box {
  background: #f8f9fa;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 16px 20px;
  margin: 16px 0;
}
.stock-options-box h4 {
  margin: 0 0 12px;
  font-size: 15px;
  color: #333;
}
.stock-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}
.stock-option:last-of-type {
  border-bottom: none;
}
.stock-option-badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}
.stock-option-cikma {
  background: #fff3e0;
  color: #e65100;
  border: 1px solid #ffcc80;
}
.stock-option-sifir {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
}
.stock-option-status {
  font-size: 13px;
  font-weight: 600;
  color: #2e7d32;
}
.stock-options-notice {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 12px 14px;
  background: #e8f5e9;
  border-radius: 8px;
  border: 1px solid #a5d6a7;
  font-size: 13px;
  color: #1b5e20;
  line-height: 1.4;
}
.stock-options-notice .notice-icon {
  font-size: 18px;
  flex-shrink: 0;
}

/* Kart içi stok etiketleri (ürün listeleme kartları) */
.card-stock-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 6px 0;
}
.card-stock-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
}
.tag-cikma {
  background: #fff3e0;
  color: #e65100;
  border: 1px solid #ffcc80;
}
.tag-sifir {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
}
.card-wa-notice {
  font-size: 11px;
  color: #666;
  margin: 4px 0 8px;
  text-align: center;
}
.card-wa-notice strong {
  color: #25d366;
}
.btn-wa-sm {
  background: #25d366 !important;
  color: #fff !important;
  font-size: 12px !important;
  padding: 6px 12px !important;
  margin-left: 6px;
  border-radius: 6px;
}
.btn-wa-sm:hover {
  background: #1da851 !important;
}

.product-price {
  font-weight: 700;
  color: #4fc3f7;
  font-size: 16px;
}
.product-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  margin: 10px 0;
}
.model-info-text {
  font-size: 13px;
  color: #8a8aa0;
  margin: 6px 0 12px;
  padding: 6px 10px;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  border-left: 3px solid rgba(79,195,247,0.4);
}
.btn-disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}