/**
 * Advanced Category Carousel Styles
 */

 .advanced-category-carousel-wrapper {
	position: relative;
	width: 100%;
}

.acc-swiper-container {
	padding: 20px 0 40px !important; /* Give space for shadow and pagination */
	overflow: hidden;
}

.acc-slide-item {
	text-align: center;
	transition: transform 0.3s ease;
}

.acc-slide-item:hover {
	transform: translateY(-5px);
}

.acc-item-link {
	display: block;
	text-decoration: none;
	color: inherit;
}

.acc-item-link:hover,
.acc-item-link:focus {
	text-decoration: none;
	outline: none;
}

/* Image Container */
.acc-item-image {
	position: relative;
	width: 100%;
	margin-bottom: 15px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 1 / 1; /* Default to square-ish for uniformity, can be overridden */
}

.acc-item-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.acc-item-link:hover .acc-item-image img {
	transform: scale(1.05);
}

/* Shapes */
.acc-image-shape-square .acc-item-image img {
	border-radius: 0;
}

.acc-image-shape-rounded .acc-item-image img {
	border-radius: 12px; /* Default rounded */
}

.acc-image-shape-circle .acc-item-image img {
	border-radius: 50%;
}

/* Typography */
.acc-item-title {
	margin: 0;
	font-size: 1.1em;
	font-weight: 600;
	color: #333;
	transition: color 0.3s ease;
}

/* Navigation Customizations */
.acc-swiper-container .swiper-button-next,
.acc-swiper-container .swiper-button-prev {
	width: 40px;
	height: 40px;
	background-color: #fff;
	border-radius: 50%;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	color: #333;
}

.acc-swiper-container .swiper-button-next:after,
.acc-swiper-container .swiper-button-prev:after {
	font-size: 16px;
	font-weight: bold;
}

.acc-swiper-container .swiper-pagination-bullet {
	background: #ccc;
	opacity: 1;
}

.acc-swiper-container .swiper-pagination-bullet-active {
	background: #333;
}
