/* لون الهيدر */
header,
.s-header {
  background: #0d3d91 !important;
}





/* استيراد خط Cairo */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700&display=swap');

/* الخط العام */
*{
    font-family:'Cairo',sans-serif;
}

/* خلفية الموقع */
body{
    background:#f6f8fb;
    color:#1f2937;
}

/* العناوين */
h1,h2,h3,h4,h5{
    font-weight:700;
    color:#0a4da3;
}

/* الصور كلها كيرفيد */
img{
    border-radius:16px;
    transition:.3s ease;
}

/* تأثير خفيف على الصور */
img:hover{
    transform:scale(1.02);
}

/* كروت المنتجات */
.product{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 6px 20px rgba(0,0,0,0.06);
    transition:.3s ease;
}

.product:hover{
    transform:translateY(-6px);
    box-shadow:0 12px 30px rgba(0,0,0,0.10);
}

/* صورة المنتج */
.product-image img{
    border-radius:16px;
}

/* اسم المنتج */
.product-title{
    font-weight:600;
    color:#111827;
}

/* السعر */
.product-price{
    color:#0a4da3;
    font-weight:700;
}

/* زر أضف للسلة */
.btn-primary,
button.add-to-cart{
    background:linear-gradient(135deg,#0a4da3,#1e6bd6);
    border:none;
    border-radius:12px;
    padding:10px 18px;
    font-weight:600;
    color:#fff;
    transition:.3s;
}

.btn-primary:hover,
button.add-to-cart:hover{
    background:linear-gradient(135deg,#083c7f,#145ab0);
}

/* البانرات */
.banner img{
    border-radius:20px;
}

/* الهيدر */
header{
    background:#ffffff;
    box-shadow:0 2px 12px rgba(0,0,0,0.05);
}

/* مربع البحث */
.search input{
    border-radius:25px;
    border:1px solid #e5e7eb;
}

/* الحقول */
input,select,textarea{
    border-radius:10px;
    border:1px solid #e5e7eb;
}

/* السلة */
.cart-item{
    background:#fff;
    border-radius:14px;
    padding:10px;
}

/* العروض */
.badge-sale{
    background:#0a4da3;
    border-radius:8px;
}

/* الفوتر */
footer{
    background:#0f172a;
    color:#cbd5e1;
    padding-top:40px;
}

footer a{
    color:#cbd5e1;
    transition:.3s;
}

footer a:hover{
    color:#ffffff;
}

/* ايقونات السوشيال */
footer .social-icons a{
    background:#1e293b;
    border-radius:50%;
    padding:8px;
}

/* تحسين المسافات */
.section{
    padding:40px 0;
}

/* الفوتر كامل */
.store-footer {
    background: #1f5b86 !important;
}

/* الجزء الداخلي للفوتر */
.store-footer .store-footer__inner {
    background: #1f5b86 !important;
}

/* النصوص */
.store-footer,
.store-footer p,
.store-footer a,
.store-footer h3,
.store-footer h4 {
    color: #ffffff !important;
}

/* الجزء السفلي الحقوق */
.store-footer__copyright {
    background: #1f5b86 !important;
}

footer{
background:#0f172a;
color:#cbd5e1;
margin:60px 20px;
border-radius:30px;
padding:50px 30px;
}