/* /products/body-spray/style.css */
/* ============================= */
/* GLOBAL */
/* ============================= */
body {
	font-family: "Hind Siliguri", sans-serif;
}

/* Limit max width for better desktop layout */
.container-inner {
	max-width: 1100px;
	margin: 0 auto;
}

/* ============================= */
/* HERO SECTION */
/* ============================= */
.hero-container {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	padding: 24px 5%;
	background-color: #ffffff;
	gap: 20px;
}

.hero-content {
	flex: 1;
	min-width: 300px;
	text-align: left;
}

/* 🔥 FIX: Reduce image dominance */
.hero-slider {
	flex: 1;
	min-width: 300px;
	max-width: 480px; /* 👈 key change */
	height: 320px;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	border-radius: 15px;
}

.slider-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
}

.slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover; /* Ensures images fill the space nicely */
	opacity: 0;
	transition: opacity 0.8s ease-in-out;
	border-radius: 15px;
}

.slide.active {
	opacity: 1;
	z-index: 1;
}

.offer-badge {
	display: inline-block;
	background: #fdf2f2;
	color: #d93025;
	padding: 6px 14px;
	border-radius: 50px;
	font-weight: bold;
	margin-bottom: 12px;
}

.main-title {
	font-size: 2.2rem;
	line-height: 1.3;
	color: #333;
	margin-bottom: 10px;
}

.highlight {
	color: #185fa5;
}

.sub-title {
	font-size: 1.1rem;
	color: #666;
	margin-bottom: 16px;
}

.delivery-text {
	font-size: 1.3rem;
	color: #333;
	margin-bottom: 14px;
}

.order-btn {
	display: inline-block;
	background: #185fa5;
	color: white;
	padding: 16px 32px;
	text-decoration: none;
	border-radius: 8px;
	font-size: 1.2rem;
	font-weight: bold;
	transition: transform 0.2s;
	box-shadow: 0 4px 15px rgba(24, 95, 165, 0.3);
}

.order-btn:hover {
	transform: translateY(-3px);
}

.hero-slider {
	flex: 1;
	min-width: 300px;
}

.hero-slider img {
	width: 100%;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ============================= */
/* FEATURES */
/* ============================= */
.features-section {
	padding: 60px 5%; /* Increased padding for breathing room */
	background-color: #f9f9f9;
	text-align: center;
}

.section-title h2 {
	font-size: 2rem;
	color: #333;
	margin-bottom: 8px;
}

.highlight-text {
	font-size: 1.4rem;
	font-weight: bold;
	color: #185fa5;
	margin-bottom: 8px;
}

.desc {
	max-width: 800px;
	margin: 0 auto 28px;
	color: #666;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 16px;
	margin-bottom: 20px;
}

.feature-box {
	background: #fff;
	padding: 22px;
	border-radius: 12px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	text-align: left;
}

.feature-list {
	list-style: none;
	padding: 0;
}

.feature-list li {
	margin-bottom: 12px;
	font-size: 1.1rem;
	display: flex;
	align-items: center;
	gap: 10px;
}
del {
	color: red;
}
.why-perfect h3 {
	font-size: 1.6rem;
	margin-bottom: 22px;
}

.benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 12px;
	margin-bottom: 25px;
}

.benefit-item {
	background: #eef4fb;
	padding: 12px;
	border-radius: 8px;
	font-weight: 500;
	color: #185fa5;
}

.order-btn.secondary {
	background: #222;
}

/* ============================= */
/* URGENCY */
/* ============================= */
.urgency-container {
	padding: 36px 5%;
	background-color: #fff5f5;
	text-align: center;
	border-top: 1px solid #fee2e2;
	border-bottom: 1px solid #fee2e2;
}

.urgency-title {
	font-size: 1.8rem;
	color: #b91c1c;
	margin-bottom: 22px;
}

.countdown-wrapper {
	display: flex;
	justify-content: center;
	gap: 15px;
	margin-bottom: 30px;
}

.time-block {
	background: #fff;
	padding: 12px;
	border-radius: 10px;
	min-width: 80px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
	border: 1px solid #fecaca;
}

.digits {
	display: block;
	font-size: 2rem;
	font-weight: 800;
	color: #333;
}

.label {
	font-size: 0.8rem;
	text-transform: uppercase;
	color: #999;
	letter-spacing: 1px;
}

.usage-section {
	padding: 50px 5%;
	background: #ffffff;
	text-align: center;
}

.section-header h2 {
	font-size: 2rem;
	margin-bottom: 12px;
}

.usage-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 16px;
	margin: 28px 0 44px;
}

.usage-card {
	padding: 24px 18px;
	border: 1px solid #eee;
	border-radius: 15px;
	transition: all 0.3s ease;
}

.usage-card:hover {
	border-color: #185fa5;
	box-shadow: 0 10px 25px rgba(24, 95, 165, 0.1);
}

.card-icon {
	font-size: 2.5rem;
	margin-bottom: 12px;
}

.usage-card h3 {
	font-size: 1.25rem;
	margin-bottom: 8px;
	color: #333;
}

.value-box {
	background: #f5f9fd;
	padding: 36px 28px;
	border-radius: 20px;
	margin-bottom: 32px;
}

.badge {
	color: #185fa5;
	font-weight: bold;
	display: block;
	margin-bottom: 8px;
}

.icon-box-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	text-align: left;
	margin-top: 30px;
}

.icon-item h4 {
	color: #185fa5;
	margin-bottom: 4px;
}

.details-section {
	padding: 44px 5%;
	background-color: #fff;
}

.badge-icon {
	display: inline-block;
	padding: 4px 14px;
	background: #eef4fb;
	color: #0c447c;
	border-radius: 20px;
	font-weight: bold;
	margin-bottom: 12px;
}

.details-grid,
.trust-section {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
	align-items: center;
	margin-top: 30px;
	text-align: left;
}

.center-cta {
	display: flex;
	justify-content: center;
	margin: 40px 0; /* Space above and below CTA */
	width: 100%;
}

.center-cta .order-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 280px;
}
.features-slider-container {
	margin: 50px auto;
	max-width: 600px; /* Constrain slider width in the features section */
}
.features-slider-container .hero-slider {
	margin: 0 auto;
}
.trust-section {
	grid-template-columns: 1fr 1fr;
	margin-top: 60px;
	background: #f9fafb;
	padding: 32px;
	border-radius: 20px;
}

.specs-list,
.extra-benefits ul,
.trust-list {
	list-style: none;
	padding: 0;
}

.specs-list li,
.extra-benefits li,
.trust-list li {
	font-size: 1.1rem;
	margin-bottom: 10px;
	color: #4b5563;
}

.extra-benefits {
	margin-top: 20px;
	padding-top: 16px;
	border-top: 1px dashed #ddd;
}

.trust-list li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 500;
}

.check {
	color: #185fa5;
	font-weight: bold;
}

/* 🔥 FIX: Reduce image size */
.details-image img,
.trust-image img {
	width: 100%;
	max-width: 420px; /* 👈 key fix */
	margin: 0 auto;
	display: block;
	border-radius: 15px;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.final-cta-section {
	padding: 44px 5%;
	background-color: #fcfcfc;
}

.cta-card {
	background: #fff;
	border: 2px solid #b91c1c;
	padding: 32px;
	border-radius: 20px;
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
	box-shadow: 0 10px 30px rgba(185, 28, 28, 0.08);
}

.cta-card h2 {
	color: #b91c1c;
	font-size: 1.8rem;
	margin-bottom: 12px;
}

.cta-card p {
	font-size: 1.2rem;
	color: #444;
	margin-bottom: 24px;
	line-height: 1.6;
}

.order-btn.primary {
	animation: pulse 2s infinite;
}

.order-section {
	padding: 56px 5%;
	background-color: #f3f4f6;
}

.form-header {
	text-align: center;
	margin-bottom: 30px;
}

.form-badge {
	display: inline-block;
	background: #185fa5;
	color: #fff;
	padding: 4px 15px;
	border-radius: 50px;
	font-size: 0.9rem;
	font-weight: bold;
	margin-bottom: 12px;
	text-transform: uppercase;
}

.form-header h2 {
	font-size: 2.2rem;
	color: #111827;
	margin-bottom: 8px;
}

.form-header p {
	color: #6b7280;
	font-size: 1.1rem;
}

.checkout-wrapper {
	max-width: 600px;
	margin: 0 auto;
	background: #fff;
	padding: 36px;
	border-radius: 20px;
	box-shadow:
		0 20px 25px -5px rgba(0, 0, 0, 0.1),
		0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.checkout-container {
	max-width: 550px;
	margin: 0 auto;
}

.order-summary-card {
	background: #fdfdfd;
	border: 1px solid #eee;
	border-radius: 12px;
	padding: 18px;
	margin-bottom: 24px;
}

.product-info {
	display: flex;
	gap: 15px;
	align-items: center;
	border-bottom: 1px solid #eee;
	padding-bottom: 12px;
}
.section-banner {
	width: 100%;
	margin: 40px 0; /* Adds space above and below the banner */
	overflow: hidden;
	border-radius: 12px; /* Matches the rounded look of your other cards */
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Adds a subtle lift */
}

.full-width-banner {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}
.product-info img {
	width: 70px;
	height: 70px;
	object-fit: cover;
	border-radius: 8px;
}

.qty-control {
	display: flex;
	align-items: center;
	margin-top: 8px;
}

.qty-control button {
	width: 30px;
	height: 30px;
	border: 1px solid #ccc;
	background: #fff;
	cursor: pointer;
}

.qty-control input {
	width: 40px;
	height: 30px;
	text-align: center;
	border: 1px solid #ccc;
	border-left: 0;
	border-right: 0;
}

.price-breakdown {
	padding-top: 12px;
}

.price-row {
	display: flex;
	justify-content: space-between;
	margin-bottom: 6px;
	color: #666;
}

.price-row.total {
	font-weight: 800;
	color: #111;
	font-size: 1.2rem;
	border-top: 1px solid #eee;
	padding-top: 10px;
}

.input-group {
	margin-bottom: 16px;
	text-align: left;
}

.input-group label {
	display: block;
	font-weight: 600;
	margin-bottom: 6px;
}

.input-group input {
	width: 100%;
	padding: 12px;
	border: 1px solid #ddd;
	border-radius: 8px;
	font-size: 1rem;
}

.submit-order-btn {
	width: 100%;
	background: #185fa5;
	color: #fff;
	padding: 16px;
	border: none;
	border-radius: 8px;
	font-size: 1.3rem;
	font-weight: 800;
	cursor: pointer;
	transition: transform 0.2s;
}

.submit-order-btn:hover {
	transform: translateY(-2px);
	background: #0c447c;
}

.main-footer {
	padding: 24px 5%;
	background-color: #1a1a1a;
	color: #ffffff;
	text-align: center;
	border-top: 1px solid #333;
}

.footer-content p {
	font-size: 0.95rem;
	color: #a0a0a0;
	margin: 0;
	letter-spacing: 0.5px;
}

.footer-content a {
	color: #ffffff;
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s ease;
}

.footer-content a:hover {
	color: #185fa5;
	text-decoration: underline;
}

.floating-contact {
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 9999;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 15px;
}

.contact-trigger {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: #a886cd;
	color: white;
	border: none;
	font-size: 24px;
	cursor: pointer;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.contact-trigger .close-icon {
	display: none;
}

.contact-options {
	display: flex;
	flex-direction: column;
	gap: 10px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(20px);
	transition: all 0.3s ease;
}

.option {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 20px;
	border-radius: 30px;
	color: white;
	text-decoration: none;
	font-weight: 600;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.whatsapp {
	background: #25d366;
}

.phone {
	background: #03e78b;
}

.floating-contact.active .contact-options {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.floating-contact.active .contact-trigger {
	background: #555;
	transform: rotate(90deg);
}

.floating-contact.active .main-icon {
	display: none;
}

.floating-contact.active .close-icon {
	display: block;
}

.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.85);
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 10000;
	backdrop-filter: blur(5px);
}

.modal-content {
	background: white;
	padding: 40px 28px;
	border-radius: 25px;
	text-align: center;
	max-width: 450px;
	width: 90%;
	position: relative;
	animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popIn {
	0% {
		transform: scale(0.5);
		opacity: 0;
	}
	100% {
		transform: scale(1);
		opacity: 1;
	}
}

.success-icon {
	font-size: 60px;
	margin-bottom: 16px;
	animation: bounce 2s infinite;
}

@keyframes bounce {
	0%,
	20%,
	50%,
	80%,
	100% {
		transform: translateY(0);
	}
	40% {
		transform: translateY(-20px);
	}
	60% {
		transform: translateY(-10px);
	}
}

.modal-content h2 {
	color: #185fa5;
	font-size: 2.5rem;
	margin-bottom: 8px;
}

.modal-content p {
	font-size: 1.2rem;
	color: #333;
}

.sub-text {
	font-size: 0.9rem !important;
	color: #666 !important;
	margin-top: 8px;
}

.close-modal-btn {
	margin-top: 20px;
	padding: 12px 40px;
	background: #185fa5;
	color: white;
	border: none;
	border-radius: 50px;
	font-weight: bold;
	cursor: pointer;
}

.confetti-wrapper {
	position: absolute;
	top: -20px;
	width: 100%;
	left: 0;
}

.confetti {
	position: absolute;
	font-size: 2rem;
	animation: flyAround 3s infinite ease-in-out;
}
/* ============================= */
/* HOT ITEMS SECTION             */
/* ============================= */

#hot-items-section {
	display: none;
	opacity: 0;
	transform: translateY(30px);
	transition:
		opacity 0.6s ease,
		transform 0.6s ease;
	padding: 56px 5%;
	background: linear-gradient(160deg, #f0f6ff 0%, #fafafa 60%, #fff5f5 100%);
	border-top: 3px solid #185fa5;
}

#hot-items-section.visible {
	opacity: 1;
	transform: translateY(0);
}

.hot-items-inner {
	max-width: 1100px;
	margin: 0 auto;
}

.hot-items-header {
	text-align: center;
	margin-bottom: 40px;
}

.hot-label {
	display: inline-block;
	background: #185fa5;
	color: #fff;
	padding: 5px 18px;
	border-radius: 50px;
	font-size: 0.9rem;
	font-weight: 700;
	letter-spacing: 0.5px;
	margin-bottom: 14px;
	text-transform: uppercase;
}

.hot-items-header h2 {
	font-size: 2rem;
	color: #1a1a2e;
	margin-bottom: 8px;
}

.hot-items-header p {
	color: #666;
	font-size: 1.05rem;
}

/* Grid */
.hot-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 24px;
}

/* Card */
.hot-card {
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
}

.hot-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 32px rgba(24, 95, 165, 0.15);
}

/* Card image */
.hot-card-image-wrap {
	position: relative;
	width: 100%;
	height: 200px;
	overflow: hidden;
	background: #f3f4f6;
}

.hot-card-image-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
	display: block;
}

.hot-card:hover .hot-card-image-wrap img {
	transform: scale(1.06);
}

/* Badge */
.hot-badge {
	position: absolute;
	top: 12px;
	left: 12px;
	padding: 4px 12px;
	border-radius: 50px;
	font-size: 0.8rem;
	font-weight: 700;
	color: #fff;
}

.badge-hot {
	background: #e53e3e;
}
.badge-new {
	background: #185fa5;
}
.badge-gift {
	background: #9f3fbf;
}
.badge-travel {
	background: #0ea5a0;
}

/* Card body */
.hot-card-body {
	padding: 18px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.hot-card-body h3 {
	font-size: 1.05rem;
	color: #1a1a2e;
	margin-bottom: 8px;
	line-height: 1.4;
}

.hot-card-desc {
	font-size: 0.9rem;
	color: #777;
	line-height: 1.5;
	flex: 1;
	margin-bottom: 14px;
}

.hot-card-price {
	margin-bottom: 14px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.hot-card-price del {
	color: #bbb;
	font-size: 0.95rem;
}

.hot-card-price strong {
	color: #185fa5;
	font-size: 1.2rem;
}

/* CTA button */
.hot-order-btn {
	display: block;
	background: #185fa5;
	color: #fff;
	text-align: center;
	padding: 12px;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: 700;
	text-decoration: none;
	transition:
		background 0.2s ease,
		transform 0.2s ease;
}

.hot-order-btn:hover {
	background: #0c447c;
	transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 600px) {
	.hot-grid {
		grid-template-columns: 1fr 1fr;
		gap: 14px;
	}
	.hot-card-image-wrap {
		height: 150px;
	}
	.hot-items-header h2 {
		font-size: 1.5rem;
	}
}

@media (max-width: 400px) {
	.hot-grid {
		grid-template-columns: 1fr;
	}
}
@keyframes flyAround {
	0% {
		transform: translate(0, 0) rotate(0deg);
		opacity: 1;
	}
	100% {
		transform: translate(100px, -100px) rotate(360deg);
		opacity: 0;
	}
}

@keyframes pulse {
	0% {
		transform: scale(1);
		box-shadow: 0 0 0 0 rgba(24, 95, 165, 0.4);
	}
	70% {
		transform: scale(1.05);
		box-shadow: 0 0 0 15px rgba(24, 95, 165, 0);
	}
	100% {
		transform: scale(1);
		box-shadow: 0 0 0 0 rgba(24, 95, 165, 0);
	}
}

@media (max-width: 768px) {
	.section-banner {
		margin: 25px 0;
		border-radius: 8px;
	}
	.hero-slider {
		height: auto !important;
		aspect-ratio: 16 / 9;
		width: 100%;
	}
	.details-image img,
	.trust-image img,
	.hero-slider img {
		max-height: 300px;
		object-fit: cover;
		width: 100%;
	}
	.hero-container,
	.features-section,
	.usage-section,
	.details-section,
	.order-section {
		padding-top: 20px !important;
		padding-bottom: 20px !important;
	}
	.details-grid,
	.trust-section {
		gap: 20px;
	}
	.trust-section {
		display: flex;
		flex-direction: column;
	}

	.trust-image {
		order: 2;
		margin-top: 15px;
	}
	.hero-container {
		flex-direction: column;
		text-align: center;
	}
	.hero-content {
		text-align: center;
	}
	.features-grid {
		grid-template-columns: 1fr;
		gap: 16px;
		text-align: center;
	}
	.feature-list {
		display: inline-block;
		text-align: left;
	}
	.details-grid,
	.trust-section {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.icon-box-grid {
		grid-template-columns: 1fr;
	}
	.usage-card {
		padding: 18px;
	}
}

@media (max-width: 600px) {
	.form-header h2 {
		font-size: 1.6rem;
	}
	.checkout-wrapper {
		padding: 22px 18px;
	}
	.section-title h2 {
		font-size: 1.6rem;
	}
	.feature-box {
		padding: 18px;
	}
}

@media (max-width: 480px) {
	.hero-slider {
		height: 200px !important;
	}

	.main-title {
		font-size: 1.6rem;
	}
	.footer-content p {
		font-size: 0.85rem;
		line-height: 1.5;
	}
	.cta-card {
		padding: 24px 18px;
	}
	.cta-card h2 {
		font-size: 1.5rem;
	}
	.countdown-wrapper {
		gap: 8px;
	}
	.time-block {
		min-width: 65px;
		padding: 10px;
	}
	.digits {
		font-size: 1.5rem;
	}
}
