
    /* SLIDER SECTION */
    .coffee-section {
        background-color: transparent;
        padding: 80px 0;
    }

    .coffee-section h2 {
        font-family: 'Playfair Display', serif;
        color: var(--premium-gold);
        font-size: 36px;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

    .coffee-section p {
        color: #888;
        font-size: 14px;
        letter-spacing: 1px;
    }

    /* SLIDER CORE */
    #coffeeSlider {
        overflow: hidden;
        cursor: grab;
        user-select: none;
        position: relative;
        padding: 20px 0;
    }

    #coffeeInner {
        display: flex;
        flex-wrap: nowrap;
        transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    }

    /* SLIDER ITEM */
    .coffee-item {
        flex: 0 0 25%;
        /* Masaüstünde 4 tane */
        padding: 15px;
        text-align: center;
        transition: 0.3s;
    }

    /* Görsel Çerçevesi */
    .img-container {
        position: relative;
        width: 100%;
        padding-top: 100%;
        /* Kare formunu korumak için */
        border-radius: 50%;
        border: 1px solid var(--glass-border);
        overflow: hidden;
        background: #000;
        transition: 0.4s;
    }

    .coffee-item:hover .img-container {
        border-color: var(--premium-gold);
        box-shadow: 0 0 20px rgba(197, 160, 89, 0.2);
        transform: scale(1.05);
    }

    .coffee-item img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.8;
        transition: 0.4s;
    }

    .coffee-item:hover img {
        opacity: 1;
    }

    .coffee-item h6 {
        font-family: 'Inter', sans-serif;
        color: #fff;
        margin-top: 20px;
        font-weight: 500;
        font-size: 14px;
        letter-spacing: 1px;
    }

    /* MODERN KONTROLLER */
    .slider-btn {
        position: absolute;
        top: 55%;
        transform: translateY(-50%);
        background: rgb(33 62 59);
        backdrop-filter: blur(5px);
        color: var(--premium-gold);
        border: 1px solid var(--glass-border);
        font-size: 24px;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        transition: 0.3s;
        z-index: 10;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .slider-btn:hover {
        background: var(--premium-gold);
        color: var(--midnight-deep);
        border-color: #fff;
    }

    .slider-btn.start-0 {
        left: 2%;
    }

    .slider-btn.end-0 {
        right: 2%;
    }

    /* RESPONSIVE */
    @media(max-width: 992px) {
            .coffee-item {
                flex: 0 0 50%;
            }

            /* Mobilde 2 tane */
        }
