/* ==========================================================================
   RAMSET OTOMOTİV - KURUMSAL E-TİCARET ÖZEL STİL DOSYASI (ramset-ecommerce.css)
   Gerçek Otomotiv E-Ticaret Standardı (Referans: otosupermarket.com stili)
   ========================================================================== */

:root {
    --primary-red: #c8102e;
    --primary-red-hover: #a60c24;
    --primary-red-dark: #8b081c;
    --header-top-bg: #222222;
    --dark-text: #1a1a1a;
    --muted-text: #666666;
    --light-bg: #f8f9fa;
    --border-color: #e2e8f0;
    --border-light: #eeeeee;
    --white: #ffffff;
    --success-green: #10b981;
    --accent-gold: #f59e0b;
    --font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', Arial, sans-serif;
}

[x-cloak] { 
    display: none !important; 
}

.campaign-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999999;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 20px;
    box-sizing: border-box;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-family);
    color: var(--dark-text);
    background-color: #f7f8fa;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

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

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

.ramset-container {
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

/* ==========================================
   1. EN ÜST BİLGİLENDİRME ÇUBUĞU (TOP BAR)
   ========================================== */
.top-announcement-bar {
    background-color: var(--header-top-bg);
    color: #cccccc;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 6px 0;
    border-bottom: 1px solid #333333;
}

.top-announcement-bar .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-announcement-bar .highlight {
    color: #ffffff;
    font-weight: 700;
}

.top-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.top-links a:hover {
    color: #ffffff;
}

/* ==========================================
   2. ANA BAŞLIK & ARAMA ALANI (MAIN HEADER)
   ========================================== */
.main-store-header {
    background-color: var(--white);
    padding: 16px 0;
    border-bottom: 1px solid var(--border-light);
    position: relative;
    z-index: 100;
}

.main-store-header .header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

/* Logo */
.brand-logo-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.brand-logo-text {
    font-size: 26px;
    font-weight: 900;
    letter-spacing: -0.5px;
    color: #111111;
    text-transform: uppercase;
    display: flex;
    align-items: baseline;
}

.brand-logo-text span.accent {
    color: var(--primary-red);
}

.brand-logo-text span.dotcom {
    font-size: 13px;
    font-weight: 700;
    color: #666666;
    text-transform: lowercase;
    margin-left: 2px;
}

.brand-logo-sub {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    color: #888888;
    letter-spacing: 1.5px;
    margin-top: -4px;
}

/* Big Search Box */
.header-search-form {
    flex: 1;
    max-width: 620px;
    display: flex;
    border: 2px solid #dddddd;
    border-radius: 6px;
    overflow: hidden;
    background-color: #ffffff;
    transition: border-color 0.2s;
}

.header-search-form:focus-within {
    border-color: var(--primary-red);
}

.header-search-form .search-icon-box {
    display: flex;
    align-items: center;
    padding-left: 14px;
    color: #888888;
}

.header-search-form input {
    flex: 1;
    border: none;
    outline: none;
    padding: 10px 14px;
    font-size: 13px;
    color: #222222;
    background: transparent;
    font-family: inherit;
}

.header-search-form input::placeholder {
    color: #999999;
}

.header-search-form .search-btn {
    background-color: var(--primary-red);
    color: #ffffff;
    border: none;
    padding: 0 24px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.header-search-form .search-btn:hover {
    background-color: var(--primary-red-hover);
}

/* User & Cart Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-action-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #333333;
    padding: 8px 12px;
    border-radius: 6px;
    transition: background-color 0.15s, color 0.15s;
    cursor: pointer;
}

.header-action-btn:hover {
    background-color: #f3f4f6;
    color: var(--primary-red);
}

.header-action-btn .icon {
    font-size: 18px;
}

.header-cart-btn {
    position: relative;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 8px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.header-cart-btn:hover {
    border-color: var(--primary-red);
}

.cart-count-badge {
    position: absolute;
    top: -8px;
    left: 20px;
    background-color: var(--primary-red);
    color: #ffffff;
    font-size: 10px;
    font-weight: 900;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
}

.b2b-portal-badge-btn {
    background-color: #1e293b;
    color: #f8fafc;
    font-size: 12px;
    font-weight: 800;
    padding: 8px 14px;
    border-radius: 6px;
    border: 1px solid #334155;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
}

.b2b-portal-badge-btn:hover {
    background-color: #0f172a;
    border-color: #f59e0b;
    color: #f59e0b;
}

/* ==========================================
   3. MEGA-MENÜ VE KATEGORİ GEZİNTİSİ (AÇILIR PANELLER)
   ========================================== */
.main-navigation-bar {
    background-color: #ffffff;
    border-bottom: 2px solid #e5e7eb;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    position: relative;
    z-index: 90;
}

.nav-menu-list {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2px;
}

.nav-menu-item {
    position: static;
}

.nav-menu-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 14px;
    font-size: 12px;
    font-weight: 800;
    color: #222222;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    transition: all 0.15s;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
}

.nav-menu-item:hover .nav-menu-link,
.nav-menu-item.active .nav-menu-link {
    color: var(--primary-red);
    border-bottom-color: var(--primary-red);
    background-color: #fff9fa;
}

/* MEGA DROPDOWN PANEL */
.mega-dropdown-panel {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 1px solid #eaeaea;
    border-bottom: 3px solid var(--primary-red);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    padding: 30px 0;
    display: none;
    z-index: 1000;
    animation: megaFadeIn 0.2s ease-out;
}

@keyframes megaFadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

.nav-menu-item:hover .mega-dropdown-panel {
    display: block;
}

.mega-brands-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr) 280px;
    gap: 20px;
    align-items: start;
}

.mega-brand-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mega-brand-link {
    font-size: 13px;
    font-weight: 700;
    color: #333333;
    padding: 4px 6px;
    border-radius: 4px;
    transition: color 0.15s, padding-left 0.15s;
}

.mega-brand-link:hover {
    color: var(--primary-red);
    padding-left: 10px;
    background-color: #fff5f5;
}

.mega-badge-card {
    background: #ffffff;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.mega-badge-circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 4px solid var(--primary-red);
    margin: 0 auto 12px;
    overflow: hidden;
    background-color: #fdf2f2;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(200, 16, 46, 0.15);
}

.mega-badge-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Category Mega Dropdown */
.mega-category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr) 260px;
    gap: 25px;
}

.mega-cat-box h4 {
    font-size: 13px;
    font-weight: 900;
    color: var(--primary-red);
    text-transform: uppercase;
    padding-bottom: 8px;
    margin-bottom: 10px;
    border-bottom: 2px solid #fee2e2;
    display: flex;
    align-items: center;
    gap: 6px;
}

.mega-cat-box ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mega-cat-box ul a {
    font-size: 12px;
    font-weight: 600;
    color: #444444;
    transition: color 0.15s;
    display: block;
    padding: 3px 0;
}

/* Kompakt Başlıca Kategoriler Açılır Menüsü */
.relative-menu-item {
    position: relative;
}

.compact-category-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 480px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    padding: 16px;
    display: none;
    z-index: 999;
}

.relative-menu-item:hover .compact-category-dropdown {
    display: block;
}

.compact-dropdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    margin-bottom: 12px;
    border-bottom: 1px solid #f1f5f9;
    font-size: 11px;
    font-weight: 900;
    color: #475569;
}

.compact-dropdown-header a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 800;
}

.compact-category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.compact-cat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.15s ease;
}

.compact-cat-item:hover {
    background: #ffffff;
    border-color: var(--primary-red);
    transform: translateX(2px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.compact-cat-icon {
    font-size: 18px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 4px;
    border: 1px solid #e2e8f0;
    flex-shrink: 0;
}

.compact-cat-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.compact-cat-title {
    font-size: 12px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.compact-cat-count {
    font-size: 10px;
    color: #64748b;
    font-weight: 600;
}

.compact-dropdown-footer {
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid #f1f5f9;
    text-align: center;
}

.compact-dropdown-footer a {
    font-size: 11px;
    font-weight: 800;
    color: var(--primary-red);
    text-decoration: none;
}

/* ==========================================
   4. HERO VE KAMPANYA ALANI
   ========================================== */
.hero-campaign-section {
    padding: 20px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 20px;
}

/* Left Hero Banner */
.hero-main-banner {
    position: relative;
    background: radial-gradient(circle at 80% 50%, #222222 0%, #111111 60%, #0a0a0a 100%);
    border-radius: 12px;
    overflow: hidden;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    border: 1px solid #262626;
}

.hero-banner-tag {
    display: inline-block;
    background-color: var(--primary-red);
    color: #ffffff;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 12px;
    border-radius: 4px;
    margin-bottom: 12px;
    box-shadow: 0 2px 6px rgba(200, 16, 46, 0.4);
}

.hero-main-banner h2 {
    font-size: 32px;
    font-weight: 900;
    line-height: 1.15;
    text-transform: uppercase;
    margin-bottom: 10px;
    text-shadow: 0 2px 6px rgba(0,0,0,0.6);
    color: #ffffff;
}

.hero-main-banner p {
    font-size: 15px;
    color: #e5e5e5;
    max-width: 500px;
    margin-bottom: 20px;
}

.hero-cta-btn {
    align-self: flex-start;
    background-color: var(--primary-red);
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 12px 28px;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(200, 16, 46, 0.4);
    transition: background-color 0.2s, transform 0.1s;
}

.hero-cta-btn:hover {
    background-color: var(--primary-red-hover);
    transform: translateY(-1px);
}

/* Right "Haftanın Fırsatı" Card */
.deal-of-week-card {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    position: relative;
}

.deal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid #eeeeee;
    margin-bottom: 12px;
}

.deal-title {
    font-size: 12px;
    font-weight: 900;
    color: var(--dark-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.deal-badge {
    background-color: var(--primary-red);
    color: #ffffff;
    font-size: 11px;
    font-weight: 900;
    padding: 2px 8px;
    border-radius: 4px;
}

.deal-img-box {
    height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fafafa;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 12px;
}

.deal-img-box img {
    max-height: 100%;
    object-fit: contain;
}

.deal-product-brand {
    font-size: 11px;
    font-weight: 800;
    color: #888888;
    text-transform: uppercase;
}

.deal-product-name {
    font-size: 13px;
    font-weight: 800;
    color: #111111;
    margin: 2px 0 6px;
    line-height: 1.3;
}

.deal-prices {
    margin-top: 6px;
    margin-bottom: 12px;
}

.deal-old-price {
    font-size: 12px;
    color: #999999;
    text-decoration: line-through;
    font-weight: 600;
}

.deal-new-price {
    font-size: 18px;
    font-weight: 900;
    color: var(--primary-red);
}

.deal-buy-btn {
    width: 100%;
    background-color: var(--primary-red);
    color: #ffffff;
    border: none;
    padding: 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.deal-buy-btn:hover {
    background-color: var(--primary-red-hover);
}

/* ==========================================
   5. ARAÇ SEÇİM SİHİRBAZI (KIRMIZI BAR)
   ========================================== */
.vehicle-wizard-bar-container {
    margin-top: 10px;
    margin-bottom: 25px;
}

.vehicle-wizard-bar {
    background-color: var(--primary-red);
    border-radius: 8px;
    padding: 14px 18px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(200, 16, 46, 0.25);
}

.wizard-title-badge {
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: 5px;
    white-space: nowrap;
}

.wizard-select-item {
    flex: 1;
    min-width: 140px;
}

.wizard-select-item select {
    width: 100%;
    background-color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 5px;
    padding: 9px 12px;
    font-size: 12px;
    font-weight: 700;
    color: #333333;
    outline: none;
    cursor: pointer;
    font-family: inherit;
}

.wizard-submit-btn {
    background-color: #111111;
    color: #ffffff;
    border: 1px solid #111111;
    border-radius: 5px;
    padding: 9px 24px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.2s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
}

.wizard-submit-btn:hover {
    background-color: #222222;
}

/* ==========================================
   6. POPÜLER ÜRÜN GRUPLARI & PROMOSYONLAR
   ========================================== */
.section-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.section-title {
    font-size: 18px;
    font-weight: 900;
    color: #111111;
    text-transform: uppercase;
    letter-spacing: -0.3px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-view-all {
    font-size: 12px;
    font-weight: 800;
    color: var(--primary-red);
    text-decoration: none;
}

.section-view-all:hover {
    text-decoration: underline;
}

.home-categories-section {
    margin-bottom: 35px;
}

.popular-cat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.popular-cat-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 0.2s ease;
    cursor: pointer;
    text-decoration: none;
}

.popular-cat-card:hover {
    border-color: var(--primary-red);
    box-shadow: 0 6px 16px rgba(0,0,0,0.06);
    transform: translateY(-2px);
}

.popular-cat-icon {
    width: 44px;
    height: 44px;
    background-color: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.popular-cat-name {
    font-size: 13px;
    font-weight: 800;
    color: #111111;
    margin-bottom: 2px;
}

.popular-cat-count {
    font-size: 11px;
    color: #888888;
    font-weight: 600;
}

/* 3'lü Promosyon Banner'ları */
.promo-banners-section {
    margin-bottom: 35px;
}

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

.promo-card {
    border-radius: 10px;
    padding: 24px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 160px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.2s;
}

.promo-card:hover {
    transform: translateY(-2px);
}

.promo-card-1 {
    background: linear-gradient(135deg, #c8102e 0%, #8b081c 100%);
}

.promo-card-2 {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

.promo-card-3 {
    background: linear-gradient(135deg, #0369a1 0%, #0c4a6e 100%);
}

.promo-tag {
    font-size: 10px;
    font-weight: 900;
    background: rgba(255,255,255,0.2);
    padding: 3px 8px;
    border-radius: 4px;
    display: inline-block;
    width: fit-content;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.promo-title {
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 4px;
    line-height: 1.2;
}

.promo-desc {
    font-size: 12px;
    opacity: 0.9;
    margin-bottom: 14px;
    line-height: 1.4;
}

.promo-btn {
    font-size: 12px;
    font-weight: 800;
    color: #ffffff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(255,255,255,0.2);
    padding: 6px 14px;
    border-radius: 4px;
    width: fit-content;
    transition: background 0.15s;
}

.promo-btn:hover {
    background: rgba(255,255,255,0.35);
}

/* ==========================================
   7. SOLA DOĞRU AKAN ÜRÜN SLIDER / CAROUSEL
   ========================================== */
.product-slider-section {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 22px;
    margin-bottom: 35px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.product-slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f1f5f9;
}

.product-slider-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.slider-arrow-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #0f172a;
    font-size: 16px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.15s;
}

.slider-arrow-btn:hover {
    background: var(--primary-red);
    color: #ffffff;
    border-color: var(--primary-red);
}

.product-slider-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 4px 2px 14px;
    -webkit-overflow-scrolling: touch;
}

.product-slider-track::-webkit-scrollbar {
    display: none;
}

.product-slider-card {
    min-width: 220px;
    max-width: 230px;
    flex: 0 0 auto;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.2s;
    position: relative;
}

.product-slider-card:hover {
    border-color: var(--primary-red);
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

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

.product-card {
    background-color: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.2s;
    position: relative;
}

.product-card:hover {
    border-color: var(--primary-red);
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.product-discount-pill {
    position: absolute;
    top: 8px;
    left: 8px;
    background-color: var(--primary-red);
    color: #ffffff;
    font-size: 10px;
    font-weight: 900;
    padding: 2px 6px;
    border-radius: 3px;
    z-index: 2;
}

.product-img-box {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fafafa;
    border-radius: 6px;
    margin-bottom: 10px;
    padding: 8px;
    overflow: hidden;
}

.product-img-box img {
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.2s;
}

.product-card:hover .product-img-box img {
    transform: scale(1.05);
}

.product-code-meta {
    font-size: 10px;
    font-weight: 800;
    color: #888888;
    text-transform: uppercase;
}

.product-name-title {
    font-size: 12px;
    font-weight: 700;
    color: #111111;
    margin: 4px 0 8px;
    line-height: 1.35;
    height: 34px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-price-block {
    margin-top: auto;
    padding-top: 8px;
    border-top: 1px solid #f0f0f0;
}

.product-main-price {
    font-size: 15px;
    font-weight: 900;
    color: var(--primary-red);
}

.product-vat-info {
    font-size: 9px;
    color: #888888;
    font-weight: 600;
}

.product-quick-add-btn {
    width: 100%;
    margin-top: 8px;
    background-color: #ffffff;
    border: 1px solid var(--primary-red);
    color: var(--primary-red);
    padding: 6px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.product-quick-add-btn:hover {
    background-color: var(--primary-red);
    color: #ffffff;
}

/* ==========================================
   8. POPÜLER ARAÇ MARKALARI LOGOLARI
   ========================================== */
.brand-logos-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    margin-bottom: 30px;
}

.brand-logo-card {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 16px 12px;
    text-align: center;
    transition: all 0.2s;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.brand-logo-card:hover {
    border-color: var(--primary-red);
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
    transform: translateY(-2px);
}

.brand-icon-emblem {
    font-size: 26px;
}

.brand-name-text {
    font-size: 12px;
    font-weight: 900;
    color: #222222;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.brand-sub-text {
    font-size: 10px;
    color: #888888;
    font-weight: 600;
}

/* ==========================================
   9. GÜVEN VE HİZMET ROZETLERİ (TRUST BAR)
   ========================================== */
.trust-badges-bar {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    margin-bottom: 30px;
    text-align: center;
}

.trust-badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.trust-badge-icon {
    font-size: 26px;
    color: var(--primary-red);
}

.trust-badge-title {
    font-size: 12px;
    font-weight: 800;
    color: #111111;
}

.trust-badge-desc {
    font-size: 10px;
    color: #777777;
}

/* ==========================================
   10. ŞASİ DOĞRULAMA & DESTEK BANNERI
   ========================================== */
.chassis-support-banner {
    background: linear-gradient(135deg, #a60c24 0%, #c8102e 50%, #8b081c 100%);
    border-radius: 10px;
    padding: 30px 40px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-bottom: 35px;
    box-shadow: 0 6px 20px rgba(200, 16, 46, 0.25);
}

.chassis-support-info h3 {
    font-size: 22px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.chassis-support-info p {
    font-size: 13px;
    color: #ffe4e6;
    max-width: 600px;
}

.whatsapp-chassis-btn {
    background-color: #25d366;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.35);
    white-space: nowrap;
    transition: background-color 0.2s, transform 0.1s;
}

.whatsapp-chassis-btn:hover {
    background-color: #20ba5a;
    transform: translateY(-1px);
}

/* ==========================================
   11. FOOTER (KURUMSAL ALT BİLGİ ALANI)
   ========================================== */
.main-store-footer {
    background-color: #222222;
    color: #aaaaaa;
    font-size: 12px;
    padding-top: 40px;
    padding-bottom: 20px;
    border-top: 4px solid var(--primary-red);
}

.newsletter-subscribe-bar {
    background-color: #2c2c2c;
    border-radius: 8px;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
}

.newsletter-text h4 {
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
}

.newsletter-text p {
    color: #999999;
    font-size: 11px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
    max-width: 450px;
    width: 100%;
}

.newsletter-form input {
    flex: 1;
    background-color: #1a1a1a;
    border: 1px solid #444444;
    border-radius: 4px;
    padding: 8px 14px;
    color: #ffffff;
    font-size: 12px;
    outline: none;
}

.newsletter-form button {
    background-color: var(--primary-red);
    color: #ffffff;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
    cursor: pointer;
}

.footer-columns-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 35px;
}

.footer-col h5 {
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 14px;
    padding-bottom: 6px;
    border-bottom: 2px solid #333333;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col ul a {
    color: #999999;
    transition: color 0.15s;
}

.footer-col ul a:hover {
    color: #ffffff;
}

.footer-bottom-row {
    border-top: 1px solid #333333;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    color: #777777;
}

/* ==========================================
   RESPONSIVE UYUMLULUK (MEDIA QUERIES)
   ========================================= */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
    .deal-of-week-card {
        display: none;
    }
    .popular-groups-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .products-grid-6 {
        grid-template-columns: repeat(3, 1fr);
    }
    .brand-logos-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .trust-badges-bar {
        grid-template-columns: repeat(3, 1fr);
    }
    .footer-columns-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .mega-brands-grid,
    .mega-category-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .mega-badge-card {
        display: none;
    }
}

@media (max-width: 768px) {
    .main-store-header .header-row {
        flex-direction: column;
        align-items: stretch;
    }
    .vehicle-wizard-bar {
        flex-direction: column;
        align-items: stretch;
    }
    .products-grid-6 {
        grid-template-columns: repeat(2, 1fr);
    }
    .brand-logos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .trust-badges-bar {
        grid-template-columns: repeat(2, 1fr);
    }
    .newsletter-subscribe-bar {
        flex-direction: column;
        align-items: stretch;
    }
    .chassis-support-banner {
        flex-direction: column;
        text-align: center;
    }
    .mega-dropdown-panel {
        position: static;
        box-shadow: none;
        padding: 15px;
    }
}

/* ==========================================
   12. KATALOG & KATEGORİ DÜZENİ
   ========================================== */
.catalog-layout {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    margin-bottom: 40px;
}

.catalog-sidebar {
    width: 270px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: sticky;
    top: 20px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 transparent;
}

.catalog-sidebar::-webkit-scrollbar {
    width: 5px;
}

.catalog-sidebar::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

.catalog-main {
    flex: 1;
    min-width: 0;
}

.sidebar-filter-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 16px;
}

.sidebar-filter-title {
    font-size: 13px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 8px;
}

.sidebar-cat-list {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.sidebar-cat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #334155;
    text-decoration: none;
    transition: all 0.15s;
}

.sidebar-cat-item:hover {
    background: #f8fafc;
    color: var(--primary-red);
}

.sidebar-cat-item.active {
    background: #fef2f2;
    color: var(--primary-red);
    font-weight: 800;
}

.sidebar-cat-count {
    font-size: 11px;
    background: #f1f5f9;
    color: #64748b;
    padding: 2px 6px;
    border-radius: 10px;
}

.catalog-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px 18px;
    margin-bottom: 20px;
}

.catalog-results-info {
    font-size: 13px;
    color: #64748b;
    font-weight: 600;
}

.catalog-sort-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    color: #334155;
}

.catalog-sort-select {
    padding: 6px 12px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    color: #0f172a;
    outline: none;
    background: #ffffff;
}

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

.product-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.2s;
}

.product-box:hover {
    border-color: var(--primary-red);
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.product-brand-tag {
    font-size: 10px;
    font-weight: 900;
    color: var(--primary-red);
    text-transform: uppercase;
}

.product-sku-code {
    font-size: 11px;
    font-weight: 700;
    color: #64748b;
    font-family: var(--font-mono);
    margin-bottom: 6px;
}

.product-img-wrapper {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    border-radius: 6px;
    padding: 10px;
    margin-bottom: 10px;
    overflow: hidden;
}

.product-img-wrapper img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.product-category-name {
    font-size: 10px;
    color: #94a3b8;
    font-weight: 700;
    text-transform: uppercase;
}

.product-title {
    font-size: 13px;
    font-weight: 700;
    color: #1e293b;
    margin: 4px 0 10px 0;
    line-height: 1.4;
    height: 38px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-title a {
    color: inherit;
    text-decoration: none;
}

.product-title a:hover {
    color: var(--primary-red);
}

.product-price-row {
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid #f1f5f9;
    margin-bottom: 10px;
}

.product-net-price {
    font-size: 17px;
    font-weight: 900;
    color: var(--primary-red);
}

.product-action-row {
    display: flex;
    gap: 8px;
    align-items: center;
}

.stepper-box {
    display: flex;
    align-items: center;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    overflow: hidden;
    height: 36px;
}

.stepper-btn {
    background: #f8fafc;
    border: none;
    width: 28px;
    height: 100%;
    font-size: 14px;
    font-weight: 800;
    color: #334155;
    cursor: pointer;
}

.stepper-btn:hover {
    background: #e2e8f0;
}

.stepper-input {
    width: 36px;
    height: 100%;
    border: none;
    text-align: center;
    font-size: 12px;
    font-weight: 800;
    outline: none;
}

.btn-add-cart {
    flex: 1;
    height: 36px;
    background: var(--primary-red);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    transition: background 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.btn-add-cart:hover {
    background: var(--primary-red-hover);
}

@media (max-width: 1024px) {
    .catalog-layout {
        flex-direction: column;
    }
    .catalog-sidebar {
        width: 100%;
    }
    .catalog-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .catalog-products-grid {
        grid-template-columns: 1fr;
    }
    .catalog-toolbar {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
}

/* ==========================================
   13. BANKA HESAPLARI LİSTE SAYFASI (PUBLIC)
   ========================================== */
.bank-accounts-wrap {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.03);
    margin-bottom: 30px;
}

.bank-table-head {
    display: grid;
    grid-template-columns: 240px 1.2fr 1.6fr 160px;
    align-items: center;
    gap: 20px;
    padding: 16px 24px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    font-size: 11px;
    font-weight: 800;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bank-row-item {
    display: grid;
    grid-template-columns: 240px 1.2fr 1.6fr 160px;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    border-bottom: 1px solid #f1f5f9;
    transition: background-color 0.15s ease;
}

.bank-row-item:last-child {
    border-bottom: none;
}

.bank-row-item:hover {
    background-color: #fbfcfe;
}

.bank-name-col {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bank-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.bank-title-text {
    font-size: 15px;
    font-weight: 900;
    color: #0f172a;
    line-height: 1.2;
}

.bank-curr-badge {
    display: inline-block;
    padding: 2px 7px;
    background: #f1f5f9;
    color: #475569;
    font-size: 10px;
    font-weight: 800;
    border-radius: 4px;
    margin-top: 4px;
}

.bank-holder-col .holder-name {
    font-size: 13px;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.4;
}

.bank-holder-col .branch-info {
    font-size: 11px;
    color: #64748b;
    margin-top: 3px;
}

.bank-iban-box {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 14px;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: 0.5px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 9px 14px;
    border-radius: 8px;
    display: inline-block;
    width: 100%;
    max-width: 380px;
    box-sizing: border-box;
    word-break: break-all;
}

.bank-copy-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    background: #c8102e;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
    box-shadow: 0 2px 6px rgba(200, 16, 46, 0.25);
    width: 100%;
}

.bank-copy-button:hover {
    background: #a50d24;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(200, 16, 46, 0.35);
}

.bank-copy-button.is-copied {
    background: #10b981 !important;
    box-shadow: 0 2px 6px rgba(16, 185, 129, 0.3) !important;
}

@media (max-width: 960px) {
    .bank-table-head {
        display: none;
    }
    .bank-row-item {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 18px 20px;
    }
    .bank-copy-button {
        width: auto;
    }
}

/* ==========================================
   14. İLETİŞİM & ŞUBELERİMİZ SAYFASI
   ========================================== */
.contact-layout-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-card-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 26px 30px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.03);
}

.contact-quick-pill {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s;
}

.contact-quick-pill:hover {
    border-color: var(--primary-red);
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transform: translateY(-1px);
}

.contact-icon-bubble {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #fee2e2;
    color: #c8102e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.branch-item-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
    transition: border-color 0.2s;
}

.branch-item-box:hover {
    border-color: #cbd5e1;
}

.contact-form-input {
    width: 100%;
    padding: 11px 14px;
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 13px;
    color: #0f172a;
    outline: none;
    transition: border-color 0.2s, background-color 0.2s;
    box-sizing: border-box;
}

.contact-form-input:focus {
    border-color: var(--primary-red);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.1);
}

@media (max-width: 960px) {
    .contact-layout-grid {
        grid-template-columns: 1fr;
    }
}



