/* Promo Bundle Section */
.promo-bundle-section {
	width: 100%;
	padding: 60px 20px;
	background: #f5f5f5; /* Halka gray background - poore section ko visible banane ke liye */
}

.promo-bundle-container {
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
}

.promo-bundle-card {
	flex: 1 1 calc(50% - 12px);
	background: #ececec; /* Card ka gray - section se thora differentiate */
	border-radius: 12px;
	padding: 50px 40px;
	display: flex;
	flex-direction: row; /* Desktop: content left, image right */
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	min-height: 420px;
	box-sizing: border-box;
	overflow: hidden;
}

.promo-bundle-content {
	flex: 1 1 45%;
	max-width: 380px;
	text-align: left; /* Left aligned - center nahi */
	order: 1;
}

.promo-bundle-image {
	flex: 1 1 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 320px;
	order: 2;
}

.promo-bundle-image img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.promo-bundle-discount {
	font-size: 48px;
	font-weight: 500;
	color: #111;
	margin: 0 0 5px;
	line-height: 1.1;
}

.promo-bundle-title {
	font-size: 25px;
	font-weight: 1000;
	color: #222;
	margin: 0 0 20px;
}

.promo-bundle-description {
	font-size: 15px;
	line-height: 1.7;
	color: #333;
	margin: 0 0 30px;
}

.promo-bundle-description strong {
	font-weight: 700;
	color: #111;
}

.promo-bundle-btn {
	display: inline-block;
	background: #111;
	color: #fff;
	padding: 14px 32px;
	border-radius: 30px;
	text-decoration: none;
	font-size: 15px;
	font-weight: 500;
	transition: background 0.3s ease, transform 0.3s ease;
}

.promo-bundle-btn:hover {
	background: #333;
	color: #fff;
	transform: translateY(-2px);
}

/* ============================= */
/* TABLET VIEW */
/* ============================= */
@media (max-width: 992px) and (min-width: 577px) {
	.promo-bundle-card {
		flex: 1 1 100%;
		flex-direction: column;
		text-align: left;
		padding: 40px 30px;
	}

	.promo-bundle-content {
		max-width: 100%;
		text-align: left;
		order: 2;
	}

	.promo-bundle-image {
		height: 260px;
		width: 100%;
		order: 1;
		margin-bottom: 10px;
	}
}

/* ============================= */
/* MOBILE VIEW - SWIPEABLE CAROUSEL */
/* ============================= */
@media (max-width: 576px) {

	.promo-bundle-section {
		padding: 30px 0;
	}

	.promo-bundle-container {
		flex-wrap: nowrap;
		gap: 15px;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		padding: 0 15px 10px;
		scrollbar-width: none;
		-ms-overflow-style: none;
	}

	.promo-bundle-container::-webkit-scrollbar {
		display: none;
	}

	.promo-bundle-card {
		flex: 0 0 88%;
		scroll-snap-align: center;
		flex-direction: column;
		text-align: left;
		padding: 25px 20px;
		min-height: auto;
	}

	.promo-bundle-content {
		max-width: 100%;
		text-align: left;
		order: 2;
	}

	.promo-bundle-image {
		height: 200px;
		width: 100%;
		order: 1;
		margin-bottom: 15px;
	}

	.promo-bundle-discount {
		font-size: 32px;
		margin-bottom: 8px;
	}

	.promo-bundle-title {
		font-size: 17px;
		margin-bottom: 12px;
	}

	.promo-bundle-description {
		font-size: 14px;
		line-height: 1.6;
		margin-bottom: 20px;
	}

	.promo-bundle-btn {
		padding: 12px 26px;
		font-size: 14px;
	}
}