
    /* 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;
        /* Body'deki midnight-deep görünecek */
    }

    .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;
    }

    .products-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 40px;
        max-width: 1300px;
        margin: 0 auto;
    }

    /* 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;
        /* Keskin ve maskülen hatlar için az radius */
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
    }

    .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;
    }

    .info p {
        font-size: 14px;
        color: #999;
        line-height: 1.6;
        margin-bottom: 20px;
        height: 45px;
        /* Açıklamaların hizalı durması için */
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    /* PRICE & ACTION */
    .card-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        padding-top: 15px;
    }

    .price {
        font-weight: 600;
        font-size: 18px;
        color: var(--premium-gold);
    }

    .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 SLIDER OPTIMIZATION */
    @media(max-width: 768px) {
            .products-grid {
                display: flex;
                /* Grid yerine yan yana dizilim */
                overflow-x: auto;
                /* Yatayda kaydırma */
                scroll-snap-type: x mandatory;
                /* Kartların ekrana oturmasını sağlar */
                scroll-behavior: smooth;
                gap: 20px;
                /* Mobilde boşluğu biraz daraltalım */
                padding: 20px 0 40px 0;
                /* Alttaki gölge için padding */

                /* Kaydırma çubuğunu gizlemek isterseniz: */
                -ms-overflow-style: none;
                /* IE and Edge */
                scrollbar-width: none;
                /* Firefox */
            }

            /* Webkit (Chrome, Safari) scrollbar gizleme */
            .products-grid::-webkit-scrollbar {
                display: none;
            }

            .product-card {
                flex: 0 0 85%;
                /* Kartın ekranın %85'ini kaplaması (diğer kartın ucu görünür) */
                scroll-snap-align: center;
                /* Kaydırınca kartı ortalar */
                margin-bottom: 0;
                /* Grid'den kalan marginleri temizle */
            }

            .section {
                padding: 60px 15px;
                /* Kenar boşluklarını daralt */
            }

            .section h2 {
                font-size: 28px;
                margin-bottom: 30px;
            }
        }

        /* RESPONSIVE */
        @media(max-width: 768px) {
                .section {
                    padding: 60px 20px;
                }

                .section h2 {
                    font-size: 32px;
                }
            }
 