/* oemyedek.com Modern Automotive Design System */
:root {
  --bg-dark: #0f172a;
  --bg-card-dark: #1e293b;
  --bg-light: #f8fafc;
  --bg-surface: #ffffff;
  --text-main: #0f172a;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --border-color: #e2e8f0;
  
  --primary-blue: #2563eb;
  --primary-blue-hover: #1d4ed8;
  --accent-amber: #f59e0b;
  --accent-emerald: #10b981;
  --accent-rose: #ef4444;
  --accent-indigo: #6366f1;
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

body {
  background-color: var(--bg-light);
  color: var(--text-main);
  line-height: 1.5;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Utilities */
.text-blue { color: var(--primary-blue); }
.text-amber { color: var(--accent-amber); }
.text-emerald { color: var(--accent-emerald); }
.text-muted { color: var(--text-muted); }
.text-uppercase { text-transform: uppercase; }
.hidden { display: none !important; }

/* Announcement Bar */
.announcement-bar {
  background: #0f172a;
  color: #e2e8f0;
  font-size: 0.825rem;
  padding: 8px 0;
  border-bottom: 1px solid #1e293b;
}
.announcement-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-contacts a {
  color: #cbd5e1;
  text-decoration: none;
  margin-right: 15px;
}
.badge-live {
  background: rgba(16, 185, 129, 0.15);
  color: var(--accent-emerald);
  padding: 3px 8px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

/* Header */
.main-header {
  background: #ffffff;
  color: var(--text-main);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid #e2e8f0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary-blue), #1d4ed8);
  color: white;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}
.brand-logo-img {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  object-fit: cover;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease;
}
.logo-group:hover .brand-logo-img {
  transform: scale(1.08) rotate(2deg);
}
.brand-logo-horizontal {
  height: 48px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.logo-group:hover .brand-logo-horizontal {
  transform: translateY(-1px);
  opacity: 0.95;
}
.logo-text {
  display: flex;
  flex-direction: column;
}
.brand-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: -0.5px;
  color: #0f172a;
}
.domain-ext {
  color: var(--accent-amber);
}
.brand-tagline {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Header Search */
.header-search-bar {
  display: flex;
  flex: 1;
  max-width: 480px;
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-full);
  overflow: hidden;
  padding: 3px;
  transition: all 0.2s;
}
.header-search-bar:focus-within {
  background: #ffffff;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}
.header-search-bar input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 8px 16px;
  color: #0f172a;
  font-size: 0.9rem;
}
.header-search-bar input::placeholder {
  color: #94a3b8;
}
.header-search-bar button {
  background: var(--primary-blue);
  color: white;
  border: none;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.header-search-bar button:hover {
  background: var(--primary-blue-hover);
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
}
.btn-primary {
  background: var(--primary-blue);
  color: white;
}
.btn-primary:hover {
  background: var(--primary-blue-hover);
  transform: translateY(-1px);
}
.btn-outline {
  background: #f8fafc;
  color: #0f172a;
  border: 1px solid #cbd5e1;
}
.btn-outline:hover {
  background: #f1f5f9;
  border-color: #94a3b8;
  color: #0f172a;
}
.btn-hero {
  background: linear-gradient(135deg, var(--primary-blue), #1d4ed8);
  color: white;
  padding: 14px 24px;
  font-size: 1rem;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}
.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
}
.btn-emerald {
  background: linear-gradient(135deg, var(--accent-emerald), #047857);
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35);
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #f0f7ff 0%, #e0f2fe 50%, #f8fafc 100%);
  color: var(--text-main);
  padding: 48px 0 60px 0;
  border-bottom: 1px solid #e2e8f0;
}
.hero-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 36px auto;
}
.hero-badge {
  display: inline-block;
  background: #dbeafe;
  color: #1d4ed8;
  border: 1px solid #93c5fd;
  padding: 5px 16px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.hero-header h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 14px;
  color: #0f172a;
}
.highlight-blue {
  color: #2563eb;
}
.hero-subtitle {
  color: #475569;
  font-size: 1.05rem;
  font-weight: 500;
}

/* Search Box Card */
.search-box-card {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.08);
}
.search-tabs {
  display: flex;
  gap: 10px;
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 16px;
  margin-bottom: 24px;
}
.search-tab {
  background: #f1f5f9;
  color: #64748b;
  border: 1px solid #e2e8f0;
  padding: 10px 18px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s;
}
.search-tab:hover {
  color: #0f172a;
  background: #e2e8f0;
}
.search-tab.active {
  background: var(--primary-blue);
  color: white;
  border-color: var(--primary-blue);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}

.search-form-row {
  display: flex;
  gap: 16px;
  align-items: flex-end;
  flex-wrap: wrap;
}
.input-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.input-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #1e293b;
}
.form-control-lg {
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  color: #0f172a;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  outline: none;
  width: 100%;
  font-weight: 500;
  transition: all 0.2s;
}
.form-control-lg:focus {
  background: #ffffff;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.flex-1 { flex: 1; min-width: 180px; }
.flex-2 { flex: 2; min-width: 260px; }
.flex-3 { flex: 3; min-width: 320px; }
.flex-auto { flex: 0 0 auto; }

.quick-tags, .vin-demo-chips {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  font-size: 0.85rem;
  color: #64748b;
  flex-wrap: wrap;
}
.tag-btn, .chip-btn {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1d4ed8;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.tag-btn:hover, .chip-btn:hover {
  border-color: var(--primary-blue);
  color: white;
  background: var(--primary-blue);
}

/* VIN Verification Result Card */
.vin-result-container {
  margin-top: -24px;
  margin-bottom: 24px;
  position: relative;
  z-index: 10;
}
.vin-card {
  background: linear-gradient(135deg, #1e1b4b, #0f172a);
  border: 2px solid var(--accent-indigo);
  border-radius: var(--radius-lg);
  padding: 24px;
  color: white;
  box-shadow: var(--shadow-xl);
}
.vin-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.badge-vin-success {
  background: var(--accent-emerald);
  color: white;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 8px;
}
.vin-card-header h3 {
  font-size: 1.3rem;
  margin-bottom: 4px;
}
.btn-close-vin {
  background: transparent;
  border: none;
  color: #94a3b8;
  font-size: 1.4rem;
  cursor: pointer;
}
.btn-close-vin:hover { color: white; }

/* Main Content */
.main-content {
  padding: 40px 20px;
}

/* Categories Grid */
.categories-section {
  margin-bottom: 40px;
}
.section-title-group {
  margin-bottom: 20px;
}
.section-title-group h2 {
  font-size: 1.4rem;
  font-weight: 800;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}
.category-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-sm);
}
.category-card:hover, .category-card.active {
  border-color: var(--primary-blue);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  background: #f0f6ff;
}
.cat-icon {
  width: 48px;
  height: 48px;
  background: #e0edff;
  color: var(--primary-blue);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto 12px auto;
}
.category-card.active .cat-icon {
  background: var(--primary-blue);
  color: white;
}
.cat-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-main);
}

/* Listings Header */
.listings-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 16px;
}
.listings-title {
  font-size: 1.4rem;
  font-weight: 800;
}
.results-count {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.condition-filter-group {
  display: flex;
  gap: 8px;
}
.filter-pill {
  background: white;
  border: 1px solid var(--border-color);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-pill:hover { background: #f1f5f9; }
.filter-pill.active {
  background: var(--text-main);
  color: white;
  border-color: var(--text-main);
}

/* Parts Grid */
.parts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.part-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}
.part-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: #cbd5e1;
}

.part-image-wrap {
  position: relative;
  height: 200px;
  background: #f1f5f9;
  overflow: hidden;
}
.part-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.part-card:hover .part-image-wrap img {
  transform: scale(1.05);
}

.badge-condition {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}
.badge-SIFIR_OEM {
  background: #dcfce7;
  color: #15803d;
  border: 1px solid #86efac;
}
.badge-MUADIL {
  background: #dbeafe;
  color: #1d4ed8;
  border: 1px solid #93c5fd;
}
.badge-CIKMA_ORIJINAL {
  background: #fef3c7;
  color: #b45309;
  border: 1px solid #fde047;
}

.badge-oem-code {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(4px);
  color: #fbbf24;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-family: monospace;
  font-weight: 700;
  font-size: 0.8rem;
}

.part-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.part-fitment-badge {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary-blue);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}
.part-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 10px;
  color: var(--text-main);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.part-seller-info {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.part-card-footer {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid #f1f5f9;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.part-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-main);
}
.part-price-currency {
  font-size: 0.9rem;
  color: var(--primary-blue);
}

/* Modals */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(6px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.modal-overlay.active {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}
.modal-content {
  background: white;
  border-radius: var(--radius-lg);
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-xl);
}
.modal-md { max-width: 600px; padding: 32px; }
.modal-lg { max-width: 850px; padding: 32px; }

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #f1f5f9;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  font-size: 1.1rem;
  cursor: pointer;
}
.modal-close:hover { background: #e2e8f0; }

.form-group {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
}
.modal-form input, .modal-form select, .modal-form textarea {
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  outline: none;
}
.modal-form input:focus, .modal-form select:focus, .modal-form textarea:focus {
  border-color: var(--primary-blue);
}
.form-row {
  display: flex;
  gap: 16px;
}
.btn-block { width: 100%; justify-content: center; margin-top: 10px; }

/* Footer */
.main-footer {
  background: var(--bg-dark);
  color: #94a3b8;
  padding: 48px 0;
  border-top: 1px solid #1e293b;
  margin-top: 60px;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}
.footer-brand h3 {
  font-family: 'Montserrat', sans-serif;
  color: white;
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.footer-links ul {
  list-style: none;
  margin-top: 12px;
}
.footer-links li {
  margin-bottom: 8px;
}
.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.9rem;
}
.footer-links a:hover { color: white; }

/* Auth Styles & Profile Chip */
.auth-header-area {
  display: flex;
  align-items: center;
  gap: 10px;
}
.user-profile-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #1e293b;
  border: 1px solid #334155;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
}
.user-profile-chip .user-role-badge {
  background: var(--primary-blue);
  color: white;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  text-transform: uppercase;
}
.btn-logout {
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.3);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-logout:hover {
  background: #ef4444;
  color: white;
}

/* Auth Modal Specifics */
.auth-modal-tabs {
  display: flex;
  gap: 10px;
  border-bottom: 2px solid #e2e8f0;
  margin-bottom: 24px;
}
.auth-tab-btn {
  flex: 1;
  background: transparent;
  border: none;
  padding: 12px;
  font-weight: 700;
  font-size: 1rem;
  color: #64748b;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: all 0.2s;
}
.auth-tab-btn.active {
  color: var(--primary-blue);
  border-bottom-color: var(--primary-blue);
}

.auth-notice-banner {
  background: #fffbeb;
  border: 1px solid #fde68a;
  color: #92400e;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.account-type-selector {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}
.account-type-radio {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s;
  background: #f8fafc;
}
.account-type-radio:hover, .account-type-radio.active {
  border-color: var(--primary-blue);
  background: #f0f6ff;
}
.account-type-radio div strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-main);
}
.account-type-radio div small {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.demo-account-box {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  padding: 12px;
  border-radius: var(--radius-md);
  margin: 12px 0 16px 0;
  font-size: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Hero Live Stats Bar */
.hero-stats-bar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 16px;
  background: #ffffff;
  border: 1px solid #bfdbfe;
  border-radius: var(--radius-lg);
  padding: 18px 24px;
  margin-top: 36px;
  flex-wrap: wrap;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.08);
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #334155;
  font-weight: 500;
}
.stat-item i {
  font-size: 1.2rem;
}
.stat-item strong {
  color: #0f172a;
  font-size: 1.05rem;
  font-weight: 800;
}

/* Trust Features Section */
.trust-features-section {
  margin: 60px 0 40px 0;
  padding: 48px 32px;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.text-center { text-align: center; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 36px;
}
.trust-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 24px;
  transition: all 0.25s ease;
}
.trust-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-blue);
  background: white;
}
.trust-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.icon-emerald { background: #dcfce7; color: #16a34a; }
.icon-amber { background: #fef3c7; color: #d97706; }
.icon-blue { background: #dbeafe; color: #2563eb; }
.icon-purple { background: #f3e8ff; color: #9333ea; }

.trust-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-main);
}
.trust-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Featured Vendors Section */
.featured-vendors-section {
  margin: 40px 0 20px 0;
}
.vendors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.vendor-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-sm);
}
.vendor-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: #cbd5e1;
}
.vendor-avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: white;
}
.bg-navy { background: #0f172a; }
.bg-amber { background: #d97706; }
.bg-blue { background: #2563eb; }
.bg-emerald { background: #059669; }

.vendor-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
}
.badge-vendor-role {
  display: inline-block;
  background: #f1f5f9;
  color: #475569;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  margin: 4px 0 6px 0;
}
.badge-vendor-role.vendor-cikma {
  background: #fef3c7;
  color: #b45309;
}
.vendor-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.btn-sm {
  padding: 6px 12px;
  font-size: 0.8rem;
}

/* Vendor Acquisition Banner (Esnaf & Çıkmacı Katılım Reklam Alanı) */
.vendor-acquisition-banner {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 60%, #1d4ed8 100%);
  color: white;
  border-radius: var(--radius-xl);
  padding: 32px 36px;
  margin: 35px 0;
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}
.vendor-acquisition-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.25) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}
.vendor-banner-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  position: relative;
  z-index: 2;
}
.vendor-banner-text {
  max-width: 650px;
}
.badge-gold-offer {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #0f172a;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}
.vendor-banner-text h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.3;
}
.vendor-banner-text p {
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 16px;
}
.vendor-benefits-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.benefit-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: var(--radius-md);
  font-size: 0.825rem;
  font-weight: 600;
  color: #f8fafc;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.benefit-pill i {
  color: #f59e0b;
}

.vendor-banner-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 260px;
}
.btn-cta-gold {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #0f172a !important;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 14px 24px;
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}
.btn-cta-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.6);
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
}
.btn-cta-outline {
  background: rgba(255, 255, 255, 0.15);
  color: white !important;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 10px 18px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}
.btn-cta-outline:hover {
  background: rgba(255, 255, 255, 0.25);
}

.alhazenpdf-branding-box {
  margin: 14px 0 16px 0;
  padding: 12px 16px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}
.alhazenpdf-footer-logo {
  height: 38px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  transition: transform 0.2s ease;
}
.alhazenpdf-footer-logo:hover {
  transform: scale(1.03);
}
.alhazenpdf-tagline {
  font-size: 0.8rem;
  color: #334155;
  font-weight: 600;
}




