/* Add custom CSS styles below */ 
/* 1. تكبير الشعار */
.branding .logo img {
    max-height: 500px !important; /* غير الرقم حسب الحجم المناسب لك */
    width: auto !important;
}

/* 2. زر أضف للسلة - تعديل اللون والتصميم */
.product-form-actions .add-to-cart,
button.add-to-cart {
    background-color: #28a745 !important; /* لون أخضر جذاب - غيره لما يناسبك */
    border-color: #28a745 !important;
    color: #ffffff !important;
    border-radius: 30px !important; /* حواف مستديرة */
    padding: 12px 25px !important;
    font-weight: bold !important;
    transition: all 0.3s ease !important;
}

.product-form-actions .add-to-cart:hover,
button.add-to-cart:hover {
    background-color: #1e7e34 !important; /* لون أغمق عند المرور */
    border-color: #1e7e34 !important;
    transform: scale(1.02);
}

/* 3. صفحة المنتج - تحسين اسم المنتج وسعره */
.product-page .product-title {
    font-size: 32px !important; /* تكبير اسم المنتج */
    font-weight: bold !important;
}

.product-page .product-price .price {
    font-size: 28px !important;
    color: #2c3e50 !important;
    font-weight: bold !important;
}

/* 4. تحسين زر الكمية في صفحة المنتج */
.product-quantity .quantity-btn {
    background-color: #f8f9fa !important;
    border: 1px solid #dee2e6 !important;
    color: #000 !important;
}

.product-quantity .quantity-input {
    border-top: 1px solid #dee2e6 !important;
    border-bottom: 1px solid #dee2e6 !important;
}

/* 5. تعديل زر المكان الترويجي (شريط الإعلانات العلوي) */
.announcement-bar a,
.announcement-bar .btn,
.promotional-banner a {
    background-color: #ff5722 !important; /* لون برتقالي مميز */
    color: #fff !important;
    padding: 8px 20px !important;
    border-radius: 40px !important;
    text-decoration: none !important;
    font-weight: bold !important;
    display: inline-block !important;
    transition: 0.3s !important;
}

.announcement-bar a:hover,
.promotional-banner a:hover {
    background-color: #e64a19 !important;
    transform: translateY(-2px);
}