/* ============================================================
   PRODUCT LANDING PAGE — style.css  (mobile-first)
   Used by templates/cosmetics/ 
   Base styles target ~375px. min-width breakpoints layer up.
   ============================================================ */

*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
}
body {
	font-family: "Hind Siliguri", sans-serif;
	background: #fff;
	color: #333;
	-webkit-font-smoothing: antialiased;
}
img {
	max-width: 100%;
	display: block;
}
a {
	text-decoration: none;
	color: inherit;
}

/* ============================================================
   NAVBAR — mobile-first
   ============================================================ */
.site-nav {
	background: #111;
	position: sticky;
	top: 0;
	z-index: 200;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}
.nav-inner {
	max-width: 1100px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 16px;
	height: 56px;
	position: relative;
}
.nav-logo {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #fff;
	font-size: 1rem;
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
}

/* Hamburger — visible by default (mobile) */
.nav-toggle {
	display: flex;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
}
.nav-toggle span {
	display: block;
	width: 22px;
	height: 2px;
	background: #fff;
	border-radius: 2px;
	transition: all 0.3s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
	opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* Nav links — hidden by default (mobile), toggled open */
.nav-links {
	display: none;
	position: absolute;
	top: 56px;
	left: 0;
	right: 0;
	background: #111;
	flex-direction: column;
	padding: 12px 16px 20px;
	gap: 4px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	list-style: none;
}
.nav-links.open {
	display: flex;
}
.nav-links li,
.nav-links a {
	width: 100%;
}
.nav-links a {
	color: rgba(255, 255, 255, 0.8);
	padding: 10px 14px;
	border-radius: 8px;
	font-size: 0.95rem;
	font-weight: 500;
	transition:
		background-color 0.15s ease,
		color 0.15s ease;
	display: block;
}
.nav-links a:hover,
.nav-links a.active {
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
}
.nav-links .nav-call {
	background: #22c55e;
	color: #fff;
	border-radius: 999px;
	padding: 10px 16px;
	font-weight: 700;
	text-align: center;
}
.nav-links .nav-call:hover {
	background: #16a34a;
}

/* Desktop nav — inline links, no hamburger */
@media (min-width: 600px) {
	.nav-toggle {
		display: none;
	}
	.nav-links {
		display: flex;
		position: static;
		flex-direction: row;
		background: none;
		padding: 0;
		gap: 4px;
		border-top: none;
	}
	.nav-links li,
	.nav-links a {
		width: auto;
	}
	.nav-links a {
		padding: 8px 14px;
		font-size: 0.9rem;
	}
	.nav-links .nav-call {
		padding: 8px 16px;
		text-align: left;
	}
}

/* ============================================================
   CONTAINER
   ============================================================ */
.container-inner {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 5%;
}

/* ============================================================
   HERO — mobile-first: stacked, centered
   ============================================================ */
.hero-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 24px 5%;
	background: #fff;
	gap: 24px;
	text-align: center;
}
.hero-content {
	width: 100%;
}
.hero-slider {
	width: 100%;
	max-width: 480px;
	/* aspect-ratio: 16 / 9; */
	position: relative;
	overflow: hidden;
	border-radius: 16px;
	background: #f3f4f6;
}

/* Tablet+ hero: side-by-side */
@media (min-width: 900px) {
	.hero-container {
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: space-between;
		padding: 32px 5%;
		text-align: left;
	}
	.hero-content {
		flex: 1;
		min-width: 280px;
	}
	.hero-slider {
		flex: 1;
		min-width: 280px;
		max-width: 480px;
	}
}

.slider-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
}
.slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	max-width: none;
	/* height: 100%;
	object-fit: cover; */
	height: auto; /* <-- Changed from 100% to auto to let images scale naturally */
	object-fit: contain; /* <-- Changed from cover to contain to prevent cropping */
	opacity: 0;
	transition: opacity 0.8s ease-in-out;
	border-radius: 16px;
}
.slide.active {
	position: relative; /* <-- CRITICAL: Allows the active slide to push the container height open naturally */
	opacity: 1;
	z-index: 1;
}

.offer-badge {
	display: inline-block;
	background: #fdf2f2;
	color: #d93025;
	padding: 6px 14px;
	border-radius: 50px;
	font-weight: 700;
	font-size: 0.875rem;
	margin-bottom: 12px;
}
.main-title {
	font-size: 1.5rem;
	line-height: 1.3;
	color: #1a1a1a;
	margin-bottom: 12px;
	font-weight: 700;
}
@media (min-width: 480px) {
	.main-title {
		font-size: 1.8rem;
	}
}
@media (min-width: 900px) {
	.main-title {
		font-size: 2.2rem;
	}
}

.highlight {
	color: #185fa5;
}
.sub-title {
	font-size: 1rem;
	color: #555;
	margin-bottom: 20px;
	line-height: 1.6;
}
.delivery-text {
	font-size: 1rem;
	color: #333;
	margin-bottom: 16px;
	font-weight: 600;
}
.cta-group {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}
@media (min-width: 900px) {
	.cta-group {
		align-items: flex-start;
	}
}

.order-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #185fa5;
	color: #fff;
	padding: 14px 28px;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: 700;
	border: none;
	cursor: pointer;
	transition:
		transform 0.2s,
		box-shadow 0.2s;
	box-shadow: 0 4px 15px rgba(24, 95, 165, 0.3);
	font-family: inherit;
}
@media (min-width: 600px) {
	.order-btn {
		padding: 16px 32px;
		font-size: 1.1rem;
	}
}
.order-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(24, 95, 165, 0.4);
}

/* ============================================================
   FEATURES — mobile-first: single column
   ============================================================ */
.features-section {
	padding: 40px 5%;
	background: #f9f9f9;
	text-align: center;
}
@media (min-width: 600px) {
	.features-section {
		padding: 56px 5%;
	}
}

.section-title h2 {
	font-size: 1.4rem;
	color: #1a1a1a;
	margin-bottom: 8px;
}
@media (min-width: 600px) {
	.section-title h2 {
		font-size: 1.9rem;
	}
}
.highlight-text {
	font-size: 1.1rem;
	font-weight: 700;
	color: #185fa5;
	margin-bottom: 8px;
}
@media (min-width: 600px) {
	.highlight-text {
		font-size: 1.3rem;
	}
}
.desc {
	max-width: 760px;
	margin: 0 auto 24px;
	color: #666;
	line-height: 1.6;
}
@media (min-width: 600px) {
	.desc {
		margin-bottom: 28px;
	}
}

.features-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
	margin-bottom: 24px;
}
@media (min-width: 560px) {
	.features-grid {
		grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	}
}

.feature-box {
	background: #fff;
	padding: 20px;
	border-radius: 14px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
	text-align: left;
}
@media (min-width: 600px) {
	.feature-box {
		padding: 24px;
	}
}

.feature-list {
	list-style: none;
	padding: 0;
}
.feature-list li {
	margin-bottom: 14px;
	font-size: 1rem;
	display: flex;
	align-items: center;
	gap: 10px;
	color: #333;
}

.center-cta {
	display: flex;
	justify-content: center;
	margin: 28px 0;
}
@media (min-width: 600px) {
	.center-cta {
		margin: 36px 0;
	}
}

.features-slider-container {
	margin: 32px auto;
	max-width: 560px;
}
.features-slider-container .hero-slider {
	/* aspect-ratio: 16 / 9; */
	height: auto;
	margin: 0 auto;
}
@media (min-width: 600px) {
	.features-slider-container {
		margin: 40px auto;
	}
}

.why-perfect {
	margin-top: 32px;
}
@media (min-width: 600px) {
	.why-perfect {
		margin-top: 40px;
	}
}

.why-perfect h3 {
	font-size: 1.3rem;
	margin-bottom: 16px;
	color: #1a1a1a;
}
@media (min-width: 600px) {
	.why-perfect h3 {
		font-size: 1.5rem;
		margin-bottom: 20px;
	}
}

.benefits-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
}
@media (min-width: 480px) {
	.benefits-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}
}
@media (min-width: 768px) {
	.benefits-grid {
		grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
	}
}

.benefit-item {
	background: #eef4fb;
	padding: 14px 16px;
	border-radius: 10px;
	font-weight: 600;
	color: #185fa5;
	font-size: 0.9rem;
}

del {
	color: #e11d48;
}

/* ============================================================
   URGENCY / COUNTDOWN — mobile-first
   ============================================================ */
.urgency-container {
	padding: 32px 5%;
	background: #fff5f5;
	text-align: center;
	border-top: 1px solid #fee2e2;
	border-bottom: 1px solid #fee2e2;
}
@media (min-width: 600px) {
	.urgency-container {
		padding: 40px 5%;
	}
}

.urgency-title {
	font-size: 1.2rem;
	color: #b91c1c;
	margin-bottom: 20px;
	font-weight: 700;
}
@media (min-width: 600px) {
	.urgency-title {
		font-size: 1.6rem;
		margin-bottom: 24px;
	}
}

.countdown-wrapper {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-bottom: 24px;
	flex-wrap: wrap;
}
@media (min-width: 600px) {
	.countdown-wrapper {
		gap: 14px;
		margin-bottom: 28px;
	}
}

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

.digits {
	display: block;
	font-size: 1.5rem;
	font-weight: 800;
	color: #1a1a1a;
}
@media (min-width: 600px) {
	.digits {
		font-size: 2rem;
	}
}

.label {
	font-size: 0.7rem;
	text-transform: uppercase;
	color: #999;
	letter-spacing: 1px;
}
@media (min-width: 600px) {
	.label {
		font-size: 0.75rem;
	}
}
.cta-wrapper {
	margin-top: 8px;
}

/* ============================================================
   ORDER FORM — mobile-first
   ============================================================ */
.order-section {
	padding: 40px 5%;
	background: #f3f4f6;
}
@media (min-width: 600px) {
	.order-section {
		padding: 56px 5%;
	}
}

.form-header {
	text-align: center;
	margin-bottom: 24px;
}
@media (min-width: 600px) {
	.form-header {
		margin-bottom: 28px;
	}
}

.form-header h2 {
	font-size: 1.3rem;
	color: #111;
	margin-bottom: 8px;
}
@media (min-width: 600px) {
	.form-header h2 {
		font-size: 1.8rem;
	}
}

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

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

.order-summary-card {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 14px;
	padding: 16px;
	margin-bottom: 16px;
}
@media (min-width: 600px) {
	.order-summary-card {
		padding: 18px;
		margin-bottom: 20px;
	}
}

.product-info {
	display: flex;
	gap: 12px;
	align-items: center;
	border-bottom: 1px solid #f0f0f0;
	padding-bottom: 12px;
	margin-bottom: 12px;
}
@media (min-width: 600px) {
	.product-info {
		gap: 14px;
		padding-bottom: 14px;
		margin-bottom: 14px;
	}
}

.product-info img {
	width: 64px;
	height: 64px;
	object-fit: cover;
	border-radius: 8px;
	flex-shrink: 0;
}
@media (min-width: 600px) {
	.product-info img {
		width: 72px;
		height: 72px;
	}
}

.product-details h3 {
	font-size: 0.9rem;
	font-weight: 700;
	margin-bottom: 6px;
	color: #111;
}
@media (min-width: 600px) {
	.product-details h3 {
		font-size: 0.95rem;
	}
}

.unit-price {
	font-size: 0.875rem;
	color: #555;
	margin-bottom: 8px;
}

.qty-control {
	display: flex;
	align-items: center;
}
.qty-control button {
	width: 32px;
	height: 32px;
	border: 1px solid #d1d5db;
	background: #f9fafb;
	cursor: pointer;
	font-size: 1rem;
	font-weight: 700;
	transition: background 0.15s;
	touch-action: manipulation;
}
.qty-control button:hover {
	background: #e5e7eb;
}
.qty-control input {
	width: 44px;
	height: 32px;
	text-align: center;
	border: 1px solid #d1d5db;
	border-left: 0;
	border-right: 0;
	font-family: inherit;
	font-size: 0.9rem;
	background: #fff;
}

.price-breakdown {
	padding-top: 4px;
}
.price-row {
	display: flex;
	justify-content: space-between;
	margin-bottom: 8px;
	font-size: 0.9rem;
	color: #555;
}
.price-row.total {
	font-weight: 800;
	color: #111;
	font-size: 1.05rem;
	border-top: 1px solid #e5e7eb;
	padding-top: 10px;
	margin-top: 4px;
}
@media (min-width: 600px) {
	.price-row.total {
		font-size: 1.1rem;
	}
}
.free {
	color: #10b981;
	font-weight: 700;
}

.styled-form {
	background: #fff;
	border-radius: 14px;
	padding: 16px;
}
@media (min-width: 600px) {
	.styled-form {
		padding: 20px;
	}
}

.input-group {
	margin-bottom: 14px;
}
@media (min-width: 600px) {
	.input-group {
		margin-bottom: 16px;
	}
}

.input-group label {
	display: block;
	font-weight: 600;
	font-size: 0.875rem;
	color: #374151;
	margin-bottom: 6px;
}
.input-group input,
.input-group textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1.5px solid #d1d5db;
	border-radius: 8px;
	font-family: inherit;
	font-size: 1rem; /* 16px prevents iOS zoom-on-focus */
	color: #111;
	background: #fafafa;
	transition: border-color 0.15s;
	outline: none;
	-webkit-appearance: none;
}
.input-group input:focus,
.input-group textarea:focus {
	border-color: #185fa5;
	background: #fff;
}
#phone-error {
	color: #ef4444;
	font-size: 0.82rem;
	margin-top: 4px;
	display: block;
	font-weight: 600;
}

.payment-method {
	background: #f0fdf4;
	border: 1px solid #bbf7d0;
	border-radius: 8px;
	padding: 12px 16px;
	margin-bottom: 14px;
}
@media (min-width: 600px) {
	.payment-method {
		margin-bottom: 16px;
	}
}
.payment-method p {
	margin: 0 0 4px;
	color: #166534;
	font-size: 0.9rem;
}
.payment-method small {
	color: #4ade80;
	font-size: 0.82rem;
}

.submit-order-btn {
	width: 100%;
	background: #20c71d;
	color: #fff;
	padding: 16px;
	border: none;
	border-radius: 8px;
	font-size: 1.1rem;
	font-weight: 800;
	cursor: pointer;
	font-family: inherit;
	transition:
		transform 0.2s,
		background 0.2s;
	touch-action: manipulation;
	-webkit-appearance: none;
}
@media (min-width: 600px) {
	.submit-order-btn {
		font-size: 1.2rem;
	}
}
.submit-order-btn:hover {
	transform: translateY(-2px);
	background: #0c7c46;
}
.submit-order-btn:disabled {
	background: #9ca3af;
	cursor: not-allowed;
	transform: none;
}

/* ============================================================
   FLOATING CONTACT
   ============================================================ */
.floating-contact {
	position: fixed;
	bottom: 20px;
	right: 16px;
	z-index: 9999;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 10px;
}
@media (min-width: 600px) {
	.floating-contact {
		bottom: 28px;
		right: 24px;
		gap: 12px;
	}
}

.contact-trigger {
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background: #8b5cf6;
	color: #fff;
	border: none;
	font-size: 20px;
	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);
	touch-action: manipulation;
}
@media (min-width: 600px) {
	.contact-trigger {
		width: 58px;
		height: 58px;
		font-size: 22px;
	}
}
.contact-trigger .close-icon {
	display: none;
}

.contact-options {
	display: flex;
	flex-direction: column;
	gap: 10px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(16px);
	transition: all 0.3s ease;
}
.option {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 16px;
	border-radius: 30px;
	color: #fff;
	font-weight: 600;
	font-size: 0.875rem;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
@media (min-width: 600px) {
	.option {
		padding: 10px 18px;
		font-size: 0.9rem;
	}
}
.whatsapp {
	background: #25d366;
}
.phone {
	background: #0ea5e9;
}

.floating-contact.active .contact-options {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.floating-contact.active .contact-trigger {
	background: #4b5563;
	transform: rotate(90deg);
}
.floating-contact.active .main-icon {
	display: none;
}
.floating-contact.active .close-icon {
	display: block;
}

/* ============================================================
   MODALS
   ============================================================ */
.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.82);
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 10000;
	backdrop-filter: blur(4px);
	padding: 16px;
}
.modal-content {
	background: #fff;
	padding: 32px 20px;
	border-radius: 24px;
	text-align: center;
	max-width: 440px;
	width: 100%;
	position: relative;
	animation: popIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@media (min-width: 480px) {
	.modal-content {
		padding: 40px 28px;
	}
}
@keyframes popIn {
	0% {
		transform: scale(0.5);
		opacity: 0;
	}
	100% {
		transform: scale(1);
		opacity: 1;
	}
}
.success-icon {
	font-size: 48px;
	margin-bottom: 14px;
	animation: bounce 2s infinite;
}
@media (min-width: 600px) {
	.success-icon {
		font-size: 56px;
	}
}
@keyframes bounce {
	0%,
	20%,
	50%,
	80%,
	100% {
		transform: translateY(0);
	}
	40% {
		transform: translateY(-18px);
	}
	60% {
		transform: translateY(-9px);
	}
}
.modal-content h2 {
	color: #185fa5;
	font-size: 1.6rem;
	margin-bottom: 8px;
}
@media (min-width: 600px) {
	.modal-content h2 {
		font-size: 2rem;
	}
}
.modal-content p {
	font-size: 1rem;
	color: #333;
	line-height: 1.5;
}
.sub-text {
	font-size: 0.88rem !important;
	color: #666 !important;
	margin-top: 8px;
}
.close-modal-btn {
	margin-top: 20px;
	padding: 12px 36px;
	background: #185fa5;
	color: #fff;
	border: none;
	border-radius: 50px;
	font-weight: 700;
	font-size: 1rem;
	cursor: pointer;
	font-family: inherit;
	transition: background 0.15s;
	touch-action: manipulation;
}
.close-modal-btn:hover {
	background: #0c447c;
}

.confetti-wrapper {
	position: absolute;
	top: -18px;
	width: 100%;
	left: 0;
}
.confetti {
	position: absolute;
	font-size: 1.8rem;
	animation: flyAround 3s infinite ease-in-out;
}
@keyframes flyAround {
	0% {
		transform: translate(0, 0) rotate(0deg);
		opacity: 1;
	}
	100% {
		transform: translate(90px, -90px) rotate(360deg);
		opacity: 0;
	}
}

/* ============================================================
   FOOTER
   ============================================================ */
.main-footer {
	padding: 20px 5%;
	background: #1a1a1a;
	color: #fff;
	text-align: center;
	border-top: 1px solid #333;
}
@media (min-width: 600px) {
	.main-footer {
		padding: 22px 5%;
	}
}
.footer-content p {
	font-size: 0.875rem;
	color: #9ca3af;
	margin: 0;
}
.footer-content a {
	color: #fff;
	font-weight: 600;
	transition: color 0.2s;
}
.footer-content a:hover {
	color: #185fa5;
}

/* ============================================================
   TRUST SECTIONS (product2 template)
   ============================================================ */
.trust-narrative-section {
	padding: 40px 5%;
	background: #fff;
}
@media (min-width: 600px) {
	.trust-narrative-section {
		padding: 56px 5%;
	}
}

.target-audience-block {
	margin-bottom: 40px;
}
.usage-routine-block {
	margin-bottom: 32px;
}
@media (min-width: 600px) {
	.target-audience-block {
		margin-bottom: 56px;
	}
	.usage-routine-block {
		margin-bottom: 44px;
	}
}

.trust-section-header {
	text-align: center;
	margin-bottom: 24px;
}
@media (min-width: 600px) {
	.trust-section-header {
		margin-bottom: 28px;
	}
}
.trust-section-header h2 {
	font-size: 1.4rem;
	color: #1a1a1a;
	margin-bottom: 8px;
}
@media (min-width: 600px) {
	.trust-section-header h2 {
		font-size: 1.7rem;
	}
}
.trust-section-header p {
	color: #666;
	font-size: 0.95rem;
	max-width: 560px;
	margin: 0 auto;
}

/* Audience grid: 1 col → 2 col → auto-fit */
.audience-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
	margin-bottom: 24px;
}
@media (min-width: 480px) {
	.audience-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 14px;
	}
}
@media (min-width: 768px) {
	.audience-grid {
		grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
		margin-bottom: 28px;
	}
}

.audience-card {
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 14px;
	padding: 18px 16px;
	text-align: center;
	transition:
		border-color 0.2s,
		box-shadow 0.2s;
}
@media (min-width: 600px) {
	.audience-card {
		padding: 22px 18px;
	}
}
.audience-card:hover {
	border-color: #185fa5;
	box-shadow: 0 6px 20px rgba(24, 95, 165, 0.08);
}
.audience-card .card-icon {
	font-size: 1.8rem;
	margin-bottom: 8px;
}
@media (min-width: 600px) {
	.audience-card .card-icon {
		font-size: 2rem;
		margin-bottom: 10px;
	}
}
.audience-card h4 {
	font-size: 0.9rem;
	color: #1a1a1a;
	margin-bottom: 6px;
	font-weight: 700;
}
@media (min-width: 600px) {
	.audience-card h4 {
		font-size: 0.95rem;
	}
}
.audience-card p {
	font-size: 0.82rem;
	color: #666;
	line-height: 1.5;
}
@media (min-width: 600px) {
	.audience-card p {
		font-size: 0.85rem;
	}
}

.routine-steps-container {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 16px;
}
@media (min-width: 600px) {
	.routine-steps-container {
		gap: 14px;
		margin-bottom: 20px;
	}
}

.routine-step {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	background: #f8fafc;
	border-radius: 12px;
	padding: 14px;
	border-left: 4px solid #185fa5;
}
@media (min-width: 600px) {
	.routine-step {
		gap: 14px;
		padding: 18px;
	}
}

.step-number {
	width: 36px;
	height: 36px;
	min-width: 36px;
	background: #185fa5;
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 0.9rem;
}
@media (min-width: 600px) {
	.step-number {
		width: 38px;
		height: 38px;
		min-width: 38px;
		font-size: 0.95rem;
	}
}

.step-body h5 {
	font-size: 0.9rem;
	font-weight: 700;
	color: #1a1a1a;
	margin-bottom: 4px;
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}
@media (min-width: 600px) {
	.step-body h5 {
		font-size: 0.95rem;
	}
}
.step-badge {
	background: #e0f2fe;
	color: #0369a1;
	padding: 2px 10px;
	border-radius: 999px;
	font-size: 0.72rem;
	font-weight: 600;
}
@media (min-width: 600px) {
	.step-badge {
		font-size: 0.75rem;
	}
}
.step-body p {
	font-size: 0.85rem;
	color: #555;
	line-height: 1.6;
	margin: 0;
}

.patch-test-note {
	background: #fffbeb;
	border: 1px solid #fbbf24;
	border-radius: 10px;
	padding: 12px 16px;
	font-size: 0.85rem;
	color: #78350f;
	line-height: 1.6;
	margin-top: 12px;
}
@media (min-width: 600px) {
	.patch-test-note {
		padding: 14px 18px;
		font-size: 0.875rem;
		margin-top: 14px;
	}
}
