/* ============================================
   NAPA Coffee Co. — Öne Çıkan Ürünler
   ============================================ */

.napa-featured {
    background-color: #f7ebdf;
    padding: 100px 0;
}

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

.napa-featured-header h2 {
    font-family: 'Anton', sans-serif;
    font-size: clamp(2.5rem, 5vw, 5rem);
    color: var(--napa-black);
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 12px;
}

.napa-featured-header p {
    font-family: 'Delicious Handrawn', cursive;
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    color: var(--napa-red);
}

/* Slider */
.napa-featured-slider {
    position: relative;
    overflow: hidden;
}

.napa-featured-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Kart */
.napa-featured-card {
    position: relative;
    overflow: hidden;
    flex: 0 0 25%;
    aspect-ratio: 1 / 1;
    cursor: pointer;
    text-decoration: none;
}

.napa-featured-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}

.napa-featured-card:hover img {
    transform: scale(1.05);
}

/* Overlay */
.napa-featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(17,17,17,0.9) 0%,
        rgba(17,17,17,0.2) 50%,
        transparent 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    transition: background 0.3s ease;
}

.napa-featured-card:hover .napa-featured-overlay {
    background: linear-gradient(
        to top,
        rgba(217,66,48,0.85) 0%,
        rgba(17,17,17,0.3) 60%,
        transparent 100%
    );
}

.napa-featured-overlay h3 {
    font-family: 'Anton', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: var(--napa-white);
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 6px;
}

.napa-featured-overlay p {
    font-family: 'Space Mono', monospace;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Ok butonları */
.napa-featured-prev,
.napa-featured-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--napa-black);
    color: var(--napa-white);
    border: none;
    width: 48px;
    height: 48px;
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.napa-featured-prev { left: 0; }
.napa-featured-next { right: 0; }

.napa-featured-prev:hover,
.napa-featured-next:hover {
    background: var(--napa-red);
}

/* Mobil */
@media (max-width: 1024px) {
    .napa-featured-card {
        flex: 0 0 50%;
    }
}

@media (max-width: 480px) {
    .napa-featured-card {
        flex: 0 0 100%;
    }

    .napa-featured {
        padding: 60px 0;
    }

    .napa-featured-prev,
    .napa-featured-next {
        width: 40px;
        height: 40px;
        font-size: 1.4rem;
    }
}