/* تخصيص ثيم رايد لمنصة سلة */

/* تغيير لون الخلفية الرئيسية */
body {
    background-color: #f9f9f9; /* لون خلفية خفيف لتجربة مريحة */
}

/* تخصيص شريط التنقل */
.navbar {
    background-color: #1e1e2d; /* لون داكن لشريط التنقل */
    color: #ffffff;
    border-bottom: 2px solid #ff6600; /* شريط سفلي بلون مميز */
}
.navbar a {
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 600;
    padding: 10px 15px;
}
.navbar a:hover {
    color: #ff6600;
    background-color: #2e2e3e;
}

/* تخصيص أزرار الإضافة إلى السلة */
.button-add-to-cart {
    background-color: #ff6600;
    color: #ffffff;
    border-radius: 12px;
    padding: 12px 20px;
    font-size: 16px;
    transition: all 0.3s ease;
}
.button-add-to-cart:hover {
    background-color: #e65500;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* تخصيص الخطوط */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cairo', sans-serif; /* خط عربي مميز */
    font-weight: bold;
    color: #333333;
}

/* تخصيص الروابط */
a {
    color: #444444; /* لون رمادي داكن مناسب */
    text-decoration: none;
}
a:hover {
    color: #ff6600;
    text-decoration: underline;
}

/* تخصيص بطاقات المنتجات */
.product-card {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.product-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: scale(1.02);
}

/* تخصيص أسعار المنتجات */
.product-price {
    font-size: 18px;
    font-weight: bold;
    color: #ff6600;
}

/* تحسين التجاوب */
@media (max-width: 768px) {
    .navbar a {
        font-size: 14px;
    }

    .button-add-to-cart {
        font-size: 14px;
        padding: 10px 15px;
    }
}