/* =========================================================
   تنسيقات متجر SKARLET - خلفية أفتح وخلفية نصوص واضحة
   ========================================================= */

/* 1. جعل خلفية المتجر أفتح من السابق */
body, 
.main-wrapper, 
main, 
#app {
    background-color: #2a2a30 !important; /* لون رمادي داكن أفتح وأوضح من الأسود الكامل */
    color: #ffffff !important;
}

/* 2. الهيدر (الشريط العلوي) وتعديل لون الخط إلى الأسود */
header, .store-header, .site-header {
    background-color: #ffffff !important; /* خلفية الهيدر بيضاء أو فاتحة لإبراز الخط الأسود */
    border-bottom: 2px solid #e61c24 !important;
}

/* جعل لون خط التصنيفات والروابط في الأعلى أسود ناصع */
.main-navigation a, 
.header-shipping-bar, 
.nav-link,
header a,
.store-header a,
.site-header a,
.categories-menu a {
    color: #000000 !important; /* لون أسود باين ومستحيل يكون شفاف */
    font-weight: 700 !important; /* خط عريض لزيادة الوضوح */
    opacity: 1 !important;
}

.main-navigation a:hover, 
header a:hover {
    color: #e61c24 !important; /* يتغير للأحمر عند مرور الماوس */
}

/* 3. كروت المنتجات */
.product-box, .product-card, .card {
    background-color: #1f1f24 !important;
    border: 1px solid #3a3a45 !important;
    border-radius: 12px !important;
    transition: all 0.3s ease-in-out !important;
}

.product-box:hover, .product-card:hover {
    border-color: #e61c24 !important;
    box-shadow: 0 4px 20px rgba(230, 28, 36, 0.3) !important;
    transform: translateY(-4px);
}

/* أسماء المنتجات والأسعار */
.product-title, .product-details h3, .product-name {
    color: #ffffff !important;
}

.price, .product-price {
    color: #ff333d !important;
    font-weight: bold !important;
}

/* 4. أزرار إضافة للسلة */
.btn-add-to-cart, .add-to-cart-btn, .product-box button {
    background: linear-gradient(135deg, #e61c24, #990006) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 8px !important;
    font-weight: bold !important;
}

/* 5. الفوتر (تذييل الصفحة) */
footer, .store-footer {
    background-color: #18181c !important;
    border-top: 1px solid #33333d !important;
    color: #cccccc !important;
}

footer a {
    color: #ffffff !important;
}

footer a:hover {
    color: #e61c24 !important;
}