/**
 * BURRATA MOTOR - Core Design System & Global Stylesheet
 * Ultra Premium Automotive Showroom Aesthetic
 */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* Renk Paleti - Showroom Açık Tema */
  --bg-primary: #FFFFFF;
  --bg-secondary: #F8F9FA;
  --bg-tertiary: #F1F3F5;
  --bg-card: #FFFFFF;
  
  --border-subtle: #E9ECEF;
  --border-light: #DEE2E6;
  --border-strong: #CED4DA;

  --text-main: #0D0E10;
  --text-heading: #121417;
  --text-muted: #6C757D;
  --text-subtle: #868E96;

  /* Marka & Vurgu Renkleri */
  --accent-red: #E22028;
  --accent-red-hover: #C9161D;
  --accent-red-subtle: rgba(226, 32, 40, 0.08);
  --accent-dark: #121417;
  --accent-dark-hover: #212529;

  --success: #198754;
  --success-bg: #E8F5E9;
  --badge-bg: #F1F3F5;

  /* Tipografi */
  --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Ölçüler & Boşluklar */
  --container-max: 1320px;
  --container-pad: 24px;
  --header-height: 88px;
  --header-height-scrolled: 70px;

  /* Radius & Gölgeler */
  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  
  --shadow-subtle: 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.04);
  --shadow-hover: 0 12px 32px rgba(0, 0, 0, 0.08);
  --shadow-dropdown: 0 16px 40px rgba(0, 0, 0, 0.1);

  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-base: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Temel Ayarlar */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-main);
  background-color: var(--bg-primary);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-heading);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font: inherit;
  color: inherit;
  border: none;
  background: none;
  outline: none;
}

/* Konteyner Düzeni */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

.container-narrow {
  max-width: 1040px;
}

/* ==============================================================================
   HEADER (Masaüstü & Mobil)
============================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: height var(--transition-base), padding var(--transition-base), box-shadow var(--transition-base);
  height: var(--header-height);
  display: flex;
  align-items: center;
}

.site-header.scrolled {
  height: var(--header-height-scrolled);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  background-color: #FFFFFF;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.header-brand {
  display: flex;
  align-items: center;
}

.header-logo {
  height: 44px;
  width: auto;
  transition: transform var(--transition-fast);
}

.header-logo:hover {
  transform: scale(1.02);
}

.site-header.scrolled .header-logo {
  height: 38px;
}

/* Masaüstü Navigasyon */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-heading);
  position: relative;
  padding: 8px 0;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--accent-red);
  transition: width var(--transition-base);
}

.nav-link:hover, .nav-link.active {
  color: var(--accent-red);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* Header Sağ CTA - Kompakt İkon Butonları */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-header-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  cursor: pointer;
  flex-shrink: 0;
}

.btn-header-tel {
  color: var(--text-heading);
  border: 1px solid var(--border-light);
  background-color: #FFFFFF;
}

.btn-header-tel:hover {
  border-color: var(--text-heading);
  background-color: var(--text-heading);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.btn-header-whatsapp {
  color: #FFFFFF;
  background-color: var(--accent-red);
  box-shadow: 0 4px 12px rgba(226, 32, 40, 0.2);
}

.btn-header-whatsapp:hover {
  background-color: var(--accent-red-hover);
  box-shadow: 0 6px 16px rgba(226, 32, 40, 0.32);
  transform: translateY(-2px);
}

.btn-header-search {
  color: #FFFFFF;
  background-color: var(--accent-red);
  box-shadow: 0 4px 12px rgba(226, 32, 40, 0.2);
  border: none;
  cursor: pointer;
}

.btn-header-search:hover {
  background-color: var(--accent-red-hover);
  box-shadow: 0 6px 16px rgba(226, 32, 40, 0.32);
  transform: translateY(-2px);
}

/* PC & Mobil Buton Ayrımı */
.header-search-desktop {
  display: inline-flex;
}

.header-wa-mobile {
  display: none;
}

@media (max-width: 991px) {
  .header-search-desktop {
    display: none !important;
  }
  .header-wa-mobile {
    display: inline-flex !important;
  }
}

/* Hamburger Menü Butonu */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text-heading);
}

/* Mobil Menü Çekmecesi (Drawer) */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 360px;
  height: 100vh;
  height: 100dvh;
  background-color: #FFFFFF;
  z-index: 1250;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.2);
  transition: right var(--transition-base);
  display: flex;
  flex-direction: column;
  padding: 28px 22px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-drawer.open {
  right: 0;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-subtle);
}

.drawer-close {
  cursor: pointer;
  padding: 6px;
  color: var(--text-heading);
  touch-action: manipulation;
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.drawer-nav a {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-heading);
  padding: 8px 0;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  touch-action: manipulation;
}

.drawer-nav a:hover, .drawer-nav a.active {
  color: var(--accent-red);
}

.drawer-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1200;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all var(--transition-fast);
}

.drawer-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Sayfa Üst Boşluğu (Header yüksekliği kadar) */
.page-wrapper {
  padding-top: var(--header-height);
  flex: 1;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

/* ==============================================================================
   FOOTER (Showroom Kurumsal)
============================================================================== */
.site-footer {
  background-color: #E9ECEF;
  border-top: 1px solid #D0D5DD;
  padding-top: 64px;
  padding-bottom: 32px;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 14px;
  color: #475467;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 320px;
}

.footer-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #121417;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 14px;
  color: #475467;
  font-weight: 500;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent-red);
  transform: translateX(4px);
}

.footer-hours-table {
  width: 100%;
  font-size: 13.5px;
}

.footer-hours-table td {
  padding: 6px 0;
  color: #475467;
}

.footer-hours-table td:last-child {
  text-align: right;
  font-weight: 700;
  color: #121417;
}

.footer-bottom {
  border-top: 1px solid #D0D5DD;
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: #667085;
}

/* Scroll Reveal Animasyonları */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--transition-smooth), transform var(--transition-smooth);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Kuralları */
@media (max-width: 1024px) {
  .desktop-nav {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 1280px) {
  .desktop-nav {
    gap: 18px;
  }
  .nav-link {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 72px;
    --container-pad: 18px;
  }
  .btn-header-icon {
    width: 36px;
    height: 36px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* ==============================================================================
   HONDA STYLE - MOBİL STICKY HIZLI ERİŞİM & AÇILIR PANELLER
============================================================================== */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100vw;
  height: calc(64px + env(safe-area-inset-bottom, 0px));
  padding: 0 16px env(safe-area-inset-bottom, 0px) 16px;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-subtle);
  z-index: 1040;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
}

@media (min-width: 992px) {
  .mobile-sticky-bar {
    display: none !important;
  }
}

@media (max-width: 991px) {
  body {
    padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }
}

/* Kırmızı "Burrata ile konuşun" Butonu */
.sticky-talk-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--accent-red);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 11px 18px;
  border-radius: 9999px;
  box-shadow: 0 4px 14px rgba(226, 32, 40, 0.32);
  transition: all var(--transition-fast);
  cursor: pointer;
  border: none;
  white-space: nowrap;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.sticky-talk-btn:active {
  background-color: var(--accent-red-hover);
  transform: scale(0.96);
}

.sticky-talk-btn * {
  pointer-events: none;
}

/* Sağdaki İkon Buton Grubu */
.sticky-icons-group {
  display: flex;
  align-items: center;
  gap: 6px;
}

.sticky-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  color: var(--text-heading);
  background: transparent;
  transition: all var(--transition-fast);
  cursor: pointer;
  border: none;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  position: relative;
}

.sticky-icon-btn:active {
  background-color: var(--bg-tertiary);
  color: var(--accent-red);
  transform: scale(0.92);
}

.sticky-icon-btn * {
  pointer-events: none;
}

/* Karartma Katmanı (Overlay) */
.talk-sheet-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1250;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all var(--transition-fast);
}

.talk-sheet-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* ==============================================================================
   "BURRATA İLE KONUŞUN" TAM EKRAN MODAL / SHEET
============================================================================== */
.talk-sheet {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100vw;
  max-width: 100vw;
  height: 100vh;
  height: 100dvh;
  max-height: 100vh;
  max-height: 100dvh;
  background-color: #FFFFFF;
  border-radius: 0;
  z-index: 1300;
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.25);
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  pointer-events: none;
  visibility: hidden;
}

.talk-sheet.open {
  transform: translateY(0);
  pointer-events: auto;
  visibility: visible;
}

.talk-sheet-header {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  padding-top: max(16px, env(safe-area-inset-top));
  border-bottom: 1px solid var(--border-subtle);
  background-color: #FFFFFF;
  z-index: 20;
}

.talk-sheet-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: var(--text-heading);
}

.talk-sheet-title svg {
  color: var(--accent-red);
}

.talk-sheet-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--bg-secondary);
  color: var(--text-heading);
  cursor: pointer;
  touch-action: manipulation;
  transition: background-color var(--transition-fast);
}

.talk-sheet-close:active {
  background-color: var(--bg-tertiary);
  transform: scale(0.95);
}

.talk-sheet-body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 20px 20px 48px;
  padding-bottom: max(48px, calc(env(safe-area-inset-bottom) + 32px));
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .talk-sheet {
    top: auto;
    bottom: 0;
    left: 50%;
    right: auto;
    width: 100%;
    max-width: 580px;
    height: auto;
    max-height: 90vh;
    border-radius: 20px 20px 0 0;
    transform: translate(-50%, 100%);
  }
  .talk-sheet.open {
    transform: translate(-50%, 0);
  }
}

/* Tablar */
.talk-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  background-color: var(--bg-secondary);
  padding: 4px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
}

.talk-tab-btn {
  padding: 10px 12px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  background: transparent;
  border-radius: var(--radius-xs);
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: center;
}

.talk-tab-btn.active {
  background-color: #FFFFFF;
  color: var(--accent-red);
  box-shadow: var(--shadow-subtle);
}

/* Tab İçeriği */
.talk-tab-pane {
  display: none;
}

.talk-tab-pane.active {
  display: block;
}

.talk-form-box {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  margin-bottom: 20px;
}

.talk-form-prompt {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 14px;
}

.talk-radio-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}

.talk-radio-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-main);
  cursor: pointer;
}

.talk-radio-item input[type="radio"] {
  accent-color: var(--accent-red);
  width: 17px;
  height: 17px;
}

.talk-phone-input-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.talk-phone-input {
  flex: 1;
  padding: 12px 14px;
  background-color: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text-heading);
  outline: none;
  transition: border-color var(--transition-fast);
}

.talk-phone-input:focus {
  border-color: var(--accent-red);
}

.talk-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background-color: var(--accent-red);
  color: #FFFFFF;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.talk-submit-btn:active {
  background-color: var(--accent-red-hover);
  transform: scale(0.96);
}

/* Hızlı Bağlantılar Alanı */
.talk-links-box {
  margin-top: 4px;
}

.talk-links-title {
  display: block;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-subtle);
  margin-bottom: 10px;
}

.talk-links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.talk-link-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xs);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-heading);
  transition: all var(--transition-fast);
}

.talk-link-pill:active {
  border-color: var(--accent-red);
  color: var(--accent-red);
  background-color: #FFFFFF;
}

/* ==============================================================================
   ARAMA AÇILIR SHEET PANELİ
============================================================================== */
.search-sheet {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100vw;
  max-height: 85vh;
  background-color: #FFFFFF;
  border-radius: 0 0 20px 20px;
  z-index: 1300;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  transform: translateY(-100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
  box-sizing: border-box;
  padding: 24px 20px 32px;
  pointer-events: none;
  visibility: hidden;
}

.search-sheet.open {
  transform: translateY(0);
  pointer-events: auto;
  visibility: visible;
}

.search-sheet-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.search-sheet-form {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 4px 14px;
}

.search-sheet-form svg {
  color: var(--text-muted);
  flex-shrink: 0;
}

.search-sheet-input {
  flex: 1;
  padding: 10px 0;
  font-size: 14.5px;
  color: var(--text-heading);
  background: transparent;
  border: none;
  outline: none;
}

.search-sheet-submit {
  padding: 6px 12px;
  background-color: var(--accent-red);
  color: #FFFFFF;
  border-radius: var(--radius-xs);
  font-size: 12.5px;
  font-weight: 700;
  border: none;
  cursor: pointer;
}

.search-sheet-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--bg-secondary);
  color: var(--text-heading);
  cursor: pointer;
}

.search-quick-title {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-subtle);
  margin-bottom: 10px;
}

.search-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.search-tag-chip {
  display: inline-block;
  padding: 6px 14px;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-heading);
  transition: all var(--transition-fast);
}

.search-tag-chip:active {
  border-color: var(--accent-red);
  color: var(--accent-red);
  background-color: #FFFFFF;
}

.search-tag-highlight {
  background-color: var(--accent-red-subtle);
  color: var(--accent-red);
  border-color: rgba(226, 32, 40, 0.2);
}

.search-links-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.search-quick-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  background-color: var(--bg-secondary);
  border-radius: var(--radius-xs);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-heading);
  transition: all var(--transition-fast);
}

.search-quick-link:active {
  color: var(--accent-red);
}

/* Canlı Arama Kartları & Yükleniyor Göstergesi */
.search-loading-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 36px 16px;
  gap: 12px;
  color: var(--text-muted);
  font-size: 13.5px;
  font-weight: 500;
}

.search-spinner {
  width: 30px;
  height: 30px;
  border: 3px solid var(--border-light);
  border-top-color: var(--accent-red);
  border-radius: 50%;
  animation: searchSpin 0.75s linear infinite;
}

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

.search-live-results {
  margin-top: 6px;
}

.search-results-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border-subtle);
}

.search-results-count {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-heading);
}

.search-view-all {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-red);
  transition: gap var(--transition-fast);
}

.search-view-all:hover {
  gap: 8px;
}

.search-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
  max-height: 60vh;
  overflow-y: auto;
  padding-right: 4px;
  padding-bottom: 16px;
}

.search-cards-grid .product-card {
  box-shadow: var(--shadow-subtle);
}

.search-cards-grid .card-media {
  height: 170px;
  padding: 16px 12px 10px;
}

.search-cards-grid .card-body {
  padding: 16px;
}

.search-cards-grid .card-title {
  font-size: 15.5px;
  margin-bottom: 8px;
}

.search-cards-grid .card-specs {
  margin-bottom: 12px;
  gap: 6px;
}

@media (max-width: 640px) {
  .search-cards-grid {
    grid-template-columns: 1fr;
    max-height: 56vh;
    gap: 12px;
  }
}

