/* ==========================SLIDER BOTTOM========================== */
.slider-bottom {
	position: relative;
	width: 100%;
	margin: 60px auto 0;
	padding: 0 20px;
	box-sizing: border-box;
}

.slider-bottom-container {
	position: relative;
	width: 100%;
	overflow: hidden;
	padding:10px;
}

.slider-bottom-slide {
	display: none;
	text-align: center;
}

.slider-bottom-slide.active {
	display: block;
}

.slider-bottom-products {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
}

.product-item {
	flex: 1 1 calc(25% - 20px);
	max-width: 250px;
	background-color: #fff;
	border:1px solid #cdcdcd;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgb(99 97 97 / 32%);
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.product-image {
	width: 100%;
	height: 200px;
	object-fit: cover;
	transition: transform 0.3s ease;
	border-radius: 12px 12px 0 0;
}

.product-item:hover .product-image {
	transform: scale(1.05);
}

.product-content {
	padding: 20px;
}

.product-title {
	font-size: 16px;
	font-weight: bold;
	color: #333;
	margin: 0 0 10px 0;
}

.product-title a {
	text-decoration: none;
	color: inherit;
}

.product-title a:hover {
	color: #FFD700;
}

.product-price {
	font-size: 14px;
	color: #999;
	margin: 0;
}

/* Arrows */
.slider-bottom-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.7);
	border: none;
	width: 50px;
	height: 50px;
	font-size: 24px;
	color: #333;
	cursor: pointer;
	border-radius: 50%;
	transition: background 0.3s ease, transform 0.2s ease;
	z-index: 10;
}

.slider-bottom-arrow-prev { left: 20px; }
.slider-bottom-arrow-next { right: 20px; }

.slider-bottom-arrow:hover {
	background: white;
	transform: translateY(-50%) scale(1.1);
}

/* Hide arrows by default */
.slider-bottom:hover .slider-bottom-arrow {
	background:#ffd700;
	opacity: 1;
	visibility: visible;
}

.slider-bottom-arrow {
	background:#ffd700;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Dots */
.slider-bottom-dots {
	position: absolute;
	bottom: -20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
	z-index: 10;
}

.slider-bottom-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #dfd9d9;
	border: none;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.slider-bottom-dot.active {
	background: #FFD700;
}

/* Responsive */
@media (max-width: 768px) {
	.slider-bottom {
		margin: 40px auto 0;
		padding: 0 15px;
	}
	.product-item {
		flex: 1 1 calc(50% - 20px);
		max-width: 100%;
	}
	.slider-bottom-products {
		gap: 15px;
	}
	.product-image {
		height: 150px;
	}
	.slider-bottom-arrow {
		
		width: 40px;
		height: 40px;
		font-size: 20px;
	}
	.slider-bottom-arrow-prev { left: 15px; }
	.slider-bottom-arrow-next { right: 15px; }
	.slider-bottom-dots {
		bottom: 20px;
	}
}

@media (max-width: 480px) {
	.slider-bottom {
		margin: 30px auto 0;
	}
	.product-item {
		flex: 1 1 100%;
		max-width: 100%;
	}
	.product-image {
		height: 120px;
	}
	.slider-bottom-arrow {
		width: 30px;
		height: 30px;
		font-size: 18px;
	}
	.slider-bottom-arrow-prev { left: 10px; }
	.slider-bottom-arrow-next { right: 10px; }
	.slider-bottom-dots {
		bottom: 15px;
	}
}