*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Tajawal', sans-serif;
}

        :root {
            --primary: #4A90E2;
            --light-blue: #F0F8FF;
            --dark: #1A1A1A;
        }

.bg-light-blue {
    background-color: var(--light-blue) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.text-primary {
    color: var(--primary) !important;
}

        .product-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
            border-radius: 10px;
            overflow: hidden;
            cursor: pointer;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.201);
        }

        .product-img {
            height: 250px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .product-card:hover .product-img {
            transform: scale(1.05);
        }

        .price-tag {
            background: #4A90E2;
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-weight: bold;
        }

        .category-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            z-index: 2;
        }

        .filter-btn {
            border-radius: 20px;
            margin: 5px;
            transition: all 0.3s ease;
        }

        .filter-btn.active,
        .filter-btn:hover {
            background: #4A90E2;
            color: white;
        }


        .footer-link {
    transition: color 0.3s ease;
    text-decoration: none;
}

.footer-link:hover {
    color: var(--primary) !important;
}

.social-icon {
    transition: all 0.3s ease;
    display: inline-block;
}

.social-icon:hover {
    color: var(--primary) !important;
    transform: translateY(-3px);
}


.social-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-circle:hover {
    transform: translateY(-3px);
    color: white !important;
    transition: 0.2s;
}

/* فيسبوك - أزرق */
.social-circle.facebook:hover {
    background: #1877F2;
}

/* تويتر - أزرق فاتح */
.social-circle.twitter:hover {
    background: #1DA1F2;
}

/* إنستجرام - موف (بنفسجي) */
.social-circle.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

/* واتساب - أخضر */
.social-circle.whatsapp:hover {
    background: #25D366;
}

.social-links a {
    transition: all 0.3s ease;
}

.footer-link {
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #4A90E2 !important;
}
