/* Featured Banner Section */
.featured-banner-section {
	width: 100%;
	min-height: 600px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
	position: relative;
}

.featured-banner-container {
	max-width: 1400px;
	margin: 0 auto;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 60px 40px;
	box-sizing: border-box;
}

/* Text Content */
.featured-banner-content {
	flex: 1 1 45%;
	max-width: 500px;
}

.featured-banner-heading {
	font-size: 52px;
	font-weight: 500;
	color: #111;
	line-height: 1.2;
	margin: 0 0 25px;
}

.featured-banner-desc {
	font-size: 16px;
	line-height: 1.8;
	color: #333;
	margin: 0 0 35px;
}

.featured-banner-desc strong {
	font-weight: 700;
	color: #111;
}

.featured-banner-buttons {
	display: flex;
	gap: 15px;
}

.featured-banner-btn {
	display: inline-block;
	padding: 16px 32px;
	border-radius: 30px;
	font-size: 15px;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.3s ease;
}

.featured-banner-btn-solid {
	background: #111;
	color: #fff;
	border: 1px solid #111;
}

.featured-banner-btn-solid:hover {
	background: #333;
	color: #fff;
}

.featured-banner-btn-outline {
	background: #111;
	color: #fff;
	border: 1px solid #111;
}

.featured-banner-btn-outline:hover {
	background: transparent;
	color: #111;
}

/* Product Image */
.featured-banner-image {
	flex: 1 1 40%;
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 450px;
}

.featured-banner-image img {
	width: 100%;
	max-width: 380px;
	height: auto;
	object-fit: contain;
}

/* ============================= */
/* TABLET */
/* ============================= */
@media (max-width: 992px) {
	.featured-banner-section {
		min-height: auto;
		padding: 40px 0;
	}

	.featured-banner-container {
		flex-direction: column;
		text-align: center;
		padding: 40px 30px;
		gap: 30px;
	}

	.featured-banner-content {
		max-width: 100%;
	}

	.featured-banner-heading {
		font-size: 40px;
	}

	.featured-banner-buttons {
		justify-content: center;
	}

	.featured-banner-image {
		max-width: 300px;
	}
}

/* ============================= */
/* MOBILE - COMPLETELY DIFFERENT LAYOUT */
/* ============================= */
@media (max-width: 576px) {

	.featured-banner-section {
		min-height: auto;
		padding: 0;
		background-position: center top;
		background-size: cover;
		display: block;
	}

	.featured-banner-container {
		flex-direction: column;
		padding: 0;
		gap: 0;
	}

	/* Image banner - chhoti height, sirf image dikhegi */
	.featured-banner-image {
		order: 1;
		max-width: 100%;
		width: 100%;
		height: 320px;
		justify-content: flex-end;
		padding: 20px;
		box-sizing: border-box;
		margin: 0;
	}

	.featured-banner-image img {
		max-width: 140px;
	}

	/* Text content - white background, left aligned */
	.featured-banner-content {
		order: 2;
		max-width: 100%;
		width: 100%;
		background: #ffffff;
		text-align: left;
		padding: 35px 20px 40px;
		box-sizing: border-box;
	}

	.featured-banner-heading {
		font-size: 42px;
		line-height: 1.15;
		margin-bottom: 20px;
	}

	.featured-banner-desc {
		font-size: 16px;
		line-height: 1.7;
		margin-bottom: 30px;
	}

	/* Buttons - side by side, not stacked */
	.featured-banner-buttons {
		flex-direction: row;
		gap: 12px;
		width: 100%;
	}

	.featured-banner-btn {
		flex: 1;
		text-align: center;
		padding: 16px 10px;
		font-size: 14px;
		box-sizing: border-box;
	}
}