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

.top-section 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-prev, #carousel-next {
	visibility: hidden;
}

#carousel-prev.disabled, #carousel-next.disabled {
	opacity: 0.4;
	cursor: not-allowed;
	pointer-events: none;
}

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

.carousel-wrapper {
	padding: 20px;
	border-radius: 25px;
	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);
	align-items: center;
}

.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.70rem, 1vw, 0.78rem);
	color: #666;
}

.deal-item h3.deal-title {
	font-size: clamp(0.88rem, 1vw, 1.1rem);
	color: #333;
	font-weight: 400;
	margin: 0;
}

.deal-item .coupon-available-notice {
	border: 1px dashed #AAA;
	font-size: clamp(0.6rem, 1vw, 0.7rem);
	text-align: center;
	font-weight: 600;
	background: #F8F8F8;
	border-radius: 5px;
	padding: 4px;
}

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

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

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

.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));
}

.deal-item .deal-actions {
	display: flex;
	font-size: 0.8rem;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}

.deal-item .deal-actions svg {
	width: 16px;
	height: 16px;
}

.deal-item .deal-actions div {
	display: flex;
	align-items: center;
}

.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) {
	.carousel-wrapper {
		padding: 10px;
	}
	.other-deals-grid {
		gap: 15px;
	}
	.deal-item {
		flex-direction: row;
		flex: 0 0 100%;
	}
	.deal-item .image-container {
		flex: 0 0 120px;
		padding: 15px;
		max-height: 120px;
		max-width: 120px;
	}
	.deal-item .deal-info {
		padding: 15px;
		box-shadow: none;
		padding-left: 0;
	}
	.deal-item .deal-btn {
		display: none;
	}
}