/* تصحيح تنسيق أزرار إضافة للسلة وتنسيق الأسعار */
.btn-add-cart {
    background-color: white !important;
    color: var(--primary-color) !important;
    border: 1px solid var(--primary-color) !important;
    transition: all 0.3s ease;
    padding: 4px 8px !important;
    height: 28px !important;
    font-size: 0.75rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.product-price {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

.product-price .current-price {
    font-weight: bold !important;
    color: #000 !important;
    font-size: 0.9rem !important;
}

.product-price .old-price {
    text-decoration: line-through !important;
    color: #999 !important;
    font-size: 0.75rem !important;
}

/* تصحيح تنسيقات خاصة لصفحة العروض */
.offers-page .product-price {
    display: flex !important;
    justify-content: space-between !important;
}

.offers-page .product-price .current-price {
    margin-left: 0 !important;
    margin-right: auto !important;
}
