
/* إعدادات عامة */
body {
    font-family: 'Cairo', sans-serif;
    direction: rtl;
    margin: 0;
    padding: 0;
    background: linear-gradient(to bottom, #1e3c72, #2a5298);
    color: #fff;
}

/* رأس الصفحة */
header {
    background-color: #1e3c72;
    padding: 20px;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
}

/* أقسام المتجر */
nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    background-color: #2a5298;
    padding: 10px;
}

nav a {
    color: #fff;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

nav a:hover {
    background-color: #1e3c72;
    transform: scale(1.1);
}

/* بطاقات المنتجات */
.product-card {
    background-color: #fff;
    color: #000;
    border-radius: 10px;
    padding: 15px;
    margin: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

/* أزرار التواصل الاجتماعي العائمة */
.social-buttons {
    position: fixed;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.social-buttons a {
    background-color: #fff;
    color: #2a5298;
    padding: 10px;
    border-radius: 50%;
    text-align: center;
    width: 40px;
    height: 40px;
    transition: transform 0.4s ease, rotate 0.4s ease;
}

.social-buttons a:hover {
    transform: scale(1.2) rotate(10deg);
}

/* استعلامات الوسائط لدعم الهواتف والأجهزة اللوحية */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        align-items: center;
    }

    .product-card {
        margin: 10px;
        padding: 10px;
    }

    .social-buttons {
        left: auto;
        right: 10px;
    }

    nav a {
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    header {
        font-size: 20px;
        padding: 15px;
    }

    nav a {
        font-size: 14px;
        padding: 8px 12px;
    }

    .product-card {
        font-size: 14px;
    }

    .social-buttons a {
        width: 35px;
        height: 35px;
        padding: 8px;
    }
}
