/* ============================================================
   parcasatis.com.tr — Ana Stil Dosyası
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
  --primary:      #1a6ef5;
  --primary-dark: #1055cc;
  --primary-light:#e8f0fe;
  --accent:       #00c896;
  --danger:       #e53935;
  --warning:      #f59e0b;
  --success:      #16a34a;
  --info:         #0ea5e9;
  --dark:         #0f172a;
  --gray-900:     #1e293b;
  --gray-700:     #374151;
  --gray-500:     #64748b;
  --gray-300:     #cbd5e1;
  --gray-100:     #f1f5f9;
  --gray-50:      #f8fafc;
  --white:        #ffffff;
  --radius:       10px;
  --radius-sm:    6px;
  --radius-lg:    16px;
  --shadow-sm:    0 1px 3px rgba(0,0,0,.08);
  --shadow:       0 4px 16px rgba(0,0,0,.1);
  --shadow-lg:    0 8px 32px rgba(0,0,0,.14);
  --transition:   0.2s ease;
  --font:         'Inter', system-ui, -apple-system, sans-serif;
  --container:    1280px;
  --announcebar-h:34px;
  --header-h:     72px;
  --maincatbar-h: 56px;
  --catnav-h:     44px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--gray-900);
  background: var(--gray-50);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- Container ---- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 1.25rem; }

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announcement-bar {
  background: #060c14;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  height: var(--announcebar-h);
  display: flex;
  align-items: center;
}
.announcement-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  font-size: 0.73rem;
  color: rgba(255,255,255,0.45);
  flex-wrap: nowrap;
  overflow: hidden;
}
.ann-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0 1.125rem;
  white-space: nowrap;
}
.ann-item i { color: rgba(255,255,255,0.25); font-size: 0.7rem; }
.ann-item strong { color: rgba(255,255,255,0.65); font-weight: 600; }
.ann-link { text-decoration: none; transition: color 0.15s; }
.ann-link:hover { color: rgba(255,255,255,0.75); }
.ann-link:hover i { color: rgba(255,255,255,0.5); }
.ann-phone { margin-left: auto; }
.ann-sep {
  width: 1px; height: 14px;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
}
.ann-sep--right { margin-left: auto; }

/* ============================================================
   KAYAR YAZI BANDLARI
   ============================================================ */
.ticker-bands {
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.ticker-strip {
  overflow: hidden;
  position: relative;
}
.ticker-strip--fwd {
  background: linear-gradient(90deg, #0f172a 0%, #0c1933 45%, #0f172a 100%);
}
.ticker-strip--rev {
  background: linear-gradient(90deg, #0a0612 0%, #060c14 50%, #0a0612 100%);
  border-top: 1px solid rgba(255,255,255,0.03);
}

.ticker-track {
  display: flex;
  width: max-content;
}
.ticker-track--fwd {
  animation: ticker-scroll-left 52s linear infinite;
}
.ticker-track--rev {
  animation: ticker-scroll-right 60s linear infinite;
}

@keyframes ticker-scroll-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes ticker-scroll-right {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

.ticker-seq {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding: 0.45rem 0;
  gap: 0;
}

.ticker-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 1.25rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.78);
  white-space: nowrap;
}
.ticker-chip i {
  font-size: 0.68rem;
  color: #60a5fa;
  opacity: 0.95;
}
.ticker-strip--rev .ticker-chip i {
  color: #fbbf24;
}
.ticker-chip strong {
  color: #fff;
  font-weight: 700;
}
.ticker-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track--fwd,
  .ticker-track--rev {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    padding: 0.35rem 0.5rem;
  }
  .ticker-seq[aria-hidden="true"] { display: none; }
  .ticker-seq { flex-wrap: wrap; justify-content: center; padding: 0.25rem; max-width: 100%; }
}

@media (max-width: 768px) {
  .ticker-chip { font-size: 0.68rem; padding: 0 0.85rem; }
  .ticker-track--fwd { animation-duration: 38s; }
  .ticker-track--rev { animation-duration: 44s; }
}

/* ============================================================
   HEADER — Dark Premium
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #0f172a;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  height: var(--header-h);
  box-shadow: 0 1px 0 rgba(255,255,255,0.04), 0 4px 24px rgba(0,0,0,0.25);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  height: var(--header-h);
}

/* ---- Logo ---- */
.header-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, #1a6ef5 0%, #00c896 100%);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.15rem;
  box-shadow: 0 2px 12px rgba(26,110,245,0.4);
  flex-shrink: 0;
}
.logo-text {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1;
}
.logo-wordmark {
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.logo-word-1 { color: #fff; }
.logo-word-2 { color: #60a5fa; }
.logo-domain {
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.02em;
  margin-top: 1px;
}

/* ---- Search Bar ---- */
.header-search { flex: 1; max-width: 640px; }
.search-wrap {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.97);
  border-radius: 10px;
  overflow: hidden;
  height: 46px;
  border: 1.5px solid transparent;
  box-shadow: 0 1px 0 rgba(255,255,255,0.06) inset, 0 2px 8px rgba(0,0,0,0.15);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.search-wrap:focus-within {
  border-color: #1a6ef5;
  box-shadow: 0 0 0 3px rgba(26,110,245,0.2);
}
.search-wrap--laptop:focus-within {
  border-color: #f59e0b;
  box-shadow: 0 0 0 3px rgba(245,158,11,0.2);
}
.search-cat-wrap {
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
  height: 100%;
  padding: 0 0.75rem 0 0.875rem;
  border-right: 1.5px solid rgba(0,0,0,0.07);
  background: rgba(0,0,0,0.025);
  flex-shrink: 0;
  min-width: 150px;
}
.search-cat-icon {
  font-size: 0.75rem;
  color: #64748b;
  flex-shrink: 0;
  margin-right: 0.375rem;
}
.search-cat {
  border: none;
  outline: none;
  background: transparent;
  font-size: 0.8rem;
  font-weight: 500;
  color: #374151;
  cursor: pointer;
  flex: 1;
  appearance: none;
  padding-right: 1.25rem;
  font-family: inherit;
}
.search-cat-arrow {
  font-size: 0.6rem;
  color: #94a3b8;
  position: absolute;
  right: 0.75rem;
  pointer-events: none;
}
.search-divider {
  width: 0;
  align-self: stretch;
}
.search-input {
  flex: 1;
  padding: 0 1rem;
  height: 100%;
  border: none;
  outline: none;
  font-size: 0.875rem;
  background: transparent;
  color: #111827;
  font-family: inherit;
}
.search-input::placeholder { color: #9ca3af; }
.search-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0 1.125rem;
  height: 100%;
  background: #1a6ef5;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  font-family: inherit;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.search-btn:hover { background: #1055cc; }
.search-btn--laptop { background: #f59e0b; color: #1c0500; }
.search-btn--laptop:hover { background: #d97706; }

/* ---- Header Actions ---- */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

/* Phone Button */
.header-phone-btn {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.375rem 0.875rem 0.375rem 0.5rem;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  transition: background 0.2s, border-color 0.2s;
  text-decoration: none;
}
.header-phone-btn:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.16);
}
.header-phone-icon {
  width: 32px; height: 32px;
  background: rgba(26,110,245,0.15);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  color: #60a5fa;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.header-phone-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.phone-label {
  font-size: 0.62rem;
  font-weight: 500;
  color: rgba(255,255,255,0.35);
  line-height: 1;
  white-space: nowrap;
}
.phone-number {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
  line-height: 1;
  white-space: nowrap;
}

/* Icon Buttons */
.btn-action {
  position: relative;
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 9px;
  color: rgba(255,255,255,0.55);
  font-size: 1.05rem;
  transition: background 0.2s, color 0.2s;
  border: 1px solid transparent;
}
.btn-action:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.1);
  color: #fff;
}
.btn-action--cart { color: rgba(255,255,255,0.65); }
.action-badge {
  position: absolute; top: 5px; right: 5px;
  background: var(--danger);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 800;
  min-width: 16px; height: 16px;
  border-radius: 8px;
  padding: 0 3px;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
  border: 1.5px solid #0f172a;
}
.action-badge:empty { display: none; }

/* WhatsApp Button */
.btn-whatsapp-header {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: #16a34a;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  transition: background 0.2s;
  border: 1px solid rgba(255,255,255,0.1);
  white-space: nowrap;
}
.btn-whatsapp-header:hover { background: #15803d; color: #fff; }
.btn-whatsapp-header i { font-size: 1rem; flex-shrink: 0; }
.btn-wa-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.12;
  gap: 0.05rem;
}
.btn-wa-top { font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; }
.btn-wa-num { font-size: 0.68rem; font-weight: 600; opacity: 0.92; letter-spacing: 0.02em; white-space: nowrap; }
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: background 0.2s;
}
.mobile-menu-btn:hover { background: rgba(255,255,255,0.07); }
.mobile-menu-btn span {
  width: 20px; height: 2px;
  background: rgba(255,255,255,0.7);
  border-radius: 2px;
  transition: all 0.2s;
}

/* ---- Cat Nav Separator ---- */
.cat-nav-sep {
  width: 1px; height: 18px;
  background: var(--gray-200);
  display: inline-flex;
  align-self: center;
  margin: 0 0.25rem;
  flex-shrink: 0;
}

/* ============================================================
   CATEGORY NAV
   ============================================================ */
.cat-nav {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  height: var(--catnav-h);
  position: sticky;
  top: calc(var(--header-h) + var(--maincatbar-h));
  z-index: 98;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}
.cat-nav .container { position: relative; }
.cat-nav-list {
  display: flex; gap: 0; overflow-x: auto; height: var(--catnav-h);
  scrollbar-width: none;
}
.cat-nav-list::-webkit-scrollbar { display: none; }
.cat-nav-list a {
  display: flex; align-items: center; gap: 0.375rem; white-space: nowrap;
  padding: 0 1rem; height: var(--catnav-h);
  font-size: 0.8rem; font-weight: 500; color: var(--gray-700);
  border-bottom: 2px solid transparent; transition: all var(--transition);
}
.cat-nav-list a:hover { color: var(--primary); background: var(--primary-light); }
.cat-nav-list a.active { color: var(--primary); border-bottom-color: var(--primary); }
.cat-nav-scroll-btn {
  display: none; position: absolute; top: 0; height: var(--catnav-h);
  width: 32px; align-items: center; justify-content: center;
  background: linear-gradient(to right, #fff 60%, transparent);
  font-size: 0.8rem; color: var(--gray-500); z-index: 10;
}
.cat-nav-left  { left: 0; }
.cat-nav-right { right: 0; background: linear-gradient(to left, #fff 60%, transparent); }

/* Brand Bar */
.brand-bar { background: var(--gray-50); border-bottom: 1px solid var(--gray-100); padding: 0.625rem 0; }
.brand-bar-inner { display: flex; gap: 0.5rem; overflow-x: auto; scrollbar-width: none; }
.brand-bar-inner::-webkit-scrollbar { display: none; }
.brand-chip {
  flex-shrink: 0; padding: 0.3rem 0.875rem;
  background: var(--white); border: 1px solid var(--gray-300);
  border-radius: 100px; font-size: 0.8rem; font-weight: 500; color: var(--gray-700);
  transition: all var(--transition);
}
.brand-chip:hover { background: var(--primary); border-color: var(--primary); color: #fff; }

/* ============================================================
   LAYOUT
   ============================================================ */
.main-layout { padding: 1.5rem 0 3rem; }
.layout-inner { display: grid; grid-template-columns: 260px 1fr; gap: 1.5rem; }

/* ============================================================
   SIDEBAR
   ============================================================ */
.sidebar {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); height: fit-content;
  position: sticky; top: calc(var(--header-h) + var(--maincatbar-h) + var(--catnav-h) + 1.25rem);
}
.sidebar-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.125rem; border-bottom: 1px solid var(--gray-100);
}
.sidebar-header h3 { font-size: 0.9rem; font-weight: 700; color: var(--dark); display: flex; gap: 0.5rem; align-items: center; }
.clear-filters { font-size: 0.775rem; color: var(--gray-500); display: flex; gap: 0.25rem; align-items: center; }
.clear-filters:hover { color: var(--danger); }

.filter-group { border-bottom: 1px solid var(--gray-100); }
.filter-title {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.125rem; font-size: 0.825rem; font-weight: 600;
  color: var(--gray-700); cursor: pointer; user-select: none;
}
.filter-title .toggle-icon { margin-left: auto; transition: transform var(--transition); }
.filter-title.collapsed .toggle-icon { transform: rotate(-90deg); }

.filter-list { padding: 0.25rem 1rem 0.75rem; }
.filter-list li { margin-bottom: 0.1rem; }
.filter-radio, .filter-check {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.3rem 0.25rem; cursor: pointer; font-size: 0.825rem; color: var(--gray-700);
  border-radius: var(--radius-sm); transition: background var(--transition);
}
.filter-radio:hover, .filter-check:hover { background: var(--gray-50); color: var(--primary); }
.filter-radio input, .filter-check input { accent-color: var(--primary); }

.filter-price { padding: 0.5rem 1.125rem 0.875rem; }
.price-inputs { display: flex; align-items: center; gap: 0.5rem; }
.price-input {
  flex: 1; padding: 0.4rem 0.5rem; border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm); font-size: 0.8rem; text-align: center;
}

.btn-block { display: block; width: 100%; }
.sidebar form > .btn-block { margin: 0.75rem 1rem; width: calc(100% - 2rem); }

/* Condition dots */
.cond-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; }
.cond-new  { background: #16a34a; }
.cond-a    { background: #0ea5e9; }
.cond-b    { background: #f59e0b; }
.cond-used { background: #94a3b8; }

.sidebar-info { padding: 1rem 1.125rem; background: var(--gray-50); border-top: 1px solid var(--gray-100); }
.sidebar-info h4 { font-size: 0.775rem; font-weight: 600; color: var(--gray-700); margin-bottom: 0.5rem; display: flex; gap: 0.4rem; }
.sidebar-info ul { display: flex; flex-direction: column; gap: 0.375rem; }
.sidebar-info li { font-size: 0.775rem; color: var(--gray-600); display: flex; align-items: center; gap: 0.5rem; }

/* ============================================================
   HERO BANNER
   ============================================================ */
.hero-banner {
  background: linear-gradient(135deg, var(--dark) 0%, #1e3a5f 100%);
  border-radius: var(--radius-lg); padding: 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 2rem; color: #fff; gap: 2rem; overflow: hidden;
  position: relative;
}
.hero-banner::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content { position: relative; }
.hero-title { font-size: 2rem; font-weight: 800; line-height: 1.2; margin-bottom: 0.875rem; }
.hero-title span { color: var(--accent); }
.hero-desc { font-size: 1rem; color: rgba(255,255,255,0.75); margin-bottom: 1.5rem; }
.hero-btns { display: flex; gap: 0.875rem; flex-wrap: wrap; }
.btn-hero { padding: 0.7rem 1.5rem; font-size: 0.9rem; }
.hero-stats { display: flex; gap: 2rem; position: relative; }
.hero-stat { text-align: center; }
.hero-stat-num { display: block; font-size: 2rem; font-weight: 800; color: var(--accent); }
.hero-stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.6); }

/* ============================================================
   LISTINGS SECTION
   ============================================================ */
.listings-section { min-width: 0; }

.page-heading {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.25rem;
}
.page-heading h1 { font-size: 1.4rem; font-weight: 700; color: var(--dark); }
.listing-count {
  background: var(--primary-light); color: var(--primary);
  font-size: 0.8rem; font-weight: 600; padding: 0.25rem 0.75rem; border-radius: 100px;
}
.page-desc { color: var(--gray-600); font-size: 0.9rem; margin-bottom: 1.25rem; }

.listings-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1rem; gap: 1rem;
}
.listings-count { font-size: 0.875rem; color: var(--gray-600); }
.listings-count strong { color: var(--dark); font-size: 1rem; }
.listings-sort { display: flex; align-items: center; gap: 0.75rem; }
#sortSelect, .sort-select {
  padding: 0.4rem 0.75rem; border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm); font-size: 0.825rem; background: var(--white);
  cursor: pointer;
}
.view-toggle { display: flex; gap: 0.25rem; }
.view-btn {
  width: 32px; height: 32px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-500); transition: all var(--transition);
  border: 1px solid var(--gray-200);
}
.view-btn:hover, .view-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); }

/* Active Filters */
.active-filters { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1rem; }
.filter-tag {
  display: inline-flex; align-items: center; gap: 0.375rem;
  background: var(--primary-light); color: var(--primary);
  font-size: 0.775rem; font-weight: 500; padding: 0.25rem 0.625rem; border-radius: 100px;
}
.remove-filter { color: var(--primary); opacity: 0.7; }
.remove-filter:hover { opacity: 1; }
.clear-all-filters { font-size: 0.775rem; color: var(--danger); font-weight: 500; align-self: center; }

/* ============================================================
   PRODUCT GRID
   ============================================================ */
.listings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}
.listings-grid--featured {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

/* Category Grid */
.cat-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 0.75rem;
}
.cat-block {
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 1.25rem 1rem;
  font-size: 0.8rem; font-weight: 600; color: var(--gray-700);
  text-align: center; transition: all var(--transition);
}
.cat-block i { font-size: 1.6rem; color: var(--primary); }
.cat-block:hover { border-color: var(--primary); color: var(--primary); box-shadow: var(--shadow-sm); transform: translateY(-2px); }

/* ============================================================
   LISTING CARD
   ============================================================ */
.listing-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}
.listing-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); border-color: var(--primary); }
.card-out-of-stock { opacity: 0.75; }

.card-img-wrap { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--gray-50); }
.card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.listing-card:hover .card-img { transform: scale(1.04); }

/* Badges */
.badge { position: absolute; top: 0.5rem; font-size: 0.7rem; font-weight: 700; padding: 0.2rem 0.5rem; border-radius: 4px; line-height: 1.4; }
.badge-featured { left: 0.5rem; background: #f59e0b; color: #fff; }
.badge-condition { right: 0.5rem; }
.badge-new  { background: #16a34a; color: #fff; }
.badge-a    { background: #0ea5e9; color: #fff; }
.badge-b    { background: #f59e0b; color: #111; }
.badge-used { background: #64748b; color: #fff; }
.badge-out  { bottom: 0.5rem; right: 0.5rem; top: auto; background: #e53935; color: #fff; }
.badge-low  { bottom: 0.5rem; left: 0.5rem; top: auto; background: #f59e0b; color: #111; }
.badge-panel-new  { background: #16a34a; color: #fff; }
.badge-panel-used { background: #64748b; color: #fff; }

.btn-fav-card {
  position: absolute; bottom: 0.5rem; right: 0.5rem;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.9); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-400); font-size: 0.9rem;
  transition: all var(--transition);
}
.btn-fav-card:hover, .btn-fav-card.active { color: var(--danger); background: var(--white); }

.card-body { padding: 0.875rem; display: flex; flex-direction: column; gap: 0.375rem; flex: 1; }
.card-meta { display: flex; gap: 0.375rem; flex-wrap: wrap; }
.card-brand {
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--primary); background: var(--primary-light); padding: 0.1rem 0.45rem; border-radius: 4px;
}
.card-cat { font-size: 0.7rem; color: var(--gray-500); }
.card-title { font-size: 0.875rem; font-weight: 600; line-height: 1.35; flex: 1; }
.card-title a { color: var(--dark); }
.card-title a:hover { color: var(--primary); }
.card-part-no { font-size: 0.7rem; color: var(--gray-500); display: flex; gap: 0.3rem; }

.card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.card-price { font-size: 1.05rem; font-weight: 800; color: var(--primary); }

.card-stock { font-size: 0.7rem; font-weight: 600; display: flex; align-items: center; gap: 0.25rem; }
.card-stock i { font-size: 0.45rem; }
.stock-ok  .fa-circle { color: var(--success); }
.stock-low .fa-circle { color: var(--warning); }
.stock-out .fa-circle { color: var(--danger); }
.stock-ok  { color: var(--success); }
.stock-low { color: var(--warning); }
.stock-out { color: var(--danger); }

.btn-add-cart {
  width: 100%; margin-top: 0.5rem; padding: 0.5rem;
  background: var(--primary); color: #fff; border-radius: var(--radius-sm);
  font-size: 0.8rem; font-weight: 600; display: flex; align-items: center; justify-content: center; gap: 0.4rem;
  transition: background var(--transition);
}
.btn-add-cart:hover { background: var(--primary-dark); }
.btn-notify-stock {
  width: 100%; margin-top: 0.5rem; padding: 0.5rem;
  background: #25d366; color: #fff; border-radius: var(--radius-sm);
  font-size: 0.8rem; font-weight: 600; display: flex; align-items: center; justify-content: center; gap: 0.4rem;
}
.btn-notify-stock:hover { background: #1da855; color: #fff; }
.card-time { font-size: 0.7rem; color: var(--gray-400); margin-top: 0.25rem; }

/* ============================================================
   FEATURED SECTION
   ============================================================ */
.featured-section, .related-section { margin-bottom: 2rem; }
.section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.section-header h2 { font-size: 1.1rem; font-weight: 700; color: var(--dark); display: flex; align-items: center; gap: 0.5rem; }
.see-all { font-size: 0.825rem; color: var(--primary); font-weight: 500; display: flex; align-items: center; gap: 0.25rem; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  padding: 0.55rem 1.25rem; border-radius: var(--radius-sm);
  font-size: 0.875rem; font-weight: 600; transition: all var(--transition);
  cursor: pointer; border: 2px solid transparent;
}
.btn-primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: #fff; }
.btn-outline { background: transparent; border-color: var(--gray-300); color: var(--gray-700); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-whatsapp { background: #25d366; color: #fff; border-color: #25d366; }
.btn-whatsapp:hover { background: #1da855; border-color: #1da855; color: #fff; }
.btn-lg  { padding: 0.75rem 1.75rem; font-size: 1rem; }
.btn-xl  { padding: 0.875rem 2rem; font-size: 1.05rem; }
.btn-sm  { padding: 0.35rem 0.875rem; font-size: 0.8rem; }
.btn-block { width: 100%; }

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination { display: flex; gap: 0.375rem; justify-content: center; margin-top: 2rem; flex-wrap: wrap; }
.page-btn {
  display: inline-flex; align-items: center; gap: 0.3rem;
  padding: 0.45rem 0.875rem; border-radius: var(--radius-sm);
  border: 1px solid var(--gray-300); font-size: 0.825rem; color: var(--gray-700);
  transition: all var(--transition);
}
.page-btn:hover { border-color: var(--primary); color: var(--primary); }
.page-btn.active { background: var(--primary); border-color: var(--primary); color: #fff; }

/* ============================================================
   NO RESULTS
   ============================================================ */
.no-results {
  text-align: center; padding: 4rem 2rem;
  background: var(--white); border-radius: var(--radius); border: 1px solid var(--gray-200);
}
.no-results-icon, .no-results > i { font-size: 3rem; color: var(--gray-300); margin-bottom: 1rem; display: block; }
.no-results h3 { font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--gray-700); }
.no-results p  { font-size: 0.9rem; color: var(--gray-500); margin-bottom: 1.5rem; }
.no-results-actions { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   BRAND / CATEGORY CHIPS
   ============================================================ */
.brand-cat-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.25rem; }
.chip {
  padding: 0.35rem 0.875rem; border-radius: 100px;
  border: 1px solid var(--gray-300); font-size: 0.8rem; font-weight: 500; color: var(--gray-700);
  transition: all var(--transition); display: inline-flex; align-items: center; gap: 0.3rem;
}
.chip:hover { border-color: var(--primary); color: var(--primary); }
.chip-active { background: var(--primary); border-color: var(--primary); color: #fff; }
.chip span { font-size: 0.7rem; opacity: 0.8; }

/* ============================================================
   PRODUCT DETAIL
   ============================================================ */
.urun-detail { padding: 1.5rem 0 3rem; }

.breadcrumb { margin-bottom: 1.5rem; }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 0.375rem; align-items: center; font-size: 0.825rem; }
.breadcrumb li { display: flex; align-items: center; color: var(--gray-500); }
.breadcrumb li::after { content: '/'; margin-left: 0.375rem; }
.breadcrumb li:last-child::after { display: none; }
.breadcrumb li:last-child { color: var(--gray-700); font-weight: 500; }
.breadcrumb a { color: var(--primary); }
.breadcrumb a:hover { text-decoration: underline; }

.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; margin-bottom: 2rem; }

/* Slider */
.slider { position: relative; border-radius: var(--radius); overflow: hidden; background: var(--gray-50); aspect-ratio: 4/3; }
.slide { display: none; position: absolute; inset: 0; }
.slide.active { display: block; }
.slide-img { width: 100%; height: 100%; object-fit: contain; }
.slider-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.9); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.875rem; color: var(--gray-700); box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.slider-btn:hover { background: var(--white); color: var(--primary); }
.slider-prev { left: 0.75rem; }
.slider-next { right: 0.75rem; }
.slider-dots { position: absolute; bottom: 0.75rem; left: 50%; transform: translateX(-50%); display: flex; gap: 0.375rem; }
.slider-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.5); transition: all var(--transition); }
.slider-dot.active { background: var(--white); width: 20px; border-radius: 3px; }
.slider-thumbs { display: flex; gap: 0.5rem; margin-top: 0.75rem; overflow-x: auto; scrollbar-width: none; }
.slider-thumbs::-webkit-scrollbar { display: none; }
.thumb { width: 72px; height: 54px; border-radius: var(--radius-sm); overflow: hidden; border: 2px solid var(--gray-200); transition: border-color var(--transition); flex-shrink: 0; }
.thumb.active, .thumb:hover { border-color: var(--primary); }
.thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Detail Info */
.detail-badges { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 0.875rem; }
.detail-badges .badge { position: static; }
.detail-title { font-size: 1.5rem; font-weight: 800; line-height: 1.3; color: var(--dark); margin-bottom: 0.625rem; }
.detail-part-no { font-size: 0.825rem; color: var(--gray-500); margin-bottom: 0.75rem; display: flex; gap: 0.4rem; }
.detail-price-box { display: flex; align-items: baseline; gap: 1rem; margin-bottom: 1.25rem; }
.detail-price { font-size: 2rem; font-weight: 800; color: var(--primary); }
.detail-stock { font-size: 0.85rem; font-weight: 600; display: flex; align-items: center; gap: 0.35rem; }
.stock-count { color: var(--gray-500); font-weight: 400; font-size: 0.8rem; }

.detail-specs { margin-bottom: 1.25rem; }
.detail-specs h3, .detail-compat h3 { font-size: 0.9rem; font-weight: 700; margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.5rem; color: var(--dark); }
.specs-grid { display: grid; grid-template-columns: auto 1fr; gap: 0.5rem 1rem; font-size: 0.825rem; }
.specs-grid dt { color: var(--gray-500); font-weight: 500; }
.specs-grid dd { color: var(--dark); font-weight: 600; }

.detail-compat { margin-bottom: 1.25rem; }
.compat-list { display: flex; flex-wrap: wrap; gap: 0.375rem; }
.compat-list li {
  font-size: 0.775rem; font-weight: 500;
  background: var(--gray-50); border: 1px solid var(--gray-200);
  padding: 0.25rem 0.625rem; border-radius: 4px; color: var(--gray-700);
  display: flex; gap: 0.3rem; align-items: center;
}
.compat-list i { color: var(--primary); }

.detail-actions { display: flex; flex-direction: column; gap: 0.625rem; margin-bottom: 1.25rem; }
.qty-wrap { display: flex; align-items: center; gap: 0.75rem; }
.qty-wrap label { font-size: 0.825rem; font-weight: 600; color: var(--gray-700); }
.qty-control { display: flex; align-items: center; border: 1px solid var(--gray-300); border-radius: var(--radius-sm); overflow: hidden; }
.qty-btn {
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; background: var(--gray-50); color: var(--gray-700);
  transition: background var(--transition);
}
.qty-btn:hover { background: var(--primary-light); color: var(--primary); }
.qty-input { width: 60px; text-align: center; border: none; outline: none; font-size: 1rem; font-weight: 700; padding: 0.4rem; }
.out-of-stock-box {
  padding: 0.875rem; background: #fef2f2; border: 1px solid #fecaca;
  border-radius: var(--radius-sm); color: var(--danger); font-weight: 600;
  display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem;
}

.trust-bar {
  display: flex; gap: 1.25rem; flex-wrap: wrap; padding: 0.875rem;
  background: var(--gray-50); border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200);
}
.trust-bar span { font-size: 0.775rem; font-weight: 600; color: var(--gray-600); display: flex; align-items: center; gap: 0.35rem; }
.trust-bar span i { color: var(--primary); }
.trust-bar--sm { gap: 1rem; padding: 0.625rem; }

.detail-description {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 1.5rem; margin-bottom: 2rem;
}
.detail-description h2 { font-size: 1.05rem; font-weight: 700; margin-bottom: 1rem; display: flex; gap: 0.5rem; }
.desc-content { font-size: 0.9rem; line-height: 1.8; color: var(--gray-700); white-space: pre-wrap; }

/* ============================================================
   CART PAGE
   ============================================================ */
.sepet-page, .siparis-page, .marka-page, .parca-page { padding: 1.5rem 0 3rem; }

.empty-cart {
  text-align: center; padding: 5rem 2rem;
  background: var(--white); border-radius: var(--radius-lg);
}
.empty-cart i { font-size: 4rem; color: var(--gray-300); margin-bottom: 1.25rem; display: block; }
.empty-cart h2 { font-size: 1.5rem; margin-bottom: 0.75rem; }
.empty-cart p  { color: var(--gray-500); margin-bottom: 1.5rem; }

.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 1.5rem; align-items: start; }

.cart-items { display: flex; flex-direction: column; gap: 0.875rem; }
.cart-item {
  display: grid; grid-template-columns: 80px 1fr auto auto auto;
  align-items: center; gap: 1rem;
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 1rem;
}
.cart-item-img { border-radius: var(--radius-sm); overflow: hidden; }
.cart-item-img img { width: 80px; height: 60px; object-fit: cover; }
.cart-item-title { font-weight: 600; font-size: 0.875rem; color: var(--dark); }
.cart-item-title:hover { color: var(--primary); }
.cart-item-price { font-size: 0.8rem; color: var(--gray-500); margin-top: 0.25rem; }
.cart-item-qty { display: flex; align-items: center; gap: 0.25rem; }
.cart-item-subtotal { font-weight: 700; font-size: 0.95rem; color: var(--primary); white-space: nowrap; }
.cart-item-remove { color: var(--danger); opacity: 0.5; padding: 0.25rem; transition: opacity var(--transition); }
.cart-item-remove:hover { opacity: 1; }

.summary-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 1.25rem;
}
.summary-card.sticky { position: sticky; top: calc(var(--header-h) + var(--catnav-h) + 1rem); }
.summary-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 1rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--gray-100); }
.summary-row { display: flex; justify-content: space-between; margin-bottom: 0.625rem; font-size: 0.875rem; }
.summary-grand { font-size: 1.05rem; border-top: 1px solid var(--gray-100); padding-top: 0.75rem; margin-top: 0.5rem; }
.summary-card .btn + .btn { margin-top: 0.5rem; }
.text-success { color: var(--success); }

/* ============================================================
   CHECKOUT PAGE
   ============================================================ */
.checkout-layout { display: grid; grid-template-columns: 1fr 380px; gap: 1.5rem; align-items: start; }
.checkout-form .card { margin-bottom: 1.25rem; }

.siparis-page .page-heading {
  flex-direction: column; align-items: flex-start;
  gap: 0.35rem; margin-bottom: 1.5rem;
}
.page-heading-sub {
  margin: 0; font-size: 0.9rem; color: var(--gray-600);
}
.page-heading-sub strong { color: var(--dark); font-weight: 700; }

.checkout-pay-hint {
  font-size: 0.78rem; color: var(--gray-600); line-height: 1.55;
  margin: 0.75rem 0 0; padding: 0.625rem 0.75rem;
  background: #f8fafc; border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200);
}
.checkout-pay-hint i { color: var(--primary); margin-right: 0.35rem; }

/* Enpara Havale Kutusu */
.card--enpara-pay { overflow: hidden; border: none; box-shadow: 0 4px 24px rgba(15,23,42,0.08); }
.card-body--flush { padding: 0 !important; }
.card-header--enpara {
  background: linear-gradient(135deg, #4c1d95 0%, #5b21b6 38%, #4f46e5 100%);
  border-bottom: none; color: #fff;
}
.card-header--enpara h3 {
  margin: 0; font-size: 1rem; font-weight: 800;
  display: flex; align-items: center; gap: 0.5rem; color: #fff;
}
.card-header--enpara i { opacity: 0.95; }

.enpara-pay-card {
  background: var(--white);
}
.enpara-pay-card__head {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 0.75rem;
  padding: 1.25rem 1.5rem 1rem;
  background: linear-gradient(180deg, #faf5ff 0%, #fff 100%);
  border-bottom: 1px solid #ede9fe;
}
.enpara-pay-card__logo {
  display: flex; align-items: center; gap: 0.75rem;
}
.enpara-pay-card__mark { width: 44px; height: 44px; flex-shrink: 0; border-radius: 12px; }
.enpara-pay-card__bank {
  font-size: 1.15rem; font-weight: 900; letter-spacing: -0.02em;
  color: #4c1d95;
}
.enpara-pay-card__badge {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-size: 0.72rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.75rem; border-radius: 100px;
  background: #ede9fe; color: #5b21b6; border: 1px solid #ddd6fe;
}
.enpara-pay-card__body { padding: 1.25rem 1.5rem 1.5rem; }
.enpara-pay-card__intro {
  margin: 0 0 1.25rem; font-size: 0.875rem; color: var(--gray-600); line-height: 1.65;
}

.enpara-pay-card__rows { margin: 0; }
.enpara-pay-card__row {
  padding: 1rem 1.125rem; margin-bottom: 0.75rem;
  background: #f8fafc; border: 1px solid var(--gray-200);
  border-radius: var(--radius);
}
.enpara-pay-card__row:last-of-type { margin-bottom: 0; }
.enpara-pay-card__row--iban {
  background: linear-gradient(135deg, #fefce8 0%, #fffbeb 100%);
  border-color: #fde68a;
}
.enpara-pay-card__row dt {
  font-size: 0.7rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--gray-500);
  margin-bottom: 0.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 0.5rem;
}
.enpara-pay-card__row dd { margin: 0; font-size: 0.95rem; font-weight: 700; color: var(--dark); word-break: break-word; }
.enpara-iban {
  display: block; font-family: ui-monospace, 'Cascadia Code', 'Consolas', monospace;
  font-size: 1.05rem; font-weight: 800; letter-spacing: 0.04em;
  color: #1e293b; user-select: all;
}

.enpara-copy-btn {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.25rem 0.6rem; border-radius: 6px;
  font-size: 0.68rem; font-weight: 700; font-family: inherit;
  border: 1px solid var(--gray-300); background: var(--white);
  color: var(--primary); cursor: pointer; transition: all 0.15s;
  flex-shrink: 0;
}
.enpara-copy-btn:hover { background: var(--primary-light); border-color: var(--primary); }
.enpara-copy-btn--done { background: #dcfce7 !important; border-color: #86efac !important; color: #166534 !important; }

.enpara-pay-card__alert {
  display: flex; gap: 0.75rem; align-items: flex-start;
  margin-top: 1.25rem; padding: 0.875rem 1rem;
  background: #eff6ff; border: 1px solid #bfdbfe; border-radius: var(--radius);
}
.enpara-pay-card__alert i {
  color: var(--primary); font-size: 1.1rem; margin-top: 0.1rem; flex-shrink: 0;
}
.enpara-pay-card__alert p { margin: 0; font-size: 0.82rem; color: #1e40af; line-height: 1.55; font-weight: 500; }

.tesekkur-box .enpara-pay-card { margin-top: 1.5rem; text-align: left; }
.tesekkur-box .enpara-pay-card__head { border-radius: 0; }
.payment-methods { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
.payment-option {
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  padding: 1rem; border: 2px solid var(--gray-200); border-radius: var(--radius);
  cursor: pointer; transition: all var(--transition); text-align: center;
}
.payment-option input { display: none; }
.payment-option i { font-size: 1.5rem; color: var(--gray-500); }
.payment-option span { font-size: 0.8rem; font-weight: 600; color: var(--gray-700); }
.payment-option.selected { border-color: var(--primary); background: var(--primary-light); }
.payment-option.selected i, .payment-option.selected span { color: var(--primary); }

.checkout-item {
  display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem;
}
.checkout-item img { width: 48px; height: 36px; object-fit: cover; border-radius: 4px; }
.checkout-item-info { flex: 1; min-width: 0; }
.checkout-item-title { display: block; font-size: 0.8rem; font-weight: 600; color: var(--dark); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.checkout-item-qty { font-size: 0.75rem; color: var(--gray-500); }
.checkout-item-price { font-weight: 700; font-size: 0.875rem; color: var(--primary); white-space: nowrap; }

/* Form components */
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.825rem; font-weight: 600; color: var(--gray-700); margin-bottom: 0.375rem; }
.form-control {
  width: 100%; padding: 0.6rem 0.875rem;
  border: 1px solid var(--gray-300); border-radius: var(--radius-sm);
  font-size: 0.875rem; background: var(--white); color: var(--dark);
  transition: border-color var(--transition);
  font-family: inherit;
}
.form-control:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(26,110,245,0.1); }
textarea.form-control { resize: vertical; }
.required { color: var(--danger); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.875rem; }
.form-hint { font-size: 0.75rem; color: var(--gray-500); margin-top: 0.25rem; display: block; }

/* ============================================================
   TEŞEKKÜRLER PAGE
   ============================================================ */
.tesekkur-page { padding: 3rem 0; }
.tesekkur-box {
  max-width: 560px; margin: 0 auto; text-align: center;
  background: var(--white); border-radius: var(--radius-lg); padding: 3rem 2rem;
  box-shadow: var(--shadow);
}
.tesekkur-icon { font-size: 4rem; color: var(--success); margin-bottom: 1.25rem; }
.tesekkur-box h1 { font-size: 2rem; margin-bottom: 1rem; }
.order-no { font-size: 1.2rem; color: var(--primary); letter-spacing: 0.06em; }
.tesekkur-amount {
  display: inline-flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 0.35rem 0.75rem;
  margin: 1rem 0 0; padding: 0.75rem 1.25rem;
  background: linear-gradient(135deg, #fefce8, #fffbeb);
  border: 1px solid #fde68a; border-radius: var(--radius);
  font-size: 0.92rem; color: var(--gray-700);
}
.tesekkur-amount strong { font-size: 1.35rem; font-weight: 900; color: #1e293b; }
.tesekkur-amount i { color: #d97706; }
.tesekkur-box:has(.enpara-pay-card) { max-width: 620px; text-align: center; }
.tesekkur-actions { display: flex; gap: 0.875rem; justify-content: center; flex-wrap: wrap; margin: 1.5rem 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--dark); color: rgba(255,255,255,0.75); margin-top: 3rem; padding: 3rem 0 0; }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-logo { display: flex; align-items: center; gap: 0.625rem; margin-bottom: 0.875rem; font-size: 1.15rem; font-weight: 800; color: #fff; }
.footer-logo i { color: var(--primary); }
.footer-logo b { color: var(--accent); }
.site-footer p { font-size: 0.825rem; line-height: 1.7; margin-bottom: 1rem; }
.footer-social { display: flex; gap: 0.625rem; margin-bottom: 1rem; }
.footer-social a {
  width: 34px; height: 34px; border-radius: 8px;
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; transition: all var(--transition);
}
.footer-social a:hover { background: var(--primary); color: #fff; }
.footer-trust { display: flex; flex-direction: column; gap: 0.375rem; }
.footer-trust span { font-size: 0.775rem; display: flex; align-items: center; gap: 0.375rem; }
.footer-trust i { color: var(--accent); }
.footer-col h4 { font-size: 0.875rem; font-weight: 700; color: #fff; margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul li a { font-size: 0.825rem; color: rgba(255,255,255,0.6); transition: color var(--transition); display: flex; align-items: center; gap: 0.375rem; }
.footer-col ul li a:hover { color: var(--accent); }
.contact-list { display: flex; flex-direction: column; gap: 0.625rem; }
.contact-list li { display: flex; gap: 0.625rem; font-size: 0.825rem; align-items: flex-start; }
.contact-list i { color: var(--accent); width: 16px; flex-shrink: 0; margin-top: 0.15rem; }
.contact-list a { color: rgba(255,255,255,0.7); }
.contact-list a:hover { color: var(--accent); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 1.25rem 0; font-size: 0.8rem; }
.footer-links { display: flex; gap: 0.875rem; align-items: center; }
.footer-links a { color: rgba(255,255,255,0.5); }
.footer-links a:hover { color: var(--accent); }
.footer-links span { color: rgba(255,255,255,0.3); }

/* WhatsApp Float */
.whatsapp-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 200;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: all var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); color: #fff; }
.whatsapp-tooltip {
  position: absolute; right: 100%; margin-right: 0.625rem; white-space: nowrap;
  background: var(--dark); color: #fff; font-size: 0.8rem; font-weight: 600;
  padding: 0.35rem 0.75rem; border-radius: var(--radius-sm);
  opacity: 0; pointer-events: none; transition: opacity var(--transition);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* Back to top */
.back-to-top {
  position: fixed; bottom: 5.5rem; right: 1.5rem; z-index: 199;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--gray-900); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; opacity: 0; pointer-events: none;
  transition: all var(--transition); box-shadow: var(--shadow-sm);
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: var(--primary); }

/* Toast */
.toast-container { position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%); z-index: 500; display: flex; flex-direction: column; gap: 0.5rem; pointer-events: none; }
.toast {
  background: var(--dark); color: #fff; padding: 0.75rem 1.25rem; border-radius: var(--radius);
  font-size: 0.875rem; font-weight: 500; box-shadow: var(--shadow-lg);
  animation: toastIn 0.3s ease;
}
@keyframes toastIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* ============================================================
   FAVORITES PANEL
   ============================================================ */
.fav-panel {
  position: fixed; right: 0; top: 0; bottom: 0; width: 360px; z-index: 300;
  background: var(--white); box-shadow: -4px 0 24px rgba(0,0,0,.15);
  display: flex; flex-direction: column; transform: translateX(100%); transition: transform 0.3s;
}
.fav-panel:not([hidden]) { transform: translateX(0); }
.fav-panel-header { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem; border-bottom: 1px solid var(--gray-200); }
.fav-panel-header h3 { font-size: 1rem; font-weight: 700; }
.fav-panel-body { flex: 1; overflow-y: auto; padding: 1rem; }
.empty-fav { text-align: center; color: var(--gray-500); padding: 2rem; font-size: 0.9rem; }
.fav-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.4); z-index: 299; display: none; }
.fav-overlay.active { display: block; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
/* ============================================================
   RESPONSIVE — Tablet (≤1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .layout-inner        { grid-template-columns: 210px 1fr; }
  .detail-grid         { grid-template-columns: 1fr 1fr; }
  .cart-layout         { grid-template-columns: 1fr 280px; }
  .checkout-layout     { grid-template-columns: 1fr 300px; }
  .footer-grid         { grid-template-columns: 1fr 1fr; }
  .header-phone-btn    { display: none; }
  .listings-grid       { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
}

/* ============================================================
   RESPONSIVE — Mobile (≤768px)
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --header-h:      58px;
    --maincatbar-h:  48px;
    --catnav-h:      40px;
    --announcebar-h: 0px;
  }

  /* ---- Announcement Bar ---- */
  .announcement-bar { display: none; }

  /* ---- Header ---- */
  .mobile-menu-btn { display: flex !important; }
  .header-phone-btn { display: none; }
  .btn-whatsapp-header { display: none; }

  /* Search: no category select, keep input + button */
  .search-cat-wrap  { display: none; }
  .search-wrap      { border-radius: 8px; height: 40px; }
  .search-input     { font-size: 0.85rem; padding: 0 0.75rem; }
  .search-btn       { padding: 0 0.875rem; font-size: 0.85rem; }
  .search-btn span  { display: none; }
  .header-actions   { gap: 0.25rem; }
  .btn-action       { width: 38px; height: 38px; }

  /* ---- Main Cat Bar ---- */
  .main-cat-tab   { padding: 0 0.875rem; gap: 0.5rem; }
  .main-cat-sub   { display: none; }
  .main-cat-tab > i { font-size: 1.15rem; }
  .main-cat-name  { font-size: 0.82rem; }

  /* ---- Cat Nav ---- */
  .cat-nav-scroll-btn { display: flex; }

  /* ---- Layout ---- */
  .main-layout { padding: 0 0 5rem; }
  .layout-inner { grid-template-columns: 1fr; }

  /* ---- Sidebar (filter panel) ---- */
  .sidebar {
    position: fixed;
    left: -100%;
    top: 0; bottom: 0;
    width: min(320px, 90vw);
    z-index: 500;
    border-radius: 0;
    overflow-y: auto;
    transition: left 0.3s cubic-bezier(0.4,0,0.2,1);
    box-shadow: none;
    border: none;
    border-right: 1px solid var(--gray-200);
  }
  .sidebar.open { left: 0; box-shadow: 4px 0 24px rgba(0,0,0,0.15); }
  .sidebar-overlay {
    display: block;
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(2px);
    z-index: 499;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }
  .sidebar-overlay.active { opacity: 1; pointer-events: auto; }
  .sidebar-mobile-header { display: flex !important; }

  /* ---- Mobile Filter Bar ---- */
  .mobile-filter-bar    { display: flex !important; }

  /* ---- Home Page ---- */
  .home-top { border-radius: 0; border-left: none; border-right: none; margin-bottom: 1.5rem; }
  .home-intro { padding: 1.5rem 1.25rem 1.25rem; }
  .home-intro-title { font-size: 1.6rem; }
  .home-intro-sub   { font-size: 0.85rem; }
  .cat-split        { grid-template-columns: 1fr; }
  .csc--parca       { border-left: none; border-top: 1px solid rgba(255,255,255,0.05); }
  .csc              { padding: 0 1.25rem 1.5rem; }
  .csc-top-bar      { margin: 0 -1.25rem 1.25rem; }
  .csc-heading      { font-size: 1.3rem; }
  .csc-body         { gap: 0.875rem; }
  .trust-bar        { display: none; }

  /* ---- Product Grid ---- */
  .listings-grid       { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .listings-grid--featured { grid-template-columns: repeat(2, 1fr); }
  .cat-grid            { grid-template-columns: repeat(3, 1fr); }

  /* ---- Product Detail ---- */
  .detail-grid      { grid-template-columns: 1fr; }

  /* ---- Cart ---- */
  .cart-layout      { grid-template-columns: 1fr; }
  .checkout-layout  { grid-template-columns: 1fr; }
  .cart-item        { grid-template-columns: 64px 1fr; gap: 0.75rem; }
  .cart-item-qty, .cart-item-subtotal, .cart-item-remove { display: none; }

  /* ---- Laptop Hero ---- */
  .laptop-hero      { flex-direction: column; gap: 1.25rem; padding: 1.5rem; }
  .laptop-hero-stats { flex-wrap: wrap; gap: 1rem; justify-content: center; }
  .laptop-hero-title { font-size: 1.4rem; }

  /* ---- Page Heading ---- */
  .page-heading h1  { font-size: 1.15rem; }
  .listings-header  { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  #sortSelect       { width: 100%; }
  .view-toggle      { align-self: flex-end; }

  /* ---- Pagination ---- */
  .page-btn         { padding: 0.4rem 0.625rem; font-size: 0.78rem; }

  /* ---- Footer ---- */
  .footer-grid      { grid-template-columns: 1fr; gap: 0; }
  .footer-col       { border-bottom: 1px solid rgba(255,255,255,0.06); padding-bottom: 0; }
  .footer-col h4    { cursor: pointer; user-select: none; }
  .footer-bottom    { flex-direction: column; gap: 0.5rem; text-align: center; }

  /* ---- Forms ---- */
  .form-row         { grid-template-columns: 1fr; }
  .payment-methods  { grid-template-columns: 1fr; }

  /* ---- Section Header ---- */
  .section-header   { flex-wrap: wrap; gap: 0.5rem; }
}

/* ============================================================
   RESPONSIVE — Small Mobile (≤480px)
   ============================================================ */
@media (max-width: 480px) {
  .listings-grid      { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
  .cat-grid           { grid-template-columns: repeat(2, 1fr); }
  .home-intro-title   { font-size: 1.4rem; }
  .csc-features       { display: none; }
  .footer-grid        { grid-template-columns: 1fr; }
  .container          { padding: 0 0.875rem; }
  .no-results         { padding: 2.5rem 1.25rem; }
}

/* ============================================================
   GLOBAL: Mobil-only elementlerin masaüstünde gizlenmesi
   ============================================================ */
.mobile-filter-bar,
.mobile-nav,
.mobile-nav-overlay,
.sidebar-overlay,
.sidebar-mobile-header,
.mobile-menu-btn { display: none; }

/* ============================================================
   MOBİL NAV DRAWER
   ============================================================ */
.mobile-nav {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: min(340px, 90vw);
  background: #0f172a;
  z-index: 600;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(0.4,0,0.2,1);
  overflow: hidden;
}
.mobile-nav.open { transform: translateX(0); box-shadow: 8px 0 32px rgba(0,0,0,0.4); }
.mobile-nav-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(2px);
  z-index: 599;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-nav-overlay.active { opacity: 1; pointer-events: auto; }

/* Nav Header */
.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  flex-shrink: 0;
}
.mobile-nav-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.mobile-nav-logo-icon {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, #1a6ef5, #00c896);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 0.95rem;
}
.mobile-nav-logo span {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
}
.mobile-nav-logo b { color: #60a5fa; }
.mobile-nav-logo small { color: rgba(255,255,255,0.3); font-size: 0.65rem; font-weight: 500; }
.mobile-nav-close {
  width: 34px; height: 34px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 1rem;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.2s;
}
.mobile-nav-close:hover { background: rgba(255,255,255,0.08); color: #fff; }

/* Nav Body */
.mobile-nav-body {
  flex: 1;
  overflow-y: auto;
  padding: 0.75rem 0 1rem;
  -webkit-overflow-scrolling: touch;
}
.mobile-nav-body::-webkit-scrollbar { width: 3px; }
.mobile-nav-body::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 2px; }

.mobile-nav-section {
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mobile-nav-section:last-child { border-bottom: none; }
.mobile-nav-section-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.28);
  margin: 0 0 0.625rem;
}

/* Main Cats */
.mobile-main-cat {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.75rem;
  border-radius: 10px;
  margin-bottom: 0.5rem;
  transition: background 0.2s;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.07);
}
.mobile-main-cat:last-child { margin-bottom: 0; }
.mobile-main-cat:hover { background: rgba(255,255,255,0.06); }
.mmc-icon {
  width: 38px; height: 38px;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.mobile-main-cat--laptop .mmc-icon { background: rgba(245,158,11,0.15); color: #f59e0b; }
.mobile-main-cat--parca  .mmc-icon { background: rgba(26,110,245,0.15); color: #60a5fa; }
.mmc-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mmc-title { font-size: 0.875rem; font-weight: 700; color: #fff; }
.mmc-sub   { font-size: 0.72rem; color: rgba(255,255,255,0.4); }
.mmc-arrow { color: rgba(255,255,255,0.25); font-size: 0.7rem; }
.mobile-main-cat--laptop:hover .mmc-arrow { color: #f59e0b; }
.mobile-main-cat--parca:hover  .mmc-arrow { color: #60a5fa; }

/* Category Grid */
.mobile-cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
.mobile-cat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 0.625rem 0.375rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s;
}
.mobile-cat-item i    { font-size: 1rem; color: #60a5fa; }
.mobile-cat-item span { font-size: 0.68rem; color: rgba(255,255,255,0.6); line-height: 1.3; }
.mobile-cat-item:hover { background: rgba(26,110,245,0.1); border-color: rgba(26,110,245,0.3); }
.mobile-cat-item:hover span { color: #fff; }

/* Brand Pills */
.mobile-brand-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}
.mobile-brand-pill {
  padding: 0.3rem 0.75rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: all 0.2s;
}
.mobile-brand-pill:hover { background: rgba(255,255,255,0.1); color: #fff; }

/* Nav Footer */
.mobile-nav-footer {
  padding: 0.875rem 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex-shrink: 0;
  background: rgba(0,0,0,0.2);
}
.mobile-contact-link {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.625rem 0.875rem;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  text-decoration: none;
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
  font-weight: 500;
  transition: all 0.2s;
}
.mobile-contact-link i { font-size: 0.9rem; color: rgba(255,255,255,0.4); }
.mobile-contact-link:hover { background: rgba(255,255,255,0.08); color: #fff; }
.mobile-contact-link--wa { color: #4ade80; }
.mobile-contact-link--wa i { color: #4ade80; }
.mobile-contact-link--wa:hover { background: rgba(37,211,102,0.1); color: #4ade80; }

/* ============================================================
   MOBİL FİLTRE ÇUBUĞU (Sidebar trigger)
   ============================================================ */
.mobile-filter-bar {
  display: none;
  position: sticky;
  bottom: 0;
  left: 0; right: 0;
  z-index: 90;
  background: #fff;
  border-top: 1px solid var(--gray-200);
  padding: 0.625rem 1rem;
  gap: 0.625rem;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.08);
}
.mobile-filter-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 42px;
  background: var(--primary);
  color: #fff;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  border: none;
  transition: background 0.2s;
}
.mobile-filter-btn:hover { background: var(--primary-dark); }
.mobile-sort-select {
  height: 42px;
  border: 1.5px solid var(--gray-300);
  border-radius: 8px;
  padding: 0 0.875rem;
  font-size: 0.82rem;
  font-family: inherit;
  font-weight: 500;
  color: var(--gray-700);
  background: var(--white);
  outline: none;
  min-width: 130px;
}

/* ============================================================
   SİDEBAR — Mobil Header
   ============================================================ */
.sidebar-mobile-header {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.125rem;
  border-bottom: 1px solid var(--gray-100);
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1;
}
.sidebar-mobile-header span {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.sidebar-mobile-header span i { color: var(--primary); }
.sidebar-close-btn {
  width: 32px; height: 32px;
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-500);
  font-size: 0.9rem;
  border: 1px solid var(--gray-200);
  cursor: pointer;
  transition: all 0.2s;
}
.sidebar-close-btn:hover { background: var(--gray-100); color: var(--dark); }

/* ============================================================
   ANA KATEGORİ ÇUBUĞU (2. El Laptop | Yedek Parça)
   ============================================================ */
.main-cat-bar {
  background: #111827;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  border-top: 1px solid rgba(255,255,255,0.04);
  position: sticky;
  top: var(--header-h);
  z-index: 99;
  height: var(--maincatbar-h);
}
.main-cat-tabs {
  display: flex;
  gap: 0;
  height: var(--maincatbar-h);
}
.main-cat-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.875rem;
  padding: 0 1.5rem;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
  position: relative;
}
.main-cat-tab:hover { color: rgba(255,255,255,0.85); background: rgba(255,255,255,0.04); }
.main-cat-tab > i { font-size: 1.35rem; flex-shrink: 0; }
.main-cat-tab-text { display: flex; flex-direction: column; }
.main-cat-name { font-size: 0.875rem; font-weight: 700; line-height: 1.2; }
.main-cat-sub  { font-size: 0.7rem; font-weight: 400; opacity: 0.55; margin-top: 2px; }

.main-cat-tab--laptop:hover  { color: #fbbf24; background: rgba(245,158,11,0.05); }
.main-cat-tab--laptop.active { color: #fbbf24; border-bottom-color: #f59e0b; background: rgba(245,158,11,0.07); }

.main-cat-tab--parca:hover  { color: #93c5fd; background: rgba(26,110,245,0.05); }
.main-cat-tab--parca.active { color: #93c5fd; border-bottom-color: var(--primary); background: rgba(26,110,245,0.07); }

.main-cat-tab.active { color: inherit; }

.main-cat-divider {
  width: 1px;
  background: rgba(255,255,255,0.1);
  margin: 0.5rem 0;
}

/* ============================================================
   HOME TOP — Ana Sayfa İki Kategori Bölümü
   ============================================================ */
.home-top {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
  margin-bottom: 2.5rem;
}

/* Intro Başlık */
.home-intro {
  background: var(--dark);
  text-align: center;
  padding: 2.25rem 2rem 2rem;
  position: relative;
}
.home-intro-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.55);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.875rem;
  border-radius: 100px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 0.875rem;
}
.home-intro-eyebrow i { color: #f59e0b; }
.home-intro-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.home-intro-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.45);
  margin: 0;
}

/* İki Kategori Kartı */
.cat-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.csc {
  display: flex;
  flex-direction: column;
  padding: 0 2.25rem 2.25rem;
  color: #fff;
  text-decoration: none;
  transition: background 0.25s ease;
  position: relative;
  overflow: hidden;
}
.csc:hover { color: #fff; }
.csc--laptop {
  background: #130c03;
}
.csc--parca {
  background: #04090f;
  border-left: 1px solid rgba(255,255,255,0.05);
}
.csc--laptop:hover { background: #1c1004; }
.csc--parca:hover  { background: #060c14; }

/* Top accent bar */
.csc-top-bar {
  height: 3px;
  margin: 0 -2.25rem 2rem;
}
.csc--laptop .csc-top-bar {
  background: linear-gradient(90deg, #b45309, #f59e0b, #fbbf24);
}
.csc--parca .csc-top-bar {
  background: linear-gradient(90deg, #1055cc, #1a6ef5, #0ea5e9);
}

/* Body: icon + content side by side */
.csc-body {
  display: flex;
  gap: 1.25rem;
  flex: 1;
  align-items: flex-start;
}
.csc-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}
.csc--laptop .csc-icon-wrap {
  background: rgba(245,158,11,0.12);
  color: #f59e0b;
  box-shadow: 0 0 0 1px rgba(245,158,11,0.2);
}
.csc--parca .csc-icon-wrap {
  background: rgba(26,110,245,0.12);
  color: #60a5fa;
  box-shadow: 0 0 0 1px rgba(26,110,245,0.2);
}
.csc-main { flex: 1; }
.csc-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
  margin: 0 0 0.375rem;
}
.csc-heading {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  margin: 0 0 0.75rem;
  letter-spacing: -0.01em;
}
.csc-text {
  font-size: 0.845rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  margin: 0 0 1.1rem;
}
.csc-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 0;
}
.csc-features li {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.csc--laptop .csc-features li i { color: #f59e0b; font-size: 0.6rem; }
.csc--parca  .csc-features li i { color: #60a5fa; font-size: 0.6rem; }

/* Footer CTA */
.csc-footer {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.csc-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.65rem 1.5rem;
  border-radius: 8px;
  transition: all 0.2s ease;
  letter-spacing: 0.01em;
}
.csc--laptop .csc-cta {
  background: #f59e0b;
  color: #1c0500;
}
.csc--laptop:hover .csc-cta {
  background: #fbbf24;
  box-shadow: 0 4px 16px rgba(245,158,11,0.35);
}
.csc--parca .csc-cta {
  background: var(--primary);
  color: #fff;
}
.csc--parca:hover .csc-cta {
  background: var(--primary-dark);
  box-shadow: 0 4px 16px rgba(26,110,245,0.35);
}

/* Trust Bar */
.trust-bar {
  background: #fff;
  border-top: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.875rem 1.375rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray-600);
  white-space: nowrap;
}
.trust-item i {
  font-size: 0.875rem;
  color: var(--primary);
}
.trust-sep {
  width: 1px;
  height: 18px;
  background: var(--gray-200);
  flex-shrink: 0;
}

/* ============================================================
   LAPTOP SAYFASI
   ============================================================ */
.laptop-hero {
  background: #130c03;
  border: 1px solid rgba(245,158,11,0.15);
  border-top: 3px solid #f59e0b;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: #fff;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}
.laptop-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, rgba(245,158,11,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.laptop-hero-content { position: relative; }
.laptop-hero-title {
  font-size: 1.85rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.625rem;
}
.laptop-hero-title span { color: #fef3c7; }
.laptop-hero-desc {
  font-size: 0.95rem;
  opacity: 0.85;
  margin-bottom: 1.25rem;
}
.laptop-hero-btns { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.btn-laptop-outline {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(255,255,255,0.15); border: 1.5px solid rgba(255,255,255,0.4);
  color: #fff; padding: 0.55rem 1.25rem; border-radius: 8px;
  font-size: 0.875rem; font-weight: 600; transition: background 0.2s;
}
.btn-laptop-outline:hover { background: rgba(255,255,255,0.25); color: #fff; }
.btn-laptop-primary {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: #fff; color: #92400e;
  padding: 0.55rem 1.25rem; border-radius: 8px;
  font-size: 0.875rem; font-weight: 700; transition: background 0.2s;
}
.btn-laptop-primary:hover { background: #fef3c7; color: #78350f; }
.laptop-hero-stats { display: flex; gap: 2rem; position: relative; }
.laptop-hero-stat { text-align: center; }
.laptop-hero-stat-num   { display: block; font-size: 1.85rem; font-weight: 800; color: #fef3c7; }
.laptop-hero-stat-label { font-size: 0.78rem; opacity: 0.65; }

/* Laptop badge */
.badge-laptop {
  background: #f59e0b;
  color: #1f2937;
}
.badge-laptop-type {
  display: inline-flex; align-items: center; gap: 0.3rem;
  background: #fef3c7; color: #92400e;
  font-size: 0.68rem; font-weight: 700;
  padding: 0.15rem 0.45rem; border-radius: 4px;
  position: absolute; top: 0.5rem; left: 0.5rem;
}

/* Laptop page sidebar override - primary color to amber */
.page-laptop .sidebar .filter-radio:hover,
.page-laptop .sidebar .filter-check:hover { color: #d97706; }
.page-laptop .sidebar .filter-radio input,
.page-laptop .sidebar .filter-check input { accent-color: #f59e0b; }
.page-laptop .sidebar .btn-primary { background: #f59e0b; border-color: #f59e0b; color: #1f2937; }
.page-laptop .sidebar .btn-primary:hover { background: #d97706; border-color: #d97706; }
.page-laptop .filter-tag { background: #fef3c7; color: #92400e; }

/* Category section on homepage */
.section-label {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--gray-500);
  background: var(--gray-100); padding: 0.2rem 0.625rem;
  border-radius: 100px; margin-bottom: 0.625rem;
}
.section-label--laptop { background: #fef3c7; color: #92400e; }
.section-label--parca  { background: var(--primary-light); color: var(--primary-dark); }

/* ============================================================
   RESPONSIVE — Yeni Bileşenler
   ============================================================ */
@media (max-width: 900px) {
  .trust-item { padding: 0.75rem 1rem; font-size: 0.72rem; }
  .trust-item span { display: none; }
  .trust-sep { height: 16px; }
}
@media (max-width: 768px) {
  .home-intro-title { font-size: 1.75rem; }
  .cat-split { grid-template-columns: 1fr; }
  .csc--parca { border-left: none; border-top: 1px solid rgba(255,255,255,0.05); }
  .csc-heading { font-size: 1.3rem; }
  .csc { padding: 0 1.5rem 1.75rem; }
  .csc-top-bar { margin: 0 -1.5rem 1.5rem; }
  .main-cat-tab { padding: 0.75rem 1rem; gap: 0.5rem; }
  .main-cat-sub  { display: none; }
  .main-cat-tab > i { font-size: 1.2rem; }
  .laptop-hero { flex-direction: column; }
  .laptop-hero-title { font-size: 1.4rem; }
  .laptop-hero-stats { flex-wrap: wrap; gap: 1rem; }
  .trust-bar { display: none; }
}

/* ============================================================
   VİTRİN ANASAYFA — HERO (vh)
   ============================================================ */
.home-page { background: var(--gray-50); }

.vh {
  position: relative;
  background: #060d1a;
  padding: 5rem 0 0;
  overflow: hidden;
}
.vh-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 20% 40%, rgba(26,110,245,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 80% 20%, rgba(245,158,11,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.vh-inner { position: relative; z-index: 1; }

.vh-content { max-width: 720px; margin: 0 auto; text-align: center; }

.vh-eyebrow {
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5); font-size: 0.72rem; font-weight: 700;
  padding: 0.3rem 0.875rem; border-radius: 100px;
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.vh-eyebrow i { color: #f59e0b; }

.vh-title {
  font-size: 3.25rem; font-weight: 900; color: #fff;
  line-height: 1.1; letter-spacing: -0.03em;
  margin-bottom: 1rem;
}
.vh-title span { color: #60a5fa; }

.vh-sub {
  font-size: 1.05rem; color: rgba(255,255,255,0.45); margin-bottom: 2rem;
}

/* Hero Search */
.vh-search {
  display: flex; align-items: stretch;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 14px; overflow: hidden;
  max-width: 580px; margin: 0 auto 1.25rem;
  backdrop-filter: blur(8px);
}
.vhs-cat-wrap {
  border-right: 1px solid rgba(255,255,255,0.1);
  flex-shrink: 0;
}
.vhs-cat {
  height: 100%; min-height: 54px;
  background: transparent; border: none;
  color: rgba(255,255,255,0.65); font-size: 0.85rem; font-weight: 600;
  padding: 0 1rem; font-family: inherit; outline: none; cursor: pointer;
}
.vhs-cat option { background: #1e293b; color: #e2e8f0; }
.vhs-input {
  flex: 1; background: transparent; border: none;
  color: #fff; font-size: 0.95rem; padding: 0 1rem;
  outline: none; font-family: inherit;
  min-height: 54px;
}
.vhs-input::placeholder { color: rgba(255,255,255,0.3); }
.vhs-btn {
  display: flex; align-items: center; gap: 0.5rem;
  background: var(--primary); color: #fff;
  padding: 0 1.5rem; font-size: 0.9rem; font-weight: 700;
  border: none; cursor: pointer; font-family: inherit;
  transition: background 0.2s; flex-shrink: 0;
}
.vhs-btn:hover { background: var(--primary-dark); }

.vh-quick {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0.5rem;
  font-size: 0.82rem; color: rgba(255,255,255,0.35);
  margin-bottom: 3.5rem;
}
.vh-quick a {
  color: rgba(255,255,255,0.55); font-weight: 500;
  padding: 0.2rem 0.5rem; border-radius: 5px;
  transition: color 0.15s;
}
.vh-quick a:hover { color: #60a5fa; }

/* Hero Stats Bar */
.vh-stats {
  display: flex; align-items: center; justify-content: center;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.25rem 0;
  gap: 0;
}
.vhs-item { text-align: center; padding: 0 2.5rem; }
.vhs-item strong { display: block; font-size: 1.5rem; font-weight: 800; color: #fff; }
.vhs-item span   { font-size: 0.75rem; color: rgba(255,255,255,0.4); }
.vhs-sep { width: 1px; height: 30px; background: rgba(255,255,255,0.1); }

/* ============================================================
   HOME SECTIONS (hs-)
   ============================================================ */
.home-section { padding: 4rem 0; }
.hs-dark { background: #f8fafc; }

.hs-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 1.75rem; gap: 1rem;
}
.hs-header--center { flex-direction: column; align-items: center; text-align: center; }

.hs-title { font-size: 1.75rem; font-weight: 800; color: var(--dark); line-height: 1.2; margin: 0.25rem 0 0; }
.hs-sub   { font-size: 0.95rem; color: var(--gray-500); margin: 0.5rem 0 0; }

.hs-see-all {
  display: flex; align-items: center; gap: 0.35rem;
  font-size: 0.85rem; font-weight: 600; color: var(--primary);
  white-space: nowrap;
  transition: gap 0.2s;
}
.hs-see-all:hover { gap: 0.6rem; color: var(--primary-dark); }

.hs-cta-row { text-align: center; margin-top: 2rem; }
.hs-cta-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 2rem; border-radius: 10px;
  font-size: 0.95rem; font-weight: 700; transition: all 0.2s;
}
.hs-cta-btn--laptop { background: #1f2937; color: #fbbf24; }
.hs-cta-btn--laptop:hover { background: #111827; color: #fde68a; box-shadow: 0 4px 20px rgba(245,158,11,0.2); }
.hs-cta-btn--parca  { background: var(--primary); color: #fff; }
.hs-cta-btn--parca:hover { background: var(--primary-dark); box-shadow: 0 4px 20px rgba(26,110,245,0.25); }

.home-listings-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }

/* Category grid */
.home-cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 0.875rem;
}
.home-cat-card {
  display: flex; flex-direction: column; align-items: center; gap: 0.625rem;
  padding: 1.375rem 0.75rem;
  background: var(--white); border: 1.5px solid var(--gray-200);
  border-radius: 12px; text-align: center; text-decoration: none;
  transition: all 0.2s;
}
.home-cat-card:hover { border-color: var(--primary); background: var(--primary-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.hcc-icon {
  width: 46px; height: 46px;
  background: var(--primary-light); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; color: var(--primary);
  transition: background 0.2s;
}
.home-cat-card:hover .hcc-icon { background: var(--primary); color: #fff; }
.hcc-name { font-size: 0.8rem; font-weight: 600; color: var(--gray-700); }

/* Brand grid */
.home-brand-grid {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.625rem;
}
.home-brand-chip {
  padding: 0.5rem 1.25rem;
  background: var(--white); border: 1.5px solid var(--gray-200);
  border-radius: 100px; font-size: 0.85rem; font-weight: 600; color: var(--gray-600);
  text-decoration: none; transition: all 0.2s;
}
.home-brand-chip:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }

/* Why Us */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.why-card {
  background: var(--white); border: 1.5px solid var(--gray-200);
  border-radius: 14px; padding: 1.75rem 1.5rem;
  transition: all 0.2s;
}
.why-card:hover { border-color: var(--primary); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.why-icon {
  width: 48px; height: 48px;
  border-radius: 12px; margin-bottom: 1rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
}
.why-icon--green  { background: rgba(74,222,128,0.12); color: #16a34a; }
.why-icon--blue   { background: rgba(26,110,245,0.1);  color: var(--primary); }
.why-icon--orange { background: rgba(245,158,11,0.12); color: #d97706; }
.why-icon--wa     { background: rgba(37,211,102,0.12); color: #16a34a; }
.why-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--dark); }
.why-card p  { font-size: 0.85rem; color: var(--gray-500); line-height: 1.65; margin: 0; }

/* WhatsApp CTA Banner */
.hs-wa-cta { background: #064e3b; padding: 3rem 0; }
.wa-cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.wa-cta-left {
  display: flex; align-items: center; gap: 1.5rem;
}
.wa-cta-icon {
  width: 56px; height: 56px; flex-shrink: 0;
  background: rgba(255,255,255,0.12); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem; color: #4ade80;
}
.wa-cta-left h2 { font-size: 1.35rem; font-weight: 800; color: #fff; margin: 0 0 0.25rem; }
.wa-cta-left p  { font-size: 0.9rem; color: rgba(255,255,255,0.6); margin: 0; }
.wa-cta-btn {
  display: flex; align-items: center; gap: 0.6rem;
  background: #25d366; color: #064e3b;
  padding: 0.875rem 2rem; border-radius: 10px;
  font-size: 1rem; font-weight: 800;
  text-decoration: none; flex-shrink: 0;
  transition: all 0.2s;
}
.wa-cta-btn:hover { background: #1fba58; box-shadow: 0 4px 20px rgba(37,211,102,0.35); }
.wa-cta-btn i { font-size: 1.25rem; }

/* ============================================================
   KATEGORİ SHOWCASE KARTLARI (hsc-)
   ============================================================ */
.hs-categories { background: #060d1a; padding: 0 0 4rem; }

.hsc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.hsc-card {
  position: relative; overflow: hidden;
  border-radius: 16px; border: 1px solid rgba(255,255,255,0.07);
  display: flex; flex-direction: column;
  text-decoration: none; color: #fff;
  transition: transform 0.25s, box-shadow 0.25s;
}
.hsc-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.35); color: #fff; }
.hsc-card-bg { position: absolute; inset: 0; pointer-events: none; }
.hsc-card--laptop { background: #130c03; }
.hsc-card--laptop .hsc-card-bg { background: radial-gradient(ellipse at top right, rgba(245,158,11,0.12) 0%, transparent 60%); }
.hsc-card--parca  { background: #04090f; }
.hsc-card--parca  .hsc-card-bg { background: radial-gradient(ellipse at top right, rgba(26,110,245,0.12) 0%, transparent 60%); }

.hsc-card-body { padding: 2.25rem; position: relative; flex: 1; }

.hsc-badge { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem; }
.hsc-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; font-size: 1.35rem;
}
.hsc-card--laptop .hsc-icon { background: rgba(245,158,11,0.15); color: #f59e0b; }
.hsc-card--parca  .hsc-icon { background: rgba(26,110,245,0.15); color: #60a5fa; }
.hsc-cat-label { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.3); }

.hsc-title { font-size: 1.75rem; font-weight: 800; line-height: 1.15; margin-bottom: 0.75rem; letter-spacing: -0.01em; }
.hsc-desc  { font-size: 0.875rem; color: rgba(255,255,255,0.5); line-height: 1.65; margin-bottom: 1.25rem; }

.hsc-features { list-style: none; padding: 0; margin: 0 0 1.25rem; display: flex; flex-direction: column; gap: 0.4rem; }
.hsc-features li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.825rem; color: rgba(255,255,255,0.55); }
.hsc-card--laptop .hsc-features i { color: #f59e0b; font-size: 0.7rem; }

.hsc-brands { display: flex; flex-wrap: wrap; gap: 0.375rem; }
.hsc-brands span {
  padding: 0.2rem 0.625rem;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px; font-size: 0.72rem; font-weight: 500; color: rgba(255,255,255,0.5);
}

.hsc-cat-mini-grid { display: flex; flex-wrap: wrap; gap: 0.375rem; margin-bottom: 0.5rem; }
.hsc-cat-mini-grid span {
  display: flex; align-items: center; gap: 0.3rem;
  padding: 0.3rem 0.625rem;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px; font-size: 0.73rem; color: rgba(255,255,255,0.5);
}
.hsc-cat-mini-grid i { color: #60a5fa; font-size: 0.7rem; }

.hsc-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 2.25rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  position: relative;
}
.hsc-count { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.hsc-cta {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.875rem; font-weight: 700;
  padding: 0.55rem 1.25rem; border-radius: 8px;
  transition: all 0.2s;
}
.hsc-card--laptop .hsc-cta { background: #f59e0b; color: #1c0500; }
.hsc-card--laptop:hover .hsc-cta { background: #fbbf24; box-shadow: 0 4px 16px rgba(245,158,11,0.3); }
.hsc-card--parca .hsc-cta { background: var(--primary); color: #fff; }
.hsc-card--parca:hover .hsc-cta { background: var(--primary-dark); box-shadow: 0 4px 16px rgba(26,110,245,0.3); }

/* ============================================================
   LAPTOP SAYFASI YENİ HERO (lp-)
   ============================================================ */
.lp-hero {
  background: #0c0700;
  border-bottom: 1px solid rgba(245,158,11,0.1);
  padding: 2.5rem 0;
  margin-bottom: 2rem;
}
.lp-hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2.5rem; align-items: center;
}
.lp-hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(245,158,11,0.1); border: 1px solid rgba(245,158,11,0.25);
  color: #f59e0b; font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 0.3rem 0.75rem; border-radius: 100px; margin-bottom: 1rem;
}
.lp-hero-title {
  font-size: 2.5rem; font-weight: 900; color: #fff;
  line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 0.875rem;
}
.lp-hero-title span { color: #fbbf24; }
.lp-hero-desc { font-size: 0.95rem; color: rgba(255,255,255,0.5); line-height: 1.65; margin-bottom: 1.5rem; }

.lp-hero-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 2rem; }
.lp-btn-primary {
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: #f59e0b; color: #1c0500;
  padding: 0.7rem 1.5rem; border-radius: 9px;
  font-size: 0.9rem; font-weight: 700; transition: background 0.2s;
}
.lp-btn-primary:hover { background: #fbbf24; color: #1c0500; }
.lp-btn-wa {
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: rgba(255,255,255,0.08); border: 1.5px solid rgba(255,255,255,0.15);
  color: #fff; padding: 0.7rem 1.25rem; border-radius: 9px;
  font-size: 0.9rem; font-weight: 600; transition: background 0.2s;
}
.lp-btn-wa:hover { background: rgba(255,255,255,0.14); color: #fff; }

.lp-hero-stats {
  display: flex; align-items: center; gap: 0; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.lp-stat { text-align: center; padding: 0 1.5rem; }
.lp-stat strong { display: block; font-size: 1.4rem; font-weight: 800; color: #fff; }
.lp-stat span   { font-size: 0.72rem; color: rgba(255,255,255,0.4); }
.lp-stat-sep    { width: 1px; height: 28px; background: rgba(255,255,255,0.1); }
.lp-stat:first-child { padding-left: 0; }

.lp-brand-grid-label { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.3); margin-bottom: 0.625rem; }
.lp-brand-pills { display: flex; flex-wrap: wrap; gap: 0.375rem; }
.lp-brand-pill {
  padding: 0.35rem 0.875rem;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px; font-size: 0.8rem; font-weight: 500;
  color: rgba(255,255,255,0.55); text-decoration: none;
  transition: all 0.2s;
}
.lp-brand-pill:hover, .lp-brand-pill--active { background: rgba(245,158,11,0.12); border-color: rgba(245,158,11,0.35); color: #fbbf24; }

.lp-quality-chips { display: flex; flex-wrap: wrap; gap: 0.375rem; margin-top: 0.5rem; }
.lp-qual-chip {
  display: inline-flex; align-items: center; gap: 0.375rem;
  padding: 0.35rem 0.875rem;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px; font-size: 0.8rem; font-weight: 500;
  color: rgba(255,255,255,0.55); text-decoration: none; transition: all 0.2s;
}
.lp-qual-chip:hover, .lp-qual-chip.active { background: rgba(255,255,255,0.1); color: #fff; }
.btn-laptop-filter {
  background: #f59e0b; color: #1c0500; border-color: #f59e0b;
  margin: 0.75rem 1rem; width: calc(100% - 2rem);
}
.btn-laptop-filter:hover { background: #fbbf24; border-color: #fbbf24; color: #1c0500; }

/* ============================================================
   PARÇA SAYFASI YENİ HERO (pc-)
   ============================================================ */
.pc-hero {
  background: #04090f;
  border-bottom: 1px solid rgba(26,110,245,0.1);
  padding: 2.5rem 0;
  margin-bottom: 2rem;
}
.pc-hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2.5rem; align-items: center;
}
.pc-hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(26,110,245,0.1); border: 1px solid rgba(26,110,245,0.25);
  color: #60a5fa; font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 0.3rem 0.75rem; border-radius: 100px; margin-bottom: 1rem;
}
.pc-hero-title {
  font-size: 2.5rem; font-weight: 900; color: #fff;
  line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 0.875rem;
}
.pc-hero-title span { color: #60a5fa; }
.pc-hero-desc { font-size: 0.95rem; color: rgba(255,255,255,0.5); line-height: 1.65; margin-bottom: 1.5rem; }

.pc-hero-stats {
  display: flex; align-items: center; gap: 0;
  padding-bottom: 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 1.25rem;
}
.pc-stat { text-align: center; padding: 0 1.5rem; }
.pc-stat strong { display: block; font-size: 1.4rem; font-weight: 800; color: #fff; }
.pc-stat span   { font-size: 0.72rem; color: rgba(255,255,255,0.4); }
.pc-stat-sep    { width: 1px; height: 28px; background: rgba(255,255,255,0.1); }
.pc-stat:first-child { padding-left: 0; }

.pc-hero-wa {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(37,211,102,0.1); border: 1px solid rgba(37,211,102,0.25);
  color: #4ade80; padding: 0.55rem 1.25rem; border-radius: 9px;
  font-size: 0.85rem; font-weight: 600; text-decoration: none;
  transition: all 0.2s;
}
.pc-hero-wa:hover { background: rgba(37,211,102,0.18); color: #4ade80; }

.pc-cat-label { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.3); margin-bottom: 0.75rem; }
.pc-cat-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.5rem;
}
.pc-cat-card {
  display: flex; flex-direction: column; align-items: center; gap: 0.35rem;
  padding: 0.75rem 0.375rem;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 9px; text-align: center; text-decoration: none;
  font-size: 0.72rem; color: rgba(255,255,255,0.5); font-weight: 500;
  transition: all 0.2s;
}
.pc-cat-card i { font-size: 1.1rem; color: #60a5fa; }
.pc-cat-card:hover, .pc-cat-card--active { background: rgba(26,110,245,0.1); border-color: rgba(26,110,245,0.3); color: #93c5fd; }
.pc-cat-card:hover i, .pc-cat-card--active i { color: #93c5fd; }

/* ============================================================
   RESPONSIVE — Yeni Hero & Sections
   ============================================================ */
@media (max-width: 1024px) {
  .vh-title   { font-size: 2.75rem; }
  .hsc-grid   { grid-template-columns: 1fr 1fr; gap: 0.875rem; }
  .why-grid   { grid-template-columns: repeat(2, 1fr); }
  .lp-hero-inner, .pc-hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .pc-cat-grid { grid-template-columns: repeat(5, 1fr); }
}

@media (max-width: 768px) {
  .vh { padding: 3.5rem 0 0; }
  .vh-title { font-size: 2rem; }
  .vh-sub   { font-size: 0.9rem; }
  .vh-search { flex-direction: column; border-radius: 12px; }
  .vhs-cat-wrap { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .vhs-cat { min-height: 46px; width: 100%; padding: 0 0.875rem; }
  .vhs-input { min-height: 46px; }
  .vhs-btn { padding: 0.875rem; justify-content: center; }
  .vhs-btn span { display: inline; }
  .vh-stats { gap: 0; padding: 1rem 0; }
  .vhs-item { padding: 0 1rem; }
  .vhs-item strong { font-size: 1.2rem; }
  .vhs-sep  { height: 24px; }

  .hs-categories { padding-bottom: 2.5rem; }
  .hsc-grid { grid-template-columns: 1fr; }
  .hsc-card-body { padding: 1.5rem; }
  .hsc-card-footer { padding: 1rem 1.5rem 1.25rem; }
  .hsc-title { font-size: 1.5rem; }
  .home-section { padding: 2.5rem 0; }
  .hs-title { font-size: 1.4rem; }
  .why-grid { grid-template-columns: 1fr 1fr; gap: 0.875rem; }
  .why-card { padding: 1.25rem; }
  .wa-cta-inner { flex-direction: column; text-align: center; }
  .wa-cta-left  { flex-direction: column; align-items: center; }
  .home-cat-grid { grid-template-columns: repeat(3, 1fr); }

  .lp-hero, .pc-hero { padding: 1.75rem 0; }
  .lp-hero-inner, .pc-hero-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .lp-hero-title, .pc-hero-title { font-size: 1.9rem; }
  .lp-brand-grid-label, .pc-cat-label { display: none; }
  .lp-hero-right, .pc-hero-right { display: none; }
  .pc-hero-stats, .lp-hero-stats { flex-wrap: wrap; gap: 0.75rem; }
}

@media (max-width: 480px) {
  .vh-title   { font-size: 1.7rem; }
  .why-grid   { grid-template-columns: 1fr; }
  .home-cat-grid { grid-template-columns: repeat(2, 1fr); }
  .hsc-title  { font-size: 1.3rem; }
  .vhs-item   { padding: 0 0.75rem; }
}

/* ============================================================
   ANASAYFA YENİ VİTRİN (hp-)
   ============================================================ */
.hp { background: var(--gray-50); }

/* Hero */
.hp-hero {
  position: relative;
  background: #020b18;
  min-height: 88vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hp-hero-deco {
  position: absolute; border-radius: 50%;
  pointer-events: none; filter: blur(80px);
}
.hp-hero-deco--1 { width: 600px; height: 600px; background: rgba(26,110,245,0.18); top: -100px; left: -100px; }
.hp-hero-deco--2 { width: 500px; height: 500px; background: rgba(245,158,11,0.09); bottom: -80px; right: -80px; }
.hp-hero-deco--3 { width: 300px; height: 300px; background: rgba(0,200,150,0.06); top: 50%; right: 20%; transform: translateY(-50%); }

.hp-hero-inner {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  padding: 6rem 0 4rem;
}
.hp-hero-content { max-width: 680px; text-align: center; }

.hp-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.55); font-size: 0.75rem; font-weight: 700;
  padding: 0.375rem 1rem; border-radius: 100px;
  letter-spacing: 0.08em; margin-bottom: 1.5rem;
}
.hp-badge-dot {
  width: 6px; height: 6px; border-radius: 50%; background: #4ade80;
  box-shadow: 0 0 6px #4ade80;
  animation: hp-pulse 2s infinite;
}
@keyframes hp-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

.hp-hero-title {
  font-size: 4rem; font-weight: 900; color: #fff;
  line-height: 1.08; letter-spacing: -0.04em;
  margin-bottom: 1.25rem;
}
.hp-hero-title em { color: #60a5fa; font-style: normal; }
.hp-hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.45); margin-bottom: 2.5rem; }

/* Search */
.hp-search {
  max-width: 580px; margin: 0 auto 2rem;
}
.hp-search-inner {
  background: rgba(255,255,255,0.06); border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 14px; overflow: hidden; backdrop-filter: blur(12px);
}
.hp-search-type {
  display: flex; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hst-btn {
  flex: 1; padding: 0.7rem 1rem;
  display: flex; align-items: center; justify-content: center; gap: 0.4rem;
  font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.45);
  cursor: pointer; border: none; background: transparent; font-family: inherit;
  transition: all 0.2s;
}
.hst-btn--active { color: #fff; background: rgba(255,255,255,0.07); }
.hst-btn--active i { color: #60a5fa; }
.hp-search-input-wrap {
  display: flex; align-items: center; gap: 0;
}
.hp-search-ico { color: rgba(255,255,255,0.3); padding: 0 0.875rem; font-size: 0.9rem; }
.hp-search-input {
  flex: 1; background: transparent; border: none;
  color: #fff; font-size: 0.95rem; padding: 0.9rem 0;
  outline: none; font-family: inherit;
}
.hp-search-input::placeholder { color: rgba(255,255,255,0.28); }
.hp-search-submit {
  background: var(--primary); color: #fff;
  padding: 0 1.5rem; border: none; cursor: pointer;
  font-size: 0.9rem; font-weight: 700; font-family: inherit;
  min-height: 50px; transition: background 0.2s;
}
.hp-search-submit:hover { background: var(--primary-dark); }

/* Stats */
.hp-stats {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 0;
}
.hp-stat { text-align: center; padding: 0 1.75rem; }
.hp-stat strong { display: block; font-size: 1.75rem; font-weight: 800; color: #fff; }
.hp-stat span   { font-size: 0.78rem; color: rgba(255,255,255,0.38); }
.hp-stat-sep    { width: 1px; height: 32px; background: rgba(255,255,255,0.1); }

/* Scroll hint */
.hp-scroll-hint {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.2); font-size: 1.25rem;
  animation: hp-bounce 2s infinite;
  transition: opacity 0.3s;
}
@keyframes hp-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* Category Cards */
.hp-cats { background: #020b18; padding: 0 0 5rem; }
.hp-cats-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
}
.hp-cat-card {
  position: relative; overflow: hidden;
  border-radius: 20px; border: 1px solid rgba(255,255,255,0.07);
  display: flex; flex-direction: column;
  text-decoration: none; color: #fff;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s;
  cursor: pointer;
}
.hp-cat-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.4); color: #fff; }
.hp-cat-shine {
  position: absolute; inset: 0; border-radius: 20px;
  background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, transparent 60%);
  pointer-events: none; z-index: 0;
}
.hp-cat-card--laptop { background: linear-gradient(145deg, #1a0c00 0%, #0d0600 100%); }
.hp-cat-card--parca  { background: linear-gradient(145deg, #030c18 0%, #020810 100%); }

.hp-cat-top {
  display: flex; align-items: flex-start; justify-content: space-between;
  padding: 2rem 2rem 1.25rem; position: relative; z-index: 1;
}
.hp-cat-num {
  font-size: 4rem; font-weight: 900; line-height: 1;
  letter-spacing: -0.05em; opacity: 0.08; color: #fff;
  font-variant-numeric: tabular-nums;
}
.hp-cat-icon-wrap {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.hp-cat-card--laptop .hp-cat-icon-wrap { background: rgba(245,158,11,0.15); color: #f59e0b; box-shadow: 0 0 0 1px rgba(245,158,11,0.2); }
.hp-cat-card--parca  .hp-cat-icon-wrap { background: rgba(26,110,245,0.15); color: #60a5fa; box-shadow: 0 0 0 1px rgba(26,110,245,0.2); }

.hp-cat-body { padding: 0 2rem 1.5rem; flex: 1; position: relative; z-index: 1; }
.hp-cat-eyebrow {
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3); margin: 0 0 0.375rem;
}
.hp-cat-title { font-size: 2rem; font-weight: 900; line-height: 1.15; margin: 0 0 0.75rem; letter-spacing: -0.02em; }
.hp-cat-desc  { font-size: 0.875rem; color: rgba(255,255,255,0.45); line-height: 1.65; margin: 0 0 1.25rem; }

.hp-cat-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.4rem; }
.hp-cat-list li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.hp-cat-card--laptop .hp-cat-list i { color: #f59e0b; font-size: 0.65rem; }

.hp-cat-mini-cats { display: flex; flex-wrap: wrap; gap: 0.375rem; }
.hp-cat-mini-cats span {
  display: flex; align-items: center; gap: 0.3rem;
  padding: 0.25rem 0.6rem;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px; font-size: 0.72rem; color: rgba(255,255,255,0.45);
}
.hp-cat-mini-cats i { color: #60a5fa; font-size: 0.68rem; }

.hp-cat-foot {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 2rem 1.75rem;
  border-top: 1px solid rgba(255,255,255,0.06); position: relative; z-index: 1;
}
.hp-cat-count { font-size: 0.78rem; color: rgba(255,255,255,0.28); }
.hp-cat-cta {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.875rem; font-weight: 800;
  padding: 0.6rem 1.375rem; border-radius: 9px;
  transition: all 0.25s;
}
.hp-cat-card--laptop .hp-cat-cta { background: #f59e0b; color: #1c0500; }
.hp-cat-card--laptop:hover .hp-cat-cta { background: #fbbf24; transform: translateX(4px); }
.hp-cat-card--parca .hp-cat-cta { background: var(--primary); color: #fff; }
.hp-cat-card--parca:hover .hp-cat-cta { background: var(--primary-dark); transform: translateX(4px); }

/* Sections */
.hp-section { padding: 4.5rem 0; }
.hp-section--laptops { background: #fff; }
.hp-section--cats    { background: #f1f5f9; }
.hp-section--parca   { background: #fff; }
.hp-section--brands  { background: #0f172a; }
.hp-section--why     { background: #f8fafc; }

.hp-sec-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 2rem; gap: 1rem;
}
.hp-sec-header--center { flex-direction: column; align-items: center; text-align: center; }
.hp-sec-label {
  display: inline-flex; align-items: center; gap: 0.375rem;
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  padding: 0.2rem 0.625rem; border-radius: 100px; margin-bottom: 0.5rem;
}
.hp-sec-label--laptop { background: #fef3c7; color: #92400e; }
.hp-sec-label--parca  { background: #eff6ff; color: var(--primary-dark); }
.hp-sec-title { font-size: 1.85rem; font-weight: 900; color: var(--dark); margin: 0; }
.hp-sec-sub   { font-size: 0.95rem; color: var(--gray-500); margin: 0.5rem 0 0; }
.hp-sec-link {
  display: flex; align-items: center; gap: 0.35rem;
  font-size: 0.875rem; font-weight: 700; color: var(--primary);
  white-space: nowrap; transition: gap 0.2s;
}
.hp-sec-link:hover { gap: 0.6rem; color: var(--primary-dark); }

.hp-products-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
.hp-products-grid.listings-grid { display: grid; }

.hp-big-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2.25rem; border-radius: 10px;
  font-size: 0.95rem; font-weight: 700; transition: all 0.2s; text-decoration: none;
}
.hp-big-btn--laptop { background: #1f2937; color: #fbbf24; }
.hp-big-btn--laptop:hover { background: #111827; box-shadow: 0 4px 20px rgba(245,158,11,0.2); color: #fde68a; }
.hp-big-btn--parca  { background: var(--primary); color: #fff; }
.hp-big-btn--parca:hover { background: var(--primary-dark); box-shadow: 0 4px 20px rgba(26,110,245,0.25); }

/* Cat icons grid */
.hp-cat-icons-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 0.875rem;
}
.hp-cat-icon-card {
  display: flex; flex-direction: column; align-items: center; gap: 0.625rem;
  padding: 1.25rem 0.75rem;
  background: #fff; border: 1.5px solid var(--gray-200);
  border-radius: 14px; text-decoration: none; text-align: center;
  transition: all 0.2s;
}
.hp-cat-icon-card:hover { border-color: var(--primary); background: #eff6ff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,110,245,0.1); }
.hp-cic-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: #eff6ff; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--primary); transition: all 0.2s;
}
.hp-cat-icon-card:hover .hp-cic-icon { background: var(--primary); color: #fff; }
.hp-cat-icon-card span { font-size: 0.78rem; font-weight: 600; color: var(--gray-700); }

/* Brands (dark bg) */
.hp-brands-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.625rem; }
.hp-brand-pill {
  padding: 0.5rem 1.25rem;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px; font-size: 0.875rem; font-weight: 600;
  color: rgba(255,255,255,0.55); text-decoration: none; transition: all 0.2s;
}
.hp-brand-pill:hover { background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.2); }
.hp-section--brands .hp-sec-title { color: #fff; }

/* Why */
.hp-why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; }
.hp-why-card {
  background: #fff; border: 1.5px solid var(--gray-200);
  border-radius: 16px; padding: 1.75rem 1.5rem; transition: all 0.2s;
}
.hp-why-card:hover { border-color: var(--primary); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(26,110,245,0.1); }
.hp-why-ico {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; margin-bottom: 1rem;
}
.hp-why-ico--green { background: rgba(74,222,128,0.1); color: #16a34a; }
.hp-why-ico--blue  { background: rgba(26,110,245,0.1); color: var(--primary); }
.hp-why-ico--amber { background: rgba(245,158,11,0.1); color: #d97706; }
.hp-why-ico--wa    { background: rgba(37,211,102,0.1); color: #16a34a; }
.hp-why-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--dark); }
.hp-why-card p  { font-size: 0.85rem; color: var(--gray-500); line-height: 1.65; margin: 0; }

/* WhatsApp CTA */
.hp-wa-cta { background: linear-gradient(135deg, #064e3b 0%, #065f46 100%); padding: 3.5rem 0; }
.hp-wa-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.hp-wa-left { display: flex; align-items: center; gap: 1.5rem; }
.hp-wa-icon {
  width: 60px; height: 60px; flex-shrink: 0;
  background: rgba(255,255,255,0.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.85rem; color: #4ade80;
}
.hp-wa-left h2 { font-size: 1.4rem; font-weight: 800; color: #fff; margin: 0 0 0.25rem; }
.hp-wa-left p  { font-size: 0.9rem; color: rgba(255,255,255,0.6); margin: 0; }
.hp-wa-btn {
  display: flex; align-items: center; gap: 0.625rem;
  background: #25d366; color: #064e3b;
  padding: 0.9rem 2.25rem; border-radius: 12px;
  font-size: 1rem; font-weight: 800; flex-shrink: 0;
  transition: all 0.2s; text-decoration: none;
}
.hp-wa-btn:hover { background: #1fba58; box-shadow: 0 4px 20px rgba(37,211,102,0.4); color: #064e3b; }
.hp-wa-btn i { font-size: 1.3rem; }

/* ============================================================
   LAPTOP SHOWROOM (lp-sh-, lp-brand-showcase-)
   ============================================================ */
.lp-showroom { background: #0c0700; }

.lp-showroom-hero {
  position: relative; overflow: hidden;
  padding: 3.5rem 0 2rem;
}
.lp-sh-deco {
  position: absolute; border-radius: 50%; pointer-events: none;
  filter: blur(60px);
}
.lp-sh-deco--1 { width: 500px; height: 400px; background: rgba(245,158,11,0.12); top: -100px; right: -100px; }
.lp-sh-deco--2 { width: 300px; height: 300px; background: rgba(250,100,0,0.06); bottom: 0; left: 5%; }

.lp-sh-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
  align-items: center; position: relative; z-index: 1;
}
.lp-sh-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(245,158,11,0.1); border: 1px solid rgba(245,158,11,0.2);
  color: #f59e0b; font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 0.3rem 0.75rem; border-radius: 100px; margin-bottom: 1.25rem;
}
.lp-sh-title {
  font-size: 2.75rem; font-weight: 900; color: #fff;
  line-height: 1.08; letter-spacing: -0.03em; margin-bottom: 1rem;
}
.lp-sh-title span { color: #fbbf24; }
.lp-sh-desc { font-size: 0.95rem; color: rgba(255,255,255,0.45); line-height: 1.65; margin-bottom: 1.75rem; }
.lp-sh-btns { display: flex; gap: 0.75rem; }
.lp-sh-btn-primary {
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: #f59e0b; color: #1c0500;
  padding: 0.75rem 1.625rem; border-radius: 10px;
  font-size: 0.9rem; font-weight: 800; transition: all 0.2s;
}
.lp-sh-btn-primary:hover { background: #fbbf24; color: #1c0500; }
.lp-sh-btn-wa {
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: rgba(255,255,255,0.07); border: 1.5px solid rgba(255,255,255,0.13);
  color: #fff; padding: 0.75rem 1.25rem; border-radius: 10px;
  font-size: 0.9rem; font-weight: 600; transition: background 0.2s;
}
.lp-sh-btn-wa:hover { background: rgba(255,255,255,0.13); color: #fff; }

.lp-sh-stats { display: flex; align-items: center; gap: 0; }
.lp-sh-stat { text-align: center; padding: 0 1.75rem; }
.lp-sh-stat strong { display: block; font-size: 1.5rem; font-weight: 800; color: #fff; }
.lp-sh-stat span   { font-size: 0.72rem; color: rgba(255,255,255,0.38); display: block; margin-top: 2px; }
.lp-sh-stat i      { display: block; }
.lp-sh-stat-sep    { width: 1px; height: 36px; background: rgba(255,255,255,0.1); }
.lp-sh-stat:first-child { padding-left: 0; }

/* Brand Showcase */
.lp-brand-showcase {
  background: rgba(0,0,0,0.3); border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.25rem 0;
}
.lp-brand-showcase-inner { }
.lp-brand-showcase-label {
  font-size: 0.72rem; font-weight: 700; color: rgba(255,255,255,0.3);
  margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.4rem;
}
.lp-brand-showcase-label i { color: #f59e0b; }
.lp-brand-cards { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 0.875rem; }
.lp-brand-card {
  display: flex; align-items: center; justify-content: center; gap: 0.375rem;
  padding: 0.45rem 1rem;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; font-size: 0.82rem; font-weight: 600;
  color: rgba(255,255,255,0.5); text-decoration: none;
  transition: all 0.2s;
}
.lp-brand-card i { font-size: 0.9rem; }
.lp-brand-card--all { border-style: dashed; }
.lp-brand-card:hover, .lp-brand-card--active {
  background: rgba(245,158,11,0.1); border-color: rgba(245,158,11,0.3);
  color: #fbbf24;
}
.lp-quality-row { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.lp-ql { font-size: 0.72rem; font-weight: 600; color: rgba(255,255,255,0.3); }
.lp-qchip {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.3rem 0.75rem;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.09);
  border-radius: 100px; font-size: 0.78rem; font-weight: 500;
  color: rgba(255,255,255,0.5); text-decoration: none; transition: all 0.2s;
}
.lp-qchip:hover, .lp-qchip.active { background: rgba(255,255,255,0.1); color: #fff; border-color: rgba(255,255,255,0.2); }

/* ============================================================
   YEDEK PARÇA KATALOG SAYFASI (yp-)
   ============================================================ */
.yp-page { background: #f8fafc; min-height: 100vh; }

/* Topbar */
.yp-topbar {
  background: #fff; border-bottom: 1px solid var(--gray-200);
  padding: 1.5rem 0;
  box-shadow: 0 1px 0 var(--gray-100);
}
.yp-topbar-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.yp-topbar-left { display: flex; align-items: center; gap: 1rem; }
.yp-topbar-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--primary-light); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--primary);
}
.yp-topbar-title { font-size: 1.25rem; font-weight: 800; color: var(--dark); margin: 0; }
.yp-topbar-sub   { font-size: 0.78rem; color: var(--gray-500); margin: 0; }

.yp-topbar-search {
  display: flex; align-items: center;
  background: var(--gray-50); border: 1.5px solid var(--gray-200);
  border-radius: 10px; overflow: hidden;
  max-width: 420px; flex: 1;
  transition: border-color 0.2s;
}
.yp-topbar-search:focus-within { border-color: var(--primary); }
.yp-search-icon { padding: 0 0.875rem; color: var(--gray-400); font-size: 0.9rem; }
.yp-search-input {
  flex: 1; border: none; background: transparent;
  padding: 0.7rem 0; font-size: 0.9rem; font-family: inherit;
  outline: none; color: var(--dark);
}
.yp-search-btn {
  background: var(--primary); color: #fff; border: none;
  padding: 0.7rem 1.25rem; font-size: 0.85rem; font-weight: 700;
  font-family: inherit; cursor: pointer; transition: background 0.2s;
}
.yp-search-btn:hover { background: var(--primary-dark); }

/* Category Nav */
.yp-cat-nav {
  background: #fff;
  border-bottom: 1px solid var(--gray-200);
  position: sticky; top: calc(var(--announcebar-h) + var(--header-h) + var(--maincatbar-h));
  z-index: 80;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.yp-cat-nav-scroll {
  display: flex; align-items: center; gap: 0.375rem;
  padding: 0.75rem 0; overflow-x: auto; -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.yp-cat-nav-scroll::-webkit-scrollbar { display: none; }

.yp-cat-pill {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.45rem 1rem; border-radius: 100px;
  border: 1.5px solid var(--gray-200); background: #fff;
  font-size: 0.82rem; font-weight: 600; color: var(--gray-600);
  text-decoration: none; white-space: nowrap;
  transition: all 0.2s;
}
.yp-cat-pill:hover { border-color: var(--primary); color: var(--primary); background: #eff6ff; }
.yp-cat-pill--active { background: var(--primary); border-color: var(--primary); color: #fff; }
.yp-cat-pill--active:hover { background: var(--primary-dark); }

.yp-pill-count {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 18px; height: 18px; padding: 0 4px;
  background: rgba(0,0,0,0.08); border-radius: 100px;
  font-size: 0.65rem; font-weight: 700;
}
.yp-cat-pill--active .yp-pill-count { background: rgba(255,255,255,0.25); }

/* Body */
.yp-body { padding: 1.75rem 0 3rem; }

/* Filter Bar */
.yp-filter-bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; margin-bottom: 1.5rem; flex-wrap: wrap;
  background: #fff; border: 1.5px solid var(--gray-200);
  border-radius: 10px; padding: 0.75rem 1rem;
}
.yp-filter-bar-left {
  display: flex; align-items: center; flex-wrap: wrap; gap: 0.5rem;
}
.yp-filter-bar-right { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.yp-result-count { font-size: 0.875rem; color: var(--gray-600); font-weight: 500; }
.yp-result-count strong { color: var(--dark); font-weight: 800; }

.yp-active-chip {
  display: inline-flex; align-items: center; gap: 0.375rem;
  padding: 0.25rem 0.625rem 0.25rem 0.75rem;
  background: #eff6ff; border: 1px solid #bfdbfe;
  border-radius: 100px; font-size: 0.78rem; font-weight: 600; color: var(--primary-dark);
}
.yp-chip-remove {
  display: flex; align-items: center; justify-content: center;
  width: 16px; height: 16px; border-radius: 50%;
  background: rgba(26,110,245,0.15); color: var(--primary);
  font-size: 0.6rem; transition: background 0.15s;
}
.yp-chip-remove:hover { background: var(--primary); color: #fff; }
.yp-clear-all { font-size: 0.78rem; color: var(--gray-500); font-weight: 600; text-decoration: underline; }
.yp-clear-all:hover { color: var(--danger); }

.yp-select {
  height: 36px; border: 1.5px solid var(--gray-300);
  border-radius: 8px; padding: 0 0.75rem;
  font-size: 0.82rem; font-family: inherit; font-weight: 600;
  color: var(--gray-700); background: var(--white);
  outline: none; cursor: pointer; transition: border-color 0.2s;
}
.yp-select:focus { border-color: var(--primary); }

.yp-view-btns { display: flex; gap: 0.25rem; }
.yp-view-btn {
  width: 34px; height: 34px; border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: var(--gray-400);
  border: 1.5px solid var(--gray-300); background: #fff;
  cursor: pointer; transition: all 0.2s;
}
.yp-view-btn:hover, .yp-view-btn.active { border-color: var(--primary); color: var(--primary); background: #eff6ff; }

/* Product Grid */
.yp-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; }
.yp-grid.yp-grid--list { grid-template-columns: 1fr; }

/* Pagination */
.yp-pagination { display: flex; gap: 0.375rem; justify-content: center; margin-top: 2rem; flex-wrap: wrap; }
.yp-page-btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 38px; height: 38px; padding: 0 0.75rem;
  border-radius: 8px; border: 1.5px solid var(--gray-200);
  font-size: 0.85rem; color: var(--gray-700); font-weight: 500; transition: all 0.2s;
  text-decoration: none;
}
.yp-page-btn:hover { border-color: var(--primary); color: var(--primary); }
.yp-page-btn--active { background: var(--primary); border-color: var(--primary); color: #fff; }

/* Empty State */
.yp-empty {
  text-align: center; padding: 4rem 2rem;
  background: #fff; border-radius: 14px; border: 1.5px solid var(--gray-200);
  margin: 2rem 0;
}
.yp-empty-icon { font-size: 3rem; color: var(--gray-300); margin-bottom: 1rem; }
.yp-empty h3 { font-size: 1.1rem; color: var(--gray-700); margin-bottom: 0.5rem; }
.yp-empty p  { font-size: 0.9rem; color: var(--gray-500); margin-bottom: 1.5rem; }
.yp-empty-actions { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }

/* Trust Footer */
.yp-trust-footer {
  background: #fff; border-top: 1px solid var(--gray-200);
  padding: 1.75rem 0;
}
.yp-trust-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem;
}
.yp-trust-item {
  display: flex; align-items: center; gap: 0.875rem;
}
.yp-trust-item > i {
  font-size: 1.25rem; color: var(--primary); flex-shrink: 0;
}
.yp-trust-item strong { display: block; font-size: 0.875rem; font-weight: 700; color: var(--dark); }
.yp-trust-item span  { display: block; font-size: 0.78rem; color: var(--gray-500); }

/* Mobile Filter Panel */
.yp-mobile-filter-panel {
  position: fixed; top: 0; right: -100%; bottom: 0;
  width: min(340px, 92vw); background: #fff; z-index: 600;
  display: flex; flex-direction: column;
  transition: right 0.3s cubic-bezier(0.4,0,0.2,1);
  box-shadow: none;
}
.yp-mobile-filter-panel.open { right: 0; box-shadow: -4px 0 24px rgba(0,0,0,0.15); }
.yp-mfp-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  z-index: 599; opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.yp-mfp-overlay.active { opacity: 1; pointer-events: auto; }
.yp-mfp-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.25rem; border-bottom: 1px solid var(--gray-100);
  font-weight: 700; font-size: 0.9rem; color: var(--dark);
}
.yp-mfp-header button { color: var(--gray-400); font-size: 1rem; padding: 0.25rem; }
.yp-mfp-body { padding: 1.25rem; overflow-y: auto; flex: 1; display: flex; flex-direction: column; gap: 1.25rem; }
.yp-mfp-group { }
.yp-mfp-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray-400); margin-bottom: 0.625rem; }
.yp-mfp-cats { display: flex; flex-direction: column; gap: 0.375rem; max-height: 240px; overflow-y: auto; }
.yp-mfp-cats label { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; cursor: pointer; padding: 0.25rem 0; }
.yp-price-row { display: flex; align-items: center; gap: 0.5rem; }
.yp-price-row .yp-select { height: 38px; flex: 1; padding: 0 0.5rem; }

/* ============================================================
   RESPONSIVE — hp-, lp-showroom, yp-
   ============================================================ */
@media (max-width: 1024px) {
  .hp-hero-title  { font-size: 3rem; }
  .hp-cats-grid   { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .hp-why-grid    { grid-template-columns: repeat(2,1fr); }
  .lp-sh-inner    { grid-template-columns: 1fr; gap: 2rem; }
  .lp-sh-right    { display: none; }
  .yp-trust-grid  { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  /* HP Hero */
  .hp-hero { min-height: 100svh; }
  .hp-hero-inner { padding: 5rem 0 3rem; }
  .hp-hero-title { font-size: 2.25rem; }
  .hp-hero-sub   { font-size: 0.9rem; margin-bottom: 1.75rem; }
  .hp-search-type .hst-btn { font-size: 0.78rem; padding: 0.6rem 0.75rem; }
  .hp-stats { gap: 0; }
  .hp-stat  { padding: 0 1rem; }
  .hp-stat strong { font-size: 1.4rem; }
  .hp-stat-sep { height: 28px; }

  .hp-cats { padding-bottom: 3rem; }
  .hp-cats-grid { grid-template-columns: 1fr; }
  .hp-cat-top { padding: 1.5rem 1.5rem 1rem; }
  .hp-cat-body { padding: 0 1.5rem 1.25rem; }
  .hp-cat-foot { padding: 1rem 1.5rem 1.5rem; }
  .hp-cat-title { font-size: 1.7rem; }

  .hp-section { padding: 3rem 0; }
  .hp-sec-title  { font-size: 1.5rem; }
  .hp-why-grid   { grid-template-columns: 1fr 1fr; gap: 0.875rem; }
  .hp-why-card   { padding: 1.25rem; }
  .hp-wa-inner   { flex-direction: column; text-align: center; }
  .hp-wa-left    { flex-direction: column; align-items: center; }
  .hp-cat-icons-grid { grid-template-columns: repeat(3,1fr); }

  /* LP Showroom */
  .lp-showroom-hero { padding: 2rem 0 1.5rem; }
  .lp-sh-inner { grid-template-columns: 1fr; }
  .lp-sh-title { font-size: 2rem; }
  .lp-brand-cards { gap: 0.375rem; }
  .lp-brand-card  { font-size: 0.78rem; padding: 0.375rem 0.75rem; }

  /* YP Catalog */
  .yp-topbar-inner { flex-direction: column; align-items: flex-start; gap: 0.875rem; }
  .yp-topbar-search { max-width: 100%; width: 100%; }
  .yp-filter-bar { flex-direction: column; align-items: flex-start; }
  .yp-filter-bar-right { width: 100%; justify-content: space-between; }
  .yp-grid { grid-template-columns: repeat(2,1fr); gap: 0.75rem; }
  .yp-trust-grid { grid-template-columns: 1fr 1fr; gap: 0.875rem; }
}

@media (max-width: 480px) {
  .hp-hero-title { font-size: 1.85rem; }
  .hp-cat-title  { font-size: 1.4rem; }
  .hp-why-grid   { grid-template-columns: 1fr; }
  .hp-cat-icons-grid { grid-template-columns: repeat(2,1fr); }
  .hp-stat { padding: 0 0.75rem; }
  .yp-trust-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   LAPTOP SATIŞ SAYFASI YENİ TASARIM (ls-)
   ============================================================ */
.ls-page { background: #f0f2f5; min-height: 100vh; }

/* ── Hero ── */
.ls-hero {
  background: #0f172a;
  position: relative; overflow: hidden;
  padding: 2.5rem 0 2rem;
  border-bottom: 1px solid rgba(245,158,11,0.15);
}
.ls-hero-glow {
  position: absolute; border-radius: 50%; pointer-events: none; filter: blur(70px);
}
.ls-hero-glow--l { width: 450px; height: 350px; background: rgba(245,158,11,0.12); top: -80px; left: -60px; }
.ls-hero-glow--r { width: 350px; height: 350px; background: rgba(26,110,245,0.08); bottom: -60px; right: -40px; }

.ls-hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2.5rem; align-items: center; position: relative; z-index: 1;
}
.ls-hero-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(245,158,11,0.1); border: 1px solid rgba(245,158,11,0.2);
  color: #f59e0b; font-size: 0.72rem; font-weight: 700;
  padding: 0.3rem 0.75rem; border-radius: 100px;
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1rem;
}
.ls-tag-dot {
  width: 6px; height: 6px; border-radius: 50%; background: #f59e0b;
  box-shadow: 0 0 8px #f59e0b;
}
.ls-hero-title {
  font-size: 2.75rem; font-weight: 900; color: #fff;
  line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 0.5rem;
}
.ls-hero-title span { color: #fbbf24; }
.ls-hero-sub { font-size: 0.875rem; color: rgba(255,255,255,0.38); }

.ls-search {
  display: flex; align-items: center;
  background: rgba(255,255,255,0.07); border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 10px; overflow: hidden; margin-bottom: 1rem;
  transition: border-color 0.2s;
}
.ls-search:focus-within { border-color: rgba(245,158,11,0.5); }
.ls-search-ico { padding: 0 0.875rem; color: rgba(255,255,255,0.3); font-size: 0.875rem; }
.ls-search-inp {
  flex: 1; background: transparent; border: none;
  color: #fff; font-size: 0.9rem; padding: 0.75rem 0;
  outline: none; font-family: inherit;
}
.ls-search-inp::placeholder { color: rgba(255,255,255,0.28); }
.ls-search-btn {
  background: #f59e0b; color: #1c0500; border: none;
  width: 44px; min-height: 44px; font-size: 1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.ls-search-btn:hover { background: #fbbf24; }

.ls-hero-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.ls-hchip {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.3rem 0.75rem;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px; font-size: 0.78rem; font-weight: 500; color: rgba(255,255,255,0.55);
}
.ls-hchip i { font-size: 0.75rem; }
.ls-hchip--green { color: #4ade80; border-color: rgba(74,222,128,0.2); background: rgba(74,222,128,0.05); }
.ls-hchip--blue  { color: #60a5fa; border-color: rgba(96,165,250,0.2); background: rgba(96,165,250,0.05); }

/* ── Brand Tabs ── */
.ls-brand-tabs {
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  position: sticky;
  top: calc(var(--announcebar-h) + var(--header-h) + var(--maincatbar-h));
  z-index: 80;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.ls-brand-tabs-scroll {
  display: flex; align-items: stretch; gap: 0;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.ls-brand-tabs-scroll::-webkit-scrollbar { display: none; }

.ls-btab {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
  padding: 0.75rem 1.25rem;
  font-size: 0.82rem; font-weight: 700; color: #64748b;
  text-decoration: none; white-space: nowrap;
  border-bottom: 2.5px solid transparent;
  transition: all 0.18s;
  flex-shrink: 0;
}
.ls-btab em { font-style: normal; font-size: 0.65rem; color: #94a3b8; font-weight: 500; }
.ls-btab:hover { color: #1e293b; background: #f8fafc; }
.ls-btab--all { gap: 3px; flex-direction: row; }
.ls-btab--all i { font-size: 0.9rem; }
.ls-btab--active {
  color: #f59e0b; border-bottom-color: #f59e0b;
  background: #fffbeb;
}
.ls-btab--active em { color: #d97706; }

/* ── Filter Bar ── */
.ls-filter-bar {
  background: #fff; border-bottom: 1px solid #e2e8f0;
  padding: 0.625rem 0;
}
.ls-filter-bar-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
}
.ls-filter-left { display: flex; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.ls-filter-right { display: flex; align-items: center; gap: 0.5rem; }

.ls-filter-group { display: flex; align-items: center; gap: 0.375rem; }
.ls-fg-label { font-size: 0.72rem; font-weight: 700; color: #94a3b8; white-space: nowrap; }

.ls-fchip {
  display: inline-flex; align-items: center; gap: 0.3rem;
  padding: 0.3rem 0.75rem; border-radius: 100px;
  border: 1.5px solid #e2e8f0; background: #fff;
  font-size: 0.78rem; font-weight: 600; color: #64748b;
  text-decoration: none; white-space: nowrap; transition: all 0.15s;
}
.ls-fchip:hover { border-color: #f59e0b; color: #d97706; }
.ls-fchip--active { background: #fffbeb; border-color: #f59e0b; color: #d97706; }

.ls-price-form { display: flex; align-items: center; gap: 0.375rem; }
.ls-price-inp {
  width: 90px; height: 34px;
  border: 1.5px solid #e2e8f0; border-radius: 7px;
  padding: 0 0.5rem; font-size: 0.82rem; font-family: inherit;
  outline: none; transition: border-color 0.15s;
}
.ls-price-inp:focus { border-color: #f59e0b; }
.ls-price-form span { color: #94a3b8; font-size: 0.9rem; }
.ls-price-btn {
  width: 34px; height: 34px; border-radius: 7px;
  background: #f59e0b; color: #1c0500; border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; cursor: pointer; transition: background 0.15s;
}
.ls-price-btn:hover { background: #fbbf24; }

.ls-sort-sel {
  height: 34px; border: 1.5px solid #e2e8f0; border-radius: 7px;
  padding: 0 0.75rem; font-size: 0.82rem; font-family: inherit;
  font-weight: 600; color: #374151; background: #fff;
  outline: none; cursor: pointer; transition: border-color 0.15s;
}
.ls-sort-sel:focus { border-color: #f59e0b; }

/* ── Body ── */
.ls-body { padding: 1.5rem 0 4rem; }

.ls-active-filters {
  display: flex; align-items: center; flex-wrap: wrap; gap: 0.5rem;
  margin-bottom: 1rem;
}
.ls-af-chip {
  display: inline-flex; align-items: center; gap: 0.375rem;
  padding: 0.25rem 0.625rem 0.25rem 0.75rem;
  background: #fffbeb; border: 1px solid #fde68a;
  border-radius: 100px; font-size: 0.78rem; font-weight: 600; color: #92400e;
}
.ls-af-rm {
  display: flex; align-items: center; justify-content: center;
  width: 16px; height: 16px; border-radius: 50%;
  background: rgba(245,158,11,0.2); color: #d97706; font-size: 0.6rem;
  transition: background 0.15s;
}
.ls-af-rm:hover { background: #d97706; color: #fff; }
.ls-af-clear { font-size: 0.78rem; color: #94a3b8; font-weight: 600; text-decoration: underline; }
.ls-af-clear:hover { color: var(--danger); }

.ls-results-bar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.25rem;
}
.ls-result-count { font-size: 0.875rem; color: #64748b; }
.ls-result-count strong { color: #1e293b; font-weight: 800; }

.ls-view-btns { display: flex; gap: 0.25rem; }
.ls-view-btn {
  width: 34px; height: 34px; border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.875rem; color: #94a3b8;
  border: 1.5px solid #e2e8f0; background: #fff;
  cursor: pointer; transition: all 0.15s;
}
.ls-view-btn:hover, .ls-view-btn--active { border-color: #f59e0b; color: #d97706; background: #fffbeb; }

/* Featured */
.ls-featured-row {
  margin-bottom: 2rem;
  background: #fff; border-radius: 14px;
  border: 1.5px solid #e2e8f0; overflow: hidden;
  padding: 1.25rem;
}
.ls-featured-label {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  color: #d97706; display: flex; align-items: center; gap: 0.375rem;
  margin-bottom: 1rem;
}
.ls-featured-label i { color: #f59e0b; }
.ls-featured-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 0.875rem;
}

/* Grid */
.ls-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 1rem; }
.ls-grid.ls-grid--list { grid-template-columns: 1fr; }

/* Pagination */
.ls-pagination { display: flex; gap: 0.375rem; justify-content: center; margin-top: 2.5rem; flex-wrap: wrap; }
.ls-page-btn {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.5rem 0.875rem; border-radius: 8px;
  border: 1.5px solid #e2e8f0; background: #fff;
  font-size: 0.85rem; color: #374151; font-weight: 500; transition: all 0.15s;
}
.ls-page-btn:hover { border-color: #f59e0b; color: #d97706; }
.ls-page-btn--active { background: #f59e0b; border-color: #f59e0b; color: #1c0500; font-weight: 700; }

/* Empty */
.ls-empty {
  text-align: center; padding: 5rem 2rem;
  background: #fff; border-radius: 14px; border: 1.5px solid #e2e8f0;
}
.ls-empty-ico { font-size: 3.5rem; color: #e2e8f0; margin-bottom: 1rem; }
.ls-empty h2 { font-size: 1.2rem; color: #1e293b; margin-bottom: 0.5rem; }
.ls-empty p  { font-size: 0.9rem; color: #64748b; line-height: 1.65; margin-bottom: 1.75rem; }
.ls-empty-actions { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }
.ls-empty-btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.7rem 1.5rem; border-radius: 9px;
  font-size: 0.875rem; font-weight: 700; text-decoration: none; transition: all 0.2s;
}
.ls-empty-btn--primary { background: #f59e0b; color: #1c0500; }
.ls-empty-btn--primary:hover { background: #fbbf24; }
.ls-empty-btn--wa { background: #25d366; color: #064e3b; }
.ls-empty-btn--wa:hover { background: #1fba58; }

/* Footer Bar */
.ls-footer-bar {
  background: #1e293b; padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.ls-footer-bar-inner {
  display: flex; align-items: center; justify-content: space-around;
  gap: 1rem; flex-wrap: wrap;
}
.ls-fbar-item { display: flex; align-items: center; gap: 0.875rem; }
.ls-fbar-item > i { font-size: 1.25rem; color: #f59e0b; flex-shrink: 0; }
.ls-fbar-item strong { display: block; font-size: 0.85rem; font-weight: 700; color: #fff; }
.ls-fbar-item span, .ls-fbar-item a { display: block; font-size: 0.75rem; color: rgba(255,255,255,0.45); }
.ls-fbar-item a:hover { color: #f59e0b; }
.ls-fbar-sep { width: 1px; height: 32px; background: rgba(255,255,255,0.1); }

/* Mobile FAB */
.ls-mobile-filter-fab {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  background: #fff; border-top: 1px solid #e2e8f0;
  padding: 0.625rem 1rem; gap: 0.625rem;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.08);
}
.ls-mobile-filter-fab button {
  flex: 1; height: 42px; background: #f59e0b; color: #1c0500;
  border: none; border-radius: 8px; font-size: 0.875rem; font-weight: 700;
  font-family: inherit; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 0.4rem;
}
.ls-mobile-sort-sel {
  height: 42px; border: 1.5px solid #e2e8f0; border-radius: 8px;
  padding: 0 0.75rem; font-size: 0.82rem; font-family: inherit;
  font-weight: 600; color: #374151; background: #fff; min-width: 120px; outline: none;
}

/* Mobile Filter Panel */
.ls-mobile-filter {
  position: fixed; top: 0; left: -100%; bottom: 0;
  width: min(340px, 90vw); background: #fff; z-index: 600;
  display: flex; flex-direction: column;
  transition: left 0.3s cubic-bezier(0.4,0,0.2,1);
}
.ls-mobile-filter.open { left: 0; box-shadow: 4px 0 24px rgba(0,0,0,0.18); }
.ls-mf-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  z-index: 599; opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.ls-mf-overlay.active { opacity: 1; pointer-events: auto; }
.ls-mf-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.25rem; border-bottom: 1px solid #f1f5f9;
  font-weight: 700; font-size: 0.9rem; color: #1e293b;
}
.ls-mf-header button { color: #94a3b8; font-size: 1rem; }
.ls-mf-body { padding: 1.25rem; overflow-y: auto; flex: 1; display: flex; flex-direction: column; gap: 1.5rem; }
.ls-mf-group { }
.ls-mf-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: #94a3b8; margin-bottom: 0.625rem; }
.ls-mf-pills { display: flex; flex-wrap: wrap; gap: 0.375rem; }
.ls-mf-pills label {
  display: flex; align-items: center; gap: 0.375rem;
  padding: 0.35rem 0.75rem;
  border: 1.5px solid #e2e8f0; border-radius: 100px;
  font-size: 0.8rem; font-weight: 600; color: #64748b; cursor: pointer;
  transition: all 0.15s;
}
.ls-mf-pills label:has(input:checked) { background: #fffbeb; border-color: #f59e0b; color: #d97706; }
.ls-mf-pills input { display: none; }
.ls-mf-price { display: flex; align-items: center; gap: 0.5rem; }
.ls-mf-price-inp {
  flex: 1; height: 38px; border: 1.5px solid #e2e8f0; border-radius: 8px;
  padding: 0 0.625rem; font-size: 0.85rem; font-family: inherit; outline: none;
}
.ls-mf-price-inp:focus { border-color: #f59e0b; }
.ls-mf-submit {
  display: flex; align-items: center; justify-content: center; gap: 0.4rem;
  width: 100%; height: 44px; background: #f59e0b; color: #1c0500;
  border: none; border-radius: 9px; font-size: 0.9rem; font-weight: 800;
  font-family: inherit; cursor: pointer; transition: background 0.15s;
}
.ls-mf-submit:hover { background: #fbbf24; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .ls-featured-grid { grid-template-columns: repeat(3,1fr); }
  .ls-grid { grid-template-columns: repeat(auto-fill, minmax(190px,1fr)); }
}

@media (max-width: 768px) {
  .ls-hero-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .ls-hero-title { font-size: 2rem; }
  .ls-filter-bar { display: none; }
  .ls-mobile-filter-fab { display: flex !important; }
  .ls-body { padding: 1.25rem 0 5rem; }
  .ls-featured-grid { grid-template-columns: repeat(2,1fr); }
  .ls-grid { grid-template-columns: repeat(2,1fr); gap: 0.75rem; }
  .ls-results-bar { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .ls-footer-bar-inner { gap: 1.5rem; flex-direction: column; text-align: center; }
  .ls-fbar-sep { width: 60px; height: 1px; }
  .ls-fbar-item { flex-direction: column; align-items: center; gap: 0.5rem; }
}

@media (max-width: 480px) {
  .ls-hero-title { font-size: 1.7rem; }
  .ls-featured-grid { grid-template-columns: 1fr 1fr; }
  .ls-grid { grid-template-columns: repeat(2,1fr); gap: 0.5rem; }
  .ls-btab { padding: 0.65rem 0.875rem; font-size: 0.78rem; }
}

/* ============================================================
   ANASAYFA PREMİUM v2 — Yeni Bileşenler
   ============================================================ */

/* ── Hero v2: Split Layout ─────────────────────────────── */
.hp-hero-mesh {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.hp-hero-orb {
  position: absolute; border-radius: 50%;
  pointer-events: none; filter: blur(90px);
}
.hp-hero-orb--1 { width:700px; height:700px; background:rgba(26,110,245,0.14); top:-200px; left:-150px; }
.hp-hero-orb--2 { width:550px; height:550px; background:rgba(245,158,11,0.08); bottom:-120px; right:-100px; }
.hp-hero-orb--3 { width:320px; height:320px; background:rgba(99,102,241,0.09); top:40%; left:55%; }

.hp-hero-inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  padding: 6rem 0 5rem;
}
.hp-hero-left { }
.hp-hero-right { }

/* Badge */
.hp-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.55); font-size: 0.72rem; font-weight: 700;
  padding: 0.35rem 0.875rem; border-radius: 100px;
  letter-spacing: 0.08em; margin-bottom: 1.25rem;
}

/* Hero title */
.hp-hero-title {
  font-size: 3.5rem; font-weight: 900; color: #fff;
  line-height: 1.08; letter-spacing: -0.04em; margin-bottom: 1rem;
}
.hp-hero-title em { color: #60a5fa; font-style: normal; }
.hp-hero-sub { font-size: 1rem; color: rgba(255,255,255,0.42); margin-bottom: 2rem; line-height: 1.7; }

/* ── Search v2 ──────────────────────────────────────────── */
.hp-search-wrap { position: relative; }
.hp-search-tabs {
  display: flex; gap: 0.25rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 10px; padding: 0.25rem;
  margin-bottom: 0.75rem; width: fit-content;
}
.hp-stab {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.45rem 0.875rem; border-radius: 7px; border: none;
  background: transparent; font-size: 0.8rem; font-weight: 600;
  color: rgba(255,255,255,0.4); cursor: pointer; font-family: inherit;
  transition: all 0.18s; white-space: nowrap;
}
.hp-stab:hover { color: rgba(255,255,255,0.7); }
.hp-stab--active { background: rgba(255,255,255,0.1); color: #fff; }
.hp-stab--active i { color: #60a5fa; }

.hp-search-form { position: relative; }
.hp-search-field {
  display: flex; align-items: center;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.13);
  border-radius: 12px; overflow: visible;
  transition: border-color 0.2s, box-shadow 0.2s;
  position: relative;
}
.hp-search-field:focus-within {
  border-color: rgba(96,165,250,0.5);
  box-shadow: 0 0 0 4px rgba(96,165,250,0.1);
}
.hp-search-icon { padding: 0 0.875rem; color: rgba(255,255,255,0.3); font-size: 0.9rem; flex-shrink: 0; }
.hp-search-input {
  flex: 1; background: transparent; border: none;
  color: #fff; font-size: 0.95rem; padding: 0.875rem 0;
  outline: none; font-family: inherit;
}
.hp-search-input::placeholder { color: rgba(255,255,255,0.25); }
.hp-search-btn {
  display: flex; align-items: center; gap: 0.4rem;
  background: var(--primary); color: #fff;
  border: none; padding: 0 1.375rem; min-height: 52px;
  border-radius: 0 10px 10px 0;
  font-size: 0.9rem; font-weight: 700; cursor: pointer;
  font-family: inherit; flex-shrink: 0;
  transition: background 0.2s;
}
.hp-search-btn:hover { background: var(--primary-dark); }
.hp-search-btn-ico { display: none; }

.hp-search-hints {
  display: flex; align-items: center; flex-wrap: wrap; gap: 0.375rem;
  margin-top: 0.625rem; font-size: 0.78rem;
}
.hp-search-hints span { color: rgba(255,255,255,0.28); }
.hp-search-hints a {
  color: rgba(255,255,255,0.5); text-decoration: none;
  padding: 0.15rem 0.5rem;
  border: 1px solid rgba(255,255,255,0.1); border-radius: 100px;
  transition: all 0.15s;
}
.hp-search-hints a:hover { color: #fff; border-color: rgba(255,255,255,0.25); }

/* ── Search Dropdown ────────────────────────────────────── */
.hp-search-dropdown {
  position: absolute; top: calc(100% + 8px); left: 0; right: 0;
  background: #fff; border-radius: 14px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.35), 0 2px 8px rgba(0,0,0,0.15);
  z-index: 500; overflow: hidden;
  display: none; border: 1px solid rgba(0,0,0,0.06);
}
.hp-search-dropdown.hp-sdd--show { display: block; }

.hp-sdd-inner { max-height: 380px; overflow-y: auto; }

.hp-sdd-item {
  display: flex; align-items: center; gap: 0.875rem;
  padding: 0.75rem 1rem; text-decoration: none;
  color: #1e293b; border-bottom: 1px solid #f1f5f9;
  transition: background 0.12s;
}
.hp-sdd-item:last-child { border-bottom: none; }
.hp-sdd-item:hover { background: #f8fafc; }

.hp-sdd-img {
  width: 52px; height: 52px; object-fit: cover;
  border-radius: 8px; flex-shrink: 0;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
}
.hp-sdd-info { flex: 1; min-width: 0; }
.hp-sdd-title {
  font-size: 0.875rem; font-weight: 600; color: #1e293b;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.hp-sdd-meta {
  display: flex; align-items: center; flex-wrap: wrap; gap: 0.25rem 0.375rem;
  margin-top: 0.2rem;
}
.hp-sdd-meta span { font-size: 0.72rem; color: #94a3b8; }
.hp-sdd-type { padding: 0.1rem 0.4rem; border-radius: 4px; font-size: 0.68rem; font-weight: 600; }
.hp-sdd-type--laptop { background: #fffbeb; color: #92400e; }
.hp-sdd-type--parca  { background: #eff6ff; color: #1d4ed8; }
.hp-sdd-out { background: #fef2f2; color: #dc2626; padding: 0.1rem 0.4rem; border-radius: 4px; font-size: 0.68rem; font-weight: 600; }
.hp-sdd-price { font-size: 0.9rem; font-weight: 800; color: var(--primary); white-space: nowrap; flex-shrink: 0; }

.hp-sdd-footer { border-top: 1px solid #f1f5f9; }
.hp-sdd-seeall {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.75rem 1rem; font-size: 0.875rem; font-weight: 700;
  color: var(--primary); text-decoration: none;
  transition: background 0.12s;
}
.hp-sdd-seeall:hover { background: #eff6ff; }
.hp-sdd-loading, .hp-sdd-empty {
  padding: 1.25rem 1rem; text-align: center;
  font-size: 0.875rem; color: #94a3b8;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
}

/* ── Stat Cards (hero right) ────────────────────────────── */
.hp-stat-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.875rem;
}
.hp-sc {
  border-radius: 18px; padding: 1.5rem;
  display: flex; flex-direction: column; gap: 0.25rem;
  position: relative; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}
.hp-sc::before {
  content:''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.hp-sc--laptops { background: linear-gradient(145deg, #1a0c00, #0d0600); }
.hp-sc--parca   { background: linear-gradient(145deg, #03091a, #020710); }
.hp-sc--brands  { background: linear-gradient(145deg, #12001a, #08000f); }
.hp-sc--rating  { background: linear-gradient(145deg, #001a04, #000f02); }

.hp-sc-icon {
  width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; margin-bottom: 0.5rem;
}
.hp-sc--laptops .hp-sc-icon { background: rgba(245,158,11,0.15); color: #f59e0b; }
.hp-sc--parca   .hp-sc-icon { background: rgba(96,165,250,0.15); color: #60a5fa; }
.hp-sc--brands  .hp-sc-icon { background: rgba(167,139,250,0.15); color: #a78bfa; }
.hp-sc--rating  .hp-sc-icon { background: rgba(74,222,128,0.15);  color: #4ade80; }

.hp-sc-val {
  font-size: 2rem; font-weight: 900; color: #fff;
  line-height: 1; letter-spacing: -0.03em;
}
.hp-sc-lbl { font-size: 0.75rem; color: rgba(255,255,255,0.35); margin-top: 0.125rem; }
.hp-sc-link {
  margin-top: 0.75rem; font-size: 0.75rem; font-weight: 700;
  color: rgba(255,255,255,0.4); text-decoration: none;
  transition: color 0.15s;
}
.hp-sc-link:hover { color: rgba(255,255,255,0.8); }

/* ── Trust Bar ──────────────────────────────────────────── */
.hp-trust-bar {
  background: #fff; border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.hp-trust-row {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap; padding: 0.75rem 0;
}
.hp-trust-item {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.75rem 2rem;
}
.hp-trust-item > i {
  font-size: 1.25rem; color: var(--primary); flex-shrink: 0;
}
.hp-trust-item > div { display: flex; flex-direction: column; }
.hp-trust-item strong { font-size: 0.82rem; font-weight: 700; color: #1e293b; line-height: 1.3; }
.hp-trust-item span   { font-size: 0.72rem; color: #94a3b8; }
.hp-trust-sep { width: 1px; height: 40px; background: #e2e8f0; flex-shrink: 0; }

/* ── Vitrin Section ─────────────────────────────────────── */
.hp-section--vitrin { background: #0f172a; }
.hp-section--vitrin .hp-sec-title { color: #fff; }
.hp-section--vitrin .hp-sec-sub   { color: rgba(255,255,255,0.4); }
.hp-section--vitrin .hp-sec-link  { color: #fbbf24; }
.hp-section--vitrin .hp-sec-link:hover { color: #fde68a; }

.hp-vitrin-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
/* İlk kart featured — 2 sütun x 2 satır */
.hp-vc--featured {
  grid-column: span 2;
  grid-row: span 2;
}

.hp-vc {
  display: flex; flex-direction: column;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px; overflow: hidden;
  text-decoration: none; color: inherit;
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s, border-color 0.25s;
  cursor: pointer;
}
.hp-vc:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  border-color: rgba(245,158,11,0.3);
}

.hp-vc-img-wrap {
  position: relative; overflow: hidden;
  background: rgba(255,255,255,0.03);
}
.hp-vc--featured .hp-vc-img-wrap { flex: 1; }
.hp-vc:not(.hp-vc--featured) .hp-vc-img-wrap { height: 160px; }

.hp-vc-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.hp-vc:hover .hp-vc-img { transform: scale(1.05); }

.hp-vc-badges {
  position: absolute; top: 0.625rem; left: 0.625rem;
  display: flex; flex-direction: column; gap: 0.25rem;
}
.hp-vcb {
  display: inline-flex; align-items: center; gap: 0.3rem;
  font-size: 0.68rem; font-weight: 700;
  padding: 0.2rem 0.5rem; border-radius: 5px;
}
.hp-vcb--featured { background: rgba(245,158,11,0.9); color: #1c0500; }
.hp-vcb--cond     { }

.hp-vc-urgency {
  position: absolute; bottom: 0.5rem; right: 0.625rem;
  background: #ef4444; color: #fff;
  font-size: 0.68rem; font-weight: 700;
  padding: 0.2rem 0.5rem; border-radius: 5px;
  animation: hp-urgency-pulse 1.5s ease-in-out infinite;
}
@keyframes hp-urgency-pulse {
  0%, 100% { opacity: 1; } 50% { opacity: 0.7; }
}

.hp-vc-body { padding: 0.875rem 1rem; }
.hp-vc--featured .hp-vc-body { padding: 1.25rem 1.5rem; }
.hp-vc-brand {
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.07em;
  text-transform: uppercase; color: #f59e0b;
  margin-bottom: 0.25rem;
}
.hp-vc-title {
  font-size: 0.875rem; font-weight: 700; color: #fff;
  line-height: 1.4; margin-bottom: 0.75rem;
  overflow: hidden; display: -webkit-box;
  -webkit-line-clamp: 2; -webkit-box-orient: vertical;
}
.hp-vc--featured .hp-vc-title { font-size: 1.2rem; -webkit-line-clamp: 3; }
.hp-vc-footer { display: flex; align-items: center; justify-content: space-between; }
.hp-vc-price {
  font-size: 1.1rem; font-weight: 900; color: #fbbf24;
}
.hp-vc--featured .hp-vc-price { font-size: 1.5rem; }
.hp-vc-cta {
  display: flex; align-items: center; gap: 0.35rem;
  font-size: 0.78rem; font-weight: 700; color: rgba(255,255,255,0.4);
  transition: color 0.15s;
}
.hp-vc:hover .hp-vc-cta { color: #f59e0b; }

/* Sec foot */
.hp-sec-foot { text-align: center; margin-top: 2rem; }
.hp-big-btn {
  display: inline-flex; align-items: center; gap: 0.625rem;
  padding: 0.875rem 2rem; border-radius: 10px;
  font-size: 0.95rem; font-weight: 700;
  transition: all 0.2s; text-decoration: none;
}
.hp-big-btn-count {
  font-size: 0.75rem; font-weight: 600;
  padding: 0.15rem 0.5rem; border-radius: 100px;
  background: rgba(255,255,255,0.15);
}
.hp-big-btn--laptop { background: #f59e0b; color: #1c0500; }
.hp-big-btn--laptop:hover { background: #fbbf24; box-shadow: 0 4px 20px rgba(245,158,11,0.35); color: #1c0500; }
.hp-big-btn--parca  { background: var(--primary); color: #fff; }
.hp-big-btn--parca:hover { background: var(--primary-dark); box-shadow: 0 4px 20px rgba(26,110,245,0.3); }

/* ── Best Sellers Section ───────────────────────────────── */
.hp-section--bestsellers { background: #fff; }
.hp-sec-label--fire { background: #fff4ed; color: #c2410c; }

.hp-bs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.hp-bsc {
  background: #fff; border: 1.5px solid #e2e8f0;
  border-radius: 14px; overflow: hidden;
  display: flex; flex-direction: column;
  position: relative; transition: all 0.2s;
}
.hp-bsc:hover { border-color: var(--primary); box-shadow: 0 8px 32px rgba(26,110,245,0.1); transform: translateY(-3px); }
.hp-bsc--out { opacity: 0.7; }

.hp-bsc-fire {
  position: absolute; top: 0.625rem; left: 0.625rem; z-index: 2;
  background: linear-gradient(135deg, #f97316, #ef4444);
  color: #fff; font-size: 0.67rem; font-weight: 800;
  padding: 0.2rem 0.5rem; border-radius: 5px;
  display: flex; align-items: center; gap: 0.25rem;
}

.hp-bsc-img-link { display: block; overflow: hidden; background: #f8fafc; position: relative; height: 180px; }
.hp-bsc-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.35s ease; display: block;
}
.hp-bsc:hover .hp-bsc-img { transform: scale(1.06); }

.hp-bsc-body { padding: 0.875rem; flex: 1; display: flex; flex-direction: column; gap: 0.375rem; }
.hp-bsc-meta { display: flex; align-items: center; flex-wrap: wrap; gap: 0.25rem 0.5rem; }
.hp-bsc-cat {
  font-size: 0.67rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--primary); background: #eff6ff; padding: 0.15rem 0.45rem; border-radius: 4px;
}
.hp-bsc-brand { font-size: 0.72rem; color: #94a3b8; font-weight: 600; }
.hp-bsc-title {
  font-size: 0.85rem; font-weight: 700; color: #1e293b;
  line-height: 1.45; flex: 1;
  overflow: hidden; display: -webkit-box;
  -webkit-line-clamp: 2; -webkit-box-orient: vertical;
}
.hp-bsc-title a { color: inherit; text-decoration: none; }
.hp-bsc-title a:hover { color: var(--primary); }
.hp-bsc-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.hp-bsc-price { font-size: 1.05rem; font-weight: 900; color: #1e293b; }
.hp-bsc-stock { font-size: 0.68rem; font-weight: 600; display: flex; align-items: center; gap: 0.25rem; }
.hp-bsc-stock i { font-size: 0.5rem; }
.hp-bsc-stock.stock-ok  { color: #16a34a; }
.hp-bsc-stock.stock-low { color: #d97706; }
.hp-bsc-stock.stock-out { color: #dc2626; }

.hp-bsc-cart {
  width: 100%; margin-top: 0.625rem;
  display: flex; align-items: center; justify-content: center; gap: 0.35rem;
  padding: 0.5rem; border-radius: 8px;
  font-size: 0.8rem; font-weight: 700; cursor: pointer;
  transition: all 0.18s; border: none; font-family: inherit;
  background: var(--primary); color: #fff;
}
.hp-bsc-cart:hover { background: var(--primary-dark); }
.hp-bsc-cart--wa { background: #25d366; color: #064e3b; text-decoration: none; }
.hp-bsc-cart--wa:hover { background: #1fba58; }

/* ── Category Browser Section ───────────────────────────── */
.hp-section--catbrowser { background: #f8fafc; }

.hp-cattabs {
  display: flex; flex-wrap: wrap; gap: 0.375rem;
  margin-bottom: 1.5rem;
}
.hp-cattab {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.5rem 1rem; border-radius: 8px;
  font-size: 0.82rem; font-weight: 600;
  color: #64748b; background: #fff;
  border: 1.5px solid #e2e8f0; cursor: pointer;
  font-family: inherit; transition: all 0.18s;
}
.hp-cattab:hover { border-color: var(--primary); color: var(--primary); background: #eff6ff; }
.hp-cattab--active { background: var(--primary); color: #fff; border-color: var(--primary); }
.hp-cattab--active i { color: rgba(255,255,255,0.8); }

.hp-catgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  min-height: 200px;
}

.hp-catcard {
  background: #fff; border: 1.5px solid #e2e8f0;
  border-radius: 12px; overflow: hidden;
  display: flex; flex-direction: column;
  transition: all 0.2s;
}
.hp-catcard:hover { border-color: var(--primary); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(26,110,245,0.1); }
.hp-catcard--visible { animation: hp-fadeIn 0.25s ease forwards; }

@keyframes hp-fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hp-catcard-img-link {
  display: block; position: relative;
  height: 150px; overflow: hidden; background: #f8fafc;
}
.hp-catcard-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.3s ease; display: block;
}
.hp-catcard:hover .hp-catcard-img { transform: scale(1.06); }

.hp-catcard-badge {
  position: absolute; top: 0.5rem; left: 0.5rem;
  font-size: 0.65rem; font-weight: 700;
  padding: 0.15rem 0.4rem; border-radius: 4px;
}
.hp-catcard-badge--feat {
  right: 0.5rem; left: auto;
  background: #f59e0b; color: #1c0500;
}

.hp-catcard-body { padding: 0.75rem; flex: 1; display: flex; flex-direction: column; gap: 0.375rem; }
.hp-catcard-cat {
  display: flex; align-items: center; gap: 0.3rem;
  font-size: 0.68rem; font-weight: 700; color: var(--primary);
}
.hp-catcard-title {
  font-size: 0.82rem; font-weight: 600; color: #1e293b; line-height: 1.4;
  flex: 1; overflow: hidden; display: -webkit-box;
  -webkit-line-clamp: 2; -webkit-box-orient: vertical;
}
.hp-catcard-title a { color: inherit; text-decoration: none; }
.hp-catcard-title a:hover { color: var(--primary); }
.hp-catcard-foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: auto;
}
.hp-catcard-price { font-size: 0.95rem; font-weight: 800; color: #1e293b; }
.hp-catcard-cart {
  width: 32px; height: 32px; border-radius: 8px;
  border: none; background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; cursor: pointer; transition: background 0.15s;
  flex-shrink: 0;
}
.hp-catcard-cart:hover { background: var(--primary-dark); }

/* All cats footer */
.hp-all-cats { margin-top: 2.5rem; }
.hp-all-cats-lbl {
  font-size: 0.78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; color: #94a3b8; margin-bottom: 0.875rem;
}

/* ── Brands Marquee ─────────────────────────────────────── */
.hp-section--brands { background: #0f172a; }
.hp-marquee-wrap {
  overflow: hidden; padding: 1.5rem 0;
  mask-image: linear-gradient(90deg, transparent, #fff 10%, #fff 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #fff 10%, #fff 90%, transparent);
}
.hp-marquee-track {
  display: flex; gap: 0.75rem;
  width: max-content;
  animation: hp-marquee 28s linear infinite;
}
.hp-marquee-track:hover { animation-play-state: paused; }
@keyframes hp-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.hp-marquee-item {
  display: inline-flex; align-items: center;
  padding: 0.5rem 1.5rem;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px; font-size: 0.875rem; font-weight: 700;
  color: rgba(255,255,255,0.45); text-decoration: none;
  white-space: nowrap; flex-shrink: 0;
  transition: all 0.2s;
}
.hp-marquee-item:hover { background: rgba(255,255,255,0.1); color: #fff; border-color: rgba(255,255,255,0.2); }

/* ── Responsive — Yeni Bileşenler ──────────────────────── */
@media (max-width: 1200px) {
  .hp-vitrin-grid { grid-template-columns: repeat(3, 1fr); }
  .hp-vc--featured { grid-column: span 2; grid-row: span 1; }
  .hp-vc--featured .hp-vc-img-wrap { height: 220px; }
  .hp-bs-grid { grid-template-columns: repeat(3, 1fr); }
  .hp-catgrid  { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
  .hp-hero-inner { grid-template-columns: 1fr; padding: 5rem 0 4rem; gap: 2rem; }
  .hp-hero-right { display: none; }
  .hp-hero-title { font-size: 3rem; }
  .hp-stat-cards { grid-template-columns: repeat(4, 1fr); }
  .hp-trust-item { padding: 0.75rem 1.25rem; }
  .hp-vitrin-grid { grid-template-columns: repeat(2, 1fr); }
  .hp-vc--featured { grid-column: span 2; }
  .hp-bs-grid { grid-template-columns: repeat(2, 1fr); }
  .hp-catgrid  { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hp-hero { min-height: 100svh; }
  .hp-hero-inner { padding: 4.5rem 0 3rem; }
  .hp-hero-title { font-size: 2.25rem; }
  .hp-hero-sub { font-size: 0.875rem; }
  .hp-search-btn-txt { display: none; }
  .hp-search-btn-ico { display: inline-block; }
  .hp-search-btn { padding: 0 1rem; }
  .hp-search-tabs { flex-wrap: wrap; }
  .hp-stab { font-size: 0.75rem; padding: 0.375rem 0.625rem; }

  .hp-trust-row { flex-direction: column; align-items: flex-start; padding: 0.5rem 0; }
  .hp-trust-sep { display: none; }
  .hp-trust-item { padding: 0.5rem 0; }
  .hp-trust-row { display: grid; grid-template-columns: 1fr 1fr; }

  .hp-vitrin-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .hp-vc--featured { grid-column: 1; grid-row: span 1; }
  .hp-vc--featured .hp-vc-img-wrap { height: 160px; }
  .hp-vc--featured .hp-vc-title { font-size: 0.875rem; }
  .hp-vc--featured .hp-vc-price { font-size: 1.1rem; }

  .hp-bs-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .hp-bsc-img-link { height: 140px; }

  .hp-catgrid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .hp-cattabs { gap: 0.25rem; }
  .hp-cattab { font-size: 0.75rem; padding: 0.4rem 0.75rem; }

  .hp-sec-title { font-size: 1.5rem; }
  .hp-sec-sub { font-size: 0.875rem; }
  .hp-section { padding: 2.5rem 0; }
  .hp-why-grid { grid-template-columns: 1fr 1fr; }
  .hp-wa-inner { flex-direction: column; text-align: center; }
  .hp-wa-left  { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .hp-hero-title { font-size: 1.875rem; }
  .hp-vitrin-grid { grid-template-columns: 1fr; }
  .hp-vc--featured { grid-column: 1; }
  .hp-bs-grid { grid-template-columns: 1fr; }
  .hp-catgrid { grid-template-columns: 1fr 1fr; }
  .hp-cat-icons-grid { grid-template-columns: repeat(3, 1fr); }
  .hp-trust-row { grid-template-columns: 1fr; }
  .hp-why-grid { grid-template-columns: 1fr; }
}
