.disclaimer {
	text-align: center;
	font-style: italic;
	color: #555;
	font-size: clamp(0.70rem, 1vw, 0.85rem);
	background: #f4f4f4;
	padding: 10px 15px;
	background: #f4f4f4;
}

.home-section-top p {
	font-size: clamp(1rem, 2vw, 1.1rem);
	color: #333;
}

/* Carousel Section */
.carousel-section-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 15px
}

.carousel-section-header h2 {
	margin: 0
}

.carousel-controls {
	display: flex;
	gap: 10px;
}

.carousel-arrow {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.5);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 18px;
	transition: background 0.3s;
}

.carousel-arrow.disabled {
	opacity: 0.4;
	cursor: default;
}

.carousel-arrow:hover:not(.disabled) {
	background: var(--primary-accent-color);
}

.carousel-wrapper {
	padding: 20px;
	border-radius: 20px;
	box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.2);
	background: linear-gradient(135deg, #CCC 0%, #DDD 100%);
}

.carousel {
	border-radius: 20px;
	display: flex;
	gap: 20px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
}

.carousel::-webkit-scrollbar {
	display: none;
}

.deal-item {
	background: #FFF;
	border-radius: 15px;
	box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
	flex: 0 0 calc(( 100% - 3 * 10px)/4);
	display: flex;
	flex-direction: column;
	scroll-snap-align: center;
	box-sizing: border-box;
	cursor: pointer;
	transition: all 0.2s ease;
	box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
}

.deal-item .image-container {
	padding: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 180px;
	height: 180px;
	margin: auto;
	border-radius: 15px 15px 0 0;
	background: #FFF;
}

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

.deal-item .deal-info {
	display: flex;
	flex-direction: column;
	gap: 6px;
	box-shadow: inset 0 20px 20px -20px rgba(0, 0, 0, 0.05);
	border-radius: 0 0 15px 15px;
	padding: 20px;
}

.deal-item .deal-meta {
	display: flex;
	justify-content: space-between;
	font-size: clamp(0.75rem, 1vw, 0.8rem);
	color: #666;
}

.deal-item h3.deal-title {
	font-size: 1rem;
	font-weight: 600;
	color: #333;
	margin: 0;
	font-weight: 600;
}

.deal-item .deal-prices {
	display: flex;
	gap: 10px;
	align-items: center;
}

.deal-item .deal-price {
	font-weight: 700;
	color: #20b082;
	font-size: clamp(1.1rem, 2vw, 1.2rem);
}

.deal-item .actual-price {
	color: var(--primary-accent-color);
	text-decoration: line-through;
	font-size: clamp(0.9rem, 2vw, 1rem);
}

.deal-item .deal-btn {
	display: flex;
	align-items: center;
	justify-content: center; /* center text */
	position: relative;
	padding: 8px 40px; /* extra right padding for arrow */
	background: linear-gradient(45deg,  #eb6767, var(--primary-accent-color));
	color: #FFF;
	font-weight: 600;
	border-radius: 10px;
	font-size: clamp(0.85rem, 1vw, 0.9rem);
	text-decoration: none;
	transition: background 0.3s, transform 0.2s;
	margin-top: 5px;
}

.deal-item .deal-btn::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 12px;
	transform: translateY(-50%);
	width: 16px;
	height: 16px;
	background-image:
		url('data:image/svg+xml;utf8,<svg fill="%23fff" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6z"/></svg>');
	background-size: contain;
	background-repeat: no-repeat;
}

.deal-item .deal-btn:hover {
	background: linear-gradient(270deg, #eb6767, var(--primary-accent-color));
}

.other-deals-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
}

.other-deals-grid .deal-item:hover {
	transform: scale(1.02);
}

@media ( max-width :1300px) {
	.deal-item {
		flex: 0 0 calc(( 100% - 2 * 10px)/3);
	}
}

@media ( max-width :900px) {
	.deal-item {
		flex: 0 0 calc(( 100% - 10px)/2);
	}
}

@media ( max-width :600px) {
	.deal-item {
		flex: 0 0 100%;
	}
}