.hazir-sepet-listesi {
    margin: 20px 0;
}

.sepet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.sepet-karti {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sepet-karti:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.sepet-baslik h3 {
    margin: 0 0 15px 0;
    color: #333;
    border-bottom: 2px solid #007cba;
    padding-bottom: 10px;
    font-size: 18px;
}

.sepet-urunleri {
    max-height: 200px;
    overflow-y: auto;
    margin-bottom: 15px;
}

.sepet-urun {
    display: flex;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.sepet-urun:last-child {
    border-bottom: none;
}

.urun-gorsel {
    width: 50px;
    height: 50px;
    margin-right: 10px;
    flex-shrink: 0;
}

.urun-gorsel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.urun-bilgi {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.urun-adi {
    font-weight: 500;
    color: #333;
    margin-bottom: 2px;
    font-size: 14px;
}

.urun-varyasyon {
    font-size: 12px;
    color: #666;
    font-style: italic;
    margin-bottom: 2px;
}

.urun-adet {
    font-size: 12px;
    color: #666;
}

.urun-fiyat {
    font-size: 14px;
    color: #007cba;
    font-weight: 600;
}

.sepet-fiyat {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 6px;
    margin: 15px 0;
}

.toplam-fiyat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
    flex-wrap: wrap;
}

.eski-fiyat {
    text-decoration: line-through;
    color: #999;
    font-size: 14px;
}

.indirimli-fiyat {
    color: #d63638;
    font-size: 18px;
}

.indirim-bilgisi {
    text-align: center;
    background: #d63638;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    margin-top: 5px;
}

.sepet-actions {
    text-align: center;
}

.sepete-ekle-btn {
    background: #007cba;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
}

.sepete-ekle-btn:hover {
    background: #005a87;
}

.sepete-ekle-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.sepet-sayfalama {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 30px;
}

.sayfa-link {
    padding: 8px 12px;
    border: 1px solid #ddd;
    text-decoration: none;
    color: #333;
    border-radius: 4px;
}

.sayfa-link.aktif,
.sayfa-link:hover {
    background: #007cba;
    color: white;
    border-color: #007cba;
}

/* Responsive */
@media (max-width: 768px) {
    .sepet-grid {
        grid-template-columns: 1fr;
    }
    
    .sepet-urun {
        flex-direction: column;
        text-align: center;
    }
    
    .urun-gorsel {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .toplam-fiyat {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
}