/* category_slider_without_bg - Clean category slider without background colors */

.category-slider-without-bg-section {
    background: transparent;
    padding: 60px 0;
}

.category-slider-heading {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.category-slider-subheading {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.category-slider-wrapper {
    position: relative;
}

.category-slider-without-bg-carousel {
    padding: 20px 0;
}

.category-card {
    display: block;
    text-decoration: none;
    transition: transform 0.3s ease;
    border: none;
    border-radius: 0;
    overflow: hidden;
    background: transparent;
}

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

.category-content {
    padding: 10px;
    text-align: center;
    position: relative;
    background: transparent;
}

.category-image-wrapper {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.category-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.category-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 10;
}

.category-name {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    margin: 0;
    line-height: 1.4;
    padding: 8px 12px;
}

/* Responsive */
@media (max-width: 991px) {
    .category-slider-heading {
        font-size: 28px;
    }
    
    .category-image-wrapper {
        height: 180px;
    }
}

@media (max-width: 767px) {
    .category-slider-without-bg-section {
        padding: 40px 0;
    }
    
    .category-slider-heading {
        font-size: 24px;
    }
    
    .category-slider-subheading {
        font-size: 14px;
    }
    
    .category-image-wrapper {
        height: 150px;
    }
    
    .category-name {
        font-size: 16px;
    }
}
