/* ========================================================
   كود CSS لتعديل هوية متجر سلة بالكامل إلى طابع Flix Pro KSA
   ======================================================== */

/* 1. تعديل لون خلفية المتجر بالكامل والخطوط */
body, 
.main-wrapper, 
#app, 
.site-wrapper {
    background-color: #0c0314 !important; /* اللون البنفسجي الغامق جداً */
    color: #ffffff !important;
}

/* 2. تعديل الهيدر (الشريط العلوي للمتجر) */
header, 
.header, 
.top-nav {
    background-color: #120521 !important;
    border-bottom: 2px solid #1f0b33 !important;
}

/* 3. تعديل روابط القوائم والنصوص العلوية */
.header a, 
.main-menu a, 
.nav-link {
    color: #b5a2ca !important;
}
.header a:hover, 
.main-menu a:hover {
    color: #ffffff !important;
}

/* 4. تعديل العناوين الرئيسية وأسعار المنتجات */
h1, h2, h3, h4, h5, h6,
.product-title, 
.title {
    color: #ffffff !important;
}

/* أسعار المنتجات باللون البرتقالي المتناسق مع التصميم */
.product-price, 
.price, 
.amount {
    color: #ff9f1a !important; 
    font-weight: bold !important;
}

/* 5. تصميم الكروت والبطاقات الخاصة بالمنتجات */
.product-card, 
.card, 
.store-card {
    background: linear-gradient(135px, #170429 0%, #0d0217 100%) !important;
    border: 1px solid rgba(160, 51, 255, 0.2) !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    transition: all 0.3s ease-in-out !important;
}
.product-card:hover {
    border-color: #a033ff !important;
    box-shadow: 0 0 15px rgba(160, 51, 255, 0.4) !important;
    transform: translateY(-4px);
}

/* 6. تعديل أزرار الشراء والإضافة للسلة لتصبح مضيئة */
.btn-submit, 
.btn-primary, 
.add-to-cart, 
.salla-button {
    background: linear-gradient(90deg, #3d1075, #a033ff) !important;
    color: #ffffff !important;
    border: none !important;
    font-weight: bold !important;
    text-shadow: 0 0 8px rgba(255,255,255,0.5) !important;
    box-shadow: 0 4px 10px rgba(160, 51, 255, 0.3) !important;
    transition: 0.3s !important;
}
.btn-submit:hover, 
.btn-primary:hover, 
.add-to-cart:hover {
    box-shadow: 0 0 18px #a033ff !important;
    background: linear-gradient(90deg, #a033ff, #3d1075) !important;
}

/* 7. الفوتر (أسفل الموقع) وتأثير الإضاءة البنفسجية */
footer, 
.store-footer {
    background: radial-gradient(circle, #1a0633 0%, #08010f 100%) !important;
    border-top: 1px solid #1f0b33 !important;
    padding-top: 40px !important;
}

/* 8. تعديل شكل أيقونة سلة المشتريات والعداد */
.sicon-cart, 
.cart-icon {
    color: #ffffff !important;
}
.cart-badge, 
.badge-danger {
    background-color: #ff9f1a !important; /* عداد السلة برتقالي */
    color: #ffffff !important;
}