.footer-social-icons {
	display: flex;
	gap: 1.2rem;
	margin-top: 0.5rem;
	align-items: center;
}
.btn-primary {
	background: var(--forest-green);
	color: white;
	padding: 0.65rem 1.5rem;
	border: none;
	border-radius: 2rem;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-block;
	min-width: 40px;
	min-height: 40px;
}
.btn-primary:hover {
	background: var(--charcoal);
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.btn-secondary {
	background: transparent;
	color: var(--forest-green);
	padding: 0.65rem 1.5rem;
	border: 2px solid var(--forest-green);
	border-radius: 2rem;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-block;
	min-width: 40px;
	min-height: 40px;
}
.btn-secondary:hover {
	background: var(--forest-green);
	color: white;
}
.nav-cta {
	background: var(--forest-green);
	color: #fff !important;
	padding: 0.55rem 1.2rem;
	border-radius: 2rem;
	font-weight: 700;
	margin-left: 0.5rem;
	font-size: 1rem;
	box-shadow: 0 2px 8px rgba(44,80,22,0.07);
	transition: background 0.2s, color 0.2s, transform 0.2s;
}
.nav-cta:hover {
	background: var(--accent-terracotta);
	color: #fff;
	transform: translateY(-2px) scale(1.04);
}
.highlight-card p {
	color: var(--charcoal);
	font-size: 1rem;
	opacity: 0.8;
}

/* Products Modern Grid */
.products-section {
	background: var(--cream);
	padding: 3.2rem 0 2rem 0;
}
.section-title {
	text-align: center;
	font-size: 2.2rem;
	font-family: 'Playfair Display', serif;
	color: var(--forest-green);
	margin-bottom: 2.5rem;
	font-weight: 800;
}
.products-grid-modern {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 2.5rem;
	max-width: 1200px;
	margin: 0 auto;
}
.product-card-modern {
	background: #fff;
	border-radius: 1.5rem;
	box-shadow: 0 4px 24px rgba(44,80,22,0.07);
	padding: 2.2rem 2rem 1.7rem 2rem;
	text-align: center;
	animation: fadeInUp 0.7s cubic-bezier(.4,1.4,.6,1) both;
	animation-delay: var(--delay, 0s);
	transition: transform 0.18s, box-shadow 0.18s;
}
.product-card-modern:hover {
	transform: translateY(-8px) scale(1.04);
	box-shadow: 0 8px 32px rgba(44,80,22,0.13);
}
.product-img-wrap {
	width: 70px;
	height: 70px;
	margin: 0 auto 1.1rem auto;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--warm-beige);
	border-radius: 1rem;
	font-size: 2.2rem;
}
.product-emoji {
	font-size: 2.2rem;
}
.product-card-modern h3 {
	font-size: 1.15rem;
	color: var(--forest-green);
	margin-bottom: 0.7rem;
	font-weight: 700;
}
.product-card-modern p {
	color: var(--charcoal);
	font-size: 1rem;
	opacity: 0.8;
}

/* Accessibility: keyboard focus and SVG icon normalization */
:focus {
	outline: none;
}
:focus-visible {
	outline: 3px solid rgba(45,80,22,0.18);
	outline-offset: 3px;
}

/* Apply a shared icon class to control SVG color/size consistently */
.icon, svg.icon {
	width: 1.25rem;
	height: 1.25rem;
	vertical-align: middle;
	color: inherit;
	fill: currentColor;
}

/* Improve focus for interactive elements */
a:focus-visible, button:focus-visible, .social-btn:focus-visible {
	outline: 3px solid rgba(45,80,22,0.16);
	outline-offset: 3px;
}

/* How It Works Section */
.howitworks-section {
	background: var(--cream);
	padding: 3.2rem 0 2rem 0;
}
.howitworks-steps {
	display: flex;
	flex-wrap: wrap;
	gap: 2.5rem;
	justify-content: center;
	max-width: 1200px;
	margin: 0 auto;
}
.howitworks-step {
	background: #fff;
	border-radius: 1.5rem;
	box-shadow: 0 4px 24px rgba(44,80,22,0.07);
	padding: 2.2rem 2rem 1.7rem 2rem;
	min-width: 220px;
	max-width: 260px;
	flex: 1 1 220px;
	text-align: center;
	animation: fadeInUp 0.7s cubic-bezier(.4,1.4,.6,1) both;
	animation-delay: var(--delay, 0s);
	transition: transform 0.18s, box-shadow 0.18s;
}
.howitworks-step:hover {
	transform: translateY(-8px) scale(1.04);
	box-shadow: 0 8px 32px rgba(44,80,22,0.13);
}
.howitworks-icon {
	width: 64px;
	height: 64px;
	margin-bottom: 1.1rem;
	border-radius: 1rem;
	background: var(--cream);
	object-fit: cover;
}
.howitworks-step h3 {
	font-size: 1.15rem;
	color: var(--forest-green);
	margin-bottom: 0.7rem;
	font-weight: 700;
}
.howitworks-step p {
	color: var(--charcoal);
	font-size: 1rem;
	opacity: 0.8;
}

/* Modern Footer */
.modern-footer {
	background: var(--charcoal);
	color: #fff;
	padding: 2.5rem 0 1.2rem 0;
}
.footer-main {
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	gap: 3rem;
	justify-content: space-between;
	align-items: flex-start;
	padding: 0 2.5rem;
}
.footer-brand {
	flex: 1 1 320px;
	min-width: 220px;
}
.footer-brand h3 {
	font-family: 'Playfair Display', serif;
	font-size: 1.5rem;
	margin-bottom: 1.2rem;
}
.footer-links-group {
	display: flex;
	gap: 2.5rem;
	flex: 2 1 400px;
	min-width: 220px;
	flex-wrap: wrap;
}
.footer-section h4 {
	font-size: 1.1rem;
	margin-bottom: 1rem;
	font-weight: 700;
	letter-spacing: 1px;
}
.footer-section ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.footer-section li {
	margin-bottom: 0.7rem;
}
.footer-section a {
	color: #fff;
	text-decoration: none;
	opacity: 0.8;
	transition: opacity 0.2s;
}
.footer-section a:hover {
	opacity: 1;
	text-decoration: underline;
}
.footer-bottom {
	text-align: center;
	opacity: 0.7;
	font-size: 0.98rem;
	margin-top: 2.5rem;
}

@media (max-width: 900px) {
	.highlights-container,
	.products-grid-modern,
	.howitworks-steps,
	.footer-main {
		flex-direction: column;
		gap: 2rem;
		align-items: stretch;
	}
	.footer-links-group {
		flex-direction: column;
		gap: 1.5rem;
	}
}

/* Taruvi Eco Products Main Stylesheet */



:root {
	--forest-green: #2D5016;
	--sage-green: #7C9473;
	--cream: #FAF7F0;
	--off-white: #FEFEFE;
	--charcoal: #2C2C2C;
	--warm-beige: #E8DCC4;
	--accent-terracotta: #C86B3C;
}

html {
	scroll-behavior: smooth;
}

/* Ensure anchor targets are not hidden behind the fixed navbar */
section {
    scroll-margin-top: 96px; /* offset to account for fixed navbar height */
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	color: var(--charcoal);
	line-height: 1.7;
	background-color: var(--off-white);
	overflow-x: hidden;
}

.hero {
	/* Ensure content starts below the fixed navbar (approx 80px) */
	padding-top: 80px;
}


/* Blueland-style Navigation */
.main-nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: rgba(255,255,255,0.97);
	backdrop-filter: blur(16px);
	border-bottom: 1px solid rgba(0,0,0,0.04);
	box-shadow: 0 2px 16px rgba(0,0,0,0.03);
	transition: box-shadow 0.3s, background 0.3s;
}
.main-nav.scrolled {
	box-shadow: 0 4px 24px rgba(0,0,0,0.07);
	background: rgba(255,255,255,0.99);
}
.nav-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 2.5rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	min-height: 72px;
}
.logo {
	font-family: 'Playfair Display', serif;
	font-size: 2rem;
	font-weight: 700;
	color: var(--forest-green);
	text-decoration: none;
	letter-spacing: -1px;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	transition: color 0.2s;
}
.logo:hover {
	color: var(--accent-terracotta);
}
.nav-links {
	display: flex;
	gap: 2.5rem;
	list-style: none;
	align-items: center;
	position: relative;
}
.nav-item {
	position: relative;
}
.nav-links a {
	color: var(--charcoal);
	text-decoration: none;
	font-weight: 600;
	font-size: 1.05rem;
	letter-spacing: 0.2px;
	padding: 0.5rem 0.2rem;
	transition: color 0.2s;
	border-radius: 4px;
	display: flex;
	align-items: center;
	position: relative;
}
.nav-links a::after {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	bottom: -3px;
	height: 3px;
	background: var(--forest-green);
	border-radius: 2px;
	width: 0;
	transition: width 0.22s cubic-bezier(.4,1.4,.6,1);
}
.nav-links a:hover::after,
.nav-links a:focus::after {
	width: 100%;
}
.nav-links a:hover,
.nav-links a:focus {
	color: var(--forest-green);
	background: none;
}
.nav-cta {
	background: var(--forest-green);
	color: #fff !important;
	padding: 0.7rem 1.7rem;
	border-radius: 2rem;
	font-weight: 700;
	margin-left: 0.5rem;
	box-shadow: 0 2px 8px rgba(44,80,22,0.07);
	transition: background 0.2s, color 0.2s, transform 0.2s;
}
.nav-cta:hover {
	background: var(--accent-terracotta);
	color: #fff;
	transform: translateY(-2px) scale(1.04);
}
/* Dropdown */
.nav-dropdown > a {
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 0.3em;
}
.dropdown-arrow {
	font-size: 0.8em;
	margin-left: 0.2em;
	transition: transform 0.2s;
}
.nav-dropdown:hover > a .dropdown-arrow,
.nav-dropdown:focus-within > a .dropdown-arrow {
	transform: rotate(180deg);
}
.dropdown-menu {
	display: none;
	position: absolute;
	top: 110%;
	left: 0;
	min-width: 180px;
	background: #fff;
	border-radius: 1rem;
	box-shadow: 0 8px 32px rgba(44,80,22,0.10);
	padding: 0.35rem 0;
	list-style: none;
	margin: 0;
	z-index: 1001;
	opacity: 0;
	pointer-events: none;
	transform: translateY(10px) scale(0.98);
	transition: opacity 0.2s, transform 0.2s;
}
.nav-dropdown:hover > .dropdown-menu,
.nav-dropdown:focus-within > .dropdown-menu {
	display: block;
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0) scale(1);
}
.dropdown-menu li {
	width: 100%;
}

/* Ensure no bullets or extra indentation for dropdown lists */
.nav-dropdown .dropdown-menu,
.nav-dropdown .dropdown-menu li {
	list-style: none;
	margin: 0;
	padding: 0;
}
.dropdown-menu a {
	color: var(--charcoal);
	padding: 0.7rem 1.5rem;
	width: 100%;
	display: block;
	border-radius: 0.7rem;
	font-size: 1rem;
	font-weight: 500;
	transition: background 0.18s, color 0.18s;
}
.dropdown-menu a:hover,
.dropdown-menu a:focus {
	background: var(--cream);
	color: var(--forest-green);
}
.mobile-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
	margin-left: 1.5rem;
}
.mobile-toggle span {
	width: 25px;
	height: 2px;
	background: var(--charcoal);
	transition: 0.3s;
}
@media (max-width: 900px) {
	.nav-links {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: #fff;
		flex-direction: column;
		gap: 0.5rem;
		box-shadow: 0 10px 30px rgba(0,0,0,0.08);
		padding: 1.5rem 0;
		display: none;
	}
	.nav-links.active {
		display: flex;
	}
	.mobile-toggle {
		display: flex;
	}
}
/* Hero Section (Blueland style) */
.hero {
	min-height: 90vh;
	display: flex;
	align-items: center;
	background: linear-gradient(135deg, #F5F1E8 0%, #E8DCC4 100%);
	position: relative;
	overflow: hidden;
	padding: 120px 0 0 0;
}
.hero-content {
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 4rem;
	padding: 0 2.5rem;
}
.hero-text {
	flex: 1 1 400px;
	min-width: 320px;
	z-index: 2;
	animation: fadeInUp 0.8s cubic-bezier(.4,1.4,.6,1) 0.1s both;
}
.hero-title {
	font-family: 'Playfair Display', serif;
	font-size: 3.2rem;
	font-weight: 800;
	color: var(--forest-green);
	margin-bottom: 1.2rem;
	line-height: 1.1;
	letter-spacing: -1.5px;
	text-shadow: 0 2px 8px rgba(44,80,22,0.04);
}
.hero-subtitle {
	font-size: 1.35rem;
	color: var(--charcoal);
	margin-bottom: 2.2rem;
	font-weight: 400;
	opacity: 0.92;
}
.hero-cta-group {
	display: flex;
	gap: 1.2rem;
	margin-bottom: 2.5rem;
}
.hero-img {
	max-width: 480px;
	width: 100%;
	border-radius: 2rem;
	box-shadow: 0 8px 32px rgba(44,80,22,0.10);
	animation: fadeInRight 1s cubic-bezier(.4,1.4,.6,1) 0.2s both;
}
.hero-visual {
	flex: 1 1 350px;
	min-width: 280px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1;
}

/* Hero carousel */
.hero-carousel {
	width: 420px;
	height: 420px;
	position: relative;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 30px 80px rgba(0,0,0,0.12);
	background: linear-gradient(180deg, #fff, #FAF7F0);
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Decorative shapes behind carousel (red and green) */
.hero-carousel::before,
.hero-carousel::after {
	content: '';
	position: absolute;
	border-radius: 20px;
	z-index: 0;
}
.hero-carousel::before {
	width: 60%;
	height: 60%;
	left: -8%;
	top: -12%;
	background: linear-gradient(135deg, rgba(45,80,22,0.12), rgba(124,148,115,0.06));
	transform: rotate(-12deg);
}
.hero-carousel::after {
	width: 46%;
	height: 46%;
	right: -6%;
	bottom: -8%;
	background: linear-gradient(135deg, rgba(200,107,60,0.12), rgba(200,107,60,0.06));
	transform: rotate(18deg);
}
.hero-carousel .carousel-slides {
	width: 100%;
	height: 100%;
	position: relative;
}
.hero-carousel .slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transform: scale(1.03);
	transition: opacity 600ms ease, transform 600ms ease;
	display: flex;
	align-items: center;
	justify-content: center;
}
.hero-carousel .slide img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center center;
	background: transparent;
	z-index: 1;
}
.hero-carousel .slide.active {
	opacity: 1;
	transform: none;
}
.carousel-caption {
	position: static;
	background: rgba(255,255,255,0.0);
	padding: 0;
	border-radius: 0;
	font-weight: 700;
	color: var(--charcoal);
	text-align: center;
}
.caption-below {
	margin-top: 1rem;
	font-size: 1.05rem;
	background: transparent;
	padding: 0.25rem 0.5rem;
}
.carousel-controls {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	display: flex;
	justify-content: space-between;
	transform: translateY(-50%);
	pointer-events: none;
}
.carousel-controls button {
	pointer-events: all;
	background: rgba(255,255,255,0.9);
	border: none;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

/* Site logo image sizing */
.site-logo {
	display: block;
	width: 140px;
	max-width: 34vw;
	height: auto;
}

/* Placeholder state when an image fails to load */
.gallery-image.image-missing {
	background: linear-gradient(135deg, rgba(44,80,22,0.06), rgba(200,107,60,0.04));
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(44,80,22,0.6);
}
.gallery-image.image-missing::after {
	content: "Image unavailable";
	font-weight: 600;
	font-size: 0.95rem;
}
@media (max-width: 900px) {
	.hero-content {
		flex-direction: column;
		gap: 2.5rem;
		padding: 0 1.2rem;
	}
	.hero-title {
		font-size: 2.1rem;
	}
	.hero-img {
		max-width: 100%;
	}

	/* make logo a bit smaller on mobile */
	.site-logo {
		width: 110px;
	}
}
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(40px);
	}
	to {
		opacity: 1;
		transform: none;
	}
}
@keyframes fadeInRight {
	from {
		opacity: 0;
		transform: translateX(60px);
	}
	to {
		opacity: 1;
		transform: none;
	}
}

/* Hero Section */
.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	background: linear-gradient(135deg, #F5F1E8 0%, #E8DCC4 100%);
	position: relative;
	overflow: hidden;
	padding: 8rem 4rem 4rem;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 60%;
	height: 100%;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 800"><defs><linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%237C9473;stop-opacity:0.1" /><stop offset="100%" style="stop-color:%232D5016;stop-opacity:0.05" /></linearGradient></defs><circle cx="600" cy="200" r="300" fill="url(%23grad1)"/><circle cx="700" cy="600" r="250" fill="url(%23grad1)"/></svg>');
	background-size: cover;
	opacity: 0.6;
	z-index: 1;
}

.hero-content {
	max-width: 1400px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 6rem;
	align-items: center;
	position: relative;
	z-index: 2;
}

.hero-text h1 {
	font-family: 'Playfair Display', serif;
	font-size: 5rem;
	font-weight: 700;
	line-height: 1.1;
	color: var(--forest-green);
	margin-bottom: 2rem;
	letter-spacing: -2px;
}

.hero-text .subtitle {
	font-size: 1.4rem;
	color: var(--charcoal);
	margin-bottom: 1rem;
	font-weight: 300;
	opacity: 0.9;
}

.hero-text .tagline {
	font-size: 1.1rem;
	color: var(--sage-green);
	margin-bottom: 3rem;
	font-weight: 500;
}

.hero-cta-group {
	display: flex;
	gap: 1.5rem;
	margin-bottom: 3rem;
}

.btn-primary {
	background: var(--forest-green);
	color: white;
	padding: 1.2rem 3rem;
	border: none;
	border-radius: 50px;
	font-size: 1.05rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.4s ease;
	text-decoration: none;
	display: inline-block;
	min-width: 48px;
	min-height: 48px;
}

.btn-primary:hover {
	background: var(--charcoal);
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.btn-secondary {
	background: transparent;
	color: var(--forest-green);
	padding: 1.2rem 3rem;
	border: 2px solid var(--forest-green);
	border-radius: 50px;
	font-size: 1.05rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-block;
	min-width: 48px;
	min-height: 48px;
}

.btn-secondary:hover {
	background: var(--forest-green);
	color: white;
}

.hero-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(0,0,0,0.1);
}

.stat {
	text-align: left;
}

.stat-number {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--forest-green);
	display: block;
	font-family: 'Playfair Display', serif;
}

.stat-label {
	font-size: 0.9rem;
	color: var(--charcoal);
	opacity: 0.7;
	margin-top: 0.3rem;
}

.hero-visual {
	position: relative;
	height: 600px;
}

.hero-image-container {
	position: absolute;
	background: white;
	border-radius: 30px;
	padding: 2rem;
	box-shadow: 0 30px 80px rgba(0,0,0,0.15);
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-image-1 {
	width: 380px;
	height: 380px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 3;
	background: linear-gradient(135deg, #E8DCC4, #FAF7F0);
}

.hero-image-2 {
	width: 280px;
	height: 280px;
	top: 20px;
	right: 0;
	z-index: 2;
	background: linear-gradient(135deg, #7C9473, #2D5016);
	opacity: 0.9;
}

.hero-image-3 {
	width: 200px;
	height: 200px;
	bottom: 40px;
	left: 20px;
	z-index: 1;
	background: linear-gradient(135deg, #C86B3C, #FAF7F0);
	opacity: 0.85;
}

/* Compact Value Bar (single-line on desktop, stacked on mobile) */
.value-bar-section {
	padding: 1rem 0 0 0;
	background: transparent;
}
.value-bar {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	gap: 1.5rem;
	align-items: center;
	justify-content: center;
	padding: 0.6rem 2.5rem;
	background: rgba(45,80,22,0.04);
	border-radius: 999px;
	box-shadow: 0 6px 20px rgba(44,80,22,0.04);
}
.value-item {
	display: inline-flex;
	gap: 0.6rem;
	align-items: center;
	padding: 0.35rem 0.8rem;
	color: var(--charcoal);
	font-weight: 600;
	font-size: 0.98rem;
	white-space: nowrap;
}
.value-icon {
	font-size: 1.25rem;
	display: inline-block;
}
.value-text {
	display: inline-block;
}

@media (max-width: 780px) {
	.value-bar {
		flex-direction: column;
		gap: 0.6rem;
		padding: 0.8rem 1rem;
	}
	.value-item {
		padding: 0.45rem 0.6rem;
		font-size: 0.95rem;
	}
}

/* Separators between value items (desktop only) */
.value-sep {
	width: 1px;
	height: 28px;
	background: rgba(45,80,22,0.12);
	display: block;
	align-self: center;
}
.value-icon {
	width: 20px;
	height: 20px;
	display: inline-block;
	color: var(--forest-green);
}

@media (max-width: 780px) {
	.value-sep {
		display: none;
	}
}

/* Final overrides: ensure refined button sizes and footer SVG styling take precedence */
.btn-primary, .product-card-modern .btn-primary {
	padding: 0.55rem 1.1rem !important;
	font-size: 0.98rem !important;
	border-radius: 1rem !important;
	min-width: 36px !important;
	min-height: 36px !important;
}
.btn-primary, .btn-secondary, .hero .btn-primary, .hero .btn-secondary, .nav-cta {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	white-space: nowrap !important;
	line-height: 1 !important;
}
.hero .btn-primary {
	padding: 0.5rem 1rem !important;
	font-size: 0.95rem !important;
	border-radius: 0.9rem !important;
}
.btn-secondary, .hero .btn-secondary {
	padding: 0.45rem 0.95rem !important;
	font-size: 0.95rem !important;
	border-radius: 0.9rem !important;
}
.nav-cta {
	padding: 0.45rem 0.9rem !important;
	font-size: 0.95rem !important;
}

/* Footer social SVGs: white stroke, no background highlight, subtle scale on hover */
.footer-social-icons a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	opacity: 0.98;
	transition: transform 0.16s ease, opacity 0.16s ease;
}
.footer-social-icons svg {
	width: 28px;
	height: 28px;
	display: block;
	fill: none;
	stroke: #fff;
}
.footer-social-icons a:hover svg {
	transform: scale(1.08);
}
.footer-social-icons a:focus {
	outline: 2px solid rgba(255,255,255,0.12);
	outline-offset: 4px;
}

/* Remove browser tap highlight on icons for mobile */
.footer-social-icons a {
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}

.hero-emoji {
	font-size: 8rem;
}

/* Hero & icon adjustments */
.hero {
	padding-top: 80px; /* reduce vertical space */
}
.hero-icon {
	width: 120px;
	height: 120px;
	color: var(--sage-green);
}
.product-icon, .gallery-icon, .contact-svg {
	color: var(--forest-green);
}
.product-image, .gallery-image {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 120px;
}

/* Micro interactions */
.value-item, .product-card, .gallery-item, .social-btn {
	transition: transform 0.18s ease, box-shadow 0.18s ease, color 0.18s ease;
}
.value-item:hover, .product-card:hover, .gallery-item:hover, .social-btn:hover {
	transform: translateY(-4px);
}

@media (max-width: 900px) {
	.product-image, .gallery-image {
		height: 100px;
	}
}

/* Mission Section */
.mission-section {
	padding: 10rem 4rem;
	background: var(--off-white);
}

.mission-container {
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
}

.section-label {
	font-size: 0.85rem;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--sage-green);
	font-weight: 600;
	margin-bottom: 1rem;
}

.mission-title {
	font-family: 'Playfair Display', serif;
	font-size: 3.5rem;
	color: var(--forest-green);
	margin-bottom: 2rem;
	line-height: 1.2;
}

.mission-description {
	font-size: 1.3rem;
	color: var(--charcoal);
	opacity: 0.8;
	max-width: 900px;
	margin: 0 auto 4rem;
	line-height: 1.8;
	font-weight: 300;
}

/* Values Section */
.values-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 3rem;
	margin-top: 6rem;
}

.value-card {
	text-align: left;
	padding: 0;
}

.value-icon {
	width: 80px;
	height: 80px;
	background: var(--warm-beige);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.5rem;
	margin-bottom: 1.5rem;
}

.value-card h3 {
	font-size: 1.3rem;
	color: var(--forest-green);
	margin-bottom: 1rem;
	font-weight: 600;
}

.value-card p {
	font-size: 1rem;
	color: var(--charcoal);
	opacity: 0.7;
	line-height: 1.6;
}

/* Products Section */
.products-section {
	padding: 10rem 4rem;
	background: var(--cream);
}

.products-hero {
	max-width: 1400px;
	margin: 0 auto 8rem;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 6rem;
	align-items: center;
}

.products-hero-text h2 {
	font-family: 'Playfair Display', serif;
	font-size: 4rem;
	color: var(--forest-green);
	margin-bottom: 2rem;
	line-height: 1.1;
}

.products-hero-text p {
	font-size: 1.2rem;
	color: var(--charcoal);
	opacity: 0.8;
	margin-bottom: 1.5rem;
	line-height: 1.8;
}

.highlight-box {
	background: white;
	padding: 2.5rem;
	border-radius: 25px;
	margin-top: 2rem;
	border-left: 4px solid var(--forest-green);
}

.highlight-box h4 {
	color: var(--forest-green);
	font-size: 1.3rem;
	margin-bottom: 1rem;
}

.products-hero-visual {
	background: white;
	border-radius: 30px;
	padding: 4rem;
	text-align: center;
	box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.products-hero-visual .hero-emoji {
	font-size: 12rem;
}

/* Product Grid */
.products-grid {
	max-width: 1400px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2.5rem;
}

.product-card {
	background: white;
	border-radius: 25px;
	overflow: hidden;
	transition: all 0.4s ease;
	cursor: pointer;
}

.product-card:hover {
	transform: translateY(-15px);
	box-shadow: 0 30px 70px rgba(0,0,0,0.15);
}

.product-image {
	height: 320px;
	background: var(--warm-beige);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 5rem;
	position: relative;
	overflow: hidden;
}

.product-card:hover .product-image {
	background: var(--sage-green);
}

.product-content {
	padding: 2.5rem;
}

.product-content h3 {
	font-size: 1.5rem;
	color: var(--forest-green);
	margin-bottom: 1rem;
	font-weight: 600;
}

.product-content p {
	font-size: 1rem;
	color: var(--charcoal);
	opacity: 0.7;
	line-height: 1.7;
}

/* Gallery Section */
.gallery-section {
	padding: 10rem 4rem;
	background: var(--off-white);
}

.gallery-header {
	max-width: 1400px;
	margin: 0 auto 6rem;
	text-align: center;
}

.gallery-header h2 {
	font-family: 'Playfair Display', serif;
	font-size: 4rem;
	color: var(--forest-green);
	margin-bottom: 1.5rem;
}

.gallery-header p {
	font-size: 1.2rem;
	color: var(--charcoal);
	opacity: 0.7;
	max-width: 700px;
	margin: 0 auto;
}

.gallery-masonry {
	max-width: 1400px;
	margin: 0 auto;
	columns: 3;
	column-gap: 2rem;
}

.gallery-item {
	break-inside: avoid;
	margin-bottom: 2rem;
	background: white;
	border-radius: 20px;
	overflow: hidden;
	transition: all 0.3s ease;
	cursor: pointer;
}

.gallery-item:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.gallery-image {
	width: 100%;
	height: 350px;
	background: var(--warm-beige);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 6rem;
}

/* Make images inside gallery scale and crop nicely */
.gallery-image picture,
.gallery-image img,
.gallery-image picture > img {
	width: 100%;
	height: 100%;
	display: block;
}
.gallery-image img {
	object-fit: cover;
	object-position: center center;
}

/* If an SVG is used directly as an <img>, object-fit applies; for any inline SVG fallback, ensure it scales */
.gallery-image svg {
	width: 100%;
	height: 100%;
	display: block;
}

/* Thumb placeholder / blur effect until full image loads */
.gallery-image img.lazy-thumb {
	filter: blur(6px);
	transform: scale(1.02);
	transition: filter 400ms ease, transform 400ms ease, opacity 300ms ease;
	opacity: 0.92;
}
.gallery-image img.loaded {
	filter: none;
	transform: none;
	opacity: 1;
}

.gallery-caption {
	padding: 1.5rem;
	text-align: center;
	font-weight: 500;
	color: var(--charcoal);
}

/* Impact Section */
.impact-section {
	padding: 10rem 4rem;
	background: var(--forest-green);
	color: white;
	text-align: center;
}

.impact-container {
	max-width: 1400px;
	margin: 0 auto;
}

.impact-section h2 {
	font-family: 'Playfair Display', serif;
	font-size: 4rem;
	margin-bottom: 3rem;
	color: white;
}

.impact-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 4rem;
	margin-top: 5rem;
}

.impact-stat {
	padding: 2rem;
}

.impact-number {
	font-size: 4rem;
	font-weight: 700;
	display: block;
	margin-bottom: 1rem;
	font-family: 'Playfair Display', serif;
}

.impact-label {
	font-size: 1.1rem;
	opacity: 0.9;
	font-weight: 300;
}

/* Contact Section */
.contact-section {
	padding: 10rem 4rem;
	background: var(--cream);
}

.contact-wrapper {
	max-width: 1400px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 6rem;
}

.contact-info h2 {
	font-family: 'Playfair Display', serif;
	font-size: 3.5rem;
	color: var(--forest-green);
	margin-bottom: 2rem;
	line-height: 1.2;
}

.contact-info p {
	font-size: 1.2rem;
	color: var(--charcoal);
	opacity: 0.7;
	margin-bottom: 3rem;
	line-height: 1.7;
}

.contact-details-list {
	margin-bottom: 3rem;
}

.contact-item {
	display: flex;
	gap: 1.5rem;
	margin-bottom: 2rem;
	align-items: flex-start;
}

.contact-icon {
	width: 50px;
	height: 50px;
	background: var(--forest-green);
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.5rem;
	flex-shrink: 0;
}

.contact-item-text h4 {
	color: var(--forest-green);
	font-size: 0.9rem;
	margin-bottom: 0.3rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.contact-item-text p {
	color: var(--charcoal);
	font-size: 1.1rem;
	margin: 0;
	opacity: 1;
}

.social-buttons {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.social-btn {
	padding: 1rem 2rem;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 0.7rem;
	transition: all 0.3s ease;
	font-size: 1rem;
	min-width: 48px;
	min-height: 48px;
}

.social-btn.whatsapp {
	background: #25D366;
	color: white;
}

.social-btn.instagram {
	background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
	color: white;
}

.social-btn.email {
	background: var(--charcoal);
	color: white;
}

.social-btn:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.contact-form {
	background: white;
	padding: 3.5rem;
	border-radius: 30px;
	box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.contact-form h3 {
	font-family: 'Playfair Display', serif;
	font-size: 2rem;
	color: var(--forest-green);
	margin-bottom: 2rem;
}

.form-group {
	margin-bottom: 1.8rem;
}

.form-group label {
	display: block;
	margin-bottom: 0.7rem;
	color: var(--charcoal);
	font-weight: 500;
	font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 1.2rem;
	border: 2px solid #E8E8E8;
	border-radius: 15px;
	font-family: inherit;
	font-size: 1rem;
	transition: all 0.3s ease;
	background: #FAFAFA;
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--forest-green);
	background: white;
}

.form-group textarea {
	resize: vertical;
	min-height: 140px;
}

.submit-btn {
	width: 100%;
	background: var(--forest-green);
	color: white;
	padding: 1.3rem 2rem;
	border: none;
	border-radius: 50px;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	min-height: 48px;
}

.submit-btn:hover {
	background: var(--charcoal);
	transform: translateY(-3px);
	box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

/* Footer */
footer {
	background: var(--charcoal);
	color: white;
	padding: 5rem 4rem 3rem;
}

.footer-content {
	max-width: 1400px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 4rem;
	margin-bottom: 3rem;
}

.footer-brand h3 {
	font-family: 'Playfair Display', serif;
	font-size: 2rem;
	margin-bottom: 1.5rem;
}

.footer-brand p {
	opacity: 0.7;
	line-height: 1.8;
	margin-bottom: 2rem;
}

.footer-section h4 {
	font-size: 1rem;
	margin-bottom: 1.5rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.footer-links {
	list-style: none;
}

.footer-links li {
	margin-bottom: 1rem;
}

.footer-links a {
	color: white;
	text-decoration: none;
	opacity: 0.7;
	transition: opacity 0.3s ease;
}

.footer-links a:hover {
	opacity: 1;
}

.footer-bottom {
	max-width: 1400px;
	margin: 0 auto;
	padding-top: 3rem;
	border-top: 1px solid rgba(255,255,255,0.1);
	text-align: center;
	opacity: 0.6;
}

/* Responsive */
@media (max-width: 1200px) {
	.hero-content {
		grid-template-columns: 1fr;
		gap: 4rem;
	}

	.hero-text h1 {
		font-size: 4rem;
	}

	.hero-visual {
		height: 500px;
	}

	.products-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.values-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.nav-container {
		padding: 0 2rem;
	}

	.nav-links {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: white;
		flex-direction: column;
		padding: 2rem;
		box-shadow: 0 10px 30px rgba(0,0,0,0.1);
		gap: 1.5rem;
	}

	.nav-links.active {
		display: flex;
	}

	.mobile-toggle {
		display: flex;
	}

	.hero {
		padding: 6rem 2rem 3rem;
	}

	.hero-text h1 {
		font-size: 2.5rem;
	}

	.hero-text .subtitle {
		font-size: 1.1rem;
	}

	.hero-cta-group {
		flex-direction: column;
	}

	.hero-stats {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.mission-section,
	.products-section,
	.gallery-section,
	.impact-section,
	.contact-section {
		padding: 5rem 2rem;
	}

	.mission-title,
	.products-hero-text h2,
	.gallery-header h2,
	.impact-section h2,
	.contact-info h2 {
		font-size: 2.5rem;
	}

	.values-grid,
	.products-grid,
	.impact-grid {
		grid-template-columns: 1fr;
	}

	.products-hero,
	.contact-wrapper {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.gallery-masonry {
		columns: 1;
	}

	.footer-content {
		grid-template-columns: 1fr;
		gap: 3rem;
	}
}
