/* خلفية المتجر */
body {
    background: linear-gradient(135deg, #f8fcff 0%, #eaf8ff 50%, #d9f2ff 100%);
    font-family: 'Tajawal', sans-serif;
}

/* الأزرار الرئيسية */
.btn-primary,
.button-primary,
.s-button-primary {
    background: linear-gradient(135deg, #00b7ff, #0099e6) !important;
    border: none !important;
    color: #fff !important;
    border-radius: 12px !important;
    padding: 12px 24px !important;
    font-weight: 700 !important;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 183, 255, 0.25);
}

/* تأثير عند المرور */
.btn-primary:hover,
.button-primary:hover,
.s-button-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 183, 255, 0.4);
    background: linear-gradient(135deg, #0099e6, #007acc) !important;
}

/* بطاقات المنتجات */
.product-card,
.s-product-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.product-card:hover,
.s-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 183, 255, 0.15);
}

/* الهيدر */
.header,
.store-header {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

/* شريط العروض */
.top-banner {
    background: linear-gradient(90deg, #00b7ff, #4dcfff);
    color: white;
    font-weight: bold;
}

/* عناوين الأقسام */
.section-title,
h2 {
    color: #0099e6;
    font-weight: 800;
}

/* أيقونة السلة */
.cart-icon,
.s-cart-icon {
    color: #00b7ff !important;
}