/* --- WHMCS PREMIUM TASARIM (HATALARI GİDERİLMİŞ SÜRÜM) --- */

/* 1. LAYOUT DÜZELTMESİ (En Önemlisi) */
/* Normalde 2'li olan yapıyı geniş ekranlarda 3'lü yapmaya zorluyoruz */
@media (min-width: 992px) {
    #order-standard_cart .row-eq-height .col-md-6 {
        flex: 0 0 32% !important; /* Genişliği %32'ye çek */
        max-width: 32% !important;
        margin-right: 1.3%; /* Aralarında boşluk bırak */
    }
    /* 3. ürünün sağ boşluğunu sıfırla ki taşmasın */
    #order-standard_cart .row-eq-height .col-md-6:nth-child(3n) {
        margin-right: 0;
    }
}

/* 2. KART GÖVDE TASARIMI */
#order-standard_cart .product {
    background: #fff;
    border: 1px solid #e1e4e8 !important;
    border-radius: 12px; /* Daha modern köşe */
    padding: 0 !important; /* İç boşluğu sıfırla, biz yöneteceğiz */
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05); /* Kaliteli gölge */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden; /* Başlık taşmasın */
    display: flex;
    flex-direction: column;
}

#order-standard_cart .product:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    border-color: #2b7ae2 !important;
}

/* 3. BAŞLIK (HEADER) - Artık Renkli ve Belirgin */
#order-standard_cart .product header {
    background: #101923 !important; /* Koyu Lacivert/Siyah Arka Plan */
    padding: 25px 15px !important;
    margin: 0 !important;
    text-align: center;
}

#order-standard_cart .product header span {
    color: #fff !important; /* Beyaz Yazı */
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#order-standard_cart .product header .qty {
    display: block;
    color: #aaa !important;
    font-size: 0.8rem;
    margin-top: 5px;
}

/* 4. FİYAT ALANI - Hemen Başlığın Altına */
#order-standard_cart .product-pricing {
    background: #f8f9fa !important; /* Hafif Gri Arka Plan */
    padding: 20px 0 !important;
    text-align: center;
    border-bottom: 1px solid #eee;
    margin: 0 !important;
}

#order-standard_cart .product-pricing .price {
    color: #2b7ae2;
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
}

/* 5. ÖZELLİKLER - Çizgili Liste Görünümü */
#order-standard_cart .product-desc {
    padding: 0 !important;
    text-align: center;
    flex-grow: 1;
}

#order-standard_cart .product-desc ul li {
    padding: 12px 15px;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
    font-size: 0.95rem;
}

/* Her ikinci satıra hafif renk ver (Zebra Deseni) */
#order-standard_cart .product-desc ul li:nth-child(even) {
    background-color: #fcfcfc;
}

/* 6. BUTON VE ALT KISIM */
#order-standard_cart .product footer {
    background: #fff !important;
    padding: 20px !important;
    text-align: center;
    border-top: none;
}

#order-standard_cart .btn-order-now {
    display: block;
    width: 100% !important;
    background-color: #28a745 !important; /* Canlı Yeşil Satın Al Butonu */
    border: none !important;
    padding: 15px !important;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 6px !important;
    color: #fff !important;
    transition: background 0.3s;
}

#order-standard_cart .btn-order-now:hover {
    background-color: #218838 !important;
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
}

/* İkonu gizle veya düzelt */
#order-standard_cart .btn-order-now i {
    display: none; /* Sadece yazı kalsın daha temiz durur */
}