header nav a,
.store-header nav a {
    font-size: 19px !important;
    font-weight: 800 !important;
    letter-spacing: 0.4px;
}


/* الخلفية */
footer,
.store-footer,
.store-footer__inner {
    background: #012F68 !important;
    color: #fff !important;
}

/* منع أي لف أو نزول غير متساوي */
.store-footer .container {
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    gap: 40px !important;
    flex-wrap: nowrap !important;
}

/* كل عمود نفس العرض */
.store-footer .container > div {
    flex: 1 !important;
    min-width: 0 !important;
}

/* محاذاة الأعمدة */
.store-footer .container > div:nth-child(1),
.store-footer .container > div:nth-child(2),
.store-footer .container > div:nth-child(3) {
    text-align: right !important;
}

/* تقليل الفراغات الداخلية */
.store-footer h3,
.store-footer h4 {
    margin-bottom: 12px !important;
}

.store-footer p,
.store-footer a,
.store-footer li {
    line-height: 1.9 !important;
}

/* تصغير الفراغ الجانبي العام */
.store-footer {
    padding: 40px 20px !important;
}

/* الجوال */
@media (max-width:768px){
    .store-footer .container {
        flex-wrap: wrap !important;
    }
    .store-footer .container > div {
        flex: 100% !important;
        text-align: center !important;
        margin-bottom: 25px !important;
    }
}

/* ===========================
   تغيير الخلفيات الداكنة
=========================== */

.bg-dark,
.bg-black,
footer,
.store-footer,
.store-footer__bottom {
    background: #012F68 !important;
}

/* ===========================
   كروت المنتجات
=========================== */

.product-card,
.s-product-card,
.product {
    border: 2px solid #012F68 !important;
    border-radius: 14px !important;
    overflow: hidden;
    transition: all .3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
}

.product-card:hover,
.s-product-card:hover,
.product:hover {
    border-color: #0A4AA6 !important;
    box-shadow: 0 10px 25px rgba(1,47,104,.18);
    transform: translateY(-3px);
}

/* ===========================
   زر أضف للسلة
=========================== */

.btn-primary,
button.btn-primary {
    background: #012F68 !important;
    border-color: #012F68 !important;
}

.btn-primary:hover,
button.btn-primary:hover {
    background: #0A4AA6 !important;
    border-color: #0A4AA6 !important;
}