/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a2f5a 0%, #0f1e3a 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-spinner {
    width: 80px;
    height: 80px;
    border: 8px solid rgba(255, 215, 0, 0.2);
    border-top: 8px solid #ffd700;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

.loader-text {
    color: #ffd700;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 2px;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

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

:root {
    --primary-color: #0066cc;
    --secondary-color: #003d7a;
    --accent-color: #ff6b00;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f5f5f5;
    --white: #ffffff;
    --border-color: #ddd;
    --navy-blue: #1a2f5a;
    --navy-blue-dark: #0f1e3a;
    --yellow: #ffd700;
    --yellow-dark: #ffb700;
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    --font-heading: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --radius-sm: 5px;
    --radius-md: 10px;
    --radius-lg: 12px;
    --radius-xl: 15px;
    --transition-base: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

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

/* Header */
.top-bar {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

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

.contact-info span {
    margin-right: 30px;
}

.contact-info i,
.top-bar-links i {
    margin-right: 5px;
}

.top-bar-links a {
    color: var(--white);
    text-decoration: none;
    margin-left: 20px;
    transition: opacity 0.3s;
}

.top-bar-links a:hover {
    opacity: 0.8;
}

/* Navbar */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo img {
    height: 50px;
}

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

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s;
}

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

.navbar-icons {
    display: flex;
    gap: 20px;
    font-size: 20px;
}

.navbar-icons a {
    color: var(--text-dark);
    position: relative;
    transition: color 0.3s;
}

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

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Dropdown Menu */
.nav-menu .dropdown {
    position: relative;
}

/* TÜM KATEGORİLER Dropdown - Özel Stil */
.nav-menu .dropdown > a {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.3);
}

.nav-menu .dropdown > a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.4);
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

.nav-menu .dropdown > a i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.nav-menu .dropdown:hover > a i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    padding: 15px 0;
    margin-top: 15px;
    border: 1px solid rgba(0, 102, 204, 0.1);

    
}

.dropdown-toggle{
    background: none;
    border: none;
}
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 25px;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
    position: relative;
}

.dropdown-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.dropdown-menu a i {
    font-size: 14px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background: linear-gradient(90deg, rgba(0, 102, 204, 0.08) 0%, rgba(0, 102, 204, 0.02) 100%);
    color: var(--primary-color);
    padding-left: 30px;
}

.dropdown-menu a:hover::before {
    transform: scaleY(1);
}

.dropdown-menu a:hover i {
    transform: scale(1.2);
    color: var(--secondary-color);
}

/* Hero Section */
.hero-section {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 20px;
    padding: 20px;
    background: var(--bg-light);
}

.main-slider {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.slider-container {
    position: relative;
    height: 500px;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,0.5) 100%);
    pointer-events: none;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50px;
    transform: translateY(-50%);
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.slide-content h2 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 10px;
}

.slide-content h1 {
    font-size: 48px;
    font-weight: 700;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: none;
    color: var(--primary-color);
    font-size: 24px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.slider-btn:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
    left: 20px;
}

.slider-btn.next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: var(--white);
}

.side-banners {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.side-banner {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    height: 240px;
}

.side-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,0.5) 100%);
    pointer-events: none;
}

.side-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.side-banner:hover img {
    transform: scale(1.05);
}

/* Search Section */
.search-section {
    padding: 60px 20px;
    background: var(--white);
}

.search-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}

.search-icon {
    font-size: 60px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.search-box h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.search-box .highlight {
    color: var(--primary-color);
}

.search-filters {
    display: flex;
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-select {
    flex: 1;
    min-width: 180px;
    padding: 15px 20px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    background: var(--white);
    cursor: pointer;
    transition: all 0.3s;
}

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

.search-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    border: none;
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,102,204,0.3);
}

/* Products Section */
.products-section,
.batteries-section {
    padding: 60px 20px;
    background: var(--bg-light);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 32px;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 10px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
}

.view-toggle button {
    background: var(--white);
    border: 2px solid var(--border-color);
    padding: 10px 15px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 18px;
}

.view-toggle button:first-child {
    border-radius: 5px 0 0 5px;
}

.view-toggle button:last-child {
    border-radius: 0 5px 5px 0;
    border-left: none;
}

.view-toggle button.active,
.view-toggle button:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
    position: relative;
}

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

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 5;
}

.product-image {
    position: relative;
    height: 250px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    transition: transform 0.3s;
}

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

.product-info {
    padding: 20px;
}

.product-brand {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.product-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
    min-height: 48px;
}

.product-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.spec-tag {
    background: var(--bg-light);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    color: var(--text-light);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.stars {
    color: #ffc107;
}

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

.product-stock {
    text-align: center;
    padding: 10px 0;
}

.stock-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
}

.stock-badge.in-stock {
    background: #d4edda;
    color: #155724;
}

.stock-badge.out-of-stock {
    background: #f8d7da;
    color: #721c24;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-col p {
    color: #ccc;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

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

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}

.footer-col ul li i {
    margin-right: 10px;
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #999;
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-section {
        grid-template-columns: 1fr;
    }
    
    .side-banners {
        flex-direction: row;
    }
    
    .side-banner {
        height: 200px;
    }

    .navbar-content {
        gap: 20px;
    }

    .nav-menu {
        gap: 20px;
        font-size: 13px;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 20px;
    }

    .slider-container {
        height: 400px;
    }

    .slide-content h2 {
        font-size: 24px;
    }

    .slide-content h1 {
        font-size: 40px;
    }
}

@media (max-width: 768px) {

    .top-bar {
        font-size: 11px;
        padding: 6px 0;
    }

    .top-bar-content {
        flex-direction: row;
        justify-content: center;
        gap: 0;
        text-align: center;
    }
    
    .contact-info {
        display: flex;
        flex-direction: row;
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    /* Mobilde sadece telefonu göster, diğerlerini gizle */
    .contact-info span:not(:first-child) {
        display: none;
    }
    
    .contact-info span {
        margin: 0;
    }

    /* Top bar linklerini mobilde gizle */
    .top-bar-links {
        display: none;
    }

    .top-bar-links a {
        margin: 0;
    }
    
    .navbar {
        padding: 10px 0;
        margin-top: 10px;
    }

    .navbar-content {
        display: grid;
        grid-template-columns: 1fr auto auto;
        grid-template-areas: 
            "logo toggle icons"
            "menu menu menu";
        gap: 10px;
        align-items: center;
    }

    .logo {
        grid-area: logo;
    }

    .mobile-menu-toggle {
        grid-area: toggle;
    }

    .navbar-icons {
        grid-area: icons;
    }

    .nav-menu {
        grid-area: menu;
    }

    .logo img {
        height: 40px;
    }

    .mobile-menu-toggle {
        display: flex;
        order: 2;
    }

    .navbar-icons {
        grid-area: icons;
        display: flex;
    }
    
    .nav-menu {
        grid-area: menu;
        width: 100%;
        flex-direction: column;
        gap: 0;
        font-size: 14px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-in-out;
        background: var(--white);
    }

    .nav-menu.active {
        max-height: 600px;
        margin-top: 15px;
        border-top: 2px solid var(--border-color);
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu > li > a {
        display: block;
        padding: 12px 15px;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        margin-top: 0;
        padding: 0;
        background: var(--bg-light);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .dropdown.active .dropdown-menu {
        max-height: 200px;
    }

    .dropdown-menu a {
        padding: 10px 30px;
    }
    
    .slider-container {
        height: 300px;
    }

    .hero-section {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 15px;
    }

    .side-banners {
        flex-direction: row;
        gap: 15px;
    }

    .side-banner {
        height: 150px;
        flex: 1;
    }
    
    .slide-content h2 {
        font-size: 18px;
    }
    
    .slide-content h1 {
        font-size: 28px;
    }
    
    .search-filters {
        flex-direction: column;
    }
    
    .filter-select {
        width: 100%;
    }

    .search-box {
        padding: 30px 20px;
    }

    .search-box h2 {
        font-size: 22px;
        line-height: 1.3;
    }

    .search-icon {
        font-size: 45px;
        margin-bottom: 15px;
    }

    .search-btn {
        width: 100%;
        padding: 15px 30px;
    }

    .search-section {
        padding: 40px 15px;
    }

    .search-filters {
        gap: 10px;
    }

    .filter-select {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }

    .product-image {
        height: 200px;
    }

    .product-info {
        padding: 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }


    .dealer-badge {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .dealer-features {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .dealer-brand {
        font-size: 2rem;
        text-align: center;
    }

    .dealer-description {
        text-align: center;
    }

    .dealer-label {
        text-align: center;
    }

    .authorized-dealer {
        padding: var(--spacing-2xl) 0;
        text-align: center;
    }

    .brands-track {
        gap: 40px;
    }

    .brand-item {
        width: 150px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .features-section {
        padding: 40px 0;
    }

    .features-section .container {
        padding: 0 20px;
    }

    .hero-section {
        padding: 15px;
        gap: 15px;
    }

    .slider-container {
        height: 250px;
    }

    .slide-content {
        left: 20px;
    }

    .slide-content h2 {
        font-size: 16px;
    }

    .slide-content h1 {
        font-size: 24px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .slider-btn.prev {
        left: 10px;
    }

    .slider-btn.next {
        right: 10px;
    }



    .search-box {
        padding: 20px 15px;
    }

    .search-box h2 {
        font-size: 18px;
        line-height: 1.4;
    }

    .search-icon {
        font-size: 35px;
    }

    .brands-section {
        padding: 40px 0;
    }

    .products-section,
    .batteries-section {
        padding: 40px 15px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        padding: 0;
        gap: 15px;
    }
    
   

    .section-title h2 {
        font-size: 20px;
        text-align: center;
    }

    .section-title p {
        font-size: 14px;
        text-align: center;
    }

    .nav-menu a {
        font-size: 13px;
    }
}



/* ==================== AUTHORIZED DEALER ==================== */
.authorized-dealer {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, #1a2f5a 0%, #0f1e3a 100%);
    color: var(--white);
    position: relative;
    overflow-x: hidden;
}

@media screen and (min-width: 768px){
    .dealer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
    max-width: 100%;
}
}

@media screen and (max-width: 768px){
    .dealer-content {
    display: grid;

    gap: var(--spacing-3xl);
    align-items: center;
    max-width: 100%;
}
}

.dealer-badge {
    display: flex;
    gap: var(--spacing-xl);
    align-items: center;
}

.dealer-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #ffd700 0%, #ffb700 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #1a2f5a;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
    flex-shrink: 0;
    animation: pulse 2s ease-in-out infinite;
}

.dealer-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffd700;
    letter-spacing: 2px;
    margin-bottom: var(--spacing-xs);
    text-transform: uppercase;
}

.dealer-brand {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    letter-spacing: -1px;
}

.dealer-description {
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 0.95;
}

.dealer-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.dealer-feature {
    text-align: center;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 215, 0, 0.15);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffd700;
    margin: 0 auto var(--spacing-md);
    transition: var(--transition-base);
}

.dealer-feature:hover .feature-icon {
    background: linear-gradient(135deg, #ffd700 0%, #ffb700 100%);
    color: #1a2f5a;
    transform: scale(1.1) rotate(5deg);
    border-color: #ffd700;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

.dealer-feature h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
}

.dealer-feature p {
    font-size: 0.9rem;
    opacity: 0.85;
}

/* Pulse animation for dealer icon */
@keyframes pulse {
    0%, 100% {
        box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
    }
    50% {
        box-shadow: 0 15px 60px rgba(255, 215, 0, 0.8);
        transform: scale(1.05);
    }
}


/* ==================== FOOTER ==================== */
.footer {
    background: linear-gradient(135deg, var(--navy-blue-dark) 0%, var(--navy-blue) 100%);
    color: var(--white);
    padding: var(--spacing-3xl) 0 var(--spacing-xl);
 
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    margin-bottom: var(--spacing-md);
}

.logo-text {
    font-size: 2rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--white);
    letter-spacing: 1px;
}

.logo-highlight {
    color: var(--yellow);
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--spacing-lg);
}

.footer-social {
    display: flex;
    gap: var(--spacing-md);
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition-base);
}

.social-link:hover {
    background: var(--yellow);
    color: var(--navy-blue);
    transform: translateY(-3px);
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    color: var(--yellow);
    position: relative;
    padding-bottom: var(--spacing-sm);
}

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

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    list-style: none;
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition-base);
    padding: 0.5rem 0;
}

.footer-links a:hover {
    color: var(--yellow);
    transform: translateX(5px);
}

.footer-links i {
    font-size: 0.8rem;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    list-style: none;
}

.footer-info li {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
}

.footer-info i {
    width: 40px;
    height: 40px;
    background: rgba(255, 215, 0, 0.15);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--yellow);
    flex-shrink: 0;
    font-size: 1.1rem;
}

.footer-info div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer-info strong {
    font-weight: 600;
    color: var(--white);
    font-size: 0.95rem;
}

.footer-info span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

.footer-info a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: var(--transition-base);
}

.footer-info a:hover {
    color: var(--yellow);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer {
        padding: var(--spacing-xl) 0 var(--spacing-md);
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }

    .footer-section {
        width: 100%;
        text-align: center;
    }

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

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

    .footer-links {
        align-items: center;
    }

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

    .footer-info {
        width: 100%;
    }

    .footer-info li {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

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

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

/* Features Section */
.features-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 102, 204, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: 2px solid transparent;
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 26px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: rotate(360deg) scale(1.1);
    background: linear-gradient(135deg, var(--accent-color), #ff8533);
}

.feature-content h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.feature-content p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

/* Brands Section */
.brands-section {
    padding: 80px 0;
    background: white;
    overflow: hidden;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.section-title p {
    font-size: 16px;
    color: var(--text-light);
    margin-top: 20px;
}

.brands-slider {
    position: relative;
    overflow: hidden;
    padding: 30px 0;
}

.brands-track {
    display: flex;
    animation: scroll 30s linear infinite;
    gap: 60px;
}

.brands-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.brand-item {
    flex-shrink: 0;
    width: 180px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.brand-item:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.brand-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.brand-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    text-decoration: none;
    overflow: hidden;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.whatsapp-float:hover::before {
    width: 100%;
    height: 100%;
}

.whatsapp-float:hover {
    padding: 15px;
    width: 180px;
    border-radius: 30px;
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float i {
    transition: all 0.3s ease;
    z-index: 1;
}

.whatsapp-float:hover i {
    transform: scale(1.05);
}

.whatsapp-text {
    position: absolute;
    right: 70px;
    opacity: 0;
    white-space: nowrap;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    z-index: 1;
}

.whatsapp-float:hover .whatsapp-text {
    opacity: 1;
    right: 5px;
}

/* Pulse Animation */
@keyframes pulse {
    0% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
    }
    100% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    }
}

.whatsapp-float {
    animation: pulse 3s infinite;
}

.whatsapp-float:hover {
    animation: none;
}

/* Responsive */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0;
    }
    
    .feature-card {
        padding: 20px;
        flex-direction: row;
        text-align: left;
        justify-content: flex-start;
    }

    .feature-icon {
        flex-shrink: 0;
    }

    .feature-content {
        flex: 1;
    }
    
    .section-title h2 {
        font-size: 24px;
        text-align: center;
    }

    .section-title p {
        text-align: center;
    }
    
    .brands-track {
        gap: 30px;
    }
    
    .brand-item {
        width: 140px;
        height: 80px;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .whatsapp-float:hover {
        width: 50px;
        border-radius: 50%;
    }
    
    .whatsapp-text {
        display: none;
    }
}

/* ========================================
   YENİ SAYFALAR İÇİN STILLER
   ======================================== */

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

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

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

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

.breadcrumb span:last-child {
    color: var(--text-dark);
    font-weight: 500;
}

/* Page Title */
.page-title {
    text-align: center;
    margin-bottom: 40px;
}

.page-title h1 {
    font-size: 36px;
    color: var(--navy-blue);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.page-title h1 i {
    font-size: 32px;
    color: var(--primary-color);
}

.page-title p {
    color: var(--text-light);
    font-size: 16px;
}

/* ========================================
   HAKKIMIZDA SAYFASI
   ======================================== */

.about-content-section {
    padding: 60px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-block {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.about-block .about-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.about-block .about-icon i {
    font-size: 28px;
    color: var(--white);
}

.about-block h2 {
    color: var(--navy-blue);
    margin-bottom: 15px;
    font-size: 24px;
}

.about-block p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 15px;
}

.service-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
}

.service-list li i {
    color: var(--primary-color);
    font-size: 16px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-box {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 25px;
    border-radius: var(--radius-lg);
    color: var(--white);
    text-align: center;
}

.feature-box .feature-number {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 10px;
}

.feature-box h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.feature-box p {
    font-size: 14px;
    opacity: 0.9;
}

.feature-box i {
    font-size: 36px;
    margin-bottom: 10px;
}

.feature-box.authorized-box {
    background: linear-gradient(135deg, var(--yellow), var(--yellow-dark));
    color: var(--navy-blue);
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--navy-blue), var(--navy-blue-dark));
    color: var(--white);
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

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

.cta-btn {
    padding: 15px 35px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-base);
}

.cta-btn.primary {
    background: var(--yellow);
    color: var(--navy-blue);
}

.cta-btn.primary:hover {
    background: var(--yellow-dark);
    transform: translateY(-2px);
}

.cta-btn.secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cta-btn.secondary:hover {
    background: var(--white);
    color: var(--navy-blue);
}

/* ========================================
   İLETİŞİM SAYFASI
   ======================================== */

.contact-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.contact-form-container {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.form-header h2 {
    color: var(--navy-blue);
    margin-bottom: 10px;
}

.form-header p {
    color: var(--text-light);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 15px 30px;
    border: none;
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition-base);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 102, 204, 0.3);
}

.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.info-card .info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.info-card .info-icon i {
    font-size: 24px;
    color: var(--white);
}

.info-card h3 {
    color: var(--navy-blue);
    margin-bottom: 10px;
    font-size: 18px;
}

.info-card p {
    color: var(--text-dark);
    margin-bottom: 5px;
}

.info-card p a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.info-card p a:hover {
    text-decoration: underline;
}

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

.whatsapp-card {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--white);
}

.whatsapp-card .info-icon {
    background: rgba(255, 255, 255, 0.2);
}

.whatsapp-card h3,
.whatsapp-card p,
.whatsapp-card .info-detail {
    color: var(--white);
}

.whatsapp-card p a {
    color: var(--white);
    font-weight: 600;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: #25D366;
    padding: 12px 20px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
    transition: var(--transition-base);
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.hours-card {
    background: linear-gradient(135deg, var(--navy-blue), var(--navy-blue-dark));
    color: var(--white);
}

.hours-card .info-icon {
    background: rgba(255, 255, 255, 0.2);
}

.hours-card h3 {
    color: var(--white);
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.hours-item .day {
    color: rgba(255, 255, 255, 0.8);
}

.hours-item .time {
    font-weight: 600;
    color: var(--yellow);
}

.hours-item .time.closed {
    color: #ff6b6b;
}

/* Map Section */
.map-section {
    padding: 60px 0;
    background: var(--white);
}

.map-title {
    text-align: center;
    color: var(--navy-blue);
    margin-bottom: 30px;
    font-size: 28px;
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

/* ========================================
   FİLTRELEME SAYFALARI (Lastikler & Aküler)
   ======================================== */

.filters-section {
    padding: 40px 0;
    background: var(--white);
}

.filters-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
    padding: 25px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
}

.filter-group {
    display: flex;
    flex-direction: column;
}

.filter-group label {
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-group label i {
    color: var(--primary-color);
}

.filter-group select {
    padding: 10px 15px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 14px;
    background: var(--white);
    cursor: pointer;
    transition: border-color 0.3s;
}

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

.clear-filters-btn {
    padding: 10px 20px;
    background: var(--white);
    color: var(--text-dark);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.clear-filters-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
}

.results-count {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
    font-weight: 500;
}

.results-count i {
    color: var(--primary-color);
}

.results-count span {
    color: var(--primary-color);
    font-weight: 600;
}

.products-listing-section {
    padding: 40px 0 60px;
    background: var(--bg-light);
}

.no-results {
    grid-column: 1/-1;
    text-align: center;
    padding: 60px 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.no-results i {
    font-size: 60px;
    color: #ccc;
    margin-bottom: 20px;
}

.no-results h3 {
    color: var(--text-dark);
    margin-bottom: 10px;
}

.no-results p {
    color: var(--text-light);
    margin-bottom: 25px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 12px 25px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-base);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 102, 204, 0.3);
}

/* Battery Info Section */
.battery-info-section {
    padding: 60px 0;
    background: var(--white);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.info-grid .info-card {
    text-align: center;
}

/* ========================================
   MARKALAR SAYFASI
   ======================================== */

.brands-selection-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.brand-category {
    margin-bottom: 50px;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-color);
}

.category-header i {
    font-size: 28px;
    color: var(--primary-color);
}

.category-header h2 {
    color: var(--navy-blue);
    font-size: 28px;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.brand-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    color: var(--text-dark);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.brand-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: var(--transition-base);
}

.brand-card:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
}

.brand-card:hover::before {
    transform: scaleY(1);
}

.brand-logo {
    width: 100px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 10px;
    flex-shrink: 0;
}

.brand-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.brand-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--primary-color);
}

.brand-info {
    flex: 1;
}

.brand-info h3 {
    color: var(--navy-blue);
    font-size: 20px;
    margin-bottom: 5px;
}

.brand-desc {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 10px;
}

.brand-stats {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.brand-stats span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: var(--text-light);
}

.brand-stats i {
    color: var(--primary-color);
}

.badge-authorized {
    background: var(--yellow);
    color: var(--navy-blue);
    padding: 4px 10px;
    border-radius: 15px;
    font-weight: 600;
}

.brand-arrow {
    color: var(--primary-color);
    font-size: 20px;
    transition: var(--transition-base);
}

.brand-card:hover .brand-arrow {
    transform: translateX(5px);
}

.brands-features-section {
    padding: 60px 0;
    background: var(--white);
}

.brands-features-section .section-title {
    text-align: center;
    font-size: 28px;
    color: var(--navy-blue);
    margin-bottom: 40px;
}

.brands-features-section .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.brands-features-section .feature-item {
    text-align: center;
    padding: 30px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
}

.brands-features-section .feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.brands-features-section .feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.brands-features-section .feature-icon i {
    font-size: 32px;
    color: var(--white);
}

.brands-features-section .feature-item h3 {
    color: var(--navy-blue);
    margin-bottom: 10px;
    font-size: 20px;
}

.brands-features-section .feature-item p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

/* ========================================
   MARKA ÜRÜNLERİ SAYFASI
   ======================================== */

.brand-header-section {
    padding: 40px 0;
    background: linear-gradient(135deg, var(--navy-blue), var(--navy-blue-dark));
    color: var(--white);
}

.brand-header-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.brand-logo-large {
    width: 200px;
    height: 150px;
    background: var(--white);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    flex-shrink: 0;
}

.brand-logo-large img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.brand-header-info h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.brand-header-info p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 20px;
}

.brand-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: var(--radius-md);
}

.stat-item i {
    font-size: 20px;
    color: var(--yellow);
}

.stat-item span {
    font-size: 14px;
}

.stat-item strong {
    font-size: 20px;
    color: var(--yellow);
}

.category-tabs-section {
    padding: 30px 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
}

.tabs-container {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.tab-btn {
    padding: 12px 25px;
    background: var(--bg-light);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-base);
    color: var(--text-dark);
}

.tab-btn:hover {
    background: var(--white);
    border-color: var(--primary-color);
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.tab-btn i {
    font-size: 18px;
}

.view-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.sort-control {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-control label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
    font-weight: 500;
}

.sort-control select {
    padding: 8px 15px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: inherit;
    cursor: pointer;
    background: var(--white);
}

/* ========================================
   RESPONSIVE TASARIM
   ======================================== */

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .brand-header-content {
        flex-direction: column;
        text-align: center;
    }

    .brand-stats {
        justify-content: center;
    }
}

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

    .service-list {
        grid-template-columns: 1fr;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .filters-container {
        grid-template-columns: 1fr;
    }

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

    .brands-grid {
        grid-template-columns: 1fr;
    }

    .brand-card {
        flex-direction: column;
        text-align: center;
    }

    .brand-logo {
        width: 120px;
        height: 100px;
    }

    .brand-header-info h1 {
        font-size: 32px;
    }

    .brand-logo-large {
        width: 150px;
        height: 120px;
    }

    .tabs-container {
        flex-direction: column;
    }

    .tab-btn {
        width: 100%;
        justify-content: center;
    }

    .view-controls {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
}

/* ========================================
   GALERİ - MASONRY LAYOUT
   ======================================== */

/* GALERİ */
.gallery-section {
    padding: 60px 0;
    background: #f9f9f9;
}

.gallery-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 40px;
}

.gallery-box {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 8px;
    background: #000;
    aspect-ratio: 4/3;
}

.gallery-box img,
.gallery-box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-box:hover img,
.gallery-box:hover video {
    transform: scale(1.1);
}

.gallery-box .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 50px;
    color: white;
    opacity: 0.8;
    pointer-events: none;
}

/* FULLSCREEN VIEWER */
#fullscreen-viewer {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

#viewer-content {
    max-width: 90vw;
    max-height: 90vh;
}

#viewer-content img,
#viewer-content video {
    max-width: 100%;
    max-height: 90vh;
    display: block;
}

.close-btn {
    position: fixed;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
    z-index: 10000;
}

.prev-btn,
.next-btn {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    font-size: 60px;
    color: white;
    cursor: pointer;
    z-index: 10000;
    user-select: none;
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.viewer-counter {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    background: rgba(0,0,0,0.7);
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 16px;
}

@media (max-width: 768px) {
    .gallery-wrapper {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 10px;
    }
    
    .prev-btn, .next-btn {
        font-size: 40px;
    }
    
    .close-btn {
        font-size: 30px;
        top: 10px;
        right: 15px;
    }
}



    .gallery-item {
        aspect-ratio: 16/9;
    }

    .gallery-empty i {
        font-size: 60px;
    }

    .gallery-empty p {
        font-size: 16px;
    }
}

/* ========================================
   ADVANCED GALLERY FEATURES
   ======================================== */

/* Loading Animation */
.gallery-item.loading {
    background: linear-gradient(
        90deg,
        #f0f0f0 25%,
        #e0e0e0 50%,
        #f0f0f0 75%
    );
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

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

/* Image Load Effect */
.gallery-item img {
    opacity: 0;
    transition: opacity 0.6s ease;
}

.gallery-item img.loaded {
    opacity: 1;
}

/* Gallery Filter Tags (optional future enhancement) */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-tag {
    padding: 10px 25px;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: var(--text-dark);
}

.filter-tag:hover,
.filter-tag.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.2);
}

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
}
