*{
    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;
}

.btn-hover {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-hover:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgb(255, 255, 255);
}

.badge-hover:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}


.image-hover {
    transition: all 0.5s ease;
}

.image-container:hover .image-hover {
    transform: scale(1.05);
}

.floating-tag {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

        .btn-filter {
            border-radius: 50px;
            padding: 8px 20px;
            border: 1px solid #dee2e6;
            background: white;
            transition: all 0.3s;
        }
        .btn-filter.active, .btn-filter:hover {
            background-color: #0d6efd;
            color: white;
            border-color: #0d6efd;
        }
        .kitchen-card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            transition: transform 0.3s, shadow 0.3s;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            cursor: pointer;
        }
        .kitchen-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        .img-container {
            position: relative;
            height: 200px;
            overflow: hidden;
        }
        .img-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .badge-custom {
            position: absolute;
            top: 10px;
            right: 10px;
            padding: 5px 12px;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: bold;
        }
        .card-overlay {
            position: absolute;
            top: 10px;
            left: 10px;
            opacity: 0;
            transition: opacity 0.3s;
        }
        .kitchen-card:hover .card-overlay {
            opacity: 1;
        }
        .title-line {
            width: 60px;
            height: 4px;
            background-color: #0d6efd;
            border-radius: 2px;
        }

.counter {
    font-size: 2.5rem;
}


.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;
}

.product-hidden {
    display: none !important;
}

.product-visible {
    display: block !important;
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}



/* تحسينات البطاقات */
.rating {
    direction: ltr;
}

.badge {
    font-size: 0.75em;
    font-weight: 600;
}

.card-title {
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.card-text {
    color: #6c757d;
    line-height: 1.6;
    min-height: 60px;
}

/* تحسينات الأقسام */
section {
    position: relative;
}

.bg-light {
    background: linear-gradient(135deg, #f8f9fa 0%, #eef2f7 100%) !important;
}
