/* PREMIUM PRODUCTS SECTION */
    :root {
        --card-bg: rgba(255, 255, 255, 0.03);
        --card-border: rgba(197, 160, 89, 0.2);
    }

    .section {
        padding: 100px 6%;
        text-align: center;
        background-color: transparent;
    }

    .section h2 {
        font-family: 'Playfair Display', serif;
        font-size: 42px;
        font-weight: 700;
        margin-bottom: 60px;
        color: var(--premium-gold);
        letter-spacing: 2px;
        text-transform: uppercase;
    }

    /* HEM PC HEM MOBİL İÇİN YAN YANA SIRALAMA VE KAYDIRMA AYARI */
    .products-grid {
        display: flex; /* Grid yerine hem PC hem mobilde Flexbox */
        overflow-x: auto; /* Yatay kaydırma aktif */
        scroll-snap-type: x mandatory; /* Kartların ekrana pürüzsüz oturması */
        scroll-behavior: smooth;
        gap: 40px;
        max-width: 1300px;
        margin: 0 auto;
        padding: 20px 0 40px 0; /* Gölgelerin kesilmemesi için alt padding */
    }

    /* Premium Masaüstü Scrollbar Tasarımı (PC'de kaydırma konforu için) */
    .products-grid::-webkit-scrollbar {
        height: 5px;
    }
    .products-grid::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.02);
    }
    .products-grid::-webkit-scrollbar-thumb {
        background: var(--card-border);
        border-radius: 4px;
    }
    .products-grid::-webkit-scrollbar-thumb:hover {
        background: var(--premium-gold);
    }

    /* MODERN PREMIUM CARD */
    .product-card {
        background: var(--card-bg);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid var(--card-border);
        border-radius: 4px;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        
        /* PC ve Geniş Ekranlarda Kart Genişlik Ayarı */
        flex: 0 0 calc(25% - 30px); /* 4'lü dizilim için genişlik ayarı */
        min-width: 280px; /* Kartların çok küçülmesini engeller */
        scroll-snap-align: start;
    }

    .product-card:hover {
        transform: translateY(-15px);
        border-color: var(--premium-gold);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(197, 160, 89, 0.1);
    }

    /* IMAGE STYLING */
    .product-img-wrapper {
        width: 100%;
        height: 250px;
        overflow: hidden;
        background: #000;
        position: relative;
    }

    .product-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.8;
        transition: 0.5s ease;
    }

    .product-card:hover img {
        opacity: 1;
        transform: scale(1.1);
    }

    /* INFO AREA */
    .info {
        padding: 25px;
        text-align: left;
    }

    .info h3 {
        font-family: 'Playfair Display', serif;
        font-size: 22px;
        color: #fff;
        margin-bottom: 12px;
        letter-spacing: 1px;
    }

    /* PRICE & ACTION */
    .card-footer {
        display: flex;
        justify-content: flex-end; /* İncele butonunu sağa yaslar */
        align-items: center;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        padding-top: 15px;
    }

    .add-to-cart {
        color: #fff;
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        text-decoration: none;
        border-bottom: 1px solid var(--premium-gold);
        padding-bottom: 2px;
        transition: 0.3s;
    }

    .add-to-cart:hover {
        color: var(--premium-gold);
        border-bottom-color: #fff;
    }

    /* MOBILE OPTIMIZATION */
    @media(max-width: 768px) {
        .products-grid {
            gap: 20px;
            padding: 20px 10px 40px 10px;
            /* Mobilde scrollbar gizleme */
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .products-grid::-webkit-scrollbar {
            display: none;
        }

        .product-card {
            flex: 0 0 78%; /* Mobilde sonraki kartın ucu şıkça görünür */
            scroll-snap-align: center;
        }

        .section {
            padding: 60px 15px;
        }

        .section h2 {
            font-size: 28px;
            margin-bottom: 30px;
        }
    }