@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600;9..40,700&display=swap');

:root {
	--gold: #b8932a;
	--gold-light: #d4a93c;
	--gold-pale: #fdf6e3;
	--forest: #1e3a2f;
	--forest-mid: #2d5a40;
	--forest-lite: #e8f2ec;
	--ink: #1a1a1a;
	--muted: #6b7280;
	--line: #e8e3d8;
	--white: #ffffff;
	--cream: #faf8f4;
	--radius: 16px;
	--shadow: 0 4px 32px rgba(30, 58, 47, .10);
	--shadow-sm: 0 2px 12px rgba(30, 58, 47, .07);
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

    .tint-bg{background:#fffdf6}
    .bg-white{background:var(--white)!important}
    .policy-modal{display:none;position:fixed;inset:0;z-index:2000;align-items:center;justify-content:center}
    .policy-modal.active{display:flex}
    .policy-overlay{position:absolute;inset:0;background:rgba(0,0,0,.5);backdrop-filter:blur(4px)}
    .policy-box{position:relative;background:#fff;border-radius:20px;max-width:680px;width:90%;max-height:80vh;overflow-y:auto;padding:36px;z-index:1}
    .policy-close{position:absolute;top:16px;right:16px;background:var(--cream);border:1px solid var(--line);border-radius:8px;width:34px;height:34px;display:flex;align-items:center;justify-content:center;cursor:pointer;font-size:14px;color:var(--muted)}
    .policy-close:hover{background:var(--forest);color:#fff}
    #policyTitle{font-family:'Cormorant Garamond',serif;font-size:1.8rem;font-weight:700;color:var(--forest);margin-bottom:16px}
    #policyContent{font-size:14px;color:var(--muted);line-height:1.8}

body {
	font-family: 'DM Sans', sans-serif;
	background: var(--cream);
	color: var(--ink);
	margin: 0;
	overflow-x: hidden;
}

::-webkit-scrollbar {
	width: 6px;
}

::-webkit-scrollbar-track {
	background: var(--cream);
}

::-webkit-scrollbar-thumb {
	background: #d4c9b0;
	border-radius: 3px;
}

.topbar {
	background: var(--forest);
	color: #fff;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: .5px;
	padding: 8px 0;
}

.topbar a {
	color: rgba(255, 255, 255, .85);
	text-decoration: none;
}

.topbar a:hover {
	color: var(--gold-light);
}

.social-links a {
	color: rgba(255, 255, 255, .75);
	font-size: 14px;
	transition: .2s;
	text-decoration: none;
}

.social-links a:hover {
	color: var(--gold-light);
}

/* Marquee banner */
.banner {
	overflow: hidden;
	white-space: nowrap;
}

.banner-track {
	display: inline-flex;
	gap: 40px;
	animation: marquee 22s linear infinite;
}

.banner-item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.banner-text {
    font-size: 14px;
    letter-spacing: .4px;
    opacity: .85;
    text-transform: capitalize;
}

.banner-text i {
	color: var(--gold-light);
}

@keyframes marquee {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

/* ══════════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════════ */
.navbar {
	background: var(--white) !important;
	border-bottom: 1px solid var(--line);
	box-shadow: var(--shadow-sm);
	position: sticky;
	top: 0;
	z-index: 999;
}

/* Popular ribbon */
.popular::before {
	content: "RECOMMENDED";
	position: absolute;
	top: 32px;
	right: -50px;
	background: #000;
	color: #fff;
	padding: 6px 50px;
	transform: rotate(45deg);
	font-size: 10px;
	font-weight: 700;
}

.trial::before {
	content: "TRIAL";
	position: absolute;
	top: 30px;
	right: -41px;
	background: #000;
	color: #fff;
	padding: 6px 72px;
	transform: rotate(45deg);
	font-size: 10px;
	font-weight: 700;
}


.logo {
	height: 48px;
}

.navbar-nav .nav-link {
	font-family: 'DM Sans', sans-serif;
	font-weight: 500;
	font-size: 16px;
	color: var(--ink) !important;
	padding: 10px 4px !important;
	position: relative;
	transition: color .2s;
}

.navbar-nav .nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--gold);
	border-radius: 2px;
	transition: width .25s;
}

.navbar-nav .nav-link:hover {
	color: var(--forest) !important;
}

.navbar-nav .nav-link:hover::after {
	width: 100%;
}

.btn-buy {
	background: linear-gradient(135deg, var(--forest), var(--forest-mid));
	color: #fff !important;
	font-weight: 600;
	font-size: 14px;
	border: none;
	border-radius: 50px;
	padding: 10px 24px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
	transition: .3s;
	cursor: pointer;
}

.btn-buy:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(30, 58, 47, .35);
	color: #fff !important;
}

.header-right {
	color: #000;
	font-size: 17px;
}

.header-right i {
	cursor: pointer;
	transition: .2s;
}

.header-right i:hover {
	color: var(--forest);
}

.cart-icon {
	position: relative;
	cursor: pointer;
}

.cart-icon .count {
	position: absolute;
	top: -8px;
	right: -9px;
	background: var(--gold);
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	width: 17px;
	height: 17px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid var(--white);
}

/* ══════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════ */
.hero {
	background: linear-gradient(160deg, var(--cream) 55%, var(--forest-lite) 100%);
	padding: 80px 0 60px;
	overflow: hidden;
}

.hero h5 {
	font-size: 13px;
	font-weight: 600;
	color: var(--gold);
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-bottom: 14px;
}

.hero-title {

	font-size: clamp(2.4rem, 5vw, 3.8rem);
	font-weight: 700;
	color: var(--forest);
	line-height: 1.15;
	letter-spacing: -.5px;
}

.hero .lead {
	font-size: 15px;
	color: var(--muted);
	line-height: 1.7;
}

.hero-img {
	position: absolute;
	bottom: -20px;
	right: 5rem;
	max-width: 60%;
	filter: drop-shadow(0 20px 40px rgba(30, 58, 47, .2));
	animation: floatImg 4s ease-in-out infinite;
}

@keyframes floatImg {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-12px);
	}
}

/* ══════════════════════════════════════════════════════
   SUB-HERO BAND
══════════════════════════════════════════════════════ */
.sub-hero {
	background: var(--forest);
	color: #fff;
}

.sub-hero h3 {

	font-size: clamp(1.4rem, 3vw, 2rem);
	font-weight: 700;
	margin-bottom: 12px;
}

.sub-hero p {
	opacity: .75;
	font-size: 15px;
	max-width: 760px;
	margin: 0 auto;
}

/* ══════════════════════════════════════════════════════
   CATEGORIES
══════════════════════════════════════════════════════ */
.categories {
	background: var(--white);
}

.categories h3 {

	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 700;
	color: var(--forest);
}

.cat-item {
	transition: .3s;
	cursor: default;
}


.cat-item img {
	width: 100%;
    height: 430px;
	margin-bottom: 14px;
	    border-radius: 15px;
}

.cat-item h6 {
	font-weight: 600;
    font-size: 18px;
	color: var(--ink);
	margin: 0;
}

/* ══════════════════════════════════════════════════════
   DOCTOR NOTE
══════════════════════════════════════════════════════ */
.doctor-note {
	background: linear-gradient(135deg, var(--forest-lite) 0%, var(--cream) 60%);
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

.doctor-note img {
	border-radius: 20px;
	max-width: 100%;
}

.sub-title {

	font-size: clamp(1.6rem, 3vw, 2.4rem);
	color: var(--forest);
}

.doctor-note p {
	color: var(--muted);
	line-height: 1.75;
	font-size: 15px;
}

.doctor-note h1 {

	font-size: 2.8rem;
	font-weight: 700;
	color: var(--forest);
}

.doctor-note .row.text-center>div {
	padding: 20px 10px;
	border-right: 1px solid var(--line);
}

.doctor-note .row.text-center>div:last-child {
	border-right: none;
}

.doctor-note .row.text-center div div {
	font-size: 13px;
	color: var(--muted);
	font-weight: 500;
}

/* ══════════════════════════════════════════════════════
   HERO BULLETS SECTION
══════════════════════════════════════════════════════ */
.hero-bullets {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.hero-bullets li {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 15px;
	font-weight: 500;
	color: var(--ink);
}

.hero-bullets li::before {
	content: '✓';
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	background: var(--forest);
	color: #fff;
	border-radius: 50%;
	font-size: 12px;
	font-weight: 700;
	flex-shrink: 0;
}

.hero-img2 {
	border-radius: 20px;
	max-width: 100%;
}

/* ══════════════════════════════════════════════════════
   6 BENEFITS
══════════════════════════════════════════════════════ */
.transform-live {
	background: var(--forest-lite);
}

.bsep {

	font-size: clamp(1.6rem, 3.5vw, 2.5rem);
	font-weight: 700;
	color: var(--forest);
}

.powerful-text {

	font-size: 1.25rem;
	font-weight: 700;
	color: var(--forest);
	margin: 0;
	line-height: 1.3;
}

/* ══════════════════════════════════════════════════════
   KEY INGREDIENTS SLIDER
══════════════════════════════════════════════════════ */
.keynote {
	background: var(--white);
}

.keynote h1 {

	font-size: clamp(1.8rem, 4vw, 2.6rem);
	font-weight: 700;
	color: var(--forest);
}

.ingredient-slider {
	overflow: hidden;
	border-radius: 16px;
}

.ingredient-track {
	display: flex;
	transition: transform .5s cubic-bezier(.4, 0, .2, 1);
}

.ingredient-item {
	width: calc(100% / 4);
	min-width: calc(100% / 4);
	flex-shrink: 0;
	display: flex;
	justify-content: center;
	padding: 10px;
}

.herb-img {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 16px;
    height: 430px;
}
.journey-item img
{
    height: 330px;
}

/* DOTS shared */
.slider-dots,
.journey-dots {
	text-align: center;
	margin-top: 18px;
}

.slider-dots span,
.journey-dots span {
	display: inline-block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--line);
	margin: 0 4px;
	cursor: pointer;
	transition: .3s;
}

.slider-dots span.active,
.journey-dots span.active {
	background: var(--forest);
	width: 22px;
	border-radius: 4px;
}

/* ══════════════════════════════════════════════════════
   30-DAY JOURNEY SLIDER
══════════════════════════════════════════════════════ */
.transformation h1 {

	font-size: clamp(1.8rem, 4vw, 2.6rem);
	font-weight: 700;
	color: var(--forest);
}

.journey-slider {
	overflow: hidden;
}

.journey-track {
	display: flex;
	transition: transform .5s cubic-bezier(.4, 0, .2, 1);
}

.journey-item {
	width: calc(100% / 5);
	min-width: calc(100% / 5);
	flex-shrink: 0;
	display: flex;
	justify-content: center;
	padding: 10px;
}

/* ── Slider responsive breakpoints ── */
@media (max-width: 991px) {
	.ingredient-item {
		width: calc(100% / 3);
		min-width: calc(100% / 3);
	}

	.journey-item {
		width: calc(100% / 3);
		min-width: calc(100% / 3);
	}
}

@media (max-width: 576px) {
	.ingredient-item {
		width: calc(100% / 2);
		min-width: calc(100% / 2);
	}

	.journey-item {
		width: calc(100% / 2);
		min-width: calc(100% / 2);
	}
}


/* ══════════════════════════════════════════════════════
   VIDEO TESTIMONIALS
══════════════════════════════════════════════════════ */
.video-testimonial {
	background: var(--forest);
}

.video-testimonial h1 {
	color: #fff;

	font-size: clamp(1.8rem, 4vw, 2.6rem);
	font-weight: 700;
}

.yt-slider-wrapper {
	overflow: hidden;
	border-radius: 16px;
}

.yt-slider {
	display: flex;
	transition: transform .5s cubic-bezier(.4, 0, .2, 1);
}

.yt-item {
	min-width: calc(100% / 3);
	padding: 8px;
}

.yt-item iframe {
	width: 100%;
	aspect-ratio: 16/9;
	border: none;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, .3);
}

.slider-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: var(--white);
	border: none;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	font-size: 16px;
	cursor: pointer;
	box-shadow: var(--shadow);
	z-index: 10;
	color: var(--forest);
	transition: .2s;
	display: flex;
	align-items: center;
	justify-content: center;
}

.slider-btn:hover {
	background: var(--forest);
	color: #fff;
}

.slider-btn.left {
	left: -16px;
}

.slider-btn.right {
	right: -16px;
}

#sliderDots span {
	display: inline-block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .35);
	margin: 0 4px;
	cursor: pointer;
	transition: .3s;
}

#sliderDots span.active {
	background: var(--gold-light);
	width: 22px;
	border-radius: 4px;
}

@media(max-width:768px) {
	.yt-item {
		min-width: 100%;
	}
}

@media(min-width:769px) and (max-width:992px) {
	.yt-item {
		min-width: 50%;
	}
}

/* ══════════════════════════════════════════════════════
   HOW TO USE
══════════════════════════════════════════════════════ */
.how-to-use {
	display: flex;
	gap: 20px;
	margin-top: 40px;
	flex-wrap: wrap;
}

.step-box {
	flex: 1;
	min-width: 220px;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 28px 24px;
	position: relative;
	transition: .3s;
	box-shadow: var(--shadow-sm);
}

.step-box:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow);
	border-color: var(--forest);
}

.step-number {
	display: inline-block;
	background: var(--forest);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .8px;
	text-transform: uppercase;
	padding: 4px 12px;
	border-radius: 20px;
	margin-bottom: 14px;
}

.step-box h4 {

	font-size: 1.4rem;
	font-weight: 700;
	color: var(--forest);
	margin-bottom: 10px;
}

.step-box p {
	font-size: 14px;
	color: var(--muted);
	line-height: 1.7;
	margin: 0;
}

.step-box strong {
	color: var(--ink);
}

/* ══════════════════════════════════════════════════════
   PACKAGES / PRICING
══════════════════════════════════════════════════════ */
.three-tabs h3 {

	font-size: clamp(1.8rem, 4vw, 2.6rem);
	font-weight: 700;
	color: var(--forest);
}

.pricing-card {
	background: var(--white);
	border: 1.5px solid var(--line);
	border-radius: 20px;
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: .3s;
	height: 100%;
	display: flex;
	    position: relative;
	flex-direction: column;
}

.bestseller::before {
    content: "BEST SELLER";
    position: absolute;
    top: 30px;
    right: -41px;
    background: #000;
    color: #fff;
    padding: 6px 50px;
    transform: rotate(45deg);
    font-size: 10px;
    font-weight: 700;
}

.pricing-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow);
}

.pricing-header {
	padding: 28px 24px 20px;
	background: var(--cream);
	border-bottom: 1px solid var(--line);
	text-align: center;
}

.pricing-header h3 {

	font-size: 1.5rem;
	font-weight: 700;
	color: var(--forest);
	margin-bottom: 4px;
}

.pricing-header p {
	font-size: 13px;
	color: var(--muted);
	margin-bottom: 2px;
}

.pricing-header small {
	font-size: 12px;
	color: var(--gold);
	font-weight: 600;
}

/* Best seller highlight */
.pricing-card.bestseller {
	border-color: var(--forest);
	transform: scale(1.03);
}

.pricing-card.bestseller:hover {
	transform: scale(1.03) translateY(-6px);
}

.pricing-card.bestseller .pricing-header {
	background: var(--forest);
}

.pricing-card.bestseller .pricing-header h3,
.pricing-card.bestseller .pricing-header p {
	color: #fff;
}

.pricing-card.bestseller .pricing-header small {
	color: var(--gold-light);
}

.pricing-card.popular .pricing-header {
	background: linear-gradient(135deg, var(--forest-lite), #c8e6c9);
}

.price {
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 4px;
	padding: 22px 24px 10px;
	flex-wrap: wrap;
}

.price span {
	font-size: 16px;
	color: var(--muted);
}

.price h1 {

	font-size: 3rem;
	font-weight: 700;
	color: var(--forest);
	line-height: 1;
	margin: 0;
}

.features {
	list-style: none;
	padding: 4px 24px 20px;
	margin: 0;
	flex: 1;
}

.features li {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 9px 0;
	border-bottom: 1px solid var(--line);
	font-size: 14px;
	color: var(--ink);
}

.features li:last-child {
	border-bottom: none;
}

.features .bi-check-circle {
	color: var(--forest);
	font-size: 15px;
	flex-shrink: 0;
}

.buy-btn {
	padding: 14px 24px;
	text-align: center;
	border-top: 1px solid var(--line);
}

.buy-btn a,
.buy-btn .buy-package {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: linear-gradient(135deg, var(--forest), var(--forest-mid));
	color: #fff !important;
	font-weight: 600;
	font-size: 14px;
	padding: 13px 28px;
	border-radius: 50px;
	text-decoration: none;
	transition: .3s;
	cursor: pointer;
    border: 1px solid white;
	width: 100%;
}

.buy-btn a:hover,
.buy-btn .buy-package:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(30, 58, 47, .35);
}

.pricing-card.bestseller .buy-btn {
	background: var(--forest);
}

/* ══════════════════════════════════════════════════════
   TESTIMONIALS (SWIPER)
══════════════════════════════════════════════════════ */
.testimonials {
	background: var(--cream);
}

.testimonials h2 {

	font-size: clamp(1.8rem, 4vw, 2.6rem);
	font-weight: 700;
	color: var(--forest);
}

.review-card {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 20px;
	box-shadow: var(--shadow-sm);
	height: 100%;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.review-card img {
	width: 100%;
	height: 180px;
	object-fit: cover;
	border-radius: 12px;
}

.review-card .stars {
	color: #4caf50;
	font-size: 13px;
}

.review-card h6 {
	font-weight: 700;
	font-size: 15px;
	color: var(--ink);
	margin: 0;
}

.review-card p {
	font-size: 13px;
	color: var(--muted);
	line-height: 1.6;
	flex: 1;
	margin: 0;
}

.review-card .verified {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 11px;
	font-weight: 700;
	color: var(--forest);
	background: var(--forest-lite);
	padding: 3px 10px;
	border-radius: 20px;
	width: fit-content;
}

.review-card .verified::before {
	content: '✓';
	background: var(--forest);
	color: #fff;
	width: 13px;
	height: 13px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 8px;
}

.swiper-button-next,
.swiper-button-prev {
	color: var(--forest) !important;
	background: var(--white);
	width: 38px !important;
	height: 38px !important;
	border-radius: 50%;
	box-shadow: var(--shadow-sm);
}

.swiper-button-next::after,
.swiper-button-prev::after {
	font-size: 14px !important;
	font-weight: 700 !important;
}

.swiper-pagination-bullet-active {
	background: var(--forest) !important;
}

/* ══════════════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════════════ */
.faq {
	background: var(--white);
}

.faq-section {
	max-width: 760px;
	margin: 0 auto;
}

.faq-section h2 {

	font-size: clamp(1.8rem, 4vw, 2.4rem);
	font-weight: 700;
	color: var(--forest);
}

.faq-item {
	border: 1.5px solid var(--line);
	border-radius: 12px;
	margin-bottom: 10px;
	overflow: hidden;
	transition: .2s;
	background: var(--cream);
}

.faq-item.active {
	border-color: var(--forest);
	background: var(--white);
}

.faq-question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 20px;
	cursor: pointer;
	font-size: 15px;
	font-weight: 500;
	color: var(--ink);
	transition: .2s;
	gap: 12px;
}

.faq-question:hover {
	color: var(--forest);
}

.faq-item.active .faq-question {
	color: var(--forest);
	font-weight: 600;
}

.faq-question .bi {
	color: var(--muted);
	transition: transform .3s;
	flex-shrink: 0;
	font-size: 13px;
}

.faq-item.active .faq-question .bi {
	transform: rotate(180deg);
	color: var(--forest);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	font-size: 14px;
	color: var(--muted);
	line-height: 1.7;
	transition: max-height .35s ease, padding .3s;
	padding: 0 20px;
}

.faq-item.active .faq-answer {
	max-height: 200px;
	padding: 0 20px 16px;
}

/* ══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */
.footer {
	background: var(--forest);
	color: rgba(255, 255, 255, .8);
	padding: 60px 0 0;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
	gap: 40px;
	max-width: 1160px;
	margin: 0 auto;
	padding: 0 24px 40px;
}

.footer .logo img {
	height: 44px;
	margin-bottom: 16px;
	filter: brightness(0) invert(1) opacity(.9);
}

.footer .address {
	font-size: 13px;
	line-height: 1.8;
	opacity: .7;
	margin-bottom: 14px;
}

.footer .contact div {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	margin-bottom: 6px;
	opacity: .75;
}

.footer .contact i {
	color: var(--gold-light);
}

.footer h4 {

	font-size: 1.1rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 16px;
	letter-spacing: .3px;
}

.footer ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer ul li {
	margin-bottom: 8px;
}

.footer ul a {
	color: rgba(255, 255, 255, .65);
	text-decoration: none;
	font-size: 14px;
	transition: .2s;
}

.footer ul a:hover {
	color: var(--gold-light);
	padding-left: 4px;
}

.newsletter {
	display: flex;
	gap: 8px;
	margin-bottom: 20px;
}

.newsletter input {
	flex: 1;
	padding: 10px 14px;
	border: 1.5px solid rgba(255, 255, 255, .2);
	border-radius: 10px;
	background: rgba(255, 255, 255, .08);
	color: #fff;
	font-size: 13px;
	font-family: 'DM Sans', sans-serif;
	outline: none;
}

.newsletter input::placeholder {
	color: rgba(255, 255, 255, .4);
}

.newsletter input:focus {
	border-color: var(--gold-light);
}

.newsletter button {
	padding: 10px 16px;
	background: var(--gold);
	color: #fff;
	border: none;
	border-radius: 10px;
	cursor: pointer;
	font-size: 16px;
	transition: .2s;
}

.newsletter button:hover {
	background: var(--gold-light);
}

.footer .social {
	display: flex;
	gap: 10px;
}

.footer .social a {
	width: 36px;
	height: 36px;
	border-radius: 10px;
	background: rgba(255, 255, 255, .1);
	color: rgba(255, 255, 255, .75);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	text-decoration: none;
	transition: .2s;
}

.footer .social a:hover {
	background: var(--gold);
	color: #fff;
}

.bottom {
	border-top: 1px solid rgba(255, 255, 255, .12);
	padding: 18px 24px;
	max-width: 1160px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 14px;
	font-size: 13px;
	opacity: .65;
}

.payments {
	display: flex;
	gap: 10px;
	align-items: center;
}

.payments img {
	height: 22px;
	filter: brightness(0) invert(1) opacity(.6);
}

/* ══════════════════════════════════════════════════════
   CART DRAWER
══════════════════════════════════════════════════════ */
#cartOverlay {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, .45);
	z-index: 1200;
	backdrop-filter: blur(3px);
}

#cartDrawer {
	position: fixed;
	top: 0;
	right: -420px;
	width: 400px;
	max-width: 95vw;
	height: 100vh;
	background: var(--white);
	z-index: 1300;
	display: flex;
	flex-direction: column;
	box-shadow: -8px 0 40px rgba(0, 0, 0, .15);
	transition: right .35s cubic-bezier(.4, 0, .2, 1);
	border-left: 1px solid var(--line);
}

#cartDrawer.active {
	right: 0;
}

.cart-header {
	background: var(--forest);
	color: #fff;
	padding: 20px 24px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-shrink: 0;
}

.cart-header h3 {

	font-size: 1.4rem;
	font-weight: 700;
	margin: 0;
}

#closeCart {
	cursor: pointer;
	font-size: 18px;
	width: 32px;
	height: 32px;
	border-radius: 8px;
	background: rgba(255, 255, 255, .15);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: .2s;
}

#closeCart:hover {
	background: rgba(255, 255, 255, .3);
}

#cartItems {
	flex: 1;
	overflow-y: auto;
	padding: 16px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

#cartItems:empty::after {
	content: '🛒 Your cart is empty';
	font-size: 14px;
	color: var(--muted);
	text-align: center;
	padding: 40px 0;
	display: block;
}

.cart-item {
	background: var(--cream);
	border: 1px solid var(--line);
	border-radius: 12px;
	padding: 14px 16px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	animation: fadeUp .3s ease both;
}

.cart-item b {
	font-weight: 600;
	font-size: 14px;
	color: var(--ink);
}

.cart-item span:not(.remove) {
	font-size: 13px;
	color: var(--muted);
	display: block;
	margin-top: 3px;
}

.cart-item .remove {
	background: none;
	border: none;
	cursor: pointer;
	font-size: 12px;
	font-weight: 600;
	color: #dc2626;
	padding: 4px 10px;
	border-radius: 6px;
	border: 1px solid #fca5a5;
	transition: .2s;
	white-space: nowrap;
	flex-shrink: 0;
}

.cart-item .remove:hover {
	background: #fee2e2;
}

.cart-footer {
	padding: 18px 20px;
	border-top: 1px solid var(--line);
	background: var(--cream);
	flex-shrink: 0;
}

.cart-footer h4 {

	font-size: 1.5rem;
	font-weight: 700;
	color: var(--forest);
	margin-bottom: 14px;
}

#checkoutBtn {
	width: 100%;
	padding: 16px;
	background: linear-gradient(135deg, var(--forest), var(--forest-mid));
	color: #fff;
	border: none;
	border-radius: 12px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: .3s;
	font-family: 'DM Sans', sans-serif;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

#checkoutBtn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(30, 58, 47, .35);
}

#checkoutBtn::after {
	content: '→';
	font-size: 18px;
}

/* ══════════════════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════════════════ */
@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(16px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════ */
@media (max-width: 991px) {
	.footer-grid {
		grid-template-columns: 1fr 1fr;
	}

	.hero {
		padding: 50px 0 40px;
	}

	.how-to-use {
		flex-direction: column;
	}
}

@media (max-width: 576px) {
    .social-links
    {
        margin-top: 5px;
        width: 45%;
        
    }
    .topbar .banner
    {
            margin-top: 5px;
    }
    .logo {
    height: 30px;
}
.navbar-toggler {
    font-size: 1.1rem;
    border: none;
    padding: 0;
}
.navbar-toggler:focus
{
    box-shadow:none;
}
.header-right
{
        margin-right: 10px;
}
.navbar
{
        padding: 5px 0px !important;
}
.navbar-brand
{
        margin-right: auto;
    margin-left: 10px;
}
.topbar {
    padding: 1px 0;
    padding-bottom: 5px;
}
.topbar .col-md-9
{
        order: -1;
        margin-bottom: 6px;
        background: #032719;
        padding-bottom: 5px;
}
.topbar .col-md-2
{
    width: 54%;
}
.topbar .fa-phone
{
        margin-right: 0 !important;
}
.banner-text
{
        font-size: 12px;
}
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.bottom {
		flex-direction: column;
		text-align: center;
	}
	.yt-item {
		min-width: 100%;
	}
}

.navbar-expand-lg .navbar-nav {
	flex-direction: row;
    margin-right: 3rem !important;
    margin-left: auto !important;
}