/* Modern Minimal Pasta Showcase */
.kayan-kartlar-container {
    width: 100%;
    padding: 60px 20px;
    background: transparent;
    position: relative;
    overflow: hidden;
}

/* Başlık */
.kayan-kartlar-baslik {
    text-align: center;
    margin-bottom: 40px;
    font-size: clamp(28px, 4vw, 48px);
    color: #333;
    font-weight: 800;
    letter-spacing: -1px;
}

.kayan-kartlar {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 10px 30px;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
}

/* Scrollbar gizle */
.kayan-kartlar::-webkit-scrollbar {
    display: none;
}

/* Modern Mini Kartlar - Story Tarzı */
.kart-item {
    min-width: 140px;
    height: 240px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 18px;
    padding: 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    scroll-snap-align: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.kart-item:hover {
    transform: scale(1.08) translateY(-8px);
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.6);
    border-color: rgba(255, 255, 255, 0.3);
    z-index: 10;
}

/* Resim tam kaplasın */
.kart-icerik {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.kart-resim {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 16px 16px 0 0;
}

/* Bilgi kısmı - Küçük ve şık */
.kart-info {
    padding: 12px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.kart-icerik h3 {
    font-size: 14px;
    font-weight: 700;
    color: white;
    margin: 0 0 4px 0;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.kart-icerik p {
    display: none; /* Açıklamayı gizle, çok küçük */
}

.kart-fiyat {
    font-size: 18px;
    font-weight: 800;
    color: #ffdd00;
    margin: 4px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.kart-buton {
    width: 100%;
    padding: 8px;
    background: rgba(255, 255, 255, 0.9);
    color: #000;
    border: none;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.kart-buton:hover {
    background: white;
    transform: scale(1.05);
}

/* Aktif kart efekti */
.kart-item.aktif {
    transform: scale(1.02);
}

/* Parlama animasyonu */
@keyframes shine {
    0% {
        background-position: -200px;
    }
    100% {
        background-position: 200px;
    }
}

.kart-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.5s;
}

.kart-item:hover::before {
    left: 100%;
}

/* Tablet */
@media (min-width: 768px) {
    .kart-item {
        min-width: 160px;
        height: 280px;
    }
    
    .kart-resim {
        height: 160px;
    }
    
    .kart-info {
        padding: 14px;
    }
    
    .kart-icerik h3 {
        font-size: 15px;
    }
    
    .kart-fiyat {
        font-size: 20px;
    }
    
    .kart-buton {
        padding: 10px;
        font-size: 12px;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .kayan-kartlar {
        gap: 20px;
        padding: 20px 20px 40px;
    }
    
    .kart-item {
        min-width: 180px;
        height: 320px;
    }
    
    .kart-resim {
        height: 180px;
    }
    
    .kart-info {
        padding: 16px;
    }
    
    .kart-icerik h3 {
        font-size: 16px;
        -webkit-line-clamp: 2;
    }
    
    .kart-fiyat {
        font-size: 22px;
        margin: 6px 0;
    }
    
    .kart-buton {
        padding: 12px;
        font-size: 13px;
    }
}

/* Large Desktop */
@media (min-width: 1440px) {
    .kayan-kartlar {
        gap: 25px;
        justify-content: center;
    }
    
    .kart-item {
        min-width: 200px;
        height: 360px;
    }
    
    .kart-resim {
        height: 200px;
    }
}
.whatsapp-buton {
    background: linear-gradient(135deg, #c9a84c, #f0c040);
    color: #2d1b69;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 25px;
    padding: 10px 20px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.4);
}
.whatsapp-buton:hover {
    background: linear-gradient(135deg, #f0c040, #c9a84c);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 168, 76, 0.6);
    color: #1a0f3c;
}
.whatsapp-buton i {
    font-size: 1.2rem;
}