.category-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center; /* لتوسيط العناصر أفقياً على جميع الشاشات */
    margin-top: 60px;
}

.category-item {
    flex: 0 1 22%; /* عرض كل عنصر حوالي ربع السطر */
    max-width: 22%;
    text-align: center;
    cursor: pointer;
    padding: 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    min-width: 150px;
    height: 160px;
    background-image: url('https://awaeel.com/wp-content/uploads/2024/11/category-back-main.webp');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: relative; 
    margin-bottom: 30px;
}

.category-item img {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    margin-top: -40px;
    object-fit: contain;
}

.category-item span {
    display: block;
    font-size: 20px;
    font-weight: 500;
    color: white;
    position: absolute;
    bottom: 30%; 
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    line-height: 24px;
}



/* تنسيق الهاتف والأجهزة اللوحية */
@media (max-width: 768px) {
    .category-item {
        flex: 0 1 100%; /* عرض العنصر بالكامل على السطر */
        max-width: 100%; /* يضمن أن العنصر يملأ المساحة المتاحة */
    }
}
