/* استایل‌های نمایش دسته‌بندی ویژگی‌ها در صفحه محصول */
.product-attribute-categories {
    margin: 20px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.attribute-category {
    margin-bottom: 25px;
    padding: 15px;
    background: white;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border-left: 4px solid #0073aa;
}

.attribute-category:last-child {
    margin-bottom: 0;
}

.attribute-category-title {
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    border-bottom: 2px solid #0073aa;
    padding-bottom: 8px;
}

.attribute-category-description {
    margin: 0 0 15px 0;
    font-size: 14px;
    color: #666;
    font-style: italic;
}

.attribute-category-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.attribute-category-list li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.attribute-category-list li:last-child {
    border-bottom: none;
}

.attribute-category-list li strong {
    color: #0073aa;
    font-weight: 600;
    min-width: 120px;
}

/* حالت responsive */
@media (max-width: 768px) {
    .product-attribute-categories {
        padding: 15px;
        margin: 15px 0;
    }
    
    .attribute-category {
        padding: 12px;
        margin-bottom: 20px;
    }
    
    .attribute-category-title {
        font-size: 16px;
    }
    
    .attribute-category-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .attribute-category-list li strong {
        min-width: auto;
    }
}

/* انیمیشن hover */
.attribute-category:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

/* استایل برای حالت loading */
.product-attribute-categories.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* استایل برای حالت خالی */
.product-attribute-categories:empty {
    display: none;
}
