/**
 * Imza BMW - Custom CSS
 * BMW Mavisi Tema ve Ozel Stiller
 */

/* ===== CSS Variables - BMW Mavi Teması ===== */
:root {
    /* BMW Mavi Ana Renkler */
    --bmw-blue: #0066B1;
    --bmw-blue-dark: #004d8a;
    --bmw-blue-light: #E8F4FC;
    --bmw-blue-bright: #0088CC;
    
    /* Ana Mavi Tonları - BMW Standardı */
    --primary-color: #0066B1;
    --primary-dark: #004d8a;
    --primary-light: #E8F4FC;
    --primary-bright: #0088CC;

    /* Accent - Altın/ Premium */
    --accent-color: #0066B1;
    --accent-dark: #004d8a;
    --accent-light: #E8F4FC;

    /* WhatsApp (korunuyor) */
    --whatsapp-green: #25D366;
    --whatsapp-hover: #20ba5c;

    /* Metin Renkleri */
    --text-dark: #0a0a0a;
    --text-light: #6B7280;
    --text-muted: #9CA3AF;

    /* Arka Plan & Border */
    --border-color: #E5E5E5;
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;
    
    /* Fonksiyonel Renkler */
    --success: #0066B1;
    --warning: #0066B1;
    --error: #EF4444;
    --info: #0066B1;
}

/* ===== Theme Button Override ===== */
.theme-btn {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #ffffff !important;
}

.theme-btn:hover {
    background-color: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
    color: #ffffff !important;
}

/* Son Eklenen Ürünler - Detay Butonu */
.top-ratting-box-items .shop-btn .theme-btn {
    background-color: var(--accent-color) !important;
    border-color: var(--primary-color) !important;
    color: #ffffff !important;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 14px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-shadow: none;
}

.top-ratting-box-items .shop-btn .theme-btn:hover {
    background-color: var(--accent-dark) !important;
    border-color: var(--accent-dark) !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.4);
}

.top-ratting-box-items .shop-btn .theme-btn i {
    color: #ffffff !important;
    font-size: 14px;
}

.theme-btn.style-2 {
    background-color: var(--whatsapp-green) !important;
    border-color: var(--whatsapp-green) !important;
}

.theme-btn.style-2:hover {
    background-color: var(--whatsapp-hover) !important;
    border-color: var(--whatsapp-hover) !important;
}

.theme-btn.style-white {
    background-color: #ffffff !important;
    border-color: #ffffff !important;
    color: var(--primary-color) !important;
}

.theme-btn.style-white:hover {
    background-color: var(--primary-light) !important;
    border-color: var(--primary-light) !important;
}

.theme-btn.style-whatsapp {
    background-color: var(--whatsapp-green) !important;
    border-color: var(--whatsapp-green) !important;
}

.theme-btn.style-whatsapp:hover {
    background-color: var(--whatsapp-hover) !important;
}

.theme-btn.transparent-btn {
    background: transparent !important;
    border: 2px solid var(--primary-color) !important;
    color: var(--primary-color) !important;
}

.theme-btn.transparent-btn:hover {
    background-color: var(--primary-color) !important;
    color: #ffffff !important;
}

/* ===== MODERN HEADER STYLES - Kupon BMW Style ===== */

/* Global Font */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ========== TOPBAR ========== */
.topbar-modern {
    background: var(--bmw-blue-dark);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Hide topbar on mobile - clean look */
@media (max-width: 767px) {
    .topbar-modern {
        display: none;
    }
}

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

.topbar-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.topbar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.topbar-item:hover {
    color: #ffffff;
}

.topbar-item i {
    font-size: 12px;
    color: var(--primary-color);
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.topbar-social {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    font-size: 12px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.topbar-social:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateY(-2px);
}

.topbar-social.whatsapp:hover {
    background: var(--whatsapp-green);
}

/* ========== MAIN HEADER ========== */
.header-modern {
    background: #ffffff;
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-modern.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* Logo */
.header-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.header-logo .logo-img {
    max-height: 80px;
    width: auto;
    min-width: 140px;
    object-fit: contain;
}

@media (max-width: 767px) {
    .header-logo .logo-img {
        max-height: 65px !important;
        min-width: 110px !important;
    }
}

/* Professional Text Logo - Header - ENLARGED */
.logo-text-styled {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo-text-styled .logo-icon {
    width: 70px;
    height: 70px;
    background: var(--bmw-blue);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 32px;
    box-shadow: 0 4px 20px rgba(0, 102, 177, 0.35);
    transition: all 0.3s ease;
}

.header-logo:hover .logo-icon {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(0, 102, 177, 0.45);
}

.logo-text-styled .logo-words {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.logo-text-styled .logo-imza {
    font-size: 36px;
    font-weight: 800;
    color: var(--bmw-blue);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.logo-text-styled .logo-bmw {
    font-size: 20px;
    font-weight: 600;
    color: var(--bmw-blue-dark);
    letter-spacing: 6px;
    text-transform: uppercase;
}

/* Footer version - white text */
.logo-text-styled.footer-version .logo-icon {
    background: #fff;
    color: var(--primary-color);
}

.logo-text-styled.footer-version .logo-imza {
    color: #fff;
}

.logo-text-styled.footer-version .logo-bmw {
    color: rgba(255, 255, 255, 0.8);
}

/* Legacy support */
.logo-text-modern {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

/* Navigation */
.header-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.nav-link i {
    font-size: 10px;
    transition: transform 0.2s ease;
}

.nav-item:hover .nav-link,
.nav-item.active .nav-link {
    color: var(--primary-color);
    background: var(--primary-light);
}

.nav-item:hover .nav-link i {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu-modern {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    list-style: none;
    margin: 0;
    z-index: 1001;
}

.nav-item:hover .dropdown-menu-modern {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu-modern li a {
    display: block;
    padding: 10px 20px;
    color: var(--text-dark);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.dropdown-menu-modern li a:hover {
    background: var(--primary-light);
    color: var(--primary-color);
    padding-left: 24px;
}

.dropdown-menu-modern .dropdown-divider {
    height: 1px;
    background: var(--border-color);
    margin: 8px 0;
}

.dropdown-menu-modern .view-all {
    color: var(--primary-color);
    font-weight: 600;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Kompakt Arama */
.search-compact {
    position: relative;
}

.search-form-compact {
    display: flex;
    align-items: center;
}

.search-input-compact {
    width: 160px;
    height: 38px;
    padding: 0 40px 0 14px;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 13px;
    background: var(--bg-light);
    transition: all 0.2s ease;
}

.search-input-compact:focus {
    width: 200px;
    border-color: var(--primary-color);
    background: #ffffff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.search-btn-compact {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    border: none;
    background: var(--primary-color);
    color: #ffffff;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s ease;
}

.search-btn-compact:hover {
    background: var(--primary-dark);
}

/* Kompakt Kategori Dropdown */
.category-dropdown-compact {
    position: relative;
}

.category-select-compact {
    height: 38px;
    padding: 0 14px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 13px;
    color: var(--text-dark);
    background: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.category-select-compact:focus {
    border-color: var(--primary-color);
    outline: none;
}

/* Header WhatsApp Button */
.header-whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--whatsapp-green);
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 20px;
    transition: all 0.2s ease;
}

.header-whatsapp-btn:hover {
    background: var(--whatsapp-hover);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.header-whatsapp-btn i {
    font-size: 16px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.2s ease;
}

.mobile-menu-toggle:hover .hamburger-line {
    background: var(--primary-color);
}

/* Mobile Nav List */
.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: var(--primary-light);
    color: var(--primary-color);
}

.mobile-nav-link i {
    width: 20px;
    color: var(--text-light);
}

.mobile-nav-link:hover i,
.mobile-nav-link.active i {
    color: var(--primary-color);
}

/* Old Header Styles - Keep for compatibility */
.header-1 {
    display: none;
}

.header-top-1 {
    display: none;
}

.header-logo img {
    max-height: 70px;
    width: auto;
}

.logo-text,
.logo-text-white {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.logo-text-white {
    color: #ffffff;
}

.footer-logo-text {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
}

/* ===== Navigation ===== */
.main-menu nav ul li a {
    color: var(--text-dark);
    font-weight: 500;
}

.main-menu nav ul li a:hover,
.main-menu nav ul li.active > a {
    color: var(--primary-color);
}

.main-menu nav ul li ul.submenu li a:hover {
    color: var(--primary-color);
}

/* ===== Feature Section ===== */
.feature-wrapper {
    background-color: #f8f9fa;
}

.feature-wrapper .feature-box-items .icon {
    background-color: var(--primary-color) !important;
    color: #ffffff !important;
}

.feature-wrapper .feature-box-items .icon i {
    color: #ffffff !important;
}

.feature-wrapper .feature-box-items .content h3 {
    color: var(--text-dark);
}

.feature-wrapper .feature-box-items .content p {
    color: var(--text-light);
}

/* ===== Category Items ===== */
.book-catagories-items {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.book-catagories-items:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 102, 177, 0.15);
}

.book-catagories-items .icon {
    color: var(--primary-color);
}

.book-catagories-items .arrow {
    color: var(--primary-color);
}

/* ===== Shop Box Items ===== */
.shop-box-items {
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.shop-box-items:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 102, 177, 0.1);
}

.shop-box-items .post-box li {
    background-color: var(--primary-color);
}

.shop-box-items .shop-icon li a {
    background-color: var(--primary-color);
}

.shop-box-items .shop-icon li a:hover {
    background-color: var(--primary-dark);
}

/* ===== Top Rating Box ===== */
.top-ratting-box-items {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.top-ratting-box-items:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 102, 177, 0.1);
}

/* ===== Counter Section ===== */
.counter-items h2 {
    color: var(--primary-color);
}

/* ===== CTA Section ===== */
.cta-banner-wrapper {
    border-radius: 20px;
    overflow: hidden;
}

.cta-wrapper {
    background-color: var(--primary-light);
    padding: 60px 40px;
    border-radius: 20px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== Footer ===== */
.footer-section {
    background-color: #0a0a0a;
}

.footer-section .contact-info-items .icon {
    background-color: var(--primary-color);
}

.footer-section .social-icon a {
    background-color: var(--primary-color);
}

.footer-section .social-icon a:hover {
    background-color: var(--primary-dark);
}

/* ===== WhatsApp Float Button ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--whatsapp-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: var(--whatsapp-hover);
    color: #ffffff;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-float i {
    line-height: 1;
}

/* ===== Minimalist Hero Section - Açık Mavi + Beyaz ===== */
.hero-minimalist {
    background: #0066B1;
    min-height: 500px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.hero-minimalist::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 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");
    opacity: 0.5;
}

.hero-minimalist .hero-content-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-minimalist .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 24px;
    border-radius: 50px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-minimalist .hero-badge i {
    color: #25D366;
}

.hero-minimalist .hero-title {
    font-size: 56px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 24px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-minimalist .hero-title span {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.hero-minimalist .hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-minimalist .hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-minimalist .hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-minimalist .hero-btn-primary {
    background: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.3);
}

.hero-minimalist .hero-btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(14, 165, 233, 0.4);
    color: #ffffff;
}

.hero-minimalist .hero-btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.hero-minimalist .hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateY(-3px);
    color: #ffffff;
}

.hero-minimalist .hero-btn-whatsapp {
    background: #25D366;
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.hero-minimalist .hero-btn-whatsapp:hover {
    background: #20ba5c;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
    color: #ffffff;
}

/* Floating shapes for visual interest */
.hero-minimalist .hero-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.hero-minimalist .hero-shape-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -100px;
}

.hero-minimalist .hero-shape-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -100px;
}

.hero-minimalist .hero-shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
}

/* Stats bar under hero */
.hero-minimalist .hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-minimalist .stat-item {
    text-align: center;
}

.hero-minimalist .stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    display: block;
}

.hero-minimalist .stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-minimalist {
        min-height: 450px;
        padding: 60px 0;
    }

    .hero-minimalist .hero-title {
        font-size: 40px;
    }

    .hero-minimalist .hero-description {
        font-size: 16px;
    }

    .hero-minimalist .hero-stats {
        gap: 30px;
    }

    .hero-minimalist .stat-number {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .hero-minimalist {
        min-height: 400px;
        padding: 50px 0;
    }

    .hero-minimalist .hero-title {
        font-size: 32px;
    }

    .hero-minimalist .hero-badge {
        font-size: 12px;
        padding: 8px 16px;
    }

    .hero-minimalist .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-minimalist .hero-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .hero-minimalist .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .hero-minimalist .stat-item {
        flex: 1 1 45%;
    }
}

/* ===== Back to Top ===== */
.back-to-top {
    background-color: var(--primary-color);
}

.back-to-top:hover {
    background-color: var(--primary-dark);
}

/* ===== Section Title ===== */
.section-title .sub-content {
    color: var(--primary-color);
}

/* ===== Offcanvas Menu ===== */
.offcanvas__info {
    background-color: var(--text-dark);
}

.offcanvas__contact h4 {
    color: #ffffff;
}

.offcanvas__contact ul li .offcanvas__contact-icon {
    color: var(--primary-color);
}

/* ===== Search Box ===== */
.search-toggle-box .input-area {
    border: 1px solid var(--border-color);
    background-color: #f9fafb;
}

.search-toggle-box .cmn-btn {
    background-color: var(--primary-color);
}

.search-toggle-box .cmn-btn:hover {
    background-color: var(--primary-dark);
}

/* ===== Cart Icon ===== */
.menu-cart .cart-icon {
    color: var(--primary-color);
    font-size: 20px;
}

.menu-cart .cart-icon:hover {
    color: var(--primary-dark);
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
    .header-logo img {
        max-height: 70px;
        min-width: 100px;
    }
    
    .logo-text-styled .logo-icon {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }
    
    .logo-text-styled .logo-imza {
        font-size: 28px;
    }
    
    .logo-text-styled .logo-bmw {
        font-size: 16px;
        letter-spacing: 4px;
    }

    .hero-slider .swiper-slide img {
        height: 300px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }

    .cta-wrapper {
        padding: 40px 20px;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .cta-buttons {
        flex-direction: column;
    }
    
    /* Mobile Logo Adjustments */
    .header-logo img {
        max-height: 55px;
        min-width: 80px;
    }
    
    .logo-text-styled {
        gap: 10px;
    }
    
    .logo-text-styled .logo-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
        border-radius: 12px;
    }
    
    .logo-text-styled .logo-imza {
        font-size: 22px;
        letter-spacing: 2px;
    }
    
    .logo-text-styled .logo-bmw {
        font-size: 13px;
        letter-spacing: 3px;
    }

    .cta-buttons .theme-btn {
        width: 100%;
    }
}

/* ===== Swiper Pagination ===== */
.swiper-pagination-bullet {
    background-color: var(--primary-color);
}

.swiper-pagination-bullet-active {
    background-color: var(--primary-dark);
}

/* ===== Shop Details Page ===== */
.shop-details-section .cart-wrapper {
    margin: 25px 0;
}

.shop-details-section .whatsapp-btn {
    background-color: var(--whatsapp-green) !important;
    border-color: var(--whatsapp-green) !important;
    color: #ffffff !important;
    padding: 16px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.shop-details-section .whatsapp-btn:hover {
    background-color: var(--whatsapp-hover) !important;
    border-color: var(--whatsapp-hover) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
}

.shop-details-section .whatsapp-btn i {
    font-size: 20px;
}

.shop-details-section .title-wrapper h5 {
    color: #0066B1;
    font-weight: 500;
    font-size: 14px;
    margin-top: 8px;
}

.shop-details-section .check-list ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.shop-details-section .check-list ul li i {
    color: var(--whatsapp-green);
    font-size: 14px;
}

.shop-details-section .category-list ul li span {
    font-weight: 600;
    color: var(--text-dark);
}

.shop-details-section .category-list ul li a {
    color: var(--primary-color);
}

.shop-details-section .category-list ul li a:hover {
    text-decoration: underline;
}

/* Single Tab Styles */
.single-tab .nav .nav-link {
    color: var(--text-light);
    border-bottom: 2px solid transparent;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.single-tab .nav .nav-link.active,
.single-tab .nav .nav-link:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.single-tab .nav .nav-link h6 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

/* Related Products Style */
.top-ratting-book-section .shop-box-items.style-2 .shop-button .theme-btn {
    background-color: var(--primary-color) !important;
}

.top-ratting-book-section .shop-box-items.style-2 .shop-button .theme-btn:hover {
    background-color: var(--primary-dark) !important;
}

/* ===== KUPON BMW STYLE ADDITIONS ===== */

/* ===== Product Card Enhanced Hover ===== */
.product-card,
.shop-box-items {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-card:hover,
.shop-box-items:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 102, 177, 0.18);
}

/* ===== Discount Badge System ===== */
.discount-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #0a0a0a;
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.discount-badge.green {
    background: #0066B1;
    box-shadow: 0 2px 8px rgba(0, 102, 177, 0.4);
}

.discount-badge.blue {
    background: #1976d2;
    box-shadow: 0 2px 8px rgba(25, 118, 210, 0.4);
}

/* New Badge */
.new-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #0066B1;
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
}

/* ===== Price Styling ===== */
.price-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.price-old {
    text-decoration: line-through;
    color: #9CA3AF999;
    font-size: 14px;
    font-weight: 400;
}

.price-new,
.price-current {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 700;
}

.price-discount-text {
    background: #E8F4FC;
    color: #004d8a;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

/* ===== Section Titles Enhanced ===== */
.section-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
}

.section-title-wrapper h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-title-wrapper h2::before {
    content: '';
    width: 4px;
    height: 24px;
    background: var(--primary-color);
    border-radius: 2px;
}

.section-title-wrapper .view-all {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.section-title-wrapper .view-all:hover {
    color: var(--primary-dark);
    gap: 10px;
}

/* ===== Product Grid Layout ===== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 1200px) {
    .product-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 992px) {
    .product-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

/* ===== Skeleton Loading ===== */
.skeleton {
    background: #f0f0f0;
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 8px;
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.skeleton-card {
    height: 320px;
    border-radius: 12px;
}

.skeleton-image {
    height: 200px;
    border-radius: 8px 8px 0 0;
}

.skeleton-text {
    height: 16px;
    margin: 12px;
    border-radius: 4px;
}

.skeleton-text.short {
    width: 60%;
}

.skeleton-price {
    height: 24px;
    width: 40%;
    margin: 12px;
    border-radius: 4px;
}

/* ===== Lazy Loading ===== */
.lazyload {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lazyload.loaded {
    opacity: 1;
}

img[loading="lazy"] {
    background: var(--bg-light);
}

/* ===== Category Cards Enhanced ===== */
.category-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.category-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(14, 165, 233, 0.15);
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-card .icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.category-card:hover .icon {
    background: var(--primary-color);
}

.category-card .icon i {
    font-size: 32px;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.category-card:hover .icon i {
    color: #ffffff;
}

.category-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.category-card .count {
    font-size: 14px;
    color: var(--text-light);
}

/* ===== Product Section Tabs ===== */
.product-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.product-tabs .tab-btn {
    padding: 10px 24px;
    background: transparent;
    border: 2px solid var(--border-color);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-tabs .tab-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.product-tabs .tab-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
}

/* ===== Quick View Button ===== */
.quick-view-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 5;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.product-card:hover .quick-view-btn,
.shop-box-items:hover .quick-view-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

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

/* ===== Mega Menu ===== */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    padding: 32px;
    display: none;
    z-index: 1000;
    border-top: 3px solid var(--primary-color);
}

.nav-item:hover .mega-menu {
    display: block;
    animation: fadeInDown 0.3s ease;
}

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

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.mega-menu-column h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--primary-color);
}

.mega-menu-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu-column ul li {
    margin-bottom: 10px;
}

.mega-menu-column ul li a {
    color: var(--text-light);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mega-menu-column ul li a:hover {
    color: var(--primary-color);
    padding-left: 8px;
}

.mega-menu-column ul li a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 10px;
    color: var(--primary-color);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.mega-menu-column ul li a:hover::before {
    opacity: 1;
}

/* ===== Scroll to Top Enhanced ===== */
.scroll-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 102, 177, 0.3);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-4px);
}

/* ===== Breadcrumb Enhanced ===== */
.breadcrumb-wrapper {
    background: var(--bg-light);
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb-wrapper .breadcrumb {
    margin: 0;
    padding: 0;
    background: transparent;
}

.breadcrumb-wrapper .breadcrumb-item {
    font-size: 14px;
}

.breadcrumb-wrapper .breadcrumb-item a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-wrapper .breadcrumb-item a:hover {
    color: var(--primary-color);
}

.breadcrumb-wrapper .breadcrumb-item.active {
    color: var(--text-dark);
    font-weight: 500;
}

/* ===== Loading Spinner ===== */
.loading-spinner {
    display: inline-block;
    width: 24px;
    height: 24px;
    border: 3px solid var(--border-color);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

/* ===== Toast Notifications ===== */
.toast-notification {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--text-dark);
    color: #ffffff;
    padding: 16px 24px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    opacity: 0;
    transition: all 0.3s ease;
}

.toast-notification.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.toast-notification.success {
    background: #0066B1;
}

.toast-notification.error {
    background: #0a0a0a;
}

/* ===== Mobile Bottom Navigation ===== */
@media (max-width: 768px) {
    .mobile-bottom-nav {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: #ffffff;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
        display: flex;
        justify-content: space-around;
        padding: 12px 0;
        z-index: 997;
    }

    .mobile-bottom-nav a {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        color: var(--text-light);
        font-size: 10px;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .mobile-bottom-nav a i {
        font-size: 20px;
    }

    .mobile-bottom-nav a.active,
    .mobile-bottom-nav a:hover {
        color: var(--primary-color);
    }

    /* Adjust content for bottom nav */
    body {
        padding-bottom: 70px;
    }

    .whatsapp-float {
        bottom: 80px;
    }
}

/* ===== Product Image Zoom Effect ===== */
.product-image-wrapper {
    overflow: hidden;
    border-radius: 8px;
}

.product-image-wrapper img {
    transition: transform 0.5s ease;
}

.product-card:hover .product-image-wrapper img,
.shop-box-items:hover .product-image-wrapper img {
    transform: scale(1.08);
}

/* ========== HERO SLIDER MODERN ========== */
.hero-slider-modern {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.hero-slider-modern .swiper,
.hero-slider-modern .hero-swiper {
    width: 100% !important;
    height: 520px;
}

.hero-slider-modern .swiper-wrapper {
    width: 100%;
    height: 100%;
}

.hero-slider-modern .swiper-slide {
    width: 100% !important;
    height: 100% !important;
    flex-shrink: 0;
}

.hero-swiper {
    width: 100%;
    height: 520px;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Slider arka plan görseli - IMG etiketi */
.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
    /* Background inline style'dan gelecek */
}

.hero-slide .container {
    position: relative;
    z-index: 2;
    height: 100%;
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 30px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-tag i {
    color: var(--primary-color);
}

.hero-slide-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-slide-title span {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.hero-slide-desc {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 30px;
}

.hero-slide-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #ffffff;
    color: var(--primary-color);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn-hero-primary:hover {
    background: var(--primary-light);
    color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.btn-hero-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--whatsapp-green);
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-hero-whatsapp:hover {
    background: var(--whatsapp-hover);
    color: #ffffff;
    transform: translateY(-3px);
}

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: transparent;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    color: #ffffff;
    transform: translateY(-3px);
}

.hero-slide-image {
    position: relative;
    z-index: 2;
    text-align: right;
}

.hero-slide-image img {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

/* Hero Navigation */
.hero-nav-prev,
.hero-nav-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.hero-nav-prev::after,
.hero-nav-next::after {
    display: none;
}

.hero-nav-prev:hover,
.hero-nav-next:hover {
    background: var(--primary-color);
}

/* Hero Pagination */
.hero-pagination {
    bottom: 30px !important;
}

.hero-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.hero-pagination .swiper-pagination-bullet-active {
    background: #ffffff;
    width: 30px;
    border-radius: 10px;
}

/* Stats Bar */
.hero-stats-bar {
    background: #ffffff;
    padding: 25px 0;
    margin-top: 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 10;
    display: none; /* Hide stats bar, using feature section instead */
}

.stats-bar-inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 20px;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
}

.stat-text {
    font-size: 13px;
    color: var(--text-light);
}

/* Responsive Hero */
@media (max-width: 991px) {
    .hero-swiper {
        height: 450px;
    }

    .hero-slide-title {
        font-size: 36px;
    }

    .hero-slide-desc {
        font-size: 15px;
    }

    .hero-nav-prev,
    .hero-nav-next {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-swiper {
        height: 400px;
    }

    .hero-slide-content {
        text-align: center;
        max-width: 100%;
    }

    .hero-slide-title {
        font-size: 28px;
    }

    .hero-tag {
        font-size: 12px;
        padding: 6px 16px;
    }

    .hero-slide-btns {
        justify-content: center;
    }

    .btn-hero-primary,
    .btn-hero-whatsapp,
    .btn-hero-outline {
        padding: 12px 24px;
        font-size: 14px;
    }

    .stats-bar-inner {
        justify-content: center;
    }

    .stat-box {
        flex: 0 0 45%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-swiper {
        height: 380px;
    }

    .hero-slide-title {
        font-size: 24px;
    }

    .hero-slide-desc {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .hero-slide-btns {
        flex-direction: column;
        align-items: center;
    }

    .btn-hero-primary,
    .btn-hero-whatsapp,
    .btn-hero-outline {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .stat-box {
        flex: 0 0 100%;
    }
}

/* ===== Feature Section Modern - Compact Horizontal Style ===== */
.feature-section {
    padding: 0 !important;
    margin-top: 30px;
}

.feature-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    justify-content: center;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.feature-box-items {
    flex: 1 1 25%;
    min-width: 200px;
    background: #ffffff;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-right: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.feature-box-items:last-child {
    border-right: none;
}

.feature-box-items:hover {
    background: var(--bg-light);
}

.feature-box-items .icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-box-items .icon i {
    font-size: 28px;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.feature-box-items:hover .icon i {
    color: var(--primary-dark);
}

.feature-box-items .content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.feature-box-items .content h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.3;
}

.feature-box-items .content p {
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.3;
}

/* ===== Testimonial Section Modern ===== */
.testimonial-card-items {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px 30px;
    border: 1px solid var(--border-color);
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card-items::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 80px;
    font-family: Georgia, serif;
    color: var(--primary-light);
    line-height: 1;
    opacity: 0.7;
}

.testimonial-card-items:hover {
    border-color: var(--primary-color);
    box-shadow: 0 16px 40px rgba(14, 165, 233, 0.15);
}

.testimonial-card-items p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-card-items .client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-card-items .client-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    border: 3px solid var(--primary-light);
}

.testimonial-card-items .content h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.testimonial-card-items .content span {
    font-size: 13px;
    color: var(--text-light);
    display: block;
    margin-bottom: 6px;
}

.testimonial-card-items .star {
    display: flex;
    gap: 3px;
}

.testimonial-card-items .star i {
    font-size: 12px;
    color: #0066B1;
}

.testimonial-card-items .star i.fa-regular {
    color: #ddd;
}

/* ===== CTA Section Enhanced ===== */
.cta-banner-wrapper {
    background-size: cover;
    background-position: center;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.cta-banner-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 102, 177, 0.9);
    z-index: 1;
}

.cta-banner-wrapper .cta-content {
    position: relative;
    z-index: 2;
}

.cta-banner-wrapper .cta-content h2 {
    color: #ffffff;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
}

.cta-banner-wrapper .book-shape,
.cta-banner-wrapper .girl-shape {
    position: absolute;
    z-index: 0;
    opacity: 0.15;
}

/* ===== Section Title Enhanced ===== */
.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    position: relative;
}

.section-title .sub-content {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-title-area {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

/* ===== Responsive Feature & Testimonial ===== */
@media (max-width: 991px) {
    .feature-box-items {
        flex: 1 1 50%;
        border-bottom: 1px solid var(--border-color);
    }

    .feature-box-items:nth-child(2) {
        border-right: none;
    }

    .feature-box-items:nth-child(3),
    .feature-box-items:nth-child(4) {
        border-bottom: none;
    }

    .cta-banner-wrapper .cta-content h2 {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .feature-wrapper {
        flex-direction: column;
    }

    .feature-box-items {
        flex: 1 1 100%;
        border-right: none !important;
        border-bottom: 1px solid var(--border-color);
        padding: 16px 20px;
    }

    .feature-box-items:last-child {
        border-bottom: none;
    }

    .feature-box-items .icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }

    .feature-box-items .icon i {
        font-size: 22px;
    }

    .feature-box-items .content h3 {
        font-size: 13px;
    }

    .feature-box-items .content p {
        font-size: 11px;
    }

    .testimonial-card-items {
        padding: 25px 20px;
    }

    .testimonial-card-items::before {
        font-size: 50px;
        top: 10px;
        right: 15px;
    }

    .section-title h2 {
        font-size: 24px;
    }
}

/* Hero Content Animation */
.hero-content {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero-content.animated {
    opacity: 1;
    transform: translateY(0);
}

.hero-slide-content .hero-tag {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
}

.hero-slide-content .hero-slide-title {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease 0.2s, transform 0.4s ease 0.2s;
}

.hero-slide-content .hero-slide-desc {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease 0.3s, transform 0.4s ease 0.3s;
}

.hero-slide-content .hero-slide-btns {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease 0.4s, transform 0.4s ease 0.4s;
}

.swiper-slide-active .hero-slide-content .hero-tag,
.swiper-slide-active .hero-slide-content .hero-slide-title,
.swiper-slide-active .hero-slide-content .hero-slide-desc,
.swiper-slide-active .hero-slide-content .hero-slide-btns {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Print Styles ===== */
@media print {
    .whatsapp-float,
    .back-to-top,
    .scroll-to-top,
    .offcanvas__info,
    .offcanvas__overlay,
    .mobile-bottom-nav,
    .hero-slider-modern {
        display: none !important;
    }
}

/* ========== FIRSAT URUNLERI SECTION - Kupon BMW Style ========== */
.deals-section {
    padding: 50px 0;
    background: #ffffff;
}

.deals-section .section-title .sub-content.deals-badge {
    background: var(--primary-color);
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.deals-section .section-title .sub-content.deals-badge i {
    color: #ffffff;
}

.deals-section .section-title h2 {
    color: var(--text-dark);
    margin-top: 12px;
}

/* Deals Slider */
.deals-slider {
    position: relative;
    padding: 0 50px;
}

.deals-slider .swiper-slide {
    height: auto;
}

/* Deal Product Card */
.deal-product-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.deal-product-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(0, 102, 177, 0.12);
    transform: translateY(-4px);
}

/* Deal Product Image */
.deal-product-image {
    position: relative;
    padding: 16px;
    background: #fafafa;
}

.deal-product-image img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

/* Deal Discount Badge */
.deal-discount-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: var(--primary-color);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.4);
}

/* Deal Product Info */
.deal-product-info {
    padding: 16px;
}

.deal-product-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    margin: 0 0 12px 0;
    line-height: 1.4;
    height: 40px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.deal-product-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

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

/* Deal Price Wrapper */
.deal-price-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.deal-price-old {
    font-size: 14px;
    color: #9CA3AF999;
    text-decoration: line-through;
    font-weight: 400;
}

.deal-price-new {
    font-size: 18px;
    font-weight: 700;
    color: #0066B1;
}

.deal-discount-text {
    background: var(--primary-color);
    color: #ffffff;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
}

/* Deals Navigation */
.deals-nav-prev,
.deals-nav-next {
    width: 40px;
    height: 40px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.deals-nav-prev::after,
.deals-nav-next::after {
    display: none;
}

.deals-nav-prev:hover,
.deals-nav-next:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
}

.deals-nav-prev {
    left: 0;
}

.deals-nav-next {
    right: 0;
}

/* Deals Section Responsive */
@media (max-width: 991px) {
    .deals-slider {
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .deals-section {
        padding: 40px 0;
    }

    .deals-slider {
        padding: 0;
    }

    .deals-nav-prev,
    .deals-nav-next {
        display: none;
    }

    .deal-product-image img {
        height: 150px;
    }

    .deal-product-title {
        font-size: 13px;
        height: 36px;
    }

    .deal-price-new {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .deals-section .section-title h2 {
        font-size: 22px;
    }

    .deal-product-card {
        border-radius: 8px;
    }

    .deal-product-image {
        padding: 12px;
    }

    .deal-product-image img {
        height: 120px;
    }

    .deal-product-info {
        padding: 12px;
    }

    .deal-product-title {
        font-size: 12px;
        height: 34px;
        margin-bottom: 8px;
    }

    .deal-price-old {
        font-size: 12px;
    }

    .deal-price-new {
        font-size: 14px;
    }

    .deal-discount-badge {
        padding: 4px 8px;
        font-size: 12px;
    }

    .deal-discount-text {
        padding: 3px 8px;
        font-size: 11px;
    }
}

/* ===== HERO SLIDER MODERN ===== */
.hero-slider-modern {
    position: relative;
    overflow: hidden;
}

.hero-swiper {
    width: 100%;
    height: auto;
}

.hero-slide {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background inline style'dan gelecek */
    pointer-events: none;
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #ffffff;
}

.hero-tag i {
    color: #0066B1;
}

.hero-slide-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ffffff;
}

.hero-slide-title span {
    color: #0066B1;
}

.hero-slide-desc {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-slide-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    color: var(--primary-color);
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-hero-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    color: var(--primary-color);
}

.btn-hero-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--whatsapp-green);
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-hero-whatsapp:hover {
    background: var(--whatsapp-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
    color: #ffffff;
}

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    color: #ffffff;
}

/* Hero Slide Image / Icon Placeholder */
.hero-slide-image {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-slide-image img {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.hero-icon-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 300px;
    height: 300px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.hero-icon-placeholder i {
    font-size: 120px;
    color: rgba(255, 255, 255, 0.8);
}

/* Hero Navigation */
.hero-nav-prev,
.hero-nav-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.hero-nav-prev {
    left: 20px;
}

.hero-nav-next {
    right: 20px;
}

.hero-nav-prev:hover,
.hero-nav-next:hover {
    background: var(--primary-color);
}

.hero-nav-prev::after,
.hero-nav-next::after {
    display: none;
}

.hero-nav-prev i,
.hero-nav-next i {
    color: #ffffff;
    font-size: 18px;
}

.hero-pagination {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.hero-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.hero-pagination .swiper-pagination-bullet-active {
    background: #ffffff;
    width: 30px;
    border-radius: 6px;
}

/* Hero Animation */
.hero-slide-content.animated .hero-tag,
.hero-slide-content.animated .hero-slide-title,
.hero-slide-content.animated .hero-slide-desc,
.hero-slide-content.animated .hero-slide-btns {
    animation: fadeInUp 0.6s ease forwards;
}

.hero-slide-content.animated .hero-slide-title {
    animation-delay: 0.1s;
}

.hero-slide-content.animated .hero-slide-desc {
    animation-delay: 0.2s;
}

.hero-slide-content.animated .hero-slide-btns {
    animation-delay: 0.3s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Responsive */
@media (max-width: 991px) {
    .hero-slide {
        min-height: 400px;
        padding: 60px 0;
    }

    .hero-slide-title {
        font-size: 36px;
    }

    .hero-slide-desc {
        font-size: 16px;
    }

    .hero-icon-placeholder {
        width: 200px;
        height: 200px;
    }

    .hero-icon-placeholder i {
        font-size: 80px;
    }
}

@media (max-width: 768px) {
    .hero-slide {
        min-height: 350px;
        padding: 50px 0;
    }

    .hero-slide-title {
        font-size: 28px;
    }

    .hero-slide-desc {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .hero-slide-btns {
        flex-direction: column;
        gap: 12px;
    }

    .btn-hero-primary,
    .btn-hero-whatsapp,
    .btn-hero-outline {
        padding: 12px 24px;
        font-size: 14px;
        justify-content: center;
    }

    .hero-nav-prev,
    .hero-nav-next {
        width: 40px;
        height: 40px;
    }

    .hero-nav-prev {
        left: 10px;
    }

    .hero-nav-next {
        right: 10px;
    }
}

@media (max-width: 576px) {
    .hero-slide {
        min-height: 320px;
        padding: 40px 0;
    }

    .hero-tag {
        font-size: 12px;
        padding: 6px 12px;
    }

    .hero-slide-title {
        font-size: 24px;
    }

    .hero-nav-prev,
    .hero-nav-next {
        display: none;
    }
}

/* ===== COUNTER SECTION - Açık Mavi + Beyaz ===== */
.counter-section {
    background: #0066B1;
    padding: 60px 0;
}

.counter-items {
    padding: 30px 20px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.counter-items:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.counter-items h2 {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.counter-items h2 .count {
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
}

.counter-items p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    font-weight: 500;
}

@media (max-width: 991px) {
    .counter-section {
        padding: 50px 0;
    }

    .counter-items h2 {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .counter-items {
        padding: 25px 15px;
    }

    .counter-items h2 {
        font-size: 36px;
    }

    .counter-items p {
        font-size: 14px;
    }
}

/* ========== TAILWIND-LIKE UTILITY CLASSES ========== */
/* For pages using Tailwind-style classes (about.php, etc.) */

/* === Layout & Spacing === */
.mx-auto { margin-left: auto; margin-right: auto; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mt-4 { margin-bottom: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.gap-8 { gap: 2rem; }

/* === Typography === */
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.text-center { text-align: center; }

/* === Colors === */
.text-white { color: #ffffff; }
.text-gray-600 { color: #4b5563; }
.bg-white { background-color: #ffffff; }
.bg-bmw-blue { background-color: var(--primary-color); }
.bg-bmw-blue-dark { background-color: var(--primary-dark); }
.bg-bmw-blue-light { background-color: var(--primary-light); color: var(--primary-color); }

/* === Borders & Shadows === */
.border-b { border-bottom: 1px solid var(--border-color); }
.rounded-lg { border-radius: 0.5rem; }
.rounded-full { border-radius: 9999px; }
.shadow { box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }

/* === Max Width === */
.max-w-2xl { max-width: 42rem; }
.max-w-4xl { max-width: 56rem; }

/* === Grid & Flexbox === */
.grid { display: grid; }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }

/* === Size === */
.w-8 { width: 2rem; }
.h-8 { height: 2rem; }
.w-16 { width: 4rem; }
.h-16 { height: 4rem; }

/* === Responsive Utilities === */
@media (min-width: 768px) {
    .md\:text-5xl { font-size: 3rem; line-height: 1; }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* === Prose Styling (for dynamic content) === */
.prose {
    color: var(--text-dark);
    max-width: 65ch;
    margin: 0 auto;
}

.prose h1, .prose h2, .prose h3, .prose h4 {
    color: var(--text-dark);
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.prose p {
    margin-bottom: 1rem;
    line-height: 1.75;
}

.prose a {
    color: var(--primary-color);
    text-decoration: underline;
}

.prose ul, .prose ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.prose li {
    margin-bottom: 0.5rem;
}

/* === Breadcrumb for Static Pages === */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 0;
    font-size: 14px;
}

.breadcrumb a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.breadcrumb span {
    color: var(--text-light);
}

/* ========== LOGO FIX ========== */
/* Ensure logo is properly sized across all pages */
.header-logo img,
.header-logo .logo-img {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    max-height: 60px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
}

/* Footer logo */
.single-footer-widget .widget-head img {
    max-height: 50px;
    width: auto;
}

/* Mobile offcanvas logo */
.offcanvas-header img {
    max-height: 40px;
    width: auto;
}

/* ========== DİL SEÇİCİ STYLES ========== */

/* Topbar Dil Seçici - Modern Pill Style */
.language-switcher {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3px;
    gap: 2px;
}

.language-switcher .lang-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 12px;
    border-radius: 16px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.25s ease;
    background: transparent;
    border: none;
    text-transform: uppercase;
}

.language-switcher .lang-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
}

.language-switcher .lang-link.active {
    color: #0066B1;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Bayrak emojileri gizle, sadece kod göster */
.language-switcher .lang-flag {
    display: none;
}

.language-switcher .lang-code {
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline !important;
}

/* Topbar Divider */
.topbar-divider {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.25);
    margin: 0 12px;
}

/* Mobile Language Switcher */
.mobile-language {
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.mobile-language h6 {
    color: #6B7280;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    margin-bottom: 12px;
}

.mobile-lang-buttons {
    display: flex;
    gap: 10px;
}

.mobile-lang-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 14px 16px;
    border-radius: 12px;
    background: #f3f4f6;
    border: 2px solid transparent;
    text-decoration: none;
    transition: all 0.25s ease;
}

.mobile-lang-btn .lang-name {
    font-size: 14px;
    font-weight: 600;
    color: #4B5563;
    margin-bottom: 2px;
}

.mobile-lang-btn .lang-code {
    font-size: 11px;
    font-weight: 500;
    color: #9ca3af;
    letter-spacing: 1px;
}

.mobile-lang-btn:hover {
    background: #e5e7eb;
}

.mobile-lang-btn.active {
    background: #0066B1;
    border-color: #0066B1;
}

.mobile-lang-btn.active .lang-name {
    color: #fff;
}

.mobile-lang-btn.active .lang-code {
    color: rgba(255, 255, 255, 0.7);
}

/* Header Dropdown Dil Seçici (Alternatif Stil) */
.header-lang-dropdown {
    position: relative;
}

.header-lang-dropdown .lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: transparent;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    color: #4B5563;
    transition: all 0.2s ease;
}

.header-lang-dropdown .lang-btn:hover {
    border-color: var(--bmw-blue);
    color: var(--bmw-blue);
}

.header-lang-dropdown .lang-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    min-width: 150px;
    padding: 8px 0;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease;
}

.header-lang-dropdown:hover .lang-menu,
.header-lang-dropdown .lang-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-lang-dropdown .lang-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    color: #4B5563;
    text-decoration: none;
    transition: all 0.15s ease;
}

.header-lang-dropdown .lang-menu a:hover {
    background: #f3f4f6;
    color: var(--bmw-blue);
}

.header-lang-dropdown .lang-menu a.active {
    background: #eff6ff;
    color: var(--bmw-blue);
    font-weight: 500;
}

.header-lang-dropdown .lang-menu .lang-flag {
    font-size: 18px;
}

/* Dark Mode / Footer Dil Seçici */
.footer-language-switcher {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-language-switcher .lang-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.footer-language-switcher .lang-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.footer-language-switcher .lang-link.active {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 576px) {
    .language-switcher .lang-code {
        display: none;
    }

    .language-switcher .lang-link {
        padding: 4px 6px;
    }
}

/* ========================================
   FOOTER MODERN STYLES - İmza BMW
======================================== */

.footer-modern {
    background: #0a0a0a;
    color: #fff;
    margin-bottom: 0;
}

/* Footer Top Banner */
.footer-top-banner {
    background: var(--primary-color);
    padding: 20px 0;
}

.footer-cta-text {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 16px;
}

.footer-cta-text i {
    font-size: 28px;
    opacity: 0.9;
}

.footer-cta-text strong {
    color: #fff;
}

.footer-cta-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn.whatsapp-btn {
    background: var(--whatsapp-green);
    color: #fff;
}

.cta-btn.whatsapp-btn:hover {
    background: var(--whatsapp-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.cta-btn.phone-btn {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-btn.phone-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

/* Footer Main */
.footer-main {
    padding: 60px 0 40px;
}

/* Footer Widget */
.footer-widget {
    margin-bottom: 20px;
}

.footer-logo-img {
    max-height: 260px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-logo-text {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.5px;
}

/* Footer Logo Styled - Additional Styles */
.footer-logo .logo-text-styled {
    gap: 10px;
}

.footer-logo .logo-text-styled .logo-icon {
    width: 44px;
    height: 44px;
    font-size: 20px;
    border-radius: 10px;
}

.footer-logo .logo-text-styled .logo-imza {
    font-size: 20px;
}

.footer-logo .logo-text-styled .logo-bmw {
    font-size: 12px;
    letter-spacing: 3px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Footer Social */
.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* Footer Titles */
.footer-title {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 12px;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.footer-links a i {
    font-size: 10px;
    color: var(--primary-color);
    transition: transform 0.2s ease;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-links a:hover i {
    transform: translateX(3px);
}

.footer-links .view-all-link {
    color: var(--primary-color);
    font-weight: 500;
    margin-top: 10px;
}

.footer-links .view-all-link i {
    font-size: 12px;
}

.footer-links .view-all-link:hover {
    color: #fff;
}

/* Footer Contact */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 18px;
}

.footer-contact .contact-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--primary-color);
}

.footer-contact .contact-text {
    flex: 1;
}

.footer-contact .contact-text .label {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.footer-contact .contact-text p,
.footer-contact .contact-text a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    margin: 0;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact .contact-text a:hover {
    color: var(--primary-color);
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-inner {
    /* Additional styling if needed */
}

.footer-bottom .copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin: 0;
}

.footer-bottom .copyright strong {
    color: #fff;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
    color: #fff;
}

.footer-bottom-links .separator {
    color: rgba(255, 255, 255, 0.3);
}

/* WhatsApp Float Enhancement */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--whatsapp-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background: var(--whatsapp-hover);
    transform: scale(1.1);
    color: #fff;
}

.whatsapp-float .whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: #333;
    color: #fff;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 13px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.whatsapp-float .whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent transparent #333;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Mobile Bottom Nav Enhancement */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border-top: 1px solid #eee;
}

.mobile-bottom-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: #6B7280;
    text-decoration: none;
    font-size: 11px;
    transition: color 0.2s ease;
    padding: 5px 10px;
}

.mobile-bottom-nav a i {
    font-size: 18px;
}

.mobile-bottom-nav a.active,
.mobile-bottom-nav a:hover {
    color: var(--primary-color);
}

/* Footer Responsive */
@media (max-width: 991px) {
    .footer-cta-text {
        justify-content: center;
        text-align: center;
    }

    .footer-cta-buttons {
        justify-content: center;
    }

    .footer-main {
        padding: 40px 0 20px;
    }

    .footer-widget {
        text-align: center;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links a {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-contact li {
        justify-content: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .footer-top-banner {
        padding: 15px 0;
    }

    .footer-cta-text {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .cta-btn {
        padding: 10px 18px;
        font-size: 14px;
        flex: 1;
        justify-content: center;
    }

    .whatsapp-float {
        bottom: 80px;
        right: 15px;
        width: 55px;
        height: 55px;
        font-size: 24px;
    }

    .whatsapp-float .whatsapp-tooltip {
        display: none;
    }

    /* Footer için padding ayarı - mobile nav için */
    .footer-modern {
        padding-bottom: 70px;
    }
}

@media (max-width: 576px) {
    .footer-main {
        padding: 30px 0 10px;
    }

    .footer-title {
        font-size: 16px;
    }

    .footer-links a,
    .footer-contact .contact-text p,
    .footer-contact .contact-text a {
        font-size: 13px;
    }
}

/* ========================================
   FIRSAT ÜRÜNLERI SECTION - İmza BMW Colors
======================================== */

/* Deals Section */
.deals-section {
    background: #f8fafc;
}

/* Deals Badge - "Kaçırılmayacak Fırsatlar" */
.deals-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-color) !important;
    color: #fff !important;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.deals-badge i {
    color: #fff;
}

/* Section Title Override for Deals */
.deals-section .section-title h2 {
    color: var(--primary-dark);
}

/* Deal Product Card */
.deal-product-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.deal-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 102, 177, 0.15);
}

/* Deal Product Image */
.deal-product-image {
    position: relative;
    padding: 20px;
    background: #f8fafc;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.deal-product-image img {
    max-width: 100%;
    max-height: 180px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

/* Deal Discount Badge - İmza BMW Blue */
.deal-discount-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color) !important;
    color: #fff !important;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    z-index: 2;
}

/* Deal Product Info */
.deal-product-info {
    padding: 20px;
}

.deal-product-title {
    font-size: 15px;
    font-weight: 600;
    color: #0a0a0a;
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 42px;
}

.deal-product-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

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

/* Deal Price Wrapper */
.deal-price-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

/* Old Price - Strikethrough */
.deal-price-old {
    font-size: 14px;
    color: #9CA3AF;
    text-decoration: line-through;
}

/* New Price - İmza BMW Blue */
.deal-price-new {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color) !important;
}

/* Discount Text Badge - İmza BMW Blue */
.deal-discount-text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color) !important;
    color: #fff !important;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
}

/* Deals Slider Navigation */
.deals-nav-prev,
.deals-nav-next {
    width: 45px;
    height: 45px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.deals-nav-prev:hover,
.deals-nav-next:hover {
    background: var(--primary-color);
    color: #fff;
}

.deals-nav-prev::after,
.deals-nav-next::after {
    display: none;
}

/* Swiper Navigation Override for Deals */
.deals-slider .swiper-button-prev,
.deals-slider .swiper-button-next {
    top: 50%;
    transform: translateY(-50%);
}

.deals-slider .swiper-button-prev {
    left: -15px;
}

.deals-slider .swiper-button-next {
    right: -15px;
}

/* View All Button Override */
.deals-section .transparent-btn {
    border-color: var(--primary-color) !important;
    color: var(--primary-color) !important;
}

.deals-section .transparent-btn:hover {
    background: var(--primary-color) !important;
    color: #fff !important;
}

/* Price List Override - Global */
.price-list li,
ul.price-list li {
    color: var(--primary-color) !important;
}

/* Post Box Badge Override */
.post-box li,
ul.post-box li {
    background: var(--primary-color) !important;
}

/* Shop Icon Hover */
.shop-icon li a:hover {
    background: var(--primary-color) !important;
    color: #fff !important;
}

/* Section Title Sub Content Override */
.sub-content {
    color: var(--primary-color) !important;
}

/* Responsive Deals */
@media (max-width: 991px) {
    .deals-slider .swiper-button-prev {
        left: 5px;
    }

    .deals-slider .swiper-button-next {
        right: 5px;
    }
}

@media (max-width: 575px) {
    .deal-product-info {
        padding: 15px;
    }

    .deal-product-title {
        font-size: 14px;
        min-height: auto;
    }

    .deal-price-new {
        font-size: 16px;
    }
}

/* ========================================
   MODERN PRODUCT GRID SECTIONS
   Kupon BMW Style - İmza BMW Colors
======================================== */

.products-grid-section {
    background: #fff;
}

/* Modern Section Header */
.modern-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.modern-section-header .header-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Section Badge Styles */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
}

.section-badge.firsat {
    background: var(--accent-color);
    color: #fff;
}

.section-badge.gunun {
    background: var(--accent-color);
    color: #fff;
}

.section-badge.indirim {
    background: var(--accent-color);
    color: #fff;
}

.section-badge i {
    font-size: 14px;
}

/* Section Main Title */
.section-main-title {
    font-size: 28px;
    font-weight: 700;
    color: #0a0a0a;
    margin: 0;
}

/* View All Button */
.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background: var(--primary-color);
    color: #fff;
}

.view-all-btn i {
    transition: transform 0.3s ease;
}

.view-all-btn:hover i {
    transform: translateX(5px);
}

/* Products Modern Grid */
.products-modern-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

/* Product Card Modern */
.product-card-modern {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.product-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 102, 177, 0.15);
    border-color: var(--primary-color);
}

/* Product Image Wrapper */
.product-image-wrapper {
    position: relative;
    background: #f8fafc;
    padding: 20px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image-wrapper img {
    max-width: 100%;
    max-height: 160px;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.product-card-modern:hover .product-image-wrapper img {
    transform: scale(1.08);
}

/* Discount Badge */
.discount-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--primary-color);
    color: #fff;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    z-index: 2;
}

.discount-badge.hot {
    background: var(--primary-color);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Product Actions */
.product-actions {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    display: flex;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.product-card-modern:hover .product-actions {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.action-btn {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    color: #0a0a0a;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.action-btn:hover {
    background: var(--primary-color);
    color: #fff;
    transform: scale(1.1);
}

.action-btn.whatsapp:hover {
    background: var(--whatsapp-green);
}

/* Product Details */
.product-details {
    padding: 20px;
}

.product-name {
    font-size: 14px;
    font-weight: 600;
    color: #0a0a0a;
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 40px;
}

.product-name a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

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

/* Price Block */
.price-block {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.old-price {
    font-size: 13px;
    color: #9CA3AF;
    text-decoration: line-through;
}

.current-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
}

.discount-percent {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: #fff;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
}

/* Responsive Styles */
@media (max-width: 1399px) {
    .products-modern-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1199px) {
    .products-modern-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }
}

@media (max-width: 991px) {
    .products-modern-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .modern-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .section-main-title {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .products-modern-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .product-image-wrapper {
        padding: 15px;
    }

    .product-image-wrapper img {
        max-height: 120px;
    }

    .product-details {
        padding: 15px;
    }

    .product-name {
        font-size: 13px;
        min-height: 36px;
    }

    .current-price {
        font-size: 16px;
    }

    .section-badge {
        font-size: 11px;
        padding: 6px 12px;
    }

    .section-main-title {
        font-size: 20px;
    }

    .view-all-btn {
        padding: 10px 18px;
        font-size: 13px;
    }
}

@media (max-width: 479px) {
    .product-actions {
        gap: 6px;
    }

    .action-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .discount-badge {
        padding: 4px 8px;
        font-size: 11px;
    }
}

/* ===================================================
   MODERN CATEGORY DROPDOWN - Premium UI Design
   =================================================== */

.category-dropdown-modern {
    position: relative;
}

/* Toggle Button - Glass Morphism Style */
.dropdown-toggle-modern {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 18px;
    background: #ffffff;
    border: 1px solid rgba(0, 102, 177, 0.15);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.dropdown-toggle-modern:hover {
    background: var(--primary-light);
    border-color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 102, 177, 0.2);
    transform: translateY(-1px);
}

.dropdown-toggle-modern i:first-child {
    color: var(--primary-color);
    font-size: 15px;
}

.dropdown-toggle-modern .dropdown-arrow {
    font-size: 9px;
    color: #9CA3AF;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-left: 2px;
}

.category-dropdown-modern:hover .dropdown-arrow {
    transform: rotate(180deg);
    color: var(--primary-color);
}

/* Dropdown Menu - Elegant Card Style */
.dropdown-menu-categories {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    min-width: 260px;
    max-height: 420px;
    overflow-y: auto;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 102, 177, 0.08);
    border-radius: 16px;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.12),
        0 8px 25px rgba(0, 102, 177, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px) scale(0.98);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1100;
    list-style: none;
    margin: 0;
}

/* Arrow indicator */
.dropdown-menu-categories::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 24px;
    width: 16px;
    height: 16px;
    background: #fff;
    border-left: 1px solid rgba(0, 102, 177, 0.08);
    border-top: 1px solid rgba(0, 102, 177, 0.08);
    transform: rotate(45deg);
    z-index: 1;
}

.category-dropdown-modern:hover .dropdown-menu-categories {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.dropdown-menu-categories li {
    margin: 0;
    padding: 0 6px;
}

/* Category Links */
.dropdown-menu-categories li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    color: #4B5563;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Hover background effect */
.dropdown-menu-categories li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: var(--primary-light);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
    border-radius: 10px;
}

.dropdown-menu-categories li a:hover::before {
    width: 100%;
}

.dropdown-menu-categories li a i {
    font-size: 11px;
    color: #bbb;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 16px;
    text-align: center;
}

.dropdown-menu-categories li a:hover {
    color: var(--primary-color);
    transform: translateX(4px);
}

.dropdown-menu-categories li a:hover i {
    color: var(--primary-color);
    transform: translateX(3px);
}

/* Divider */
.dropdown-menu-categories li.dropdown-divider {
    height: 1px;
    background: #e5e7eb;
    margin: 10px 20px;
    padding: 0;
}

/* View All Button */
.dropdown-menu-categories li a.view-all {
    background: var(--primary-light);
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 6px;
    border: 1px solid rgba(0, 102, 177, 0.1);
}

.dropdown-menu-categories li a.view-all i {
    color: var(--primary-color);
}

.dropdown-menu-categories li a.view-all::before {
    background: var(--primary-color);
}

.dropdown-menu-categories li a.view-all:hover {
    color: #fff;
    border-color: transparent;
    transform: translateX(0);
    box-shadow: 0 4px 15px rgba(0, 102, 177, 0.3);
}

.dropdown-menu-categories li a.view-all:hover i {
    color: #fff;
    transform: none;
}

/* Premium Scrollbar */
.dropdown-menu-categories::-webkit-scrollbar {
    width: 5px;
}

.dropdown-menu-categories::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 10px;
    margin: 10px 0;
}

.dropdown-menu-categories::-webkit-scrollbar-thumb {
    background: rgba(0, 102, 177, 0.2);
    border-radius: 10px;
}

.dropdown-menu-categories::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 102, 177, 0.4);
}

/* ===================================================
   NAVIGATION DROPDOWN - Modern Style
   =================================================== */

.dropdown-menu-modern {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 220px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 102, 177, 0.08);
    border-radius: 14px;
    box-shadow:
        0 15px 50px rgba(0, 0, 0, 0.1),
        0 5px 20px rgba(0, 102, 177, 0.06);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px) scale(0.98);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    list-style: none;
    margin: 0;
}

.dropdown-menu-modern::before {
    content: '';
    position: absolute;
    top: -7px;
    left: 24px;
    width: 14px;
    height: 14px;
    background: #fff;
    border-left: 1px solid rgba(0, 102, 177, 0.08);
    border-top: 1px solid rgba(0, 102, 177, 0.08);
    transform: rotate(45deg);
}

.nav-item.has-dropdown:hover .dropdown-menu-modern {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.dropdown-menu-modern li {
    padding: 0 6px;
}

.dropdown-menu-modern li a {
    display: block;
    padding: 10px 14px;
    color: #4B5563;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown-menu-modern li a:hover {
    background: var(--primary-light);
    color: var(--primary-color);
    transform: translateX(3px);
}

.dropdown-menu-modern li.dropdown-divider {
    height: 1px;
    background: #e5e7eb;
    margin: 8px 16px;
    padding: 0;
}

.dropdown-menu-modern li a.view-all {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-light);
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 4px;
}

.dropdown-menu-modern li a.view-all:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateX(0);
}

/* ========== HERO SLIDER BUTTONS ========== */
.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    color: #ffffff !important;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    color: #ffffff !important;
}

.btn-hero-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    background: #25D366;
    color: #ffffff !important;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #25D366;
}

.btn-hero-whatsapp:hover {
    background: #128C7E;
    border-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    color: #ffffff !important;
}

/* ========== SHOP BUTTON - Popüler Ürünler ========== */
.shop-button .theme-btn {
    background: #ffffff !important;
    color: #1E293B !important;
    border: 1px solid #e5e7eb;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.shop-button .theme-btn:hover {
    background: #f3f4f6 !important;
    color: #1E293B !important;
    border-color: #d1d5db;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ========== POPULER PRODUCTS BADGE ========== */
.section-badge.populer {
    background: var(--primary-color);
    color: #fff;
}

.featured-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary-color);
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.product-category {
    display: block;
    font-size: 12px;
    color: #6B7280;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ========================================
   MOBİL UYUMLULUK & MODERN UI - KAPSAMLI
   İmza BMW - Premium Mobile Experience
   ======================================== */

/* ===== GLOBAL MOBİL İYİLEŞTİRMELER ===== */

/* Sayfa geneli mobil ayarlar */
@media (max-width: 767px) {
    /* Temel container padding */
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    /* Section padding ayarları */
    .section-padding {
        padding: 40px 0;
    }

    /* Body scroll düzgünlüğü */
    body {
        -webkit-overflow-scrolling: touch;
        overflow-x: hidden;
    }

    /* Tıklanabilir öğeler için touch-friendly boyut */
    a, button {
        -webkit-tap-highlight-color: rgba(0, 102, 177, 0.1);
    }
}

/* ===== TOPBAR MOBİL ===== */
@media (max-width: 767px) {
    .topbar-modern {
        padding: 8px 0;
    }

    .topbar-inner {
        flex-direction: row;
        justify-content: space-between;
    }

    .topbar-left {
        gap: 12px;
    }

    .topbar-item {
        font-size: 12px;
    }

    .topbar-item span {
        display: none;
    }

    .topbar-item i {
        font-size: 14px;
    }

    .topbar-right {
        gap: 8px;
    }

    .topbar-social {
        width: 26px;
        height: 26px;
        font-size: 11px;
    }

    .language-switcher {
        padding: 2px;
    }

    .language-switcher .lang-link {
        padding: 4px 8px;
        font-size: 11px;
    }
}

/* ===== HEADER MOBİL ===== */
@media (max-width: 991px) {
    .header-modern {
        padding: 10px 0;
    }

    .header-inner {
        gap: 15px;
    }

    .header-logo .logo-img {
        max-height: 55px !important;
    }

    .logo-text-modern {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .header-modern {
        padding: 10px 0;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    }

    .header-inner {
        gap: 10px !important;
    }

    /* Logo container - mobil */
    .header-logo {
        flex: 0 0 auto !important;
        min-width: 100px !important;
    }

    .header-logo a {
        display: flex !important;
        align-items: center !important;
    }

    .header-logo .logo-img {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        max-height: 100px !important;
        height: 50px !important;
        width: auto !important;
        min-width: 120px !important;
        /* Logo görünürlük için hafif gölge */
        filter: drop-shadow(0 1px 2px rgba(0,0,0,0.15)) !important;
        object-fit: contain !important;
    }

    /* Text logo fallback - mobil */
    .logo-text-styled {
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
    }

    .logo-text-styled .logo-icon {
        width: 36px !important;
        height: 36px !important;
        font-size: 16px !important;
        border-radius: 8px !important;
    }

    .logo-text-styled .logo-imza {
        font-size: 18px !important;
    }

    .logo-text-styled .logo-bmw {
        font-size: 11px !important;
    }

    .logo-text-modern {
        font-size: 18px;
    }

    /* Arama kutusu mobilde gizle */
    .search-compact {
        display: none;
    }

    /* Header actions düzeni */
    .header-actions {
        gap: 8px;
    }

    /* WhatsApp butonu mobilde sadece icon */
    .header-whatsapp-btn span {
        display: none;
    }

    .header-whatsapp-btn {
        width: 38px;
        height: 38px;
        padding: 0;
        border-radius: 50%;
        justify-content: center;
    }

    .header-whatsapp-btn i {
        font-size: 18px;
        margin: 0;
    }

    /* Hamburger menu */
    .mobile-menu-toggle {
        padding: 6px;
    }

    .hamburger-line {
        width: 22px;
        height: 2.5px;
    }
}

/* ===== MOBİL OFFCANVAS MENU ===== */
@media (max-width: 991px) {
    .offcanvas {
        width: 300px !important;
    }

    .offcanvas-header {
        padding: 16px 20px;
        border-bottom: 1px solid #f0f0f0;
    }

    .offcanvas-body {
        padding: 20px;
    }

    /* Mobile search form */
    .mobile-search-form {
        margin-bottom: 24px;
    }

    .mobile-search-form .form-control {
        height: 46px;
        border-radius: 10px 0 0 10px;
        font-size: 15px;
        padding-left: 16px;
    }

    .mobile-search-form .btn {
        border-radius: 0 10px 10px 0;
        padding: 0 18px;
    }

    /* Mobile nav links */
    .mobile-nav-list {
        margin-bottom: 24px;
    }

    .mobile-nav-link {
        padding: 14px 16px;
        border-radius: 10px;
        margin-bottom: 4px;
    }

    .mobile-nav-link i {
        font-size: 18px;
    }

    /* Mobile categories */
    .mobile-categories .list-group-item {
        padding: 14px 16px;
        font-size: 14px;
        border-radius: 8px;
        margin-bottom: 4px;
        border: 1px solid #f0f0f0;
    }

    .mobile-categories .list-group-item:hover,
    .mobile-categories .list-group-item:active {
        background: var(--primary-light);
        color: var(--primary-color);
        border-color: var(--primary-color);
    }

    /* Mobile contact buttons */
    .mobile-contact .btn {
        padding: 14px 20px;
        font-size: 15px;
        font-weight: 600;
        border-radius: 10px;
    }
}

/* ===== HERO SLIDER MOBİL ===== */
@media (max-width: 767px) {
    .hero-slider-modern {
        margin-top: 0;
    }

    .hero-swiper {
        height: auto;
        min-height: 350px;
    }

    .hero-slide {
        min-height: 350px;
        padding: 50px 0 40px;
    }

    .hero-slide-content {
        text-align: center;
        max-width: 100%;
        padding: 0 10px;
    }

    .hero-tag {
        font-size: 11px;
        padding: 6px 14px;
        margin-bottom: 16px;
    }

    .hero-slide-title {
        font-size: 22px;
        line-height: 1.3;
        margin-bottom: 14px;
    }

    .hero-slide-desc {
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 20px;
        padding: 0 5px;
    }

    .hero-slide-btns {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .btn-hero-primary,
    .btn-hero-whatsapp,
    .btn-hero-outline {
        width: 100%;
        max-width: 260px;
        padding: 14px 24px;
        font-size: 14px;
        justify-content: center;
        border-radius: 10px;
    }

    /* Hero navigation gizle */
    .hero-nav-prev,
    .hero-nav-next {
        display: none !important;
    }

    /* Pagination görünür */
    .hero-pagination {
        bottom: 15px !important;
    }

    .hero-pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }

    .hero-pagination .swiper-pagination-bullet-active {
        width: 24px;
    }
}

/* ===== FEATURE SECTION MOBİL ===== */
@media (max-width: 767px) {
    .feature-section {
        margin-top: 20px;
    }

    .feature-wrapper {
        border-radius: 12px;
    }

    .feature-box-items {
        padding: 14px 16px;
        gap: 14px;
    }

    .feature-box-items .icon {
        width: 38px;
        height: 38px;
        min-width: 38px;
    }

    .feature-box-items .icon i {
        font-size: 20px;
    }

    .feature-box-items .content h3 {
        font-size: 12px;
        line-height: 1.3;
    }

    .feature-box-items .content p {
        font-size: 10px;
        line-height: 1.3;
    }
}

/* ===== PRODUCT GRID MOBİL - MODERN ===== */
@media (max-width: 767px) {
    .products-grid-section {
        padding: 30px 0;
    }

    /* Section header mobil */
    .modern-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 20px;
        padding-bottom: 16px;
    }

    .section-badge {
        font-size: 10px;
        padding: 5px 10px;
        gap: 6px;
    }

    .section-badge i {
        font-size: 12px;
    }

    .section-main-title {
        font-size: 18px;
        line-height: 1.3;
    }

    .view-all-btn {
        padding: 8px 16px;
        font-size: 12px;
        border-radius: 20px;
    }

    /* Product grid - 2 sütun */
    .products-modern-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    /* Product card modern mobil */
    .product-card-modern {
        border-radius: 12px;
    }

    .product-image-wrapper {
        padding: 12px;
        aspect-ratio: 1;
    }

    .product-image-wrapper img {
        max-height: 100px;
    }

    /* Discount badge mobil */
    .discount-badge {
        top: 8px;
        right: 8px;
        padding: 4px 8px;
        font-size: 10px;
        border-radius: 6px;
    }

    .featured-badge {
        top: 8px;
        left: 8px;
        padding: 3px 8px;
        font-size: 9px;
    }

    /* Product actions - her zaman görünür mobilde */
    .product-actions {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        justify-content: center;
        margin-top: 10px;
        padding: 0 12px 12px;
        gap: 8px;
        background: transparent;
    }

    .action-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    /* Product details */
    .product-details {
        padding: 12px;
    }

    .product-category {
        font-size: 10px;
        margin-bottom: 3px;
    }

    .product-name {
        font-size: 12px;
        min-height: 32px;
        margin-bottom: 8px;
        line-height: 1.3;
        -webkit-line-clamp: 2;
    }

    /* Price block mobil */
    .price-block {
        gap: 6px;
        flex-wrap: wrap;
    }

    .old-price {
        font-size: 11px;
    }

    .current-price {
        font-size: 14px;
    }

    .discount-percent {
        padding: 2px 6px;
        font-size: 9px;
    }
}

/* Çok küçük ekranlar (iPhone SE vb.) */
@media (max-width: 374px) {
    .products-modern-grid {
        gap: 8px;
    }

    .product-image-wrapper {
        padding: 10px;
    }

    .product-image-wrapper img {
        max-height: 85px;
    }

    .product-details {
        padding: 10px;
    }

    .product-name {
        font-size: 11px;
        min-height: 28px;
    }

    .current-price {
        font-size: 13px;
    }

    .action-btn {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
}

/* ===== CATEGORY SLIDER MOBİL ===== */
@media (max-width: 767px) {
    .book-catagories-section {
        padding: 30px 0;
    }

    .book-catagories-wrapper .section-title h2 {
        font-size: 20px;
    }

    .book-catagories-items {
        padding: 16px;
        border-radius: 12px;
    }

    .book-catagories-items .book-thumb img {
        max-height: 60px;
    }

    .book-catagories-items h3 {
        font-size: 13px;
    }

    .book-catagories-items .number {
        font-size: 14px;
    }

    /* Array buttons mobil */
    .array-button {
        gap: 8px;
    }

    .array-button button {
        width: 36px;
        height: 36px;
    }
}

/* ===== CTA BANNER MOBİL ===== */
@media (max-width: 767px) {
    .cta-banner-section {
        padding: 30px 0;
    }

    .cta-banner-wrapper {
        border-radius: 16px;
        padding: 30px 20px !important;
    }

    .cta-banner-wrapper .cta-content h2 {
        font-size: 22px;
        line-height: 1.4;
        margin-bottom: 20px !important;
    }

    .cta-banner-wrapper .theme-btn {
        padding: 14px 24px;
        font-size: 14px;
    }

    /* Shape'leri gizle */
    .cta-banner-wrapper .book-shape,
    .cta-banner-wrapper .girl-shape {
        display: none;
    }
}

/* ===== SHOP BOX ITEMS MOBİL ===== */
@media (max-width: 767px) {
    .shop-section {
        padding: 30px 0;
    }

    .shop-box-items {
        border-radius: 12px;
    }

    .shop-box-items .book-thumb {
        padding: 16px;
    }

    .shop-box-items .book-thumb img {
        max-height: 140px;
    }

    .shop-box-items .shop-content {
        padding: 16px;
    }

    .shop-box-items .shop-content h5 {
        font-size: 11px;
    }

    .shop-box-items .shop-content h3 {
        font-size: 14px;
    }

    .shop-box-items .shop-content h3 a {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .shop-box-items .price-list li {
        font-size: 16px;
    }

    .shop-box-items .shop-button {
        padding: 12px 16px;
    }

    .shop-box-items .shop-button .theme-btn {
        padding: 10px 16px;
        font-size: 13px;
        width: 100%;
        justify-content: center;
    }

    /* Shop icon hover - mobilde her zaman görünür */
    .shop-box-items .shop-icon {
        opacity: 1;
        visibility: visible;
    }

    .shop-box-items .shop-icon li a {
        width: 36px;
        height: 36px;
    }
}

/* ===== TOP RATING BOX MOBİL ===== */
@media (max-width: 767px) {
    .top-ratting-book-section {
        padding: 30px 0;
    }

    .top-ratting-box-items {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        border-radius: 12px;
    }

    .top-ratting-box-items .book-thumb {
        margin-bottom: 16px;
    }

    .top-ratting-box-items .book-thumb img {
        max-height: 120px;
    }

    .top-ratting-box-items .book-content {
        padding: 0;
    }

    .top-ratting-box-items .book-content h5 {
        font-size: 11px;
    }

    .top-ratting-box-items .book-content h3 {
        font-size: 15px;
    }

    .top-ratting-box-items .shop-btn .theme-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ===== TESTIMONIAL MOBİL ===== */
@media (max-width: 767px) {
    .testimonial-section {
        padding: 30px 0;
    }

    .testimonial-section .section-title h2 {
        font-size: 20px;
    }

    .testimonial-card-items {
        padding: 20px;
        border-radius: 12px;
    }

    .testimonial-card-items p {
        font-size: 14px;
        line-height: 1.6;
    }

    .testimonial-card-items::before {
        font-size: 40px;
        top: 8px;
        right: 12px;
    }

    .testimonial-card-items .client-img {
        width: 50px;
        height: 50px;
    }

    .testimonial-card-items .content h3 {
        font-size: 15px;
    }

    .testimonial-card-items .content span {
        font-size: 12px;
    }

    .testimonial-card-items .star i {
        font-size: 11px;
    }
}

/* ===== NEWS SECTION MOBİL ===== */
@media (max-width: 767px) {
    .news-section {
        padding: 30px 0;
    }

    .news-section .section-title h2 {
        font-size: 20px;
    }

    .news-section .section-title p {
        font-size: 14px;
    }

    .news-card-items {
        border-radius: 12px;
    }

    .news-card-items .news-image img {
        height: 180px;
        object-fit: cover;
    }

    .news-card-items .news-content {
        padding: 16px;
    }

    .news-card-items .news-content h3 {
        font-size: 15px;
        line-height: 1.4;
    }
}

/* ===== COUNTER SECTION MOBİL ===== */
@media (max-width: 767px) {
    .counter-section {
        padding: 40px 0;
    }

    .counter-items {
        padding: 20px 15px;
        border-radius: 12px;
    }

    .counter-items h2 {
        font-size: 32px;
    }

    .counter-items p {
        font-size: 13px;
    }
}

/* ===== FOOTER MOBİL ===== */
@media (max-width: 767px) {
    .footer-modern {
        padding-bottom: 75px;
    }

    .footer-main {
        padding: 40px 0 20px;
    }

    .footer-widget {
        text-align: center;
        margin-bottom: 30px;
    }

    .footer-logo {
        margin-bottom: 20px !important;
    }

    .footer-logo-img {
        max-height: 60px;
    }

    .footer-desc {
        font-size: 13px;
        padding: 0 10px;
    }

    .footer-social {
        justify-content: center;
        gap: 12px;
    }

    .footer-social a {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }

    .footer-title {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-links li {
        margin-bottom: 8px;
    }

    .footer-links a {
        justify-content: center;
        font-size: 13px;
    }

    .footer-contact {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-contact li {
        justify-content: center;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .footer-contact .contact-text .label {
        font-size: 11px;
    }

    .footer-contact .contact-text p,
    .footer-contact .contact-text a {
        font-size: 13px;
    }

    /* Footer bottom */
    .footer-bottom {
        padding: 16px 0;
    }

    .footer-bottom .copyright {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .footer-bottom-links {
        justify-content: center;
        gap: 8px;
    }

    .footer-bottom-links a {
        font-size: 12px;
    }
}

/* ===== MOBILE BOTTOM NAV ===== */
@media (max-width: 767px) {
    .mobile-bottom-nav {
        display: flex !important;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: #fff;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
        z-index: 1050;
        padding: 8px 0 calc(8px + env(safe-area-inset-bottom));
        border-top: 1px solid #f0f0f0;
    }

    .mobile-bottom-nav a {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 3px;
        color: #9CA3AF;
        text-decoration: none;
        font-size: 10px;
        font-weight: 500;
        transition: color 0.2s ease;
        padding: 4px 0;
    }

    .mobile-bottom-nav a i {
        font-size: 20px;
        transition: transform 0.2s ease;
    }

    .mobile-bottom-nav a.active,
    .mobile-bottom-nav a:active {
        color: var(--primary-color);
    }

    .mobile-bottom-nav a.active i,
    .mobile-bottom-nav a:active i {
        transform: scale(1.1);
    }

    /* WhatsApp için özel stil */
    .mobile-bottom-nav a[href*="wa.me"] {
        color: #25D366;
    }

    .mobile-bottom-nav a[href*="wa.me"]:active {
        color: #128C7E;
    }
}

/* Desktop'ta mobile nav gizle */
@media (min-width: 768px) {
    .mobile-bottom-nav {
        display: none !important;
    }
}

/* ===== WHATSAPP FLOAT MOBİL ===== */
@media (max-width: 767px) {
    .whatsapp-float {
        bottom: 85px;
        right: 16px;
        width: 52px;
        height: 52px;
        font-size: 24px;
    }

    .whatsapp-float .whatsapp-tooltip {
        display: none;
    }
}

/* ===== BACK TO TOP MOBİL ===== */
@media (max-width: 767px) {
    .back-to-top,
    #back-top {
        bottom: 90px;
        right: 16px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* ===== PAGE HEADERS MOBİL ===== */
@media (max-width: 767px) {
    .breadcrumb-section,
    .page-header {
        padding: 20px 0;
    }

    .breadcrumb-section h1,
    .page-header h1 {
        font-size: 22px;
    }

    .breadcrumb {
        font-size: 12px;
    }

    .breadcrumb-item + .breadcrumb-item::before {
        font-size: 10px;
    }
}

/* ===== FORM ELEMENTS MOBİL ===== */
@media (max-width: 767px) {
    .form-control,
    .form-select,
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea {
        font-size: 16px !important; /* iOS zoom'u engeller */
        padding: 12px 16px;
        border-radius: 10px;
    }

    .btn {
        padding: 12px 20px;
        font-size: 14px;
        border-radius: 10px;
    }

    .btn-lg {
        padding: 14px 24px;
        font-size: 15px;
    }
}

/* ===== PRODUCT DETAIL PAGE MOBİL ===== */
@media (max-width: 767px) {
    .shop-details-section {
        padding: 20px 0;
    }

    .shop-details-section .title-wrapper h2 {
        font-size: 20px;
    }

    .shop-details-section .whatsapp-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 15px;
    }

    /* Product image gallery mobil */
    .shop-details-section .product-gallery img {
        border-radius: 12px;
    }

    .shop-details-section .thumbnail-images {
        gap: 8px;
    }

    .shop-details-section .thumbnail-images img {
        width: 60px;
        height: 60px;
        border-radius: 8px;
    }
}

/* ===== CONTACT PAGE MOBİL ===== */
@media (max-width: 767px) {
    .contact-section {
        padding: 30px 0;
    }

    .contact-info-items {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .contact-info-items .icon {
        margin-bottom: 12px;
    }

    .contact-form .form-group {
        margin-bottom: 16px;
    }
}

/* ===== FAQ PAGE MOBİL ===== */
@media (max-width: 767px) {
    .faq-section {
        padding: 30px 0;
    }

    .accordion-item {
        border-radius: 10px !important;
        margin-bottom: 10px;
    }

    .accordion-button {
        padding: 16px;
        font-size: 14px;
    }

    .accordion-body {
        padding: 16px;
        font-size: 13px;
    }
}

/* ===== ABOUT PAGE MOBİL ===== */
@media (max-width: 767px) {
    .about-section {
        padding: 30px 0;
    }

    .about-section h1,
    .about-section .text-4xl {
        font-size: 24px !important;
    }

    .about-section h2,
    .about-section .text-2xl {
        font-size: 18px !important;
    }
}

/* ===== ANIMATIONS - Touch İyileştirmeleri ===== */
@media (max-width: 767px) {
    /* Hover efektlerini kaldır (touch cihazlar için) */
    .product-card-modern:hover,
    .shop-box-items:hover,
    .category-card:hover,
    .testimonial-card-items:hover {
        transform: none;
    }

    /* Touch feedback için active state */
    .product-card-modern:active,
    .shop-box-items:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }

    /* WOW.js animasyonlarını hafiflet */
    .wow {
        animation-duration: 0.6s !important;
    }
}

/* ===== İOS SAFE AREA ===== */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
    .mobile-bottom-nav {
        padding-bottom: calc(8px + env(safe-area-inset-bottom));
    }

    .footer-modern {
        padding-bottom: calc(75px + env(safe-area-inset-bottom));
    }
}

/* ===== DARK MODE SUPPORT (Opsiyonel) ===== */
@media (prefers-color-scheme: dark) {
    /* Gelecekte dark mode eklenirse burada stilleri tanımla */
}

/* ===== LANDSCAPE MOBİL ===== */
@media (max-width: 767px) and (orientation: landscape) {
    .hero-slide {
        min-height: 280px;
    }

    .hero-slide-title {
        font-size: 20px;
    }

    .hero-slide-desc {
        font-size: 12px;
    }

    .mobile-bottom-nav {
        padding: 6px 0;
    }

    .mobile-bottom-nav a i {
        font-size: 18px;
    }

    .mobile-bottom-nav a span {
        font-size: 9px;
    }
}

/* ===== HIGH DPI SCREENS ===== */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    /* Retina ekranlar için ince çizgiler */
    .product-card-modern,
    .shop-box-items,
    .feature-wrapper {
        border-width: 0.5px;
    }
}

/* ========================================
   PRODUCTS PAGE - MOBİL STİLLER
   ======================================== */

/* Products Hero - Açık Mavi + Beyaz */
.products-hero-section {
    background: #0066B1;
    padding: 40px 0;
    color: #fff;
    text-align: center;
}

.products-hero-content h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.products-hero-content h1 i {
    font-size: 24px;
}

.products-hero-content p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 16px;
}

.products-stats .stat-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
}

/* Breadcrumb Area */
.breadcrumb-area {
    background: #f8f9fa;
    padding: 12px 0;
    border-bottom: 1px solid #e5e7eb;
}

.breadcrumb-area .breadcrumb {
    font-size: 13px;
}

.breadcrumb-area .breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb-area .breadcrumb-item a:hover {
    text-decoration: underline;
}

/* Sidebar */
.products-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.widget-title {
    font-size: 16px;
    font-weight: 600;
    color: #0a0a0a;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.widget-title i {
    color: var(--primary-color);
}

/* Search Widget */
.sidebar-search-form {
    display: flex;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

.sidebar-search-form input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    font-size: 14px;
    outline: none;
}

.sidebar-search-form button {
    padding: 12px 16px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.sidebar-search-form button:hover {
    background: var(--primary-dark);
}

/* Category List */
.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 4px;
}

.category-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    color: #4B5563;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.category-list li a:hover,
.category-list li.active a {
    background: var(--primary-light);
    color: var(--primary-color);
}

.cat-count {
    background: #f0f0f0;
    color: #6B7280;
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.category-list li.active .cat-count,
.category-list li a:hover .cat-count {
    background: var(--primary-color);
    color: #fff;
}

/* Filter List */
.filter-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.filter-list li {
    margin-bottom: 4px;
}

.filter-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    color: #4B5563;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.filter-list li a i {
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

.filter-list li a:hover,
.filter-list li.active a {
    background: var(--primary-light);
    color: var(--primary-color);
}

/* CTA Widget */
.cta-widget {
    background: #25D366 !important;
    border: none !important;
    text-align: center;
    color: #fff;
}

.cta-widget .cta-content i {
    font-size: 40px;
    margin-bottom: 12px;
}

.cta-widget h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.cta-widget p {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 16px;
}

.cta-widget .cta-btn {
    display: inline-block;
    background: #fff;
    color: #25D366;
    padding: 10px 24px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-widget .cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Products Top Bar */
.products-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 12px;
}

.results-count {
    font-size: 14px;
    color: #6B7280;
}

.view-toggle {
    display: flex;
    gap: 8px;
}

.view-btn {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #fff;
    color: #6B7280;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-btn.active,
.view-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

/* Products Page Mobil */
@media (max-width: 991px) {
    .products-sidebar {
        position: static;
        margin-bottom: 30px;
    }

    /* Sidebar toggle button */
    .sidebar-toggle {
        display: block;
        width: 100%;
        padding: 14px;
        background: var(--primary-color);
        color: #fff;
        border: none;
        border-radius: 10px;
        font-size: 15px;
        font-weight: 600;
        margin-bottom: 16px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }
}

@media (max-width: 767px) {
    /* Products hero mobil */
    .products-hero-section {
        padding: 24px 0;
    }

    .products-hero-content h1 {
        font-size: 20px;
        flex-direction: column;
        gap: 8px;
    }

    .products-hero-content h1 i {
        font-size: 28px;
    }

    .products-hero-content p {
        font-size: 13px;
        padding: 0 10px;
    }

    .products-stats .stat-item {
        font-size: 12px;
        padding: 6px 12px;
    }

    /* Breadcrumb mobil */
    .breadcrumb-area {
        padding: 10px 0;
    }

    .breadcrumb-area .breadcrumb {
        font-size: 11px;
    }

    /* Products main section */
    .products-main-section {
        padding: 20px 0;
    }

    /* Sidebar mobil - accordion style */
    .products-sidebar {
        display: none; /* Mobilde varsayılan gizli */
    }

    .products-sidebar.show {
        display: block;
    }

    .sidebar-widget {
        padding: 16px;
        margin-bottom: 12px;
        border-radius: 10px;
    }

    .widget-title {
        font-size: 14px;
        margin-bottom: 12px;
        padding-bottom: 10px;
    }

    .category-list li a,
    .filter-list li a {
        padding: 10px 12px;
        font-size: 13px;
    }

    .cta-widget {
        padding: 20px !important;
    }

    .cta-widget .cta-content i {
        font-size: 32px;
    }

    .cta-widget h4 {
        font-size: 16px;
    }

    /* Products topbar mobil */
    .products-topbar {
        padding: 12px 14px;
        border-radius: 10px;
    }

    .results-count {
        font-size: 12px;
    }

    .view-btn {
        width: 34px;
        height: 34px;
    }

    /* Products grid mobil - 2 sütun */
    .products-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    /* Sidebar toggle mobil */
    .mobile-filter-toggle {
        display: flex;
        width: 100%;
        padding: 12px 16px;
        background: #fff;
        border: 1px solid #e5e7eb;
        border-radius: 10px;
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 16px;
        cursor: pointer;
        align-items: center;
        justify-content: center;
        gap: 8px;
        color: var(--primary-color);
    }

    .mobile-filter-toggle i {
        font-size: 16px;
    }
}

/* ========================================
   SEARCH PAGE MOBİL STİLLER
   ======================================== */

.search-results-section {
    padding: 30px 0;
}

.search-header {
    text-align: center;
    margin-bottom: 30px;
}

.search-header h1 {
    font-size: 24px;
    margin-bottom: 8px;
}

.search-header p {
    color: #6B7280;
}

@media (max-width: 767px) {
    .search-results-section {
        padding: 20px 0;
    }

    .search-header h1 {
        font-size: 18px;
    }

    .search-header p {
        font-size: 13px;
    }
}

/* ========================================
   CONTACT PAGE MOBİL STİLLER
   ======================================== */

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.contact-info-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(0, 102, 177, 0.1);
    transform: translateY(-4px);
}

.contact-info-card .icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 24px;
}

.contact-info-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-info-card p,
.contact-info-card a {
    font-size: 14px;
    color: #6B7280;
    margin: 0;
    text-decoration: none;
}

.contact-info-card a:hover {
    color: var(--primary-color);
}

@media (max-width: 991px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .contact-info-card {
        padding: 20px;
        display: flex;
        align-items: center;
        text-align: left;
        gap: 16px;
    }

    .contact-info-card .icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        margin: 0;
        font-size: 20px;
    }

    .contact-info-card h4 {
        font-size: 14px;
        margin-bottom: 4px;
    }

    .contact-info-card p,
    .contact-info-card a {
        font-size: 13px;
    }
}

/* ========================================
   PAGINATION MOBİL STİLLER
   ======================================== */

.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.pagination .page-link {
    padding: 10px 16px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    color: #4B5563;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.pagination .page-link:hover,
.pagination .page-item.active .page-link {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

@media (max-width: 767px) {
    .pagination {
        gap: 6px;
    }

    .pagination .page-link {
        padding: 8px 12px;
        font-size: 13px;
    }

    /* Uzun pagination için scroll */
    .pagination-wrapper {
        overflow-x: auto;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
    }
}

/* ========================================
   MODERN SCROLL STILLERI
   ======================================== */

/* Custom scrollbar for all scrollable areas */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a1a1a1;
}

/* Mobilde daha ince scrollbar */
@media (max-width: 767px) {
    ::-webkit-scrollbar {
        width: 4px;
        height: 4px;
    }
}

/* ========================================
   SKELETON LOADING ANİMASYONLARI
   ======================================== */

.skeleton-loading {
    background: #f0f0f0;
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s infinite;
}

@keyframes skeleton-shimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.product-skeleton {
    border-radius: 12px;
    overflow: hidden;
}

.product-skeleton .skeleton-image {
    aspect-ratio: 1;
    background: #f0f0f0;
}

.product-skeleton .skeleton-text {
    height: 16px;
    margin: 12px;
    border-radius: 4px;
}

.product-skeleton .skeleton-price {
    height: 20px;
    width: 60%;
    margin: 12px;
    border-radius: 4px;
}

/* ========================================
   PRINT STYLES
   ======================================== */

@media print {
    .topbar-modern,
    .header-modern,
    .mobile-bottom-nav,
    .whatsapp-float,
    .back-to-top,
    .products-sidebar,
    .footer-modern {
        display: none !important;
    }

    body {
        padding: 0 !important;
        margin: 0 !important;
    }

    .products-grid-section {
        padding: 0 !important;
    }

    .product-card-modern {
        break-inside: avoid;
        page-break-inside: avoid;
    }
}

/* ========================================
   TOUCH-FRIENDLY & MODERN UI ENHANCEMENTs
   ======================================== */

/* Touch feedback for interactive elements */
.product-card-modern.touch-active,
.shop-box-items.touch-active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
}

/* Mobile filter toggle button styling */
.mobile-filter-toggle {
    display: none;
}

@media (max-width: 767px) {
    .mobile-filter-toggle {
        display: flex;
        width: 100%;
        padding: 14px 20px;
        background: #fff;
        border: 2px solid var(--primary-color);
        border-radius: 12px;
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 16px;
        cursor: pointer;
        align-items: center;
        justify-content: center;
        gap: 10px;
        color: var(--primary-color);
        transition: all 0.3s ease;
    }

    .mobile-filter-toggle:hover,
    .mobile-filter-toggle.active {
        background: var(--primary-color);
        color: #fff;
    }

    .mobile-filter-toggle i {
        font-size: 16px;
        transition: transform 0.3s ease;
    }

    .mobile-filter-toggle.active i {
        transform: rotate(45deg);
    }
}

/* Header scroll effect */
.header-modern.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

/* Smooth image loading */
img {
    opacity: 1;
    transition: opacity 0.3s ease;
}

img[data-src] {
    opacity: 0;
}

img.loaded {
    opacity: 1;
}

/* Focus states for accessibility */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Better text rendering */
body {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Selection styling */
::selection {
    background: var(--primary-color);
    color: #fff;
}

::-moz-selection {
    background: var(--primary-color);
    color: #fff;
}

/* Mobile safe area spacing */
@supports (padding: max(0px)) {
    .mobile-bottom-nav {
        padding-bottom: max(8px, env(safe-area-inset-bottom));
    }

    .footer-modern {
        padding-bottom: max(75px, calc(75px + env(safe-area-inset-bottom)));
    }
}

/* Pull to refresh indicator styling (for PWA) */
.ptr--ptr {
    background: var(--primary-light) !important;
}

.ptr--text {
    color: var(--primary-color) !important;
}

/* Loading state for buttons */
.btn.loading {
    position: relative;
    color: transparent !important;
    pointer-events: none;
}

.btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: btn-spin 0.8s linear infinite;
}

@keyframes btn-spin {
    to {
        transform: rotate(360deg);
    }
}

/* Notification badge for icons */
.icon-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 18px;
    height: 18px;
    background: #0a0a0a;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

/* Empty state styling */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #9CA3AF;
}

.empty-state i {
    font-size: 64px;
    color: #ddd;
    margin-bottom: 20px;
}

.empty-state h3 {
    font-size: 20px;
    color: #4B5563;
    margin-bottom: 10px;
}

.empty-state p {
    font-size: 14px;
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    .empty-state {
        padding: 40px 16px;
    }

    .empty-state i {
        font-size: 48px;
    }

    .empty-state h3 {
        font-size: 18px;
    }
}

/* Image placeholder with aspect ratio */
.img-placeholder {
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 32px;
}

.img-placeholder.square {
    aspect-ratio: 1;
}

.img-placeholder.landscape {
    aspect-ratio: 16/9;
}

/* Ripple effect for buttons */
.btn-ripple {
    position: relative;
    overflow: hidden;
}

.btn-ripple::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-ripple:active::after {
    width: 300px;
    height: 300px;
}

/* ===== SWIPER WOW.JS FLICKERING FIX ===== */
/* Swiper duplicate slide'larda WOW animasyonlarını devre dışı bırak */
.swiper-slide-duplicate,
.swiper-slide-duplicate * {
    animation: none !important;
    -webkit-animation: none !important;
    /* opacity: 1 !important; - KALDIRILDI: Fade efekti için */
}

/* Testimonial slider flickering fix */
.testimonial-slider .swiper-slide {
    visibility: visible !important;
    /* opacity: 1 !important; - KALDIRILDI: Fade efekti için */
}

.testimonial-slider .testimonial-card-items {
    animation: none !important;
    -webkit-animation: none !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
}

/* Swiper active/visible slide'lar için animasyon kapatma */
.swiper-slide-active .testimonial-card-items,
.swiper-slide-next .testimonial-card-items,
.swiper-slide-prev .testimonial-card-items {
    animation: none !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Tüm Swiper slider'larda WOW class'larını override et */
.swiper .wow,
.swiper-wrapper .wow {
    animation: none !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Hero slider için de aynı fix */
.hero-slider .swiper-slide,
.hero-slider .swiper-slide * {
    animation: none !important;
    visibility: visible !important;
    /* opacity: 1 !important; - KALDIRILDI: Fade efekti için Swiper'a bırakıldı */
}

/* Hero slider MODERN için fix */
.hero-slider-modern .swiper-slide,
.hero-slider-modern .swiper-slide * {
    animation-name: none !important;
    -webkit-animation-name: none !important;
}

.hero-slider-modern .swiper-slide .wow {
    visibility: visible !important;
    animation: none !important;
}

/* Swiper Fade Effect için KRITIK düzeltmeler */
/* Slider slide'ları Swiper otomatik yönetecek - opacity:1 fade efektini bozar! */
.hero-slider-modern .swiper-slide {
    /* opacity: 1 !important; - KALDIRILDI: Fade efekti için Swiper'a bırakıldı */
    visibility: visible !important;
}

/* NOT: opacity:0 fade efekti sorun yarattığı için kaldırıldı
.hero-slider-modern .swiper-slide:not(.swiper-slide-active) {
    opacity: 0 !important;
    pointer-events: none;
}
*/

.hero-slider-modern .swiper-slide-active {
    opacity: 1 !important;
    z-index: 2;
}

/* Slide geçişi için */
.hero-slider-modern .swiper-slide {
    transition: transform 0.8s ease !important;
}

/* Category slider flickering fix */
.book-catagories-slider .swiper-slide,
.book-catagories-slider .book-catagories-items {
    animation: none !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* ========== HERO SLIDER MODERN STYLES ========== */
.hero-slider-modern {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background: #000;
}

/* Swiper Fade Effect için container ayarları */
.hero-slider-modern .swiper,
.hero-slider-modern .hero-swiper {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-slider-modern .swiper-wrapper {
    width: 100%;
    height: 100%;
    /* Fade efektinde wrapper height collapse olmaması için */
    position: relative !important;
}

/* Fade efektinde slide'lar için height garantisi */
/* Slide efekti için relative positioning kullan */
.hero-slider-modern .swiper-slide {
    width: 100% !important;
    height: 100% !important;
    position: relative !important;
    flex-shrink: 0;
}

/* Fade efektinde slide'lar absolute olmalı */
.hero-slider-modern.swiper-fade .swiper-slide,
.hero-slider-modern .swiper-fade .swiper-slide {
    pointer-events: none;
    transition-property: opacity !important;
}

.hero-slider-modern.swiper-fade .swiper-slide-active,
.hero-slider-modern .swiper-fade .swiper-slide-active {
    pointer-events: auto;
}

@media (min-width: 768px) {
    .hero-slider-modern {
        height: 650px;
    }
}

@media (min-width: 1200px) {
    .hero-slider-modern {
        height: 700px;
    }
}

.hero-slider-modern .hero-swiper {
    width: 100%;
    height: 100%;
}

.hero-slider-modern .swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Hero Slide - Temel Stiller */
.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

/* Hero Slide Overlay */
.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Hero Slide Content */
.hero-slide-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

/* Hero Tag/Badge */
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 20px;
}

.hero-tag i {
    color: #0066B1;
    font-size: 12px;
}

/* Hero Slide Title */
.hero-slide-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
}

@media (min-width: 768px) {
    .hero-slide-title {
        font-size: 48px;
    }
}

@media (min-width: 1200px) {
    .hero-slide-title {
        font-size: 56px;
    }
}

.hero-slide-title span {
    color: var(--primary-color);
}

/* Hero Slide Description */
.hero-slide-desc {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 500px;
}

@media (min-width: 768px) {
    .hero-slide-desc {
        font-size: 18px;
    }
}

/* Hero Slide Buttons */
.hero-slide-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--primary-color);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 102, 177, 0.4);
}

.btn-hero-primary:hover {
    background: var(--primary-dark);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 102, 177, 0.5);
}

.btn-hero-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--whatsapp-green);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.btn-hero-whatsapp:hover {
    background: var(--whatsapp-hover);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

/* Hero Slider Navigation */
.hero-nav-prev,
.hero-nav-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    border: none;
}

.hero-nav-prev {
    left: 20px;
}

.hero-nav-next {
    right: 20px;
}

.hero-nav-prev:hover,
.hero-nav-next:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-50%) scale(1.1);
}

@media (max-width: 767px) {
    .hero-nav-prev,
    .hero-nav-next {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .hero-nav-prev {
        left: 10px;
    }

    .hero-nav-next {
        right: 10px;
    }
}

/* Hero Slider Pagination */
.hero-pagination {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.hero-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.hero-pagination .swiper-pagination-bullet-active {
    background: #fff;
    width: 30px;
    border-radius: 6px;
}

/* Hero Slide Image Only Style */
.hero-slide-imageonly {
    padding: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-fullscreen-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Hero Slide With Text Style */
.hero-slide-withtext {
    background-size: cover !important;
    background-position: center right !important;
    background-repeat: no-repeat !important;
}

/* Overlay artık inline style'dan geliyor - veritabanından dinamik */
/* .hero-slide-withtext .hero-slide-overlay {
    background: rgba(0,0,0,0.85);
} */

.hero-slide-withtext .container {
    height: 100%;
}

/* Hero Slide Full Background Style */
.hero-slide-fullbg {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

/* Overlay artık inline style'dan geliyor - veritabanından dinamik */
/* .hero-slide-fullbg .hero-slide-overlay {
    background: rgba(0,0,0,0.7);
} */

/* Hero Product Image Animation */
.hero-product-img {
    max-width: 100%;
    max-height: 450px;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    animation: heroFloat 3s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.hero-slide-image {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

/* ===== SLIDER FIX - Resim Görünürlük ===== */
.hero-slide {
    background-color: transparent !important;
}

.hero-slide-bg {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* =====================================================
   KUPON BMW STYLE - PRODUCT DETAIL PAGE
   ===================================================== */

/* Product Detail Layout - Two Column */
.product-detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px 0;
}

/* Product Gallery - Left Column */
.product-gallery-kupon {
    position: sticky;
    top: 100px;
}

.product-main-image-kupon {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
    position: relative;
}

.product-main-image-kupon img {
    width: 100%;
    height: 450px;
    object-fit: contain;
    cursor: zoom-in;
    transition: transform 0.3s ease;
}

.product-main-image-kupon:hover img {
    transform: scale(1.02);
}

.product-main-image-kupon .zoom-icon {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s;
}

.product-main-image-kupon:hover .zoom-icon {
    opacity: 1;
}

.product-thumbnails-kupon {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.thumb-item-kupon {
    width: 80px;
    height: 80px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
}

.thumb-item-kupon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumb-item-kupon.active,
.thumb-item-kupon:hover {
    border-color: #1E293B;
}

/* Product Info - Right Column */
.product-info-kupon {
    padding: 0 20px;
}

.product-brand-kupon {
    font-size: 12px;
    color: #9CA3AF;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.product-title-kupon {
    font-size: 28px;
    font-weight: 700;
    color: #1E293B;
    line-height: 1.3;
    margin-bottom: 15px;
}

.product-sku-kupon {
    font-size: 13px;
    color: #6B7280;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-sku-kupon i {
    color: #9CA3AF;
}

.product-price-kupon {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
}

.price-current-kupon {
    font-size: 32px;
    font-weight: 700;
    color: #1E293B;
}

.price-old-kupon {
    font-size: 18px;
    color: #9CA3AF;
    text-decoration: line-through;
}

.price-discount-kupon {
    background: #0a0a0a;
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
}

/* Stock Status */
.stock-status-kupon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

.stock-status-kupon.in-stock {
    background: #E8F4FC;
    color: #004d8a;
}

.stock-status-kupon.in-stock i {
    color: #004d8a;
}

.stock-status-kupon.out-of-stock {
    background: #ffebee;
    color: #0a0a0a;
}

.stock-status-kupon.out-of-stock i {
    color: #0a0a0a;
}

/* WhatsApp Button - Prominent */
.whatsapp-cta-kupon {
    width: 100%;
    padding: 16px 24px;
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 20px;
    text-decoration: none;
}

.whatsapp-cta-kupon:hover {
    background: #1da851;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-cta-kupon i {
    font-size: 20px;
}

/* Product Features List */
.product-features-kupon {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.product-features-kupon ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.product-features-kupon li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #333;
}

.product-features-kupon li i {
    color: #25D366;
    font-size: 14px;
    width: 18px;
}

/* Product Meta Info */
.product-meta-kupon {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.product-meta-kupon .meta-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.product-meta-kupon .meta-item:last-child {
    border-bottom: none;
}

.product-meta-kupon .meta-label {
    font-weight: 600;
    color: #333;
}

.product-meta-kupon .meta-value {
    color: #6B7280;
}

.product-meta-kupon .meta-value a {
    color: var(--primary-color);
    text-decoration: none;
}

.product-meta-kupon .meta-value a:hover {
    text-decoration: underline;
}

/* Product Tabs */
.product-tabs-kupon {
    margin-top: 40px;
}

.product-tabs-kupon .nav-tabs {
    border-bottom: 2px solid #e9ecef;
    gap: 0;
}

.product-tabs-kupon .nav-tabs .nav-link {
    border: none;
    background: transparent;
    padding: 15px 25px;
    font-weight: 600;
    color: #6B7280;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all 0.3s;
}

.product-tabs-kupon .nav-tabs .nav-link:hover {
    color: #1E293B;
}

.product-tabs-kupon .nav-tabs .nav-link.active {
    color: #1E293B;
    border-bottom-color: #1E293B;
}

.product-tabs-kupon .tab-content {
    padding: 30px 0;
}

.product-tabs-kupon .tab-pane h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1E293B;
}

.product-tabs-kupon .tab-pane p {
    color: #555;
    line-height: 1.8;
}

/* Related Products - 4 Column Grid */
.related-products-kupon {
    padding: 60px 0;
    background: #f8f9fa;
}

.related-products-kupon .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.related-products-kupon .section-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 10px;
}

.related-products-kupon .section-header p {
    color: #6B7280;
    font-size: 15px;
}

/* Product Detail Responsive */
@media (max-width: 991px) {
    .product-detail-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .product-gallery-kupon {
        position: static;
    }

    .product-main-image-kupon img {
        height: 350px;
    }

    .product-info-kupon {
        padding: 0;
    }

    .product-title-kupon {
        font-size: 24px;
    }

    .price-current-kupon {
        font-size: 28px;
    }
}

@media (max-width: 575px) {
    .product-main-image-kupon img {
        height: 280px;
    }

    .thumb-item-kupon {
        width: 60px;
        height: 60px;
    }

    .product-title-kupon {
        font-size: 20px;
    }

    .product-features-kupon ul {
        grid-template-columns: 1fr;
    }

    .product-tabs-kupon .nav-tabs .nav-link {
        padding: 12px 15px;
        font-size: 14px;
    }
}

/* =====================================================
   KUPON BMW STYLE - PRODUCT GRID & CARDS
   ===================================================== */

.products-grid-kupon {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-card-kupon {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
    position: relative;
}

.product-card-kupon:hover {
    border-color: #1E293B;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.product-card-kupon .product-image {
    position: relative;
    aspect-ratio: 1/1;
    background: #f8f9fa;
    overflow: hidden;
}

.product-card-kupon .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.product-card-kupon .discount-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #0a0a0a;
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    z-index: 2;
}

.product-card-kupon .featured-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #004d8a;
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
}

/* Quick View Button */
.product-card-kupon .quick-view-btn {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: #004d8a;
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    opacity: 0;
    transition: all 0.3s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 3;
}

.product-card-kupon:hover .quick-view-btn {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.product-card-kupon .quick-view-btn:hover {
    background: #333;
    color: #fff;
}

.product-card-kupon .product-content {
    padding: 16px;
}

.product-card-kupon .product-category {
    font-size: 11px;
    color: #9CA3AF;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    display: block;
}

.product-card-kupon .product-name {
    font-size: 14px;
    font-weight: 500;
    color: #1E293B;
    line-height: 1.4;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 40px;
}

.product-card-kupon .product-name a {
    color: inherit;
    text-decoration: none;
}

.product-card-kupon .product-name a:hover {
    color: var(--primary-color);
}

.product-card-kupon .product-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}

.product-card-kupon .current-price {
    font-size: 18px;
    font-weight: 700;
    color: #1E293B;
}

.product-card-kupon .old-price {
    font-size: 13px;
    color: #9CA3AF;
    text-decoration: line-through;
}

.product-card-kupon .product-sku {
    font-size: 11px;
    color: #aaa;
    margin-top: 8px;
}

/* Product Grid Responsive */
@media (max-width: 1199px) {
    .products-grid-kupon {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .products-grid-kupon {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 575px) {
    .products-grid-kupon {
        gap: 12px;
    }

    .product-card-kupon .product-content {
        padding: 12px;
    }

    .product-card-kupon .product-name {
        font-size: 13px;
        min-height: auto;
    }

    .product-card-kupon .current-price {
        font-size: 16px;
    }

    .product-card-kupon .quick-view-btn {
        padding: 8px 14px;
        font-size: 12px;
    }
}

/* =====================================================
   KUPON BMW STYLE - KAMPANYA SECTIONS
   ===================================================== */

.kampanya-section {
    padding: 60px 0;
    background: #fff;
}

.kampanya-section.alt-bg {
    background: #f8f9fa;
}

.kampanya-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e9ecef;
}

.kampanya-header h2 {
    font-size: 22px;
    font-weight: 700;
    color: #1E293B;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.kampanya-header h2 i {
    font-size: 24px;
}

.kampanya-header .view-all {
    font-size: 14px;
    font-weight: 600;
    color: #1E293B;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s;
}

.kampanya-header .view-all:hover {
    color: var(--primary-color);
}

/* View-all linki altın renk */
.kampanya-header .view-all {
    color: var(--primary-color);
}

.kampanya-header .view-all i {
    transition: transform 0.3s ease;
}

.kampanya-header .view-all:hover i {
    transform: translateX(4px);
}

/* Section Badge Colors - Mavi Tema */
.kampanya-header h2 i { color: var(--primary-color); }
.kampanya-header.firsat h2 i { color: var(--primary-color); }
.kampanya-header.gunun h2 i { color: var(--primary-color); }
.kampanya-header.indirim h2 i { color: var(--primary-color); }
.kampanya-header.populer h2 i { color: var(--primary-color); }
.kampanya-header.yeni h2 i { color: var(--primary-color); }

/* Section Border Mavi Aksan */
.kampanya-header {
    border-bottom: 2px solid var(--accent-light);
}

/* Kampanya Grid - Always 4 columns */
.kampanya-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 1199px) {
    .kampanya-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .kampanya-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px;
    }

    .kampanya-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

@media (max-width: 767px) {
    .kampanya-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
}

@media (max-width: 575px) {
    .kampanya-section {
        padding: 30px 0;
    }

    .kampanya-header h2 {
        font-size: 16px;
    }

    .kampanya-header .view-all {
        font-size: 12px;
    }

    /* KAMPANYA GRİD - 2 SÜTUN ZORUNLU */
    .kampanya-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }

    /* ÜRÜN KARTI - MOBİL DÜZEN */
    .kampanya-grid .product-card-kupon {
        display: flex;
        flex-direction: column;
        border-radius: 8px;
        overflow: hidden;
        background: #fff;
        border: 1px solid #eee;
    }

    .kampanya-grid .product-card-kupon .product-image {
        width: 100% !important;
        aspect-ratio: 1/1 !important;
        background: #f5f5f5;
        overflow: hidden;
    }

    .kampanya-grid .product-card-kupon .product-image img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    .kampanya-grid .product-card-kupon .product-content {
        padding: 10px !important;
    }

    .kampanya-grid .product-card-kupon .product-name {
        font-size: 12px !important;
        line-height: 1.3 !important;
        margin-bottom: 8px !important;
        min-height: auto !important;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .kampanya-grid .product-card-kupon .product-name a {
        color: #1E293B;
        text-decoration: none;
    }

    .kampanya-grid .product-card-kupon .btn-contact-whatsapp,
    .kampanya-grid .product-card-kupon .btn-contact-page {
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 6px;
        width: 100%;
        padding: 8px 10px !important;
        font-size: 11px !important;
        background: #004d8a;
        color: #fff;
        border-radius: 6px;
        text-decoration: none;
    }

    .kampanya-grid .product-card-kupon .btn-contact-whatsapp i,
    .kampanya-grid .product-card-kupon .btn-contact-page i {
        font-size: 14px;
    }

    /* Quick view gizle mobilde */
    .kampanya-grid .product-card-kupon .quick-view-btn {
        display: none !important;
    }
}

/* =====================================================
   QUICK VIEW MODAL
   ===================================================== */

.quick-view-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.quick-view-modal.active {
    display: flex;
}

.quick-view-content {
    background: #fff;
    border-radius: 12px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.quick-view-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    background: #f0f0f0;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #6B7280;
    transition: all 0.3s;
    z-index: 10;
}

.quick-view-close:hover {
    background: #004d8a;
    color: #fff;
}

.quick-view-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 30px;
}

.quick-view-image {
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

.quick-view-image img {
    width: 100%;
    height: 400px;
    object-fit: contain;
}

.quick-view-info {
    padding: 10px 0;
}

.quick-view-info .product-title {
    font-size: 24px;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 15px;
    line-height: 1.3;
}

.quick-view-info .product-price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 20px;
}

.quick-view-info .current-price {
    font-size: 28px;
    font-weight: 700;
    color: #1E293B;
}

.quick-view-info .old-price {
    font-size: 16px;
    color: #9CA3AF;
    text-decoration: line-through;
}

.quick-view-info .product-desc {
    color: #6B7280;
    line-height: 1.7;
    margin-bottom: 20px;
    max-height: 100px;
    overflow: hidden;
}

.quick-view-info .quick-view-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quick-view-info .btn-whatsapp {
    width: 100%;
    padding: 14px 20px;
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s;
}

.quick-view-info .btn-whatsapp:hover {
    background: #1da851;
    color: #fff;
}

.quick-view-info .btn-detail {
    width: 100%;
    padding: 14px 20px;
    background: #004d8a;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s;
}

.quick-view-info .btn-detail:hover {
    background: #333;
    color: #fff;
}

@media (max-width: 767px) {
    .quick-view-body {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }

    .quick-view-image img {
        height: 280px;
    }

    .quick-view-info .product-title {
        font-size: 20px;
    }

    .quick-view-info .current-price {
        font-size: 24px;
    }
}

/* =====================================================
   MAGNIFIC POPUP CUSTOM STYLES
   ===================================================== */

.mfp-bg {
    background: rgba(0,0,0,0.9);
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
    color: #fff;
    font-size: 36px;
    right: 10px;
    top: 10px;
}

.mfp-counter {
    color: #fff;
    font-size: 14px;
}

.mfp-arrow {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.mfp-arrow:hover {
    background: rgba(255,255,255,0.2);
}

/* =====================================================
   BREADCRUMB CLEAN STYLE
   ===================================================== */

.breadcrumb-clean {
    background: #f8f9fa;
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb-clean .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    font-size: 13px;
}

.breadcrumb-clean .breadcrumb-item a {
    color: #6B7280;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-clean .breadcrumb-item a:hover {
    color: var(--primary-color);
}

.breadcrumb-clean .breadcrumb-item.active {
    color: #1E293B;
    font-weight: 500;
}

.breadcrumb-clean .breadcrumb-item + .breadcrumb-item::before {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #aaa;
    font-size: 10px;
}

/* =====================================================
   MODERN CATEGORIES GRID
   ===================================================== */

.categories-section-modern {
    background: #f8f9fa;
}

.categories-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 30px;
}

.category-card-modern {
    display: block;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.category-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.category-card-modern .category-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #f0f0f0;
}

.category-card-modern .category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.category-card-modern:hover .category-image img {
    transform: scale(1.08);
}

.category-card-modern .category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 15px;
}

.category-card-modern:hover .category-overlay {
    opacity: 1;
}

.category-card-modern .category-count {
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    background: rgba(255,255,255,0.2);
    padding: 6px 14px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

.category-card-modern .category-info {
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.category-card-modern .category-number {
    width: 36px;
    height: 36px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #6B7280;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.category-card-modern:hover .category-number {
    background: #004d8a;
    color: #fff;
}

.category-card-modern .category-name {
    font-size: 14px;
    font-weight: 600;
    color: #1E293B;
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Categories Grid Responsive */
@media (max-width: 1199px) {
    .categories-grid-modern {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .categories-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 575px) {
    .categories-grid-modern {
        gap: 12px;
    }

    .category-card-modern .category-info {
        padding: 12px;
    }

    .category-card-modern .category-number {
        width: 32px;
        height: 32px;
        font-size: 11px;
    }

    .category-card-modern .category-name {
        font-size: 13px;
    }
}

/* =====================================================
   LOGO RESPONSIVE STYLES
   ===================================================== */

@media (max-width: 991px) {
    .logo-text-styled .logo-icon {
        width: 42px;
        height: 42px;
        font-size: 18px;
        border-radius: 10px;
    }

    .logo-text-styled .logo-imza {
        font-size: 18px;
    }

    .logo-text-styled .logo-bmw {
        font-size: 12px;
        letter-spacing: 3px;
    }
}

@media (max-width: 575px) {
    .logo-text-styled {
        gap: 8px;
    }

    .logo-text-styled .logo-icon {
        width: 38px;
        height: 38px;
        font-size: 16px;
        border-radius: 8px;
    }

    .logo-text-styled .logo-imza {
        font-size: 16px;
        letter-spacing: 1px;
    }

    .logo-text-styled .logo-bmw {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .footer-logo .logo-text-styled .logo-icon {
        width: 36px;
        height: 36px;
        font-size: 15px;
    }

    .footer-logo .logo-text-styled .logo-imza {
        font-size: 16px;
    }

    .footer-logo .logo-text-styled .logo-bmw {
        font-size: 10px;
    }
}

/* =====================================================
   PRODUCT CONTACT BUTTON - Bize Ulaşın
   ===================================================== */

.product-contact-btn {
    margin-top: 12px;
}

.product-contact-btn .btn-contact-whatsapp,
.product-contact-btn .btn-contact-page {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.product-contact-btn .btn-contact-whatsapp {
    background: #25D366;
    color: #fff;
}

.product-contact-btn .btn-contact-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    color: #fff;
}

.product-contact-btn .btn-contact-page {
    background: #0066B1;
    color: #fff;
}

.product-contact-btn .btn-contact-page:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
    color: #fff;
}

.product-contact-btn i {
    font-size: 16px;
}

/* Product Card Kupon - Remove price styling for contact button */
.product-card-kupon .product-content {
    display: flex;
    flex-direction: column;
}

.product-card-kupon .product-name {
    flex: 1;
}

/* =====================================================
   GOLD ACCENT OVERRIDES - Premium Mavi Tema
   ===================================================== */

/* Link Hover Colors - Mavi */
a:hover {
    color: var(--primary-color);
}

/* Section Title Accents */
.section-title h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin-top: 15px;
}

.section-title.text-center h2::after {
    margin-left: auto;
    margin-right: auto;
}

/* Feature Icons - Mavi */
.feature-section .icon i,
.feature-box-items .icon i,
.feature-wrapper .icon i {
    color: var(--accent-color) !important;
}

/* Star Ratings - Mavi */
.star i,
.rating i,
.client-info .star i {
    color: var(--accent-color) !important;
}

/* News Card Post Box - Mavi */
.news-card-items .post-box {
    background: var(--primary-color);
}

/* Theme Button 2 - Mavi */
.theme-btn-2 {
    color: var(--primary-color);
}

.theme-btn-2:hover {
    color: var(--primary-dark);
}

.theme-btn-2 i {
    color: var(--primary-color);
}

/* CTA Section - Mavi Aksan */
.cta-wrapper h2 {
    color: var(--primary-color);
}

.cta-wrapper h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 15px auto 0;
}

/* Transparent Button Hover - Mavi Border */
.theme-btn.transparent-btn:hover {
    background-color: var(--accent-color) !important;
    border-color: var(--primary-color) !important;
    color: #ffffff !important;
}

/* Product Card Hover Border - Mavi */
.product-card-kupon:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.1);
}

/* Shop Box Hover - Mavi */
.shop-box-items:hover {
    border-color: var(--primary-color);
}

.shop-box-items .shop-icon li a:hover {
    background: var(--primary-color);
    color: #fff;
}

/* Category Card Modern - Mavi */
.category-card-modern:hover .category-overlay {
    background: rgba(14, 165, 233, 0.85);
}

.category-card-modern .category-number {
    color: var(--primary-color);
}

/* Top Ratting Items Hover - Mavi */
.top-ratting-box-items:hover {
    border-color: var(--primary-color);
}

/* Pagination Active - Mavi */
.pagination .page-item.active .page-link {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.pagination .page-link:hover {
    background: var(--primary-light);
    color: var(--primary-dark);
}

/* Counter Section Text Accent */
.counter-items h2 {
    color: var(--primary-color);
}

.counter-items p {
    color: rgba(255, 255, 255, 0.9);
}

/* Back to Top Button - Mavi */
.back-to-top {
    background: var(--primary-color);
}

.back-to-top:hover {
    background: var(--primary-dark);
}

/* Swiper Pagination - Mavi */
.swiper-pagination-bullet-active {
    background: var(--primary-color) !important;
}

/* Hero Navigation - Mavi */
.hero-nav-prev:hover,
.hero-nav-next:hover {
    background: var(--primary-color);
}

/* Footer Link Hover - Mavi */
.footer-widget a:hover {
    color: var(--primary-color);
}

/* Topbar Icon Colors */
.topbar-item i {
    color: var(--primary-color);
}

/* Header Nav Active - Mavi Underline */
.nav-menu .nav-item.active .nav-link,
.nav-menu .nav-item:hover .nav-link {
    color: var(--primary-color);
}

.nav-menu .nav-item.active .nav-link::after,
.nav-menu .nav-item:hover .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

/* Dropdown Menu Hover - Mavi */
.dropdown-menu-modern li a:hover,
.dropdown-menu-categories li a:hover {
    background: var(--primary-light);
    color: var(--primary-dark);
}

/* Featured Badge - Mavi */
.featured-badge {
    background: var(--primary-color);
    color: #fff;
}

/* Price Color */
.current-price,
.price-block .current-price {
    color: var(--primary-color);
}

/* Mobile Language Button Active */
.mobile-lang-btn.active {
    background: var(--primary-color);
    color: #fff;
}

/* ===================================================================
   TOPBAR & HEADER BOŞLUK DÜZELTMELERİ
   Tüm sayfalarda header ile içerik arasındaki boşluğu sıfırlar
   =================================================================== */

/* Main elementi - Header hemen altından başlar */
main {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Hero Slider - Header ile bitişik */
.hero-slider-modern {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Features Bar - Slider ile bitişik */
.features-bar-modern {
    margin-top: 0 !important;
}

/* About sayfası - Breadcrumb header altında */
.bg-white.border-b,
.breadcrumb-area {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Breadcrumb stil düzeltmeleri */
.breadcrumb-area {
    background: #fff;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.breadcrumb {
    margin-bottom: 0;
    padding: 0;
    background: transparent;
}

/* Category sayfası breadcrumb */
.cat-breadcrumb {
    margin-top: 0 !important;
}

/* Products section - Header altında hemen başlar */
.products-main-section {
    margin-top: 0 !important;
}

/* Section padding düzeltmeleri - İlk section için */
main > section:first-child,
main > div:first-child {
    margin-top: 0 !important;
}

/* Kampanya section - Slider sonrası */
.kampanya-section {
    margin-top: 0;
}

/* FAQ Page Header */
.page-header-section {
    margin-top: 0 !important;
}

/* Contact sayfası hero */
section.bg-bmw-blue:first-of-type,
.contact-hero-section {
    margin-top: 0 !important;
}

/* ===================================================================
   SAYFA BAZLI ÖZEL DÜZELTMELER
   =================================================================== */

/* Ana Sayfa - Slider tam header altından başlar */
body:has(.hero-slider-modern) main {
    padding-top: 0 !important;
}

/* Slider olmayan sayfalar için header-modern yüksekliği kadar boşluk */
/* Header sticky olduğu için bu gereksiz, ama fallback olarak */

/* Tüm sayfalarda section-padding üst boşluk sıfırlama (ilk element için) */
main > .section-padding:first-child {
    padding-top: 40px;
}

/* ===================================================================
   MOBİL DÜZELTMELER
   =================================================================== */
@media (max-width: 991px) {
    main {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    .hero-slider-modern {
        margin-top: 0 !important;
    }
}

@media (max-width: 767px) {
    .breadcrumb-area,
    .cat-breadcrumb,
    .bg-white.border-b {
        padding: 10px 0;
    }

    main > .section-padding:first-child {
        padding-top: 30px;
    }
}

/* ===================================================================
   LOGO KESİNLİKLE GÖRÜNÜR - EN SON KURAL (EN YÜKSEK ÖNCELİK)
   =================================================================== */
.header-modern .header-logo,
.header-logo {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 100 !important;
}

.header-modern .header-logo a,
.header-logo a {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.header-modern .header-logo img,
.header-modern .header-logo .logo-img,
.header-logo img,
.header-logo .logo-img {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    max-height: 60px !important;
    height: auto !important;
    width: auto !important;
    max-width: 180px !important;
    object-fit: contain !important;
}

@media (max-width: 767px) {
    .header-modern .header-logo img,
    .header-modern .header-logo .logo-img,
    .header-logo img,
    .header-logo .logo-img {
        max-height: 45px !important;
        max-width: 140px !important;
    }
}

/* ===== MOBILE MENU FIXES ===== */
@media (max-width: 991px) {
    /* Mobile Offcanvas Menu Styling */
    .offcanvas {
        width: 320px !important;
        max-width: 85vw !important;
    }
    
    .offcanvas-header {
        background: var(--primary-color);
        color: #fff;
        padding: 20px;
    }
    
    .offcanvas-title {
        color: #fff;
        font-weight: 600;
    }
    
    .offcanvas-header .btn-close {
        filter: invert(1);
        opacity: 0.8;
    }
    
    .offcanvas-body {
        padding: 20px;
        background: #f8fafc;
    }
    
    /* Mobile Search Form */
    .mobile-search-form .input-group {
        box-shadow: 0 2px 10px rgba(0,0,0,0.08);
        border-radius: 10px;
        overflow: hidden;
    }
    
    .mobile-search-form .form-control {
        border: none;
        padding: 14px 16px;
        font-size: 15px;
    }
    
    .mobile-search-form .btn-primary {
        background: var(--primary-color);
        border: none;
        padding: 0 20px;
    }
    
    /* Mobile Nav Links */
    .mobile-nav-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .mobile-nav-list li {
        margin-bottom: 4px;
    }
    
    .mobile-nav-link {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 14px 16px;
        color: #0a0a0a;
        font-size: 15px;
        font-weight: 500;
        text-decoration: none;
        border-radius: 10px;
        transition: all 0.3s ease;
        background: #fff;
        margin-bottom: 8px;
        box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    }
    
    .mobile-nav-link i {
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--primary-light);
        color: var(--primary-color);
        border-radius: 6px;
        font-size: 12px;
    }
    
    .mobile-nav-link.active,
    .mobile-nav-link:hover {
        background: var(--primary-color);
        color: #fff;
        transform: translateX(5px);
    }
    
    .mobile-nav-link.active i,
    .mobile-nav-link:hover i {
        background: rgba(255,255,255,0.2);
        color: #fff;
    }
    
    /* Mobile Categories */
    .mobile-categories h6 {
        font-size: 13px;
        font-weight: 600;
        color: #6B7280;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 12px;
    }
    
    .mobile-categories .list-group {
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    }
    
    .mobile-categories .list-group-item {
        border: none;
        border-bottom: 1px solid #f0f0f0;
        padding: 12px 16px;
        font-size: 14px;
        color: #0a0a0a;
        background: #fff;
        transition: all 0.2s ease;
    }
    
    .mobile-categories .list-group-item:last-child {
        border-bottom: none;
    }
    
    .mobile-categories .list-group-item:hover {
        background: var(--primary-light);
        color: var(--primary-color);
        padding-left: 20px;
    }
    
    /* Mobile Language Switcher */
    .mobile-language h6 {
        font-size: 13px;
        font-weight: 600;
        color: #6B7280;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .mobile-lang-buttons {
        display: flex;
        gap: 10px;
    }
    
    .mobile-lang-btn {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        padding: 12px;
        background: #fff;
        border-radius: 10px;
        text-decoration: none;
        border: 2px solid transparent;
        transition: all 0.3s ease;
        box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    }
    
    .mobile-lang-btn .lang-name {
        font-size: 12px;
        color: #6B7280;
    }
    
    .mobile-lang-btn .lang-code {
        font-size: 14px;
        font-weight: 700;
        color: #0a0a0a;
    }
    
    .mobile-lang-btn.active,
    .mobile-lang-btn:hover {
        border-color: var(--primary-color);
        background: var(--primary-light);
    }
    
    .mobile-lang-btn.active .lang-code,
    .mobile-lang-btn:hover .lang-code {
        color: var(--primary-color);
    }
    
    /* Mobile Contact Buttons */
    .mobile-contact .btn {
        padding: 14px;
        font-size: 14px;
        font-weight: 600;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }
    
    .mobile-contact .btn-outline-primary {
        border-color: var(--primary-color);
        color: var(--primary-color);
    }
    
    .mobile-contact .btn-outline-primary:hover {
        background: var(--primary-color);
        color: #fff;
    }
    
    .mobile-contact .btn-success {
        background: var(--whatsapp-green);
        border-color: var(--whatsapp-green);
    }
}

/* ===== PRODUCT GRID MOBILE FIXES ===== */
@media (max-width: 767px) {
    /* Product Grid - Single Column on Mobile */
    .kampanya-grid,
    .products-grid-kupon,
    .products-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    
    /* Product Card Mobile Optimization */
    .product-card-premium {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 16px;
        padding: 12px;
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.06);
        border: 1px solid #f0f0f0;
    }
    
    .product-card-premium .card-image-container {
        width: 100px;
        height: 100px;
        flex-shrink: 0;
        border-radius: 8px;
        overflow: hidden;
    }
    
    .product-card-premium .card-image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .product-card-premium .card-body {
        flex: 1;
        padding: 0;
    }
    
    .product-card-premium .category-label {
        font-size: 11px;
        color: #6B7280;
        margin-bottom: 4px;
    }
    
    .product-card-premium .product-title {
        font-size: 14px;
        font-weight: 600;
        line-height: 1.4;
        margin-bottom: 8px;
    }
    
    .product-card-premium .product-title a {
        color: #0a0a0a;
        text-decoration: none;
    }
    
    .product-card-premium .card-footer {
        padding: 0;
        margin-top: 8px;
    }
    
    .product-card-premium .btn-contact-whatsapp {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 8px 14px;
        background: var(--whatsapp-green);
        color: #fff;
        border-radius: 6px;
        font-size: 12px;
        font-weight: 600;
        text-decoration: none;
    }
    
    /* Badge Position Fix */
    .product-card-premium .badge-group {
        position: absolute;
        top: 8px;
        left: 8px;
    }
    
    .product-card-premium .badge {
        font-size: 10px;
        padding: 4px 8px;
    }
    
    /* Image overlay hide on mobile */
    .product-card-premium .image-overlay {
        display: none;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    /* Tablet - 2 Columns */
    .kampanya-grid,
    .products-grid-kupon,
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* ===== FEATURES BAR MOBILE ===== */
@media (max-width: 767px) {
    .features-bar-modern {
        padding: 16px !important;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .features-scroll-container {
        display: flex;
        gap: 12px;
        min-width: max-content;
    }
    
    .feature-item-modern {
        flex: 0 0 auto;
        width: 140px;
        padding: 16px;
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.06);
        text-align: center;
    }
    
    .feature-icon-modern {
        width: 44px;
        height: 44px;
        margin: 0 auto 10px;
        background: var(--primary-light);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary-color);
        font-size: 18px;
    }
    
    .feature-text-modern strong {
        display: block;
        font-size: 13px;
        color: #0a0a0a;
        margin-bottom: 2px;
    }
    
    .feature-text-modern span {
        font-size: 11px;
        color: #9CA3AF;
    }
}

/* ===== MOBILE HERO SLIDER ADDITIONAL FIXES ===== */
@media (max-width: 767px) {
    .hero-slider-modern {
        margin-bottom: 20px;
    }
    
    /* Hero Content Mobile Adjustments */
    .hero-slide-content {
        padding: 60px 0 40px !important;
    }
    
    .hero-slide-title {
        font-size: 26px !important;
        line-height: 1.3 !important;
    }
    
    .hero-slide-desc {
        font-size: 14px !important;
        line-height: 1.5 !important;
        margin-bottom: 20px !important;
    }
    
    .hero-tag {
        font-size: 11px !important;
        padding: 6px 14px !important;
        margin-bottom: 16px !important;
    }
    
    /* Slider Navigation Hidden on Mobile */
    .hero-nav-prev,
    .hero-nav-next {
        display: none !important;
    }
    
    /* Pagination Adjustments */
    .hero-slider-modern .swiper-pagination {
        bottom: 15px !important;
    }
}

/* ===== WHATSAPP FLOAT BUTTON MOBILE ===== */
@media (max-width: 767px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 28px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
    
    .sticky-whatsapp-mobile {
        position: fixed;
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        background: var(--whatsapp-green);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 28px;
        z-index: 999;
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }
}

/* ===== SECTION SPACING MOBILE ===== */
@media (max-width: 767px) {
    .kampanya-section,
    .categories-section-modern,
    .counter-section,
    .testimonial-section {
        padding: 40px 0 !important;
    }
    
    .section-padding {
        padding: 40px 0 !important;
    }
    
    .kampanya-header {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        margin-bottom: 24px !important;
    }
    
    .kampanya-header h2 {
        font-size: 22px !important;
    }
    
    .view-all {
        font-size: 13px;
    }
}

/* ===== FOOTER MOBILE ===== */
@media (max-width: 767px) {
    .footer-modern {
        text-align: center;
    }
    
    .footer-widget {
        margin-bottom: 30px;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-bottom-links .separator {
        display: none;
    }
}

/* ===== MODERN CARD REDESIGN ===== */

/* Product Card Premium - Modern UI */
.product-card-premium {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 102, 177, 0.12);
    border-color: var(--bmw-blue-light);
}

.product-card-premium .card-image-container {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #f8f9fa;
}

.product-card-premium .card-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card-premium:hover .card-image-container img {
    transform: scale(1.08);
}

.product-card-premium .image-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card-premium:hover .image-overlay {
    opacity: 1;
}

.product-card-premium .quick-view-trigger {
    width: 50px;
    height: 50px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bmw-blue);
    font-size: 18px;
    transform: scale(0.8);
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-card-premium:hover .quick-view-trigger {
    transform: scale(1);
}

.product-card-premium .badge-group {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.product-card-premium .badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-card-premium .badge-featured {
    background: var(--bmw-blue);
    color: #ffffff;
}

.product-card-premium .badge-new {
    background: #0066B1;
    color: #ffffff;
}

.product-card-premium .badge-hot {
    background: #0066B1;
    color: #ffffff;
}

.product-card-premium .card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card-premium .category-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--bmw-blue);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.product-card-premium .category-label::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--bmw-blue);
    border-radius: 50%;
}

.product-card-premium .product-title {
    font-size: 16px;
    font-weight: 600;
    color: #0a0a0a;
    line-height: 1.5;
    margin-bottom: 16px;
    /* Remove line-clamp issues */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 48px;
}

.product-card-premium .product-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.product-card-premium .product-title a:hover {
    color: var(--bmw-blue);
}

.product-card-premium .card-footer {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

.product-card-premium .btn-contact-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 20px;
    background: var(--whatsapp-green);
    color: #ffffff;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.product-card-premium .btn-contact-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}

.product-card-premium .btn-contact-whatsapp i {
    font-size: 18px;
}

/* ===== BREADCRUMB FIX ===== */
.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    list-style: none;
    gap: 8px;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    font-size: 14px;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '/';
    padding-right: 8px;
    color: #9CA3AF;
}

.breadcrumb-item a {
    color: #6B7280;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-item a:hover {
    color: var(--bmw-blue);
}

.breadcrumb-item.active {
    color: #0a0a0a;
    font-weight: 500;
}

/* Hero Breadcrumb Specific */
.hero-breadcrumb .breadcrumb {
    justify-content: center;
}

.hero-breadcrumb .breadcrumb-item {
    color: rgba(255, 255, 255, 0.8);
}

.hero-breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
}

.hero-breadcrumb .breadcrumb-item a:hover {
    color: #ffffff;
}

.hero-breadcrumb .breadcrumb-item.active {
    color: #ffffff;
}

.hero-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* ===== BUTTON OVERLAP FIX ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--whatsapp-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: var(--whatsapp-hover);
    color: #ffffff;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.scroll-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--bmw-blue);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 102, 177, 0.3);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--bmw-blue-dark);
    transform: translateY(-4px);
}

/* Mobile Button Adjustments */
@media (max-width: 767px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 28px;
        bottom: 20px;
        right: 20px;
    }
    
    .scroll-to-top {
        bottom: 85px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}

/* ===== CATEGORY DROPDOWN FIX ===== */
.category-dropdown-modern {
    position: relative;
}

.category-dropdown-modern .dropdown-toggle-modern {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--bmw-blue-light);
    color: var(--bmw-blue);
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-dropdown-modern .dropdown-toggle-modern:hover {
    background: var(--bmw-blue);
    color: #ffffff;
}

.category-dropdown-modern .dropdown-arrow {
    transition: transform 0.3s ease;
}

.category-dropdown-modern:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu-categories {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 220px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    padding: 8px 0;
    margin-top: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    list-style: none;
    z-index: 1001;
}

.category-dropdown-modern:hover .dropdown-menu-categories {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu-categories li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    color: #0a0a0a;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.dropdown-menu-categories li a:hover {
    background: var(--bmw-blue-light);
    color: var(--bmw-blue);
}

.dropdown-menu-categories .dropdown-divider {
    height: 1px;
    background: #f0f0f0;
    margin: 8px 0;
}

.dropdown-menu-categories .view-all {
    color: var(--bmw-blue);
    font-weight: 600;
}

/* ===== FEATURES BAR MODERN ===== */
.features-bar-modern {
    background: #f8f9fa;
    padding: 30px 0;
    border-bottom: 1px solid #f0f0f0;
}

.features-scroll-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.feature-item-modern {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 24px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.feature-item-modern:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 102, 177, 0.1);
}

.feature-icon-modern {
    width: 48px;
    height: 48px;
    background: var(--bmw-blue-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bmw-blue);
    font-size: 20px;
}

.feature-text-modern {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.feature-text-modern strong {
    font-size: 14px;
    font-weight: 700;
    color: #0a0a0a;
}

.feature-text-modern span {
    font-size: 12px;
    color: #9CA3AF;
}

/* Mobile Features */
@media (max-width: 767px) {
    .features-bar-modern {
        padding: 20px 16px;
    }
    
    .features-scroll-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .feature-item-modern {
        flex-direction: column;
        text-align: center;
        padding: 16px 12px;
        gap: 10px;
    }
    
    .feature-icon-modern {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    
    .feature-text-modern strong {
        font-size: 13px;
    }
    
    .feature-text-modern span {
        font-size: 11px;
    }
}

/* ===== KAMPANYA SECTION HEADER ===== */
.kampanya-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.kampanya-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: #0a0a0a;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
}

.kampanya-header h2 i {
    color: var(--bmw-blue);
}

.view-all {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--bmw-blue);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.view-all:hover {
    gap: 12px;
    color: var(--bmw-blue-dark);
}

.view-all i {
    transition: transform 0.3s ease;
}

.view-all:hover i {
    transform: translateX(4px);
}

/* Mobile Kampanya Header */
@media (max-width: 767px) {
    .kampanya-header {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .kampanya-header h2 {
        font-size: 20px;
        justify-content: center;
    }
}
