/* تصميم قسم الأقسام البسيط */
.simple-categories-section {
    padding: 40px 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: bold;
    color: #E9967A;
    margin-bottom: 30px;
    position: relative;
}

.section-title::after {
    content: '';
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #E9967A, #F87C63);
    display: block;
    margin: 10px auto;
    border-radius: 2px;
}

/* الحاوية القابلة للسحب */
.categories-scroll-container {
    position: relative;
    overflow: hidden;
    padding: 10px 0;
}

.categories-scroll {
    display: flex;
    gap: 20px;
    padding: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

.categories-scroll::-webkit-scrollbar {
    display: none; /* WebKit */
}

/* بطاقة القسم */
.category-card {
    flex: 0 0 auto;
    width: 140px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    text-decoration: none;
    color: inherit;
}

/* صورة القسم */
.category-image-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 3px solid #fff;
    background: linear-gradient(135deg, #E9967A, #F87C63);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.category-card:hover .category-image-wrapper {
    box-shadow: 0 8px 25px rgba(233, 150, 122, 0.4);
    transform: scale(1.05);
}

.category-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-card:hover .category-img {
    transform: scale(1.1);
}

.category-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

/* اسم القسم */
.category-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.category-card:hover .category-title {
    color: #E9967A;
}

/* تصميم متجاوب */
@media (max-width: 768px) {
    .simple-categories-section {
        padding: 30px 0;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .category-card {
        width: 120px;
    }
    
    .category-image-wrapper {
        width: 85px;
        height: 85px;
        margin-bottom: 10px;
    }
    
    .category-title {
        font-size: 0.8rem;
    }
    
    .categories-scroll {
        gap: 15px;
        padding: 10px 15px;
    }
}

@media (max-width: 480px) {
    .category-card {
        width: 110px;
    }
    
    .category-image-wrapper {
        width: 75px;
        height: 75px;
    }
    
    .category-title {
        font-size: 0.75rem;
    }
}
