/* WooCommerce Categories Carousel - Frontend Styles */

.wcc-categories-carousel {
    margin:40px 0;
    max-width: 100%;
}

.wcc-category-item {
    padding: 0 10px;
    text-align: center;
}

.wcc-category-link {
    display: block;
    text-decoration: none;
    color: inherit;
    /*background: #fff; */
    border: 0px solid #e1e1e1 !important;
    border-radius: 0px;
    padding: 10px;
    transition: all 0.5s ease;
}

.wcc-category-link:hover {
    text-decoration: none;
    transform: translateY(-5px);
	box-shadow: 0 0px 0px rgba(0, 0, 0, 0.2);
    border-color: #0000;
}

.wcc-category-image {
    margin-bottom: 15px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
	background: #0000;
}

.wcc-category-image img {
    max-width: 70px !important;
    max-height: 70px !important;
    object-fit: cover;
    border-radius: 8px !important;
}

.wcc-no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    color: #888;
    font-size: 12px;
    border-radius: 6px;
}

.wcc-category-name {
    font-size: 13.2px !important;
    font-weight: 400 !important;
    margin: 0 0 8px 0;
    color: #000;
    line-height: 1.3;
}
/*
.wcc-category-count {
    font-size: 12px;
    color: #666;
    font-style: italic;
}
*/


/* Slick carousel customizations */
.wcc-categories-carousel {
    margin:0px 0;
    max-width: 100%;
}

.wcc-categories-carousel .slick-dots {
    bottom: -40px;
}

.slick-dots li {
    width: 12px;
    height: 20px;
}

.wcc-categories-carousel .slick-dots li button:before {
    color: #000;
    font-size: 8px;
}

.wcc-categories-carousel .slick-dots li.slick-active button:before {
    color: #000;
}

.wcc-categories-carousel .slick-prev,
.wcc-categories-carousel .slick-next {
    background: #0073aa;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    z-index: 1;
	display: none !important;
}

.wcc-categories-carousel .slick-prev:before,
.wcc-categories-carousel .slick-next:before {
    color: white;
    font-size: 16px;
}

.wcc-categories-carousel .slick-prev {
    left: -20px;display: none;
}

.wcc-categories-carousel .slick-next {
    right: -20px;display: none;
}

.wcc-categories-carousel .slick-prev:hover,
.wcc-categories-carousel .slick-next:hover {
    background: #005177;display: none !important;
}

/* Responsive design */
@media (max-width: 768px) {
	.wcc-categories-carousel {
		margin:0px 0;
	}
    .wcc-category-item {
        padding: 0 5px;
    }
    
    .wcc-category-link {
        padding: 0px 10px;
    }
    
    .wcc-category-image img {
        width: 60px !important;
        height: 60px !important;
        margin-bottom: 10px;
    }
    
    .wcc-category-name {
        font-size: 14px;
    }
    
    .wcc-categories-carousel .slick-prev {
        left: -15px;
    }
    
    .wcc-categories-carousel .slick-next {
        right: -15px;
    }
}

@media (max-width: 480px) {
	.wcc-categories-carousel {
		margin:0px 0;
		max-width: 100%;
	}
    .wcc-category-image img {
		width: 50px !important;
        height: 50px !important;
    }
    
    .wcc-category-name {
        font-size: 12px !important;
		line-height: 18px;
    }
    
    .wcc-categories-carousel .slick-prev,
    .wcc-categories-carousel .slick-next {
        width: 35px;
        height: 35px;
    }
    
    .wcc-categories-carousel .slick-prev:before,
    .wcc-categories-carousel .slick-next:before {
        font-size: 14px;
    }
}