.sepet-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.sepet-baslik {
    font-size: 2rem;
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
}

.sepet-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.sepet-urunler {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 1rem;
}

.sepet-urun {
    display: grid;
    grid-template-columns: auto 2fr auto auto;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #eee;
}

.sepet-urun:last-child {
    border-bottom: none;
}

.urun-resim {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 4px;
}

.urun-bilgi {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.urun-adi {
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
}

.urun-fiyat {
    font-weight: 600;
    color: #2c3e50;
}

.urun-adet {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.adet-btn {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.adet-btn:hover {
    background: #e9ecef;
}

.adet-input {
    width: 50px;
    text-align: center;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    padding: 0.25rem;
}

.urun-sil {
    color: #dc3545;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.2s;
}

.urun-sil:hover {
    color: #c82333;
}

.sepet-ozet {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 1.5rem;
    height: fit-content;
}

.sepet-ozet h2 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 1rem;
}

.ozet-detay {
    margin-bottom: 1.5rem;
}

.ozet-detay > div {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    color: #666;
}

.ozet-detay .toplam {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.alisverisi-tamamla {
    width: 100%;
    padding: 1rem;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    cursor: pointer;
    margin-bottom: 1rem;
    transition: background-color 0.3s;
}

.alisverisi-tamamla:hover {
    background: #388E3C;
}

.alisverise-devam {
    display: block;
    text-align: center;
    padding: 0.8rem;
    background: #f5f5f5;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.alisverise-devam:hover {
    background: #e0e0e0;
}

.sepet-bos {
    text-align: center;
    padding: 3rem;
}

.sepet-bos i {
    font-size: 4rem;
    color: #6c757d;
    margin-bottom: 1rem;
}

.sepet-bos p {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
}

/* Bildirim Stili */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #4CAF50;
    color: white;
    padding: 1rem 2rem;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    z-index: 1000;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .sepet-content {
        grid-template-columns: 1fr;
    }

    .sepet-urun {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .urun-resim {
        margin: 0 auto;
    }

    .urun-adet {
        justify-content: center;
        margin: 1rem 0;
    }

    .sepet-ozet {
        position: static;
    }
} 