/* تصاميم عامة للصور */
.category-image {
    width: 100px;          /* عرض الصورة */
    height: 100px;         /* ارتفاع الصورة */
    object-fit: cover;     /* ملء الصورة داخل العنصر */
    border-radius: 12px;   /* زوايا دائرية ناعمة */
    transition: transform 0.3s ease;
    box-shadow: none !important; /* إلغاء أي ظل (لا إطار) */
}

.category-link:hover .category-image {
    transform: scale(1.1); 
    box-shadow: none !important; /* عدم تطبيق أي ظل عند التحويم */
}

/* النصوص */
.category-link h5 {
    font-size: 0.85rem; 
    font-weight: bold;
    margin-top: 8px; 
    color: #333;
    line-height: 1.2; 
    text-align: center;
}

.category-link h5 small {
    font-size: 0.75rem;
    color: #666;
}

.category-link {
    text-decoration: none;
    color: inherit;
}

.category-link:hover h5 {
    color: #0056b3;
}

/* تقليل التباعد بين الأعمدة */
.row.g-3 {
    gap: 10px !important;
}

/* التحكم في عرض الأعمدة */
.col-4, .col-sm-3, .col-md-2 {
    flex: 0 0 auto;
    max-width: 16%;
}

@media (max-width: 768px) {
    .col-sm-3, .col-md-2 {
        max-width: 25%;
    }
}

@media (max-width: 576px) {
    .col-4 {
        max-width: 33.33%;
    }
}
