/**
 * Styles pour le module Home Categories
 * PrestaShop 8.2.1
 */

.home-categories {
    margin: 3rem 0;
    padding: 2rem 0;
}

.home-categories .products-section-title {
    margin-bottom: 2.5rem;
    font-weight: 600;
}

.category-item {
    margin-bottom: 2rem;
    background: #fff;
	opacity(50)
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.category-item:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.category-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.category-image-container {
    position: relative;
    width: 100%;
    padding-bottom: 75%; /* Ratio 4:3 */
    overflow: hidden;
    background: #f8f8f8;
}

.category-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-item:hover .category-image {
    transform: scale(1.05);
}

.category-no-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ccc;
}

.category-no-image .material-icons {
    font-size: 4rem;
}

.category-content {
    padding: 1.25rem;
}

.category-name {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    color: #232323;
}

.category-description {
    font-size: 0.875rem;
    color: #666;
    margin: 0.5rem 0;
    line-height: 1.4;
}

.category-products-count {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 0.813rem;
    color: #999;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 767px) {
    .home-categories {
        margin: 2rem 0;
    }
    
    .category-item {
        margin-bottom: 1.5rem;
    }
    
    .category-name {
        font-size: 1rem;
    }
}

@media (max-width: 575px) {
    .category-content {
        padding: 1rem;
    }
}
