        /* Genel Ayarlar */
        body {
            margin: 0;
            padding: 0;
            font-family: Arial, sans-serif;
            background: #f5f7fa !important;
        }

        /* Header */
        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            background-color: #fff;
            border-bottom: 1px solid #ddd;
        }

        .container {
            display: flex;
            align-items: center;
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo img {
            height: 70px;
        }

        .navbar ul {
            list-style: none;
            display: flex;
            gap: 20px;
        }

        .navbar ul li {
            margin: 0;
        }

        .navbar ul li a {
            text-decoration: none;
            color: #000;
            font-size: 16px;
            font-weight: 500;
        }

        .navbar ul li a:hover {
            color: #007BFF;
        }

        /* Search */
        .search {
            position: relative;
            width: 40px;
            height: 40px;
            background: #fff;
            border-radius: 20px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
            overflow: hidden;
            transition: width 0.5s ease-in-out;
        }

        .search input {
            position: absolute;
            top: 50%;
            left: 10px;
            transform: translateY(-50%);
            width: calc(100% - 20px);
            height: 30px;
            border: none;
            outline: none;
            border-radius: 15px;
            padding-left: 10px;
            font-size: 16px;
            background: white;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease, width 0.5s ease-in-out;
        }

        .search i {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: #000;
            font-size: 20px;
            cursor: pointer;
        }

        .search.open {
            width: 300px;
            border-radius: 15px;
        }

        .search.open input {
            opacity: 1;
            pointer-events: auto;
        }

        /* Ana Slider Bölümü */
        .main-slider {
            position: relative;
            width: 100%;
            overflow: hidden;
        }

        .main-slider .slider {
            display: flex;
            transition: transform 0.5s ease;
        }

        .main-slider .slide {
            min-width: 100%;
            position: relative;
        }

        .main-slider .slide img {
            width: 100%;
            height: 600px;
            object-fit: cover;
        }

        .main-slider .slide-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 40px;
            background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
            color: white;
            text-align: center;
        }

        .main-slider .slide-content h2 {
            font-size: 36px;
            margin-bottom: 15px;
        }

        .main-slider .slide-content p {
            font-size: 18px;
            margin-bottom: 20px;
        }

        .slider-btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: #006064;
            color: white;
            text-decoration: none;
            border-radius: 25px;
            transition: background-color 0.3s;
        }

        .slider-btn:hover {
            background-color: #00838f;
        }

        .main-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.3);
            border: none;
            color: white;
            padding: 15px;
            cursor: pointer;
            z-index: 2;
        }

        .main-slider .slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            font-size: 24px;
            transition: background-color 0.3s;
        }

        .main-slider .slider-nav:hover {
            background: rgba(0, 0, 0, 0.8);
        }

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

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

        @media (max-width: 768px) {
            .main-slider .slide-content h2 {
                font-size: 24px;
            }
            
            .main-slider .slide-content p {
                font-size: 16px;
            }
        }

        /* Ürünler Bölümü */
        .products {
            padding: 80px 0;
            background-color: #f9f9f9;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: #007BFF;
        }
        
        .filter-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 40px;
        }
        
        .filter-btn {
            padding: 10px 20px;
            border: none;
            border-radius: 25px;
            background-color: #fff;
            color: #333;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 500;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        
        .filter-btn.active,
        .filter-btn:hover {
            background-color: #007BFF;
            color: #fff;
        }
        
        .product-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            padding: 20px;
        }
        
        .product {
            background: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        
        .product:hover {
            transform: translateY(-5px);
        }
        
        .product-image {
            width: 100% !important;
            height: 400px !important;
            background: #fff !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            position: relative !important;
            border-top-left-radius: 16px !important;
            border-top-right-radius: 16px !important;
            border-bottom-left-radius: 0 !important;
            border-bottom-right-radius: 0 !important;
            overflow: hidden !important;
            padding: 0 !important;
        }
        
        .product-image img {
            width: 100% !important;
            height: 100% !important;
            object-fit: contain !important;
            display: block !important;
            background: #fff !important;
            margin: 0 !important;
        }
        
        .product:hover .product-image img {
            transform: scale(1.05);
        }
        
        .product-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .product:hover .product-overlay {
            opacity: 1;
        }
        
        .detail-btn {
            padding: 10px 20px;
            background-color: #007BFF;
            color: #fff;
            text-decoration: none;
            border-radius: 25px;
            font-weight: 500;
            transition: background-color 0.3s ease;
        }
        
        .detail-btn:hover {
            background-color: #0056b3;
        }
        
        .product-info {
            padding: 20px;
        }
        
        .product-info h3 {
            font-size: 18px;
            color: #333;
            margin-bottom: 10px;
        }
        
        .product-info p {
            color: #666;
            font-size: 14px;
            margin-bottom: 15px;
        }
        
        .product-features {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        
        .product-features span {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #555;
            font-size: 14px;
        }
        
        .product-features i {
            color: #007BFF;
            font-size: 12px;
        }
        
       

        /* Yeni Alan */
        .content-section {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 50px;
            background-color: #f9f9f9;
        }

        .content-section img {
            width: 40%;
            height: auto;
            margin-right: 20px;
        }

        .content-section .text {
            max-width: 50%;
        }

        .content-section .text h2 {
            font-size: 24px;
            color: #333;
            margin-bottom: 15px;
        }

        .content-section .text p {
            font-size: 16px;
            line-height: 1.6;
            color: #555;
            margin-bottom: 15px;
        }

        .content-section .text a {
            color: #007BFF;
            text-decoration: none;
            font-weight: bold;
        }
        
        .about, .contact {
            padding: 2rem;
            text-align: center;
            width: auto;
            
        }

        footer {
            background: #333;
            color: white;
            text-align: center;
            padding: 1rem 0;
        }
        #product{
            display: flex;
            
        }

        /* Ürün Kataloğu Bölümü */
        .products-catalog {
            padding: 80px 0;
            background-color: #f8f9fa;
        }

        .catalog-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .main-title {
            font-size: 42px;
            color: #2c3e50;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .subtitle {
            font-size: 18px;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Ana Kategoriler */
        .category-showcase {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 80px;
        }

        .category-card {
            background: #fff;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .category-card:hover {
            transform: translateY(-10px);
        }

        .category-image {
            height: 250px;
            overflow: hidden;
        }

        .category-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

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

        .category-content {
            padding: 25px;
        }

        .category-content h3 {
            font-size: 24px;
            color: #2c3e50;
            margin-bottom: 15px;
        }

        .category-features {
            list-style: none;
            padding: 0;
            margin-bottom: 20px;
        }

        .category-features li {
            padding: 8px 0;
            color: #666;
            border-bottom: 1px solid #eee;
        }

        .category-btn {
            display: inline-block;
            padding: 12px 25px;
            background: #007BFF;
            color: #fff;
            text-decoration: none;
            border-radius: 25px;
            transition: background 0.3s ease;
        }

        .category-btn:hover {
            background: #0056b3;
        }

        /* Alt Ürün Galerisi */
        .product-gallery {
            margin-top: 60px;
        }

        .gallery-title {
            text-align: center;
            font-size: 32px;
            color: #2c3e50;
            margin-bottom: 40px;
        }

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

        .gallery-item {
            position: relative;
            background: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }

        .gallery-item img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.05);
        }

        .item-info {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 20px;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            color: #fff;
        }

        .item-info h4 {
            font-size: 18px;
            margin-bottom: 5px;
        }

        .model-code {
            font-size: 14px;
            opacity: 0.8;
        }

        .detail-link {
            position: absolute;
            right: 20px;
            bottom: 20px;
            color: #fff;
            text-decoration: none;
            padding: 5px 15px;
            border: 1px solid #fff;
            border-radius: 15px;
            transition: all 0.3s ease;
        }

        .detail-link:hover {
            background: #fff;
            color: #000;
        }

        /* Responsive Tasarım */
        @media (max-width: 768px) {
            .category-showcase {
                grid-template-columns: 1fr;
            }
            
            .gallery-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
            
            .main-title {
                font-size: 32px;
            }
        }

        /* Bayiler Bölümü */
        .dealers-section {
            width: 100%;
            background: #000;
            padding: 0;
            position: relative;
        }

        .dealer-slider {
            width: 100%;
            position: relative;
            overflow: hidden;
        }

        .dealer-slides {
            display: flex;
            transition: transform 0.5s ease;
        }

        .dealer-slide {
            min-width: 100%;
            height: 600px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0, 0, 0, 0.8);
        }

        .slide-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0.3;
        }

        .dealer-content {
            position: relative;
            z-index: 2;
            text-align: center;
            padding: 20px;
        }

        .dealer-logo {
            max-width: 350px;
            height: auto;
            margin-bottom: 40px;
            filter: brightness(1);
        }

        .dealer-content p {
            color: #fff;
            font-size: 16px;
            margin: 30px 0;
            
        }

        .dealer-btn {
            display: inline-block;
            padding: 15px 40px;
            background-color: #006064;
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .dealer-btn:hover {
            background-color: #00838f;
        }

        .nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: transparent;
            border: none;
            color: #fff;
            font-size: 24px;
            cursor: pointer;
            z-index: 3;
            padding: 20px;
        }

        .prev {
            left: 20px;
        }

        .next {
            right: 20px;
        }

        @media (max-width: 768px) {
            .dealer-logo {
                max-width: 250px;
            }
            
            .dealer-content p {
                font-size: 14px;
            }
            
            .dealer-btn {
                padding: 12px 30px;
                font-size: 14px;
            }
        }

        .product-grid {
            display: flex !important;
            flex-wrap: wrap !important;
            gap: 32px 24px !important;
            max-width: 1200px !important;
            margin: 40px auto 40px auto !important;
            justify-content: flex-start !important;
            padding: 0 10px !important;
        }
        .product-card {
            background: #fff !important;
            border-radius: 16px !important;
            box-shadow: 0 2px 12px rgba(0,0,0,0.08) !important;
            overflow: hidden !important;
            transition: box-shadow 0.22s, transform 0.22s !important;
            cursor: pointer !important;
            position: relative !important;
            border: 1px solid #e3eafc !important;
            width: 270px !important;
            display: flex !important;
            flex-direction: column !important;
            align-items: center !important;
            padding: 0 !important;
        }
        .product-card:hover {
            box-shadow: 0 8px 32px rgba(25, 118, 210, 0.13) !important;
            transform: translateY(-6px) scale(1.02) !important;
            border: 1px solid #1976d2 !important;
        }
        .fiyat-sor-btn {
            position: absolute !important;
            top: 14px !important;
            left: 14px !important;
            background: #25d366 !important;
            color: #fff !important;
            font-size: 15px !important;
            font-weight: 600 !important;
            border-radius: 6px !important;
            padding: 4px 14px 4px 10px !important;
            display: flex !important;
            align-items: center !important;
            gap: 6px !important;
            box-shadow: 0 2px 8px #25d36633 !important;
            text-decoration: none !important;
            z-index: 2 !important;
            border: none !important;
            transition: background 0.2s, box-shadow 0.2s, transform 0.2s !important;
        }
        .fiyat-sor-btn i {
            font-size: 18px !important;
            margin-right: 2px !important;
        }
        .fiyat-sor-btn:hover {
            background: #128c7e !important;
            box-shadow: 0 4px 16px #25d36644 !important;
            transform: scale(1.05) !important;
        }
        .product-info {
            padding: 18px 0 18px 0 !important;
            text-align: center !important;
            width: 100% !important;
            background: #fff !important;
        }
        .product-title {
            font-size: 17px !important;
            color: #23272f !important;
            font-weight: 700 !important;
            margin-bottom: 6px !important;
            letter-spacing: 0.2px !important;
        }
        .product-model {
            font-size: 15px !important;
            color: #1976d2 !important;
            font-weight: 500 !important;
            margin-bottom: 0 !important;
            text-decoration: underline !important;
            cursor: pointer !important;
            display: block !important;
        }
        .product-color {
            display: none !important;
        }

        /* --- Responsive Header ve Hamburger Menü --- */
        @media (max-width: 900px) {
            .header .container {
                justify-content: space-between;
            }
            .navbar {
                display: none;
            }
            .mobile-menu-btn {
                display: flex !important;
            }
            .search-animate {
                width: 100%;
                max-width: 100vw;
                margin: 16px 0 0 0;
            }
            .products-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
                margin-top: 90px;
            }
            .product-grid {
                flex-direction: column !important;
                gap: 24px 0 !important;
                align-items: center !important;
                justify-content: center !important;
                padding: 0 4px !important;
            }
            .product-card {
                width: 98vw !important;
                max-width: 370px !important;
                min-width: 0 !important;
            }
            .product-image {
                height: 320px !important;
            }
        }
        @media (max-width: 600px) {
            .product-image {
                height: 220px !important;
            }
            .product-card {
                max-width: 98vw !important;
                min-width: 0 !important;
            }
        }
        .mobile-menu-btn {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 21px;
            cursor: pointer;
            z-index: 1001;
            position: relative;
        }
        /* --- Son --- */

        /* Mobile Menu Styles */
        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 21px;
            cursor: pointer;
            z-index: 1001;
            position: relative;
        }

        .mobile-menu-btn span {
            display: block;
            width: 100%;
            height: 3px;
            background: #1976d2;
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        .mobile-menu-btn.active span:nth-child(1) {
            transform: translateY(9px) rotate(45deg);
        }

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

        .mobile-menu-btn.active span:nth-child(3) {
            transform: translateY(-9px) rotate(-45deg);
        }

        .menu-overlay {
            position: fixed;
            top: 0;
            right: -100%;
            width: 280px;
            height: 100vh;
            background: #fff;
            z-index: 1000;
            transition: right 0.3s ease;
            box-shadow: -5px 0 15px rgba(0,0,0,0.1);
            padding: 80px 30px 30px;
        }

        .menu-overlay.active {
            right: 0;
        }

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

        .menu-overlay ul li {
            margin-bottom: 20px;
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.3s ease;
        }

        .menu-overlay.active ul li {
            opacity: 1;
            transform: translateX(0);
        }

        .menu-overlay ul li:nth-child(1) { transition-delay: 0.1s; }
        .menu-overlay ul li:nth-child(2) { transition-delay: 0.2s; }
        .menu-overlay ul li:nth-child(3) { transition-delay: 0.3s; }
        .menu-overlay ul li:nth-child(4) { transition-delay: 0.4s; }

        .menu-overlay ul li a {
            color: #23272f;
            text-decoration: none;
            font-size: 18px;
            font-weight: 600;
            display: block;
            padding: 10px 0;
            transition: color 0.3s ease;
        }

        .menu-overlay ul li a:hover,
        .menu-overlay ul li a.active {
            color: #1976d2;
        }

        @media (max-width: 900px) {
            .mobile-menu-btn {
                display: flex !important;
            }

            .navbar {
                display: none;
            }

            .header .container {
                justify-content: space-between;
            }
        }