/* ABP Giriş Alanı Kapsayıcısı */
.abp-calculation-wrapper {
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #ffffff;
}

.abp-calculation-wrapper label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
}

#abp_customer_input {
    width: 100%;
    padding: 10px;
    font-size: 1.1em;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/** * KRİTİK DÜZELTME: 
 * Kırmızı hata veren :has seçicisi yerine, tüm tarayıcıların tanıdığı 
 * "Sibling Selector" (~) yapısını kullanarak adet kutusunu gizliyoruz.
 */
.abp-calculation-wrapper ~ .quantity {
    display: none !important;
}

/* Sonuç Kutusu Tasarımı */
.abp-result-box {
    margin-top: 15px;
    line-height: 1.6;
    padding: 12px;
    background: #fffdf3;
    border-left: 4px solid #f9d806;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.abp-pkg-count {
    font-weight: bold;
    color: #000;
}

.abp-total-price {
    display: block;
    margin-top: 5px;
    font-size: 1.2em;
    font-weight: bold;
    color: #333; 
}