﻿/* Reset and Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Inter', sans-serif;
	line-height: 1.6;
	color: #333;
	background-color: #fafafa;
}

.herbal-theme {
	background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
	min-height: 100vh;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Playfair Display', serif;
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: 1rem;
}

/* Header Styles */
.main-header {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	transition: all 0.3s ease;
}

.header-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 70px;
}

.logo-section {
	display: flex;
	align-items: center;
}

.brand-logo {
	display: flex;
	align-items: center;
	text-decoration: none;
	color: #2d5a27;
	font-weight: 700;
	font-size: 1.5rem;
}

.logo-icon {
	font-size: 2rem;
	margin-right: 0.5rem;
}

.logo-text {
	font-family: 'Playfair Display', serif;
}

.main-navigation {
	display: flex;
	gap: 2rem;
}

.nav-link {
	text-decoration: none;
	color: #333;
	font-weight: 500;
	transition: color 0.3s ease;
	position: relative;
}

.nav-link:hover {
	color: #2d5a27;
}

.nav-link::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: #2d5a27;
	transition: width 0.3s ease;
}

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

/* Mobile Menu */
.mobile-menu-toggle {
	display: none;
	flex-direction: column;
	cursor: pointer;
	padding: 0.5rem;
}

.hamburger-line {
	width: 25px;
	height: 3px;
	background: #2d5a27;
	margin: 3px 0;
	transition: 0.3s;
}

/* Hero Section */
.hero-section {
	padding: 120px 0 80px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	position: relative;
	overflow: hidden;
}

.hero-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
	opacity: 0.3;
}

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

.hero-title {
	font-size: 3.5rem;
	margin-bottom: 1.5rem;
	line-height: 1.1;
}

.hero-subtitle {
	font-size: 1.2rem;
	margin-bottom: 2rem;
	opacity: 0.9;
	line-height: 1.6;
}

.hero-actions {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
	padding: 1rem 2rem;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	display: inline-block;
	text-align: center;
	border: 2px solid transparent;
}

.btn-primary {
	background: #2d5a27;
	color: white;
	border-color: #2d5a27;
}

.btn-primary:hover {
	background: #1e3d1a;
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(45, 90, 39, 0.3);
}

.btn-secondary {
	background: transparent;
	color: white;
	border-color: white;
}

.btn-secondary:hover {
	background: white;
	color: #2d5a27;
	transform: translateY(-2px);
}

.hero-image {
	position: relative;
}

.hero-img {
	width: 100%;
	height: 400px;
	object-fit: cover;
	border-radius: 20px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Benefits Section */
.benefits-section {
	padding: 80px 0;
	background: white;
}

.benefits-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.section-header {
	text-align: center;
	margin-bottom: 4rem;
}

.section-title {
	font-size: 2.5rem;
	color: #2d5a27;
	margin-bottom: 1rem;
}

.section-subtitle {
	font-size: 1.1rem;
	color: #666;
	max-width: 600px;
	margin: 0 auto;
}

.benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
}

.benefit-card {
	background: white;
	padding: 2rem;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border: 1px solid #f0f0f0;
}

.benefit-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
	font-size: 3rem;
	margin-bottom: 1rem;
}

.benefit-title {
	font-size: 1.3rem;
	color: #2d5a27;
	margin-bottom: 1rem;
}

.benefit-description {
	color: #666;
	line-height: 1.6;
}

/* Herbs Showcase */
.herbs-showcase {
	padding: 80px 0;
	background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.showcase-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.showcase-title {
	font-size: 2.5rem;
	color: #2d5a27;
	text-align: center;
	margin-bottom: 3rem;
}

.herbs-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
	margin-bottom: 3rem;
}

.herb-item {
	background: white;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

.herb-item:hover {
	transform: translateY(-5px);
}

.herb-image {
	height: 200px;
	overflow: hidden;
}

.herb-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.herb-item:hover .herb-img {
	transform: scale(1.05);
}

.herb-info {
	padding: 1.5rem;
}

.herb-name {
	font-size: 1.3rem;
	color: #2d5a27;
	margin-bottom: 0.5rem;
}

.herb-description {
	color: #666;
	line-height: 1.6;
}

.showcase-cta {
	text-align: center;
}

/* Testimonials Section */
.testimonials-section {
	padding: 80px 0;
	background: white;
}

.testimonials-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.testimonial-card {
	background: #f8f9fa;
	padding: 2rem;
	border-radius: 15px;
	border-left: 4px solid #2d5a27;
	transition: transform 0.3s ease;
}

.testimonial-card:hover {
	transform: translateY(-5px);
}

.testimonial-text {
	font-style: italic;
	margin-bottom: 1.5rem;
	color: #555;
	line-height: 1.6;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.author-avatar {
	width: 50px;
	height: 50px;
	background: #2d5a27;
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 1.2rem;
}

.author-name {
	font-weight: 600;
	color: #2d5a27;
	margin-bottom: 0.25rem;
}

.author-location {
	color: #666;
	font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
	padding: 80px 0;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
}

.contact-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.contact-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: start;
}

.contact-title {
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

.contact-subtitle {
	font-size: 1.1rem;
	margin-bottom: 2rem;
	opacity: 0.9;
}

.contact-details {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.contact-item {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.contact-icon {
	font-size: 1.5rem;
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.contact-text h4 {
	margin-bottom: 0.25rem;
	font-size: 1.1rem;
}

.contact-text p {
	opacity: 0.9;
}

/* Contact Form */
.contact-form-wrapper {
	background: white;
	padding: 2rem;
	border-radius: 15px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.form-title {
	color: #2d5a27;
	margin-bottom: 1.5rem;
	text-align: center;
}

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

.form-label {
	display: block;
	margin-bottom: 0.5rem;
	color: #333;
	font-weight: 500;
}

.form-input,
.form-textarea {
	width: 100%;
	padding: 1rem;
	border: 2px solid #e0e0e0;
	border-radius: 8px;
	font-size: 1rem;
	transition: border-color 0.3s ease;
	font-family: inherit;
}

.form-input:focus,
.form-textarea:focus {
	outline: none;
	border-color: #2d5a27;
}

.form-textarea {
	height: 120px;
	resize: vertical;
}

.form-submit {
	width: 100%;
	margin-top: 1rem;
}

/* Footer */
.main-footer {
	background: #1a1a1a;
	color: white;
	padding: 3rem 0 1rem;
}

.footer-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-bottom: 2rem;
}

.footer-title {
	color: #2d5a27;
	margin-bottom: 1rem;
	font-size: 1.5rem;
}

.footer-subtitle {
	color: #2d5a27;
	margin-bottom: 1rem;
	font-size: 1.1rem;
}

.footer-description {
	color: #ccc;
	margin-bottom: 1rem;
	line-height: 1.6;
}

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

.social-link {
	display: inline-block;
	width: 40px;
	height: 40px;
	background: #2d5a27;
	color: white;
	text-decoration: none;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.3s ease;
}

.social-link:hover {
	background: #1e3d1a;
}

.footer-nav {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.footer-link {
	color: #ccc;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-link:hover {
	color: #2d5a27;
}

.footer-contact-item {
	color: #ccc;
	margin-bottom: 0.5rem;
}

.footer-bottom {
	border-top: 1px solid #333;
	padding-top: 1rem;
	text-align: center;
}

.footer-copyright {
	color: #999;
	font-size: 0.9rem;
}

/* Cookie Notification */
.cookie-notification {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: #2d5a27;
	color: white;
	padding: 1rem 2rem;
	z-index: 1000;
	transform: translateY(100%);
	transition: transform 0.3s ease;
}

.cookie-notification.show {
	transform: translateY(0);
}

.cookie-content {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.cookie-content p {
	margin: 0;
	flex: 1;
}

.cookie-content a {
	color: #90c695;
	text-decoration: underline;
}

.cookie-accept {
	background: white;
	color: #2d5a27;
	border: none;
	padding: 0.5rem 1rem;
	border-radius: 5px;
	cursor: pointer;
	font-weight: 600;
	transition: background 0.3s ease;
}

.cookie-accept:hover {
	background: #f0f0f0;
}

/* Menu Overlay */
.menu-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index: 999;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.menu-overlay.active {
	opacity: 1;
	visibility: visible;
}

/* Responsive Design */
@media (max-width: 768px) {
	.mobile-menu-toggle {
		display: flex;
	}

	.main-navigation {
		position: fixed;
		top: 70px;
		left: 0;
		right: 0;
		background: white;
		flex-direction: column;
		padding: 2rem;
		box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
		transform: translateY(-100%);
		transition: transform 0.3s ease;
	}

	.main-navigation.active {
		transform: translateY(0);
	}

	.hero-container {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 2rem;
	}

	.hero-title {
		font-size: 2.5rem;
	}

	.contact-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.footer-content {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.cookie-content {
		flex-direction: column;
		text-align: center;
	}
}

@media (max-width: 480px) {
	.header-container {
		padding: 0 1rem;
	}

	.hero-container,
	.benefits-container,
	.showcase-container,
	.testimonials-container,
	.contact-container {
		padding: 0 1rem;
	}

	.hero-title {
		font-size: 2rem;
	}

	.section-title {
		font-size: 2rem;
	}

	.benefits-grid {
		grid-template-columns: 1fr;
	}

	.herbs-list {
		grid-template-columns: 1fr;
	}

	.testimonials-grid {
		grid-template-columns: 1fr;
	}
}

/* Smooth scrolling */
html {
	scroll-behavior: smooth;
}

/* No scroll when menu is open */
.no-scroll {
	overflow: hidden;
}

/* Animation for cards */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

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

.benefit-card,
.herb-item,
.testimonial-card {
	animation: fadeInUp 0.6s ease-out;
}

/* Hover effects */
.benefit-card:hover .benefit-icon {
	transform: scale(1.1);
	transition: transform 0.3s ease;
}

/* Focus styles for accessibility */
.btn-primary:focus,
.btn-secondary:focus,
.form-input:focus,
.form-textarea:focus {
	outline: 2px solid #2d5a27;
	outline-offset: 2px;
}

/* Loading states */
.btn-primary:active {
	transform: translateY(0);
}

/* Contact Page Styles */
.contact-page-section {
	padding: 120px 0 80px;
	background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
	min-height: 100vh;
}

.contact-page-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.page-header {
	text-align: center;
	margin-bottom: 4rem;
}

.page-title {
	font-size: 3rem;
	color: #2d5a27;
	margin-bottom: 1rem;
}

.page-subtitle {
	font-size: 1.2rem;
	color: #666;
	max-width: 600px;
	margin: 0 auto;
}

.contact-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	margin-bottom: 4rem;
}

.contact-info-section {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.contact-card {
	background: white;
	padding: 2rem;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	display: flex;
	align-items: center;
	gap: 1.5rem;
	transition: transform 0.3s ease;
}

.contact-card:hover {
	transform: translateY(-5px);
}

.contact-card .contact-icon {
	font-size: 2rem;
	width: 60px;
	height: 60px;
	background: #2d5a27;
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.contact-details h3 {
	color: #2d5a27;
	margin-bottom: 0.5rem;
	font-size: 1.2rem;
}

.contact-details p {
	margin-bottom: 0.25rem;
	color: #333;
}

.contact-details a {
	color: #2d5a27;
	text-decoration: none;
	font-weight: 500;
}

.contact-details a:hover {
	text-decoration: underline;
}

.contact-details small {
	color: #666;
	font-size: 0.9rem;
}

.map-section {
	background: white;
	padding: 2rem;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-title {
	color: #2d5a27;
	margin-bottom: 1.5rem;
	text-align: center;
}

.map-container {
	border-radius: 15px;
	overflow: hidden;
}

.contact-form-section {
	background: white;
	padding: 3rem;
	border-radius: 20px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.form-container {
	max-width: 800px;
	margin: 0 auto;
}

.form-title {
	color: #2d5a27;
	text-align: center;
	margin-bottom: 2rem;
	font-size: 2rem;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
	margin-bottom: 1.5rem;
}

/* Legal Pages Styles */
.legal-page-section {
	padding: 120px 0 80px;
	background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
	min-height: 100vh;
}

.legal-page-container {
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 2rem;
}

.legal-content {
	background: white;
	padding: 3rem;
	border-radius: 20px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.legal-section {
	margin-bottom: 3rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid #f0f0f0;
}

.legal-section:last-child {
	border-bottom: none;
	margin-bottom: 0;
}

.legal-section-title {
	color: #2d5a27;
	font-size: 1.5rem;
	margin-bottom: 1rem;
	font-family: 'Playfair Display', serif;
}

.legal-list {
	margin: 1rem 0;
	padding-left: 1.5rem;
}

.legal-list li {
	margin-bottom: 0.5rem;
	line-height: 1.6;
	color: #555;
}

.legal-list strong {
	color: #2d5a27;
}

.contact-info {
	background: #f8f9fa;
	padding: 1.5rem;
	border-radius: 10px;
	margin-top: 1rem;
}

.contact-info p {
	margin-bottom: 0.5rem;
	color: #333;
}

/* Active navigation link */
.nav-link.active {
	color: #2d5a27;
	font-weight: 600;
}

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

/* Responsive Design for new pages */
@media (max-width: 768px) {
	.contact-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.form-row {
		grid-template-columns: 1fr;
	}

	.contact-card {
		flex-direction: column;
		text-align: center;
	}

	.legal-content {
		padding: 2rem 1rem;
	}

	.page-title {
		font-size: 2.5rem;
	}
}

@media (max-width: 480px) {

	.contact-page-container,
	.legal-page-container {
		padding: 0 1rem;
	}

	.contact-form-section {
		padding: 2rem 1rem;
	}

	.page-title {
		font-size: 2rem;
	}

	.contact-card {
		padding: 1.5rem;
	}
}

/* Print styles */
@media print {

	.main-header,
	.main-footer,
	.cookie-notification {
		display: none;
	}

	.hero-section {
		background: white;
		color: black;
	}

	.contact-section {
		background: white;
		color: black;
	}

	.contact-page-section,
	.legal-page-section {
		background: white;
	}
}

/* =========================
   New MEN'S HEALTH Landing
   ========================= */

.vital-men-theme {
	background: radial-gradient(1200px 600px at 20% 10%, #eaf6ff 0%, rgba(234,246,255,0) 60%), linear-gradient(180deg, #f7fbff 0%, #eef5ff 100%);
	min-height: 100vh;
}

.container-xl {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

/* Header */
.site-header-men {
	position: sticky;
	top: 0;
	background: rgba(255,255,255,0.9);
	backdrop-filter: blur(8px);
	box-shadow: 0 4px 20px rgba(0,0,0,0.06);
	z-index: 1000;
}

.site-header-men .container-xl {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	height: 74px;
}

.brand-mark {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: #0e2a47;
	font-weight: 800;
	font-size: 1.25rem;
}

.brand-mark .brand-icon {
	font-size: 1.5rem;
}

.nav-menu-men {
	display: flex;
	justify-content: center;
	gap: 2rem;
}

.nav-item-men {
	text-decoration: none;
	color: #264766;
	font-weight: 600;
	transition: color .2s ease;
}

.nav-item-men:hover,
.nav-item-men.is-active {
	color: #0e72ff;
}

.nav-toggle-men {
	display: none;
	width: 44px;
	height: 40px;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.nav-toggle-men span {
	display: block;
	width: 24px;
	height: 2px;
	background: #0e2a47;
	margin: 5px auto;
	border-radius: 2px;
}

/* Hero */
.hero-men {
	padding: 120px 0 60px;
}

.hero-grid-men {
	display: grid;
	grid-template-columns: 1.1fr .9fr;
	gap: 3rem;
	align-items: center;
}

.hero-title-men {
	font-family: 'Playfair Display', serif;
	font-size: 3rem;
	line-height: 1.1;
	color: #0e2a47;
	margin-bottom: 1rem;
}

.hero-lead-men {
	font-size: 1.125rem;
	color: #3a5875;
	margin-bottom: 1.5rem;
}

.hero-actions-men {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.btn-men {
	display: inline-block;
	padding: 0.875rem 1.5rem;
	border-radius: 12px;
	text-decoration: none;
	font-weight: 700;
	border: 2px solid transparent;
	transition: transform .15s ease, box-shadow .15s ease, background .2s ease, color .2s ease;
}

.btn-men.primary {
	background: #0e72ff;
	border-color: #0e72ff;
	color: #fff;
	box-shadow: 0 10px 24px rgba(14,114,255,0.24);
}

.btn-men.primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 28px rgba(14,114,255,0.28);
}

.btn-men.ghost {
	background: transparent;
	color: #0e72ff;
	border-color: #0e72ff;
}

.btn-men.lg {
	padding: 1rem 1.75rem;
	font-size: 1.05rem;
	border-radius: 14px;
}

.hero-img-men {
	width: 100%;
	height: 420px;
	object-fit: cover;
	border-radius: 18px;
	box-shadow: 0 24px 46px rgba(0,0,0,0.18);
}

/* Sections */
.section-men {
	padding: 72px 0;
	background: transparent;
}

.section-men.alt {
	background: linear-gradient(180deg, #f7fbff 0%, #eef5ff 100%);
}

.section-head-men {
	text-align: center;
	margin-bottom: 2.5rem;
}

.section-title-men {
	font-family: 'Playfair Display', serif;
	font-size: 2.25rem;
	color: #0e2a47;
	margin-bottom: .5rem;
}

.section-note-men {
	color: #456b8d;
	max-width: 680px;
	margin: 0 auto;
}

/* Benefits */
.benefit-cards-men {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 1.25rem;
}

.benefit-men {
	background: #fff;
	border: 1px solid #e6eef7;
	border-radius: 16px;
	padding: 1.5rem;
	box-shadow: 0 12px 32px rgba(14,42,71,0.06);
	transition: transform .2s ease, box-shadow .2s ease;
}

.benefit-men:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 40px rgba(14,42,71,0.10);
}

.benefit-icon-men {
	font-size: 1.75rem;
}

.benefit-title-men {
	color: #0e2a47;
	margin: .5rem 0;
	font-size: 1.25rem;
}

.benefit-text-men {
	color: #3a5875;
}

/* Products */
.product-grid-men {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 1.25rem;
}

.product-card-men {
	background: #fff;
	border: 1px solid #e6eef7;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 12px 32px rgba(14,42,71,0.06);
	transition: transform .2s ease, box-shadow .2s ease;
}

.product-card-men:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 40px rgba(14,42,71,0.10);
}

.product-img-men {
	width: 100%;
	height: 180px;
	object-fit: cover;
}

.product-name-men {
	font-size: 1.125rem;
	color: #0e2a47;
	margin: 1rem 1rem 0.25rem;
}

.product-copy-men {
	color: #3a5875;
	margin: 0 1rem 1.25rem;
}

.cta-inline-men {
	text-align: center;
	margin-top: 1.25rem;
}

/* Steps */
.steps-men {
	max-width: 760px;
	margin: 0 auto;
	list-style: none;
	counter-reset: step;
}

.step-men {
	position: relative;
	background: #fff;
	border: 1px solid #e6eef7;
	border-radius: 14px;
	padding: 1rem 1.25rem 1rem 3.25rem;
	margin-bottom: 0.75rem;
	box-shadow: 0 10px 26px rgba(14,42,71,0.06);
}

.step-men::before {
	counter-increment: step;
	content: counter(step);
	position: absolute;
	left: 1rem;
	top: 1rem;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #0e72ff;
	color: #fff;
	font-weight: 800;
	font-size: .9rem;
}

/* Quotes */
.quotes-men {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 1rem;
}

.quote-men {
	background: #fff;
	border-left: 4px solid #0e72ff;
	border-radius: 8px;
	padding: 1rem 1.25rem;
	color: #2a4561;
	box-shadow: 0 10px 24px rgba(14,42,71,0.06);
}

.quote-men blockquote {
	margin-bottom: .5rem;
}

.quote-men figcaption {
	color: #5a7b99;
	font-size: .95rem;
}

/* CTA */
.cta-men {
	padding: 80px 0;
	background: linear-gradient(180deg, rgba(14,114,255,0.06) 0%, rgba(14,114,255,0.02) 100%);
}

.cta-inner-men {
	display: grid;
	grid-template-columns: 1.2fr .8fr;
	gap: 2rem;
	align-items: center;
}

.cta-copy-men h2 {
	font-family: 'Playfair Display', serif;
	font-size: 2rem;
	color: #0e2a47;
	margin-bottom: .5rem;
}

.cta-copy-men p {
	color: #3a5875;
	margin-bottom: 1rem;
}

.contact-list-men {
	list-style: none;
	color: #2a4561;
}

.contact-list-men li {
	margin-bottom: .25rem;
}

/* Footer */
.site-footer-men {
	background: #0e2a47;
	color: #cfe1f7;
	padding-top: 32px;
}

.footer-grid-men {
	display: grid;
	grid-template-columns: 1.2fr .8fr .8fr;
	gap: 2rem;
	padding: 0 0 24px 0;
}

.footer-brand-men .brand-mark.alt {
	color: #fff;
}

.footer-note-men {
	margin-top: .5rem;
	color: #9fc1e6;
}

.footer-links-men a {
	display: block;
	color: #cfe1f7;
	text-decoration: none;
	margin-bottom: .5rem;
}

.footer-links-men a:hover {
	color: #fff;
}

.footer-contact-men p {
	margin-bottom: .25rem;
}

.footer-bottom-men {
	border-top: 1px solid rgba(255,255,255,0.15);
	padding: 10px 0;
}

/* Overlay */
#menuOverlayMen {
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,0.45);
	z-index: 999;
	opacity: 0;
	visibility: hidden;
	transition: all .2s ease;
}

#menuOverlayMen.active {
	opacity: 1;
	visibility: visible;
}

/* Responsive */
@media (max-width: 960px) {
	.hero-grid-men,
	.cta-inner-men {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.nav-toggle-men {
		display: inline-block;
	}
	.nav-menu-men {
		position: fixed;
		top: 74px;
		left: 0;
		right: 0;
		background: #fff;
		padding: 1rem 2rem 2rem;
		flex-direction: column;
		gap: 1rem;
		box-shadow: 0 12px 28px rgba(0,0,0,0.12);
		transform: translateY(-120%);
		transition: transform .2s ease;
		z-index: 1000;
	}
	.nav-menu-men.active {
		transform: translateY(0);
	}
	.footer-grid-men {
		grid-template-columns: 1fr;
		text-align: left;
	}
	.hero-title-men {
		font-size: 2.25rem;
	}
}

/* =========================
   New ZEN Landing styles
   ========================= */

.wellness-theme {
	background: radial-gradient(1200px 600px at 15% 0%, #ecfdf5 0%, rgba(236,253,245,0) 55%), linear-gradient(180deg, #f6fffb 0%, #e8fff6 100%);
	min-height: 100vh;
}

.wrap-zen {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

/* Header */
.header-zen {
	position: sticky;
	top: 0;
	background: rgba(255,255,255,0.9);
	backdrop-filter: blur(8px);
	box-shadow: 0 4px 20px rgba(0,0,0,0.06);
	z-index: 1000;
}

.header-zen .wrap-zen {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	height: 74px;
}

.brand-zen {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: #0f2f2e;
	font-weight: 800;
	font-size: 1.25rem;
}

.brand-zen .brand-ico {
	font-size: 1.4rem;
}

.nav-zen {
	display: flex;
	justify-content: center;
	gap: 2rem;
}

.nav-zen-item {
	text-decoration: none;
	color: #1b4d4f;
	font-weight: 600;
	transition: color .2s ease;
}

.nav-zen-item:hover,
.nav-zen-item.is-active {
	color: #0e9f6e;
}

.burger-zen {
	display: none;
	width: 44px;
	height: 40px;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.burger-zen span {
	display: block;
	width: 24px;
	height: 2px;
	background: #0f2f2e;
	margin: 5px auto;
	border-radius: 2px;
}

/* Hero */
.hero-zen {
	padding: 120px 0 64px;
}

.grid-hero-zen {
	display: grid;
	grid-template-columns: 1.1fr .9fr;
	gap: 3rem;
	align-items: center;
}

.hero-title-zen {
	font-family: 'Playfair Display', serif;
	font-size: 2.75rem;
	line-height: 1.1;
	color: #0f2f2e;
	margin-bottom: 0.75rem;
}

.tagline-zen {
	font-size: 1.1rem;
	color: #2f6e6a;
	margin-bottom: 1.25rem;
}

.hero-actions-zen {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.btn-zen {
	display: inline-block;
	padding: 0.875rem 1.5rem;
	border-radius: 12px;
	text-decoration: none;
	font-weight: 700;
	border: 2px solid transparent;
	transition: transform .15s ease, box-shadow .15s ease, background .2s ease, color .2s ease;
}

.btn-zen.primary {
	background: #0e9f6e;
	border-color: #0e9f6e;
	color: #fff;
	box-shadow: 0 10px 24px rgba(14,159,110,0.24);
}

.btn-zen.primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 28px rgba(14,159,110,0.28);
}

.btn-zen.ghost {
	background: transparent;
	color: #0e9f6e;
	border-color: #0e9f6e;
}

.btn-zen.lg {
	padding: 1rem 1.75rem;
	font-size: 1.05rem;
	border-radius: 14px;
}

.hero-img-zen {
	width: 100%;
	height: 420px;
	object-fit: cover;
	border-radius: 18px;
	box-shadow: 0 24px 46px rgba(0,0,0,0.18);
}

.caption-zen {
	color: #3d8f81;
	font-size: .9rem;
	margin-top: .5rem;
}

/* Sections */
.section-zen {
	padding: 72px 0;
	background: transparent;
}

.section-zen.alt {
	background: linear-gradient(180deg, #f7fbff 0%, #eef5ff 100%);
}

.section-head-zen {
	text-align: center;
	margin-bottom: 2.25rem;
}

.section-title-zen {
	font-family: 'Playfair Display', serif;
	font-size: 2rem;
	color: #0f2f2e;
	margin-bottom: .5rem;
}

.section-note-zen {
	color: #2f8a7a;
	max-width: 680px;
	margin: 0 auto;
}

/* Steps */
.steps-zen {
	max-width: 760px;
	margin: 0 auto;
	list-style: none;
	counter-reset: step;
}

.step-zen {
	position: relative;
	background: #fff;
	border: 1px solid #d9efe9;
	border-radius: 14px;
	padding: 1rem 1.25rem 1rem 3.25rem;
	margin-bottom: 0.75rem;
	box-shadow: 0 10px 26px rgba(14,42,71,0.06);
}

.step-zen::before {
	counter-increment: step;
	content: counter(step);
	position: absolute;
	left: 1rem;
	top: 1rem;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #0e9f6e;
	color: #fff;
	font-weight: 800;
	font-size: .9rem;
}

/* Cards */
.cards-zen {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 1.25rem;
}

.card-zen {
	background: #fff;
	border: 1px solid #d9efe9;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 12px 32px rgba(14,42,71,0.06);
	transition: transform .2s ease, box-shadow .2s ease;
}

.card-zen:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 40px rgba(14,42,71,0.10);
}

.card-img-zen {
	width: 100%;
	height: 180px;
	object-fit: cover;
}

.card-title-zen {
	font-size: 1.125rem;
	color: #0f2f2e;
	margin: 1rem 1rem 0.25rem;
}

.card-text-zen {
	color: #2f6e6a;
	margin: 0 1rem 1.25rem;
}

.cta-inline-zen {
	text-align: center;
	margin-top: 1.25rem;
}

/* CTA */
.cta-zen {
	padding: 80px 0;
	background: linear-gradient(180deg, rgba(14,159,110,0.06) 0%, rgba(14,159,110,0.02) 100%);
}

.cta-inner-zen {
	display: grid;
	grid-template-columns: 1.2fr .8fr;
	gap: 2rem;
	align-items: center;
}

.cta-copy-zen h2 {
	font-family: 'Playfair Display', serif;
	font-size: 2rem;
	color: #0f2f2e;
	margin-bottom: .5rem;
}

.cta-copy-zen p {
	color: #2f6e6a;
	margin-bottom: 1rem;
}

.contact-zen-list {
	list-style: none;
	color: #215a57;
}

.contact-zen-list li {
	margin-bottom: .25rem;
}

/* Footer */
.footer-zen {
	background: #0f2f2e;
	color: #d7f5ee;
	padding-top: 32px;
}

.footer-zen-grid {
	display: grid;
	grid-template-columns: 1.2fr .8fr .8fr;
	gap: 2rem;
	padding: 0 0 24px 0;
}

.footer-note-zen {
	margin-top: .5rem;
	color: #a7eed4;
}

.f-links-zen a {
	display: block;
	color: #d7f5ee;
	text-decoration: none;
	margin-bottom: .5rem;
}

.f-links-zen a:hover {
	color: #fff;
}

.f-contact-zen p {
	margin-bottom: .25rem;
}

.footer-zen-bottom {
	border-top: 1px solid rgba(255,255,255,0.15);
	padding: 10px 0;
}

/* Overlay for Zen */
#menuOverlayZen {
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,0.45);
	z-index: 999;
	opacity: 0;
	visibility: hidden;
	transition: all .2s ease;
}

#menuOverlayZen.active {
	opacity: 1;
	visibility: visible;
}

/* Responsive */
@media (max-width: 960px) {
	.grid-hero-zen,
	.cta-inner-zen {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.burger-zen {
		display: inline-block;
	}
	.nav-zen {
		position: fixed;
		top: 74px;
		left: 0;
		right: 0;
		background: #fff;
		padding: 1rem 2rem 2rem;
		flex-direction: column;
		gap: 1rem;
		box-shadow: 0 12px 28px rgba(0,0,0,0.12);
		transform: translateY(-120%);
		transition: transform .2s ease;
		z-index: 1000;
	}
	.nav-zen.active {
		transform: translateY(0);
	}
	.footer-zen-grid {
		grid-template-columns: 1fr;
		text-align: left;
	}
	.hero-title-zen {
		font-size: 2.1rem;
	}
}

/* =========================
   New CIRCULATION Landing
   ========================= */

.circu-theme {
	background: radial-gradient(1200px 600px at 12% 0%, #eef6ff 0%, rgba(238,246,255,0) 55%), linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
	min-height: 100vh;
}

.circu-wrap {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

/* Header */
.circu-header {
	position: sticky;
	top: 0;
	background: rgba(255,255,255,0.9);
	backdrop-filter: blur(8px);
	box-shadow: 0 4px 20px rgba(0,0,0,0.06);
	z-index: 1000;
}
.circu-header .circu-wrap {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	height: 74px;
}
.circu-brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: #0f304f;
	font-weight: 800;
	font-size: 1.25rem;
}
.circu-mark { font-size: 1.3rem; }
.circu-nav {
	display: flex;
	justify-content: center;
	gap: 2rem;
}
.circu-nav-item {
	text-decoration: none;
	color: #254b6d;
	font-weight: 600;
	transition: color .2s ease;
}
.circu-nav-item:hover,
.circu-nav-item.is-active { color: #0e72ff; }
.circu-burger {
	display: none;
	width: 44px;
	height: 40px;
	border: 0;
	background: transparent;
	cursor: pointer;
}
.circu-burger span {
	display: block;
	width: 24px;
	height: 2px;
	background: #0f304f;
	margin: 5px auto;
	border-radius: 2px;
}

/* Hero */
.circu-hero { padding: 120px 0 64px; }
.circu-hero-grid {
	display: grid;
	grid-template-columns: 1.1fr .9fr;
	gap: 3rem;
	align-items: center;
}
.circu-hero-title {
	font-family: 'Playfair Display', serif;
	font-size: 2.6rem;
	line-height: 1.1;
	color: #0f304f;
	margin-bottom: .75rem;
}
.circu-hero-lead {
	font-size: 1.1rem;
	color: #3b5b7a;
	margin-bottom: 1.25rem;
}
.circu-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}
.circu-btn {
	display: inline-block;
	padding: 0.875rem 1.5rem;
	border-radius: 12px;
	text-decoration: none;
	font-weight: 700;
	border: 2px solid transparent;
	transition: transform .15s ease, box-shadow .15s ease, background .2s ease, color .2s ease;
}
.circu-btn.primary {
	background: #0e72ff;
	border-color: #0e72ff;
	color: #fff;
	box-shadow: 0 10px 24px rgba(14,114,255,0.24);
}
.circu-btn.primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 28px rgba(14,114,255,0.28);
}
.circu-btn.ghost {
	background: transparent;
	color: #0e72ff;
	border-color: #0e72ff;
}
.circu-btn.lg {
	padding: 1rem 1.75rem;
	font-size: 1.05rem;
	border-radius: 14px;
}
.circu-hero-img {
	width: 100%;
	height: 420px;
	object-fit: cover;
	border-radius: 18px;
	box-shadow: 0 24px 46px rgba(0,0,0,0.18);
}
.circu-caption { color: #5a7b99; font-size: .9rem; margin-top: .5rem; }

/* Sections */
.circu-section { padding: 72px 0; background: transparent; }
.circu-section.alt { background: linear-gradient(180deg, #f7fbff 0%, #eef5ff 100%); }
.circu-section-head { text-align: center; margin-bottom: 2.25rem; }
.circu-section-title {
	font-family: 'Playfair Display', serif;
	font-size: 2rem;
	color: #0f304f;
	margin-bottom: .5rem;
}
.circu-section-note { color: #456b8d; max-width: 680px; margin: 0 auto; }

/* Steps */
.circu-steps {
	max-width: 760px;
	margin: 0 auto;
	list-style: none;
	counter-reset: cstep;
}
.circu-step {
	position: relative;
	background: #fff;
	border: 1px solid #e6eef7;
	border-radius: 14px;
	padding: 1rem 1.25rem 1rem 3.25rem;
	margin-bottom: 0.75rem;
	box-shadow: 0 10px 26px rgba(14,42,71,0.06);
}
.circu-step::before {
	counter-increment: cstep;
	content: counter(cstep);
	position: absolute;
	left: 1rem;
	top: 1rem;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #0e72ff;
	color: #fff;
	font-weight: 800;
	font-size: .9rem;
}

/* Cards */
.circu-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 1.25rem;
}
.circu-card {
	background: #fff;
	border: 1px solid #e6eef7;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 12px 32px rgba(14,42,71,0.06);
	transition: transform .2s ease, box-shadow .2s ease;
}
.circu-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(14,42,71,0.10); }
.circu-card-img { width: 100%; height: 180px; object-fit: cover; }
.circu-card-title { font-size: 1.125rem; color: #0f304f; margin: 1rem 1rem 0.25rem; }
.circu-card-text { color: #3a5875; margin: 0 1rem 1.25rem; }
.circu-cta-inline { text-align: center; margin-top: 1.25rem; }

/* Plate grid */
.circu-grid-plate {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 1rem;
}
.circu-plate-item {
	background: #fff;
	border: 1px solid #e6eef7;
	border-radius: 12px;
	padding: 1rem 1.25rem;
	box-shadow: 0 10px 26px rgba(14,42,71,0.06);
}
.circu-plate-item h4 { color: #0f304f; margin-bottom: .25rem; }
.circu-plate-item p { color: #3a5875; }

/* FAQ */
.circu-faq { max-width: 820px; margin: 0 auto; }
.circu-faq-item {
	background: #fff;
	border-left: 4px solid #0e72ff;
	border-radius: 8px;
	padding: 1rem 1.25rem;
	color: #2a4561;
	box-shadow: 0 10px 24px rgba(14,42,71,0.06);
	margin-bottom: .75rem;
}
.circu-faq-item summary { cursor: pointer; font-weight: 600; }
.circu-faq-item p { margin-top: .5rem; color: #3a5875; }

/* CTA */
.circu-cta { padding: 80px 0; background: linear-gradient(180deg, rgba(14,114,255,0.06) 0%, rgba(14,114,255,0.02) 100%); }
.circu-cta-inner {
	display: grid;
	grid-template-columns: 1.2fr .8fr;
	gap: 2rem;
	align-items: center;
}
.circu-cta-copy h2 {
	font-family: 'Playfair Display', serif;
	font-size: 2rem;
	color: #0f304f;
	margin-bottom: .5rem;
}
.circu-cta-copy p { color: #3a5875; margin-bottom: 1rem; }
.circu-contact-list { list-style: none; color: #2a4561; }
.circu-contact-list li { margin-bottom: .25rem; }

/* Footer */
.circu-footer { background: #0f304f; color: #cfe1f7; padding-top: 32px; }
.circu-footer-grid {
	display: grid;
	grid-template-columns: 1.2fr .8fr .8fr;
	gap: 2rem;
	padding: 0 0 24px 0;
}
.circu-footer .circu-brand { color: #fff; }
.circu-footer .circu-brand .circu-name { color: #fff; }
.circu-footer-note { margin-top: .5rem; color: #9fc1e6; }
.circu-links a {
	display: block;
	color: #cfe1f7;
	text-decoration: none;
	margin-bottom: .5rem;
}
.circu-links a:hover { color: #fff; }
.circu-fcontact p { margin-bottom: .25rem; }
.circu-footer-bottom {
	border-top: 1px solid rgba(255,255,255,0.15);
	padding: 10px 0;
}

/* Overlay */
.circu-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,0.45);
	z-index: 999;
	opacity: 0;
	visibility: hidden;
	transition: all .2s ease;
}
.circu-overlay.active { opacity: 1; visibility: visible; }

/* Responsive */
@media (max-width: 960px) {
	.circu-hero-grid,
	.circu-cta-inner { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
	.circu-burger { display: inline-block; }
	.circu-nav {
		position: fixed;
		top: 74px;
		left: 0;
		right: 0;
		background: #fff;
		padding: 1rem 2rem 2rem;
		flex-direction: column;
		gap: 1rem;
		box-shadow: 0 12px 28px rgba(0,0,0,0.12);
		transform: translateY(-120%);
		transition: transform .2s ease;
		z-index: 1000;
	}
	.circu-nav.active { transform: translateY(0); }
	.circu-footer-grid { grid-template-columns: 1fr; text-align: left; }
	.circu-hero-title { font-size: 2.1rem; }
}

/* =========================
   New ENERGY 40+ Landing
   ========================= */

.energy-theme {
	background: linear-gradient(135deg, #fff5e6 0%, #ffe8cc 50%, #ffd9b3 100%);
	min-height: 100vh;
}

.container-main {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

/* Header */
.main-topbar {
	position: sticky;
	top: 0;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
	z-index: 1000;
}

.main-topbar .container-main {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	height: 80px;
}

.logo-main {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	color: #d97706;
	font-weight: 800;
	font-size: 1.4rem;
}

.logo-symbol {
	font-size: 1.8rem;
}

.logo-text {
	font-family: 'Playfair Display', serif;
}

.navigation-main {
	display: flex;
	justify-content: center;
	gap: 2.5rem;
}

.nav-link-main {
	text-decoration: none;
	color: #78350f;
	font-weight: 600;
	transition: color 0.3s ease;
	position: relative;
}

.nav-link-main:hover,
.nav-link-main.is-active {
	color: #f59e0b;
}

.nav-link-main::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: #f59e0b;
	transition: width 0.3s ease;
}

.nav-link-main:hover::after,
.nav-link-main.is-active::after {
	width: 100%;
}

.menu-toggle {
	display: none;
	width: 44px;
	height: 40px;
	border: 0;
	background: transparent;
	cursor: pointer;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
}

.menu-toggle span {
	display: block;
	width: 24px;
	height: 3px;
	background: #78350f;
	border-radius: 2px;
	transition: all 0.3s ease;
}

/* Banner Section */
.banner-section {
	padding: 140px 0 80px;
	background: linear-gradient(135deg, #fff5e6 0%, #ffe8cc 100%);
}

.banner-layout {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 4rem;
	align-items: center;
}

.banner-heading {
	font-family: 'Playfair Display', serif;
	font-size: 3.2rem;
	line-height: 1.2;
	color: #78350f;
	margin-bottom: 1.5rem;
}

.banner-subtitle {
	font-size: 1.2rem;
	color: #92400e;
	margin-bottom: 2rem;
	line-height: 1.7;
}

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

.button-primary,
.button-secondary {
	display: inline-block;
	padding: 1rem 2rem;
	border-radius: 12px;
	text-decoration: none;
	font-weight: 700;
	transition: all 0.3s ease;
	border: 2px solid transparent;
}

.button-primary {
	background: #f59e0b;
	color: #fff;
	border-color: #f59e0b;
	box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
}

.button-primary:hover {
	background: #d97706;
	border-color: #d97706;
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(245, 158, 11, 0.4);
}

.button-primary.large {
	padding: 1.2rem 2.5rem;
	font-size: 1.1rem;
}

.button-secondary {
	background: transparent;
	color: #f59e0b;
	border-color: #f59e0b;
}

.button-secondary:hover {
	background: #f59e0b;
	color: #fff;
	transform: translateY(-2px);
}

.banner-image-wrapper {
	position: relative;
}

.banner-image {
	width: 100%;
	height: 450px;
	object-fit: cover;
	border-radius: 20px;
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

/* Content Sections */
.content-section {
	padding: 80px 0;
	background: transparent;
}

.content-section.alt-bg {
	background: linear-gradient(180deg, #fff5e6 0%, #ffe8cc 100%);
}

.content-section.highlight-section {
	background: linear-gradient(135deg, #ffe8cc 0%, #ffd9b3 100%);
	color: #78350f;
}

.section-header {
	text-align: center;
	margin-bottom: 3.5rem;
}

.section-heading {
	font-family: 'Playfair Display', serif;
	font-size: 2.5rem;
	color: #78350f;
	margin-bottom: 1rem;
}

.content-section.highlight-section .section-heading {
	color: #78350f;
}

.section-description {
	font-size: 1.1rem;
	color: #92400e;
	max-width: 700px;
	margin: 0 auto;
}

.content-section.highlight-section .section-description {
	color: #92400e;
}

/* Tips Grid */
.tips-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.tip-card {
	background: #fff;
	padding: 2rem;
	border-radius: 16px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border: 1px solid #ffe8cc;
}

.tip-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.tip-icon {
	font-size: 3rem;
	margin-bottom: 1rem;
}

.tip-title {
	font-size: 1.4rem;
	color: #78350f;
	margin-bottom: 1rem;
	font-weight: 700;
}

.tip-text {
	color: #92400e;
	line-height: 1.7;
}

/* Habits List */
.habits-list {
	max-width: 900px;
	margin: 0 auto;
}

.habit-item {
	display: flex;
	gap: 2rem;
	background: #fff;
	padding: 2rem;
	border-radius: 16px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	margin-bottom: 1.5rem;
	align-items: flex-start;
}

.habit-number {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: #f59e0b;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	font-size: 1.3rem;
	flex-shrink: 0;
}

.habit-content {
	flex: 1;
}

.habit-title {
	font-size: 1.4rem;
	color: #78350f;
	margin-bottom: 0.75rem;
	font-weight: 700;
}

.habit-text {
	color: #92400e;
	line-height: 1.7;
}

/* Testimonials */
.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.testimonial-card {
	background: #fff;
	padding: 2rem;
	border-radius: 16px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	border-left: 4px solid #f59e0b;
}

.testimonial-text {
	margin-bottom: 1.5rem;
	color: #78350f;
	line-height: 1.7;
	font-style: italic;
}

.testimonial-author {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.testimonial-author strong {
	color: #d97706;
	font-size: 1.1rem;
}

.testimonial-author span {
	color: #92400e;
	font-size: 0.95rem;
}

/* Contact Section */
.contact-wrapper {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 3rem;
	align-items: center;
}

.contact-heading {
	font-family: 'Playfair Display', serif;
	font-size: 2.5rem;
	color: #78350f;
	margin-bottom: 1rem;
}

.contact-text {
	font-size: 1.1rem;
	color: #92400e;
	margin-bottom: 1.5rem;
	line-height: 1.7;
}

.contact-details {
	list-style: none;
	color: #78350f;
}

.contact-details li {
	margin-bottom: 0.75rem;
	font-size: 1.05rem;
}

/* Footer */
.main-footer {
	background: #78350f;
	color: #ffe8cc;
	padding-top: 3rem;
}

.footer-layout {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr;
	gap: 3rem;
	padding-bottom: 2rem;
}

.footer-column {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.footer-logo {
	color: #fff;
}

.footer-description {
	color: #ffe8cc;
	line-height: 1.6;
}

.footer-nav {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.footer-nav a {
	color: #ffe8cc;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-nav a:hover {
	color: #fff;
}

.footer-contact p {
	margin-bottom: 0.5rem;
	color: #ffe8cc;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	padding: 1.5rem 0;
	text-align: center;
}

.footer-bottom p {
	color: #ffe8cc;
	margin: 0;
}

/* Overlay */
#menuOverlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index: 999;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

#menuOverlay.active {
	opacity: 1;
	visibility: visible;
}

/* Responsive */
@media (max-width: 960px) {
	.banner-layout,
	.contact-wrapper {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
}

@media (max-width: 768px) {
	.menu-toggle {
		display: flex;
	}
	
	.navigation-main {
		position: fixed;
		top: 80px;
		left: 0;
		right: 0;
		background: #fff;
		padding: 2rem;
		flex-direction: column;
		gap: 1.5rem;
		box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
		transform: translateY(-120%);
		transition: transform 0.3s ease;
		z-index: 1000;
	}
	
	.navigation-main.active {
		transform: translateY(0);
	}
	
	.footer-layout {
		grid-template-columns: 1fr;
		text-align: left;
	}
	
	.banner-heading {
		font-size: 2.2rem;
	}
	
	.section-heading {
		font-size: 2rem;
	}
	
	.tips-grid,
	.testimonials-grid {
		grid-template-columns: 1fr;
	}
	
	.habit-item {
		flex-direction: column;
		gap: 1rem;
	}
}

@media (max-width: 480px) {
	.container-main {
		padding: 0 1rem;
	}
	
	.banner-section {
		padding: 120px 0 60px;
	}
	
	.banner-heading {
		font-size: 1.8rem;
	}
	
	.section-heading {
		font-size: 1.75rem;
	}
	
	.content-section {
		padding: 60px 0;
	}
}

/* =========================
   New FOOD AWARENESS Landing
   ========================= */

.food-awareness-theme {
	background: linear-gradient(135deg, #f0f9f4 0%, #e8f5e9 50%, #dcedc8 100%);
	min-height: 100vh;
}

.wrapper-new {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

/* Header */
.site-header-new {
	position: sticky;
	top: 0;
	background: rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(12px);
	box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
	z-index: 1000;
	border-bottom: 1px solid rgba(76, 175, 80, 0.1);
}

.header-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 80px;
}

.brand-link-new {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: #2e7d32;
	font-weight: 800;
	font-size: 1.3rem;
	transition: transform 0.2s ease;
}

.brand-link-new:hover {
	transform: scale(1.05);
}

.brand-emoji {
	font-size: 1.8rem;
}

.brand-name {
	font-family: 'Merriweather', serif;
}

.nav-menu-new {
	display: flex;
	gap: 2.5rem;
	align-items: center;
}

.nav-item-new {
	text-decoration: none;
	color: #388e3c;
	font-weight: 600;
	font-size: 0.95rem;
	transition: color 0.3s ease;
	position: relative;
}

.nav-item-new:hover,
.nav-item-new.active {
	color: #2e7d32;
}

.nav-item-new::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 0;
	height: 2px;
	background: #4caf50;
	transition: width 0.3s ease;
}

.nav-item-new:hover::after,
.nav-item-new.active::after {
	width: 100%;
}

.burger-btn-new {
	display: none;
	flex-direction: column;
	gap: 5px;
	width: 44px;
	height: 40px;
	border: 0;
	background: transparent;
	cursor: pointer;
	padding: 8px;
}

.burger-line {
	display: block;
	width: 24px;
	height: 3px;
	background: #2e7d32;
	border-radius: 2px;
	transition: all 0.3s ease;
}

/* Hero Section */
.hero-section-new {
	padding: 140px 0 100px;
	background: linear-gradient(135deg, #f0f9f4 0%, #e8f5e9 100%);
}

.hero-content-new {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 4rem;
	align-items: center;
}

.hero-title-new {
	font-family: 'Merriweather', serif;
	font-size: 3.5rem;
	line-height: 1.2;
	color: #1b5e20;
	margin-bottom: 1.5rem;
	font-weight: 900;
}

.hero-description-new {
	font-size: 1.2rem;
	color: #2e7d32;
	margin-bottom: 2.5rem;
	line-height: 1.8;
}

.hero-actions-new {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.btn-new {
	display: inline-block;
	padding: 1rem 2rem;
	border-radius: 12px;
	text-decoration: none;
	font-weight: 700;
	font-size: 1rem;
	transition: all 0.3s ease;
	border: 2px solid transparent;
	cursor: pointer;
}

.btn-primary-new {
	background: #4caf50;
	color: #fff;
	border-color: #4caf50;
	box-shadow: 0 8px 20px rgba(76, 175, 80, 0.3);
}

.btn-primary-new:hover {
	background: #388e3c;
	border-color: #388e3c;
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(76, 175, 80, 0.4);
}

.btn-outline-new {
	background: transparent;
	color: #4caf50;
	border-color: #4caf50;
}

.btn-outline-new:hover {
	background: #4caf50;
	color: #fff;
	transform: translateY(-2px);
}

.btn-large-new {
	padding: 1.2rem 2.5rem;
	font-size: 1.1rem;
}

.hero-img-new {
	width: 100%;
	height: 480px;
	object-fit: cover;
	border-radius: 24px;
	box-shadow: 0 24px 48px rgba(0, 0, 0, 0.15);
}

/* Features Section */
.features-section-new {
	padding: 100px 0;
	background: #fff;
}

.section-intro-new {
	text-align: center;
	margin-bottom: 4rem;
}

.section-title-new {
	font-family: 'Merriweather', serif;
	font-size: 2.75rem;
	color: #1b5e20;
	margin-bottom: 1rem;
	font-weight: 900;
}

.section-subtitle-new {
	font-size: 1.15rem;
	color: #388e3c;
	max-width: 700px;
	margin: 0 auto;
	line-height: 1.7;
}

.features-grid-new {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2rem;
}

.feature-card-new {
	background: #f9fdfa;
	padding: 2.5rem;
	border-radius: 20px;
	border: 2px solid #e8f5e9;
	transition: all 0.3s ease;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.feature-card-new:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 32px rgba(76, 175, 80, 0.15);
	border-color: #4caf50;
}

.feature-icon-wrapper {
	margin-bottom: 1.5rem;
}

.feature-icon {
	font-size: 3.5rem;
	display: inline-block;
}

.feature-title {
	font-size: 1.5rem;
	color: #1b5e20;
	margin-bottom: 1rem;
	font-weight: 700;
	font-family: 'Merriweather', serif;
}

.feature-text {
	color: #2e7d32;
	line-height: 1.8;
	font-size: 1.05rem;
}

/* Benefits Section */
.benefits-section-new {
	padding: 100px 0;
	background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
}

.benefits-layout-new {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 4rem;
	align-items: center;
}

.benefits-title-new {
	font-family: 'Merriweather', serif;
	font-size: 2.75rem;
	color: #1b5e20;
	margin-bottom: 1.5rem;
	font-weight: 900;
}

.benefits-lead-new {
	font-size: 1.2rem;
	color: #2e7d32;
	margin-bottom: 2.5rem;
	line-height: 1.8;
}

.benefits-list-new {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.benefit-item-new {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	padding: 1.5rem;
	background: #fff;
	border-radius: 16px;
	border-left: 4px solid #4caf50;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.benefit-label {
	font-size: 1.2rem;
	color: #1b5e20;
	font-weight: 700;
}

.benefit-desc {
	color: #388e3c;
	line-height: 1.6;
}

.benefits-img-new {
	width: 100%;
	height: 500px;
	object-fit: cover;
	border-radius: 24px;
	box-shadow: 0 24px 48px rgba(0, 0, 0, 0.15);
}

/* Testimonials Section */
.testimonials-section-new {
	padding: 100px 0;
	background: #fff;
}

.testimonials-grid-new {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2rem;
}

.testimonial-box-new {
	background: #f9fdfa;
	padding: 2.5rem;
	border-radius: 20px;
	border: 2px solid #e8f5e9;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}

.testimonial-box-new:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 32px rgba(76, 175, 80, 0.15);
}

.testimonial-quote-new {
	margin-bottom: 2rem;
}

.testimonial-quote-new p {
	font-size: 1.1rem;
	color: #1b5e20;
	line-height: 1.8;
	font-style: italic;
}

.testimonial-author-new {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.testimonial-author-new strong {
	color: #2e7d32;
	font-size: 1.1rem;
	font-weight: 700;
}

.testimonial-author-new span {
	color: #388e3c;
	font-size: 0.95rem;
}

/* CTA Section */
.cta-section-new {
	padding: 100px 0;
	background: linear-gradient(135deg, #4caf50 0%, #388e3c 100%);
	color: #fff;
}

.cta-box-new {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 3rem;
	align-items: center;
	background: rgba(255, 255, 255, 0.1);
	padding: 3rem;
	border-radius: 24px;
	backdrop-filter: blur(10px);
}

.cta-title-new {
	font-family: 'Merriweather', serif;
	font-size: 2.5rem;
	margin-bottom: 1rem;
	font-weight: 900;
}

.cta-text-new {
	font-size: 1.15rem;
	margin-bottom: 2rem;
	line-height: 1.8;
	opacity: 0.95;
}

.contact-info-new {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.contact-item-new {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.contact-icon-new {
	font-size: 1.5rem;
}

.contact-text-new {
	font-size: 1.05rem;
}

.cta-action-new {
	text-align: center;
}

.cta-action-new .btn-primary-new {
	background: #fff;
	color: #2e7d32;
	border-color: #fff;
}

.cta-action-new .btn-primary-new:hover {
	background: #f0f9f4;
	color: #1b5e20;
}

/* Footer */
.site-footer-new {
	background: #1b5e20;
	color: #c8e6c9;
	padding-top: 4rem;
}

.footer-grid-new {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr;
	gap: 3rem;
	padding-bottom: 3rem;
}

.footer-col-new {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.footer-brand {
	color: #fff;
}

.footer-about-new {
	color: #a5d6a7;
	line-height: 1.7;
}

.footer-heading-new {
	font-size: 1.2rem;
	color: #fff;
	margin-bottom: 1rem;
	font-weight: 700;
	font-family: 'Merriweather', serif;
}

.footer-nav-new {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.footer-link-new {
	color: #a5d6a7;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-link-new:hover {
	color: #fff;
}

.footer-contact-new {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.footer-contact-item {
	color: #a5d6a7;
	margin-bottom: 0.5rem;
}

.footer-bottom-new {
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	padding: 2rem 0;
	text-align: center;
}

.footer-copyright-new {
	color: #a5d6a7;
	margin: 0;
}

/* Overlay */
#menuOverlayNew {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index: 999;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

#menuOverlayNew.active {
	opacity: 1;
	visibility: visible;
}

/* Responsive */
@media (max-width: 960px) {
	.hero-content-new,
	.benefits-layout-new,
	.cta-box-new {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}
	
	.hero-title-new {
		font-size: 2.5rem;
	}
	
	.benefits-title-new {
		font-size: 2.25rem;
	}
}

@media (max-width: 768px) {
	.burger-btn-new {
		display: flex;
	}
	
	.nav-menu-new {
		position: fixed;
		top: 80px;
		left: 0;
		right: 0;
		background: #fff;
		padding: 2rem;
		flex-direction: column;
		gap: 1.5rem;
		box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
		transform: translateY(-120%);
		transition: transform 0.3s ease;
		z-index: 1000;
	}
	
	.nav-menu-new.active {
		transform: translateY(0);
	}
	
	.footer-grid-new {
		grid-template-columns: 1fr;
		text-align: left;
	}
	
	.section-title-new {
		font-size: 2rem;
	}
	
	.features-grid-new,
	.testimonials-grid-new {
		grid-template-columns: 1fr;
	}
	
	.hero-title-new {
		font-size: 2rem;
	}
}

@media (max-width: 480px) {
	.wrapper-new {
		padding: 0 1rem;
	}
	
	.hero-section-new {
		padding: 120px 0 60px;
	}
	
	.hero-title-new {
		font-size: 1.75rem;
	}
	
	.section-title-new {
		font-size: 1.75rem;
	}
	
	.features-section-new,
	.benefits-section-new,
	.testimonials-section-new,
	.cta-section-new {
		padding: 60px 0;
	}
	
	.feature-card-new,
	.testimonial-box-new {
		padding: 1.5rem;
	}
}