﻿/* ========================================
   SEPET SAYFASI
   ======================================== */

/* Sepet Kartı */
.sepet-kart {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

    .sepet-kart .table th {
        font-weight: 600;
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: var(--gray-color);
        border-bottom: 2px solid #e9ecef;
        padding: 15px 12px;
    }

    .sepet-kart .table td {
        padding: 15px 12px;
        vertical-align: middle;
        border-bottom: 1px solid #f1f1f1;
    }

/* Sepet Resim */
.sepet-resim {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.sepet-resim-yok {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    border-radius: 8px;
    font-size: 1.5rem;
}

.sepet-resim-mobil {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

/* Ürün Adı */
.sepet-urun-ad {
    font-size: 0.95rem;
    color: var(--dark-color);
    line-height: 1.4;
}

/* Birim Fiyat */
.sepet-birim-fiyat {
    color: var(--gray-color);
    font-size: 0.9rem;
}

/* Satır Toplam */
.sepet-satir-toplam {
    color: var(--dark-color);
    font-size: 1rem;
}

/* Adet Grup */
.sepet-adet-grup {
    max-width: 130px;
    margin: 0 auto;
}

    .sepet-adet-grup .form-control {
        font-weight: 600;
        font-size: 0.9rem;
        border-left: none;
        border-right: none;
    }

    .sepet-adet-grup .btn {
        padding: 4px 10px;
        font-size: 0.75rem;
    }

/* Sil Butonu */
.btn-sepet-sil {
    border: none;
    background: none;
    color: var(--gray-color);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 6px 8px;
}

    .btn-sepet-sil:hover {
        color: #e74c3c;
        transform: scale(1.2);
    }

/* Sipariş Özeti Kartı */
.sepet-ozet-kart {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

    .sepet-ozet-kart .card-header {
        border-bottom: 2px solid var(--main-color);
        border-radius: 12px 12px 0 0 !important;
        padding: 18px 20px;
    }

    .sepet-ozet-kart .card-body {
        padding: 20px;
    }

    .sepet-ozet-kart .card-footer {
        border-top: 1px solid #e9ecef;
        border-radius: 0 0 12px 12px !important;
    }

/* Hover Satır */
.sepet-kart .table tbody tr:hover {
    background-color: #fafbfc;
}

/* Mobil Kart */
.sepet-mobil-kart {
    transition: background 0.2s ease;
}

    .sepet-mobil-kart:hover {
        background-color: #fafbfc;
    }

/* Responsive */
@media (max-width: 991px) {
    .sepet-ozet-kart {
        position: static !important;
    }
}

@media (max-width: 767px) {
    .sepet-resim-mobil {
        width: 60px;
        height: 60px;
    }

    .kategori-baslik {
        font-size: 1.4rem;
    }
}
