* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	background-color: #FDFAF5;
	font-family: 'Lato', sans-serif;
	color: #2A3A2C;
	line-height: 1.4;
	scroll-behavior: smooth;
}

:root {
	--forest-deep: #093b18;
	--forest-soft: #3c620f;
	--soft-cream: #fed68b;
	--terracotta: #946807;
	--terracotta-light: #d49917;
	--warm-orange: #996905;
	--warm-orange-deep: #e0ad42;
	--sand-stone: #E9E0D3;
	--pure-white: #FFFFFF;
	--shadow-elevation-low: 0 8px 20px rgba(0, 0, 0, 0.03), 0 2px 6px rgba(0, 0, 0, 0.05);
	--shadow-elevation-med: 0 20px 35px -10px rgba(0, 0, 0, 0.08), 0 6px 12px rgba(0, 0, 0, 0.04);
	--shadow-elevation-high: 0 30px 45px -16px rgba(0, 0, 0, 0.12);
	--border-radius-card: 12px;
	--border-radius-pill: 100px;
}

.container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 40px;
}

/* Typography */
h1, h2, h3, .serif-heading {
	font-family: 'Playfair Display', serif;
	font-weight: 700;
	letter-spacing: -0.02em;
}

h1 {
	font-size: 4.2rem;
	line-height: 1.15;
	color: var(--forest-deep);
	margin-bottom: 1.5rem;
}

h2 {
	font-size: 2.7rem;
	color: var(--forest-deep);
	margin-bottom: 1rem;
	position: relative;
}

.section-subhead {
	font-size: 1.2rem;
	color: #eeeeee;
	font-weight: 400;
	max-width: 580px;
	margin: 0 auto 2rem auto;
	line-height: 1.5;
}

/* Button Styles */
.btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background-color: var(--warm-orange);
	color: white;
	font-weight: 700;
	font-size: 1.05rem;
	padding: 0.9rem 2.2rem;
	border-radius: var(--border-radius-pill);
	text-decoration: none;
	transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
	box-shadow: 0 6px 16px rgba(228, 106, 43, 0.25);
	border: none;
	cursor: pointer;
	font-family: 'Inter', sans-serif;
}

.btn-primary:hover {
	background-color: var(--warm-orange-deep);
	transform: translateY(-1px);
	box-shadow: 0 14px 28px rgba(228, 106, 43, 0.3);
}

.btn-outline {
	background: transparent;
	border: 2px solid var(--terracotta);
	color: var(--terracotta);
	box-shadow: none;
}

.btn-outline:hover {
	background: var(--terracotta);
	color: white;
	border-color: var(--terracotta);
}

/* Header & Navigation */
.header {
	background: white;
	padding: 5px 0;
	box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
	position: sticky;
	top: 0;
	z-index: 100;
}

.header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}

.logo {
	font-size: 1.8rem;
	font-weight: 800;
	color: var(--forest-deep);
	font-family: 'Playfair Display', serif;
	text-decoration: none;
}

.logo span {
	color: var(--terracotta);
}

.logo img{
	width: 100px;
	height: 80px;
	object-fit: cover;
}

.nav-links {
	display: flex;
	gap: 30px;
	align-items: center;
}

.nav-links a {
	text-decoration: none;
	color: var(--forest-deep);
	font-weight: 600;
	transition: color 0.3s;
}

.nav-links a:hover {
	color: var(--terracotta);
}

.cart-icon {
	position: relative;
	cursor: pointer;
	font-size: 1.5rem;
	color: var(--forest-deep);
	transition: color 0.3s;
}

.cart-icon:hover {
	color: var(--terracotta);
}

.cart-count {
	position: absolute;
	top: -8px;
	right: -12px;
	background: var(--warm-orange);
	color: white;
	border-radius: 50%;
	width: 20px;
	height: 20px;
	font-size: 0.7rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
}

/* Cart Sidebar */
.cart-sidebar {
	position: fixed;
	top: 0;
	right: -450px;
	width: 420px;
	height: 100vh;
	background: var(--pure-white);
	box-shadow: -8px 0 30px rgba(0, 0, 0, 0.1);
	z-index: 1001;
	transition: right 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
	display: flex;
	flex-direction: column;
	font-family: 'Inter', sans-serif;
}

.cart-sidebar.open {
	right: 0;
}

.cart-header {
	padding: 28px 24px;
	border-bottom: 1px solid #EFE5D8;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: var(--soft-cream);
}

.cart-header h3 {
	font-size: 1.6rem;
	font-family: 'Playfair Display', serif;
	color: var(--forest-deep);
}

.close-cart {
	background: none;
	border: none;
	font-size: 1.8rem;
	cursor: pointer;
	color: var(--terracotta);
	transition: transform 0.2s;
}

.close-cart:hover {
	transform: scale(1.1);
}

.cart-items {
	flex: 1;
	overflow-y: auto;
	padding: 20px;
}

.cart-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 0;
	border-bottom: 1px solid #eee6dc;
}

.cart-item-info h4 {
	font-size: 1rem;
	margin-bottom: 4px;
	color: var(--forest-deep);
}

.cart-item-price {
	font-weight: 700;
	color: var(--terracotta);
}

.cart-item-actions {
	display: flex;
	gap: 8px;
	align-items: center;
}

.cart-item-actions button {
	background: #F3EBE2;
	border: none;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.2s;
}

.cart-item-actions button:hover {
	background: var(--terracotta);
	color: white;
}

.cart-footer {
	padding: 24px;
	border-top: 1px solid #EFE5D8;
	background: white;
}

.total-row {
	display: flex;
	justify-content: space-between;
	font-weight: 800;
	font-size: 1.3rem;
	margin-bottom: 20px;
	color: var(--forest-deep);
}

.checkout-btn {
	width: 100%;
	background: var(--warm-orange);
	color: white;
	border: none;
	padding: 14px;
	border-radius: 60px;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s;
}

.checkout-btn:hover {
	background: var(--warm-orange-deep);
	transform: translateY(-2px);
}

/* Hero Section */
.hero {
	padding: 80px 0;
	background: linear-gradient(rgba(140, 75, 75, 0.9), rgba(40, 75, 75, 0.9)), url('../images/banner.jpg');
	background-position: center center;
	background-repeat: no-repeat;
	position: relative;
	overflow: hidden;
	object-fit: cover;
}

.hero::before {
	content: '';
	position: absolute;
	top: -20%;
	right: -10%;
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(188, 108, 72, 0.08) 0%, rgba(188, 108, 72, 0) 70%);
	border-radius: 50%;
	pointer-events: none;
}

.hero-grid {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 60px;
	position: relative;
	z-index: 2;
}

.hero-content {
	flex: 1.2;
	min-width: 280px;
}

.hero-badge {
	display: inline-block;
	background: var(--terracotta-light);
	color: white;
	font-size: 0.8rem;
	font-weight: 600;
	padding: 0.3rem 1rem;
	border-radius: 40px;
	margin-bottom: 1.5rem;
	letter-spacing: 0.5px;
}

.hero-image {
	flex: 1;
	min-width: 280px;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: var(--shadow-elevation-high);
	transition: transform 0.4s ease;
}

.hero-image img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.45s ease;
}

.hero-image:hover img {
	transform: scale(1.03);
}

/* Trust Bar */
.trust-bar {
	background: var(--pure-white);
	border-top: 1px solid rgba(0, 0, 0, 0.04);
	border-bottom: 1px solid rgba(0, 0, 0, 0.04);
	padding: 40px 0;
}

.trust-icons {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 56px;
	align-items: center;
}

.trust-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	font-weight: 700;
	font-size: 0.9rem;
	color: var(--forest-soft);
	transition: all 0.2s;
	border: 1px solid #eaeaea;
	padding: 20px 40px;
	border-radius: 10px;
}

.trust-item i {
	font-size: 3.5rem;
	color: var(--forest-deep);
	opacity: 0.75;
	transition: transform 0.2s, opacity 0.2s;
}

.trust-item:hover i {
	transform: translateY(-4px);
	opacity: 1;
	color: var(--terracotta);
}

/* About Section */
.about-section {
	padding: 100px 0;
	background: linear-gradient(112deg, #FEFAF5 0%, #FCF6ED 100%);
}

.about-grid {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 64px;
}

.about-content {
	flex: 1.2;
}

.sourcing-badge {
	background: var(--forest-deep);
	color: #F5EADB;
	font-size: 0.7rem;
	font-weight: 600;
	padding: 0.2rem 1rem;
	border-radius: 40px;
	display: inline-block;
	margin-bottom: 1rem;
	letter-spacing: 1px;
}

.sourcing-step {
	display: flex;
	gap: 18px;
	margin-bottom: 28px;
	align-items: flex-start;
}

.step-icon {
	background: var(--terracotta-light);
	color: white;
	width: 48px;
	height: 48px;
	border-radius: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.4rem;
	flex-shrink: 0;
	box-shadow: 0 6px 12px rgba(188, 108, 72, 0.15);
}

.step-text h4 {
	font-family: 'Playfair Display', serif;
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--forest-deep);
	margin-bottom: 6px;
}

.step-text p {
	color: #4F604F;
	line-height: 1.45;
}

.about-image {
	flex: 1;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: var(--shadow-elevation-high);
}

.about-image img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.5s;
}

.about-image:hover img {
	transform: scale(1.02);
}

/* Featured Products Section */
.featured-section {
	padding: 100px 0;
	background-color: var(--pure-white);
}

.products-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 32px;
	margin-top: 40px;
}

.product-card {
	background: var(--pure-white);
	border-radius: var(--border-radius-card);
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
	box-shadow: var(--shadow-elevation-low);
	border: 1px solid #EFE5D8;
}

.product-card:hover {
	transform: translateY(0px);
	box-shadow: var(--shadow-elevation-high);
}

.product-image {
	width: 100%;
	height: 300px;
	padding: 12px;
}

.product-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.product-card:hover .product-image {
	transform: scale(1.05);
}

.product-info {
	padding: 24px;
}

.product-info h3 {
	font-size: 1.5rem;
	margin-bottom: 8px;
	color: var(--forest-deep);
}

.product-category {
	color: var(--terracotta);
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 8px;
}

.product-price {
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--terracotta);
	margin: 12px 0;
}

.add-to-cart {
	background: var(--forest-deep);
	color: white;
	border: none;
	padding: 12px 20px;
	border-radius: 40px;
	cursor: pointer;
	width: 100%;
	font-weight: 600;
	font-size: 1rem;
	transition: all 0.3s;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.add-to-cart:hover {
	background: var(--terracotta);
	transform: translateY(-2px);
}

/* Subscription Section */
.subscribe-section {
	background: linear-gradient(115deg, var(--forest-deep) 0%, #1f4035 100%);
	padding: 80px 20px;
	text-align: center;
	position: relative;
	isolation: isolate;
}

.subscribe-section::after {
	content: "🌱";
	font-size: 200px;
	opacity: 0.03;
	position: absolute;
	bottom: 0;
	right: 20px;
	pointer-events: none;
}

.subscribe-card {
	max-width: 550px;
	margin: 0 auto;
	background: rgba(255, 255, 245, 0.97);
	backdrop-filter: blur(2px);
	border-radius: 12px;
	padding: 48px 40px;
	box-shadow: var(--shadow-elevation-high);
	position: relative;
	z-index: 2;
}

.subscribe-card h2 {
	color: var(--forest-deep);
	margin-bottom: 0.75rem;
}

.subscribe-form {
	display: flex;
	gap: 15px;
	margin-top: 25px;
	flex-wrap: wrap;
}

.subscribe-form input {
	flex: 1;
	padding: 14px 20px;
	border-radius: 60px;
	border: 1px solid #E2D9CE;
	font-size: 1rem;
	font-family: 'Lato', sans-serif;
	outline: none;
	transition: all 0.2s;
}

.subscribe-form input:focus {
	border-color: var(--terracotta);
	box-shadow: 0 0 0 3px rgba(188, 108, 72, 0.2);
}

/* Toast Notifications */
.toast {
	position: fixed;
	bottom: 30px;
	right: 30px;
	background: var(--forest-deep);
	color: white;
	padding: 14px 28px;
	border-radius: 50px;
	z-index: 1100;
	animation: slideIn 0.3s ease;
	font-weight: 600;
	box-shadow: var(--shadow-elevation-med);
}

@keyframes slideIn {
	from {
		transform: translateX(100%);
		opacity: 0;
	}
	to {
		transform: translateX(0);
		opacity: 1;
	}
}

/* Footer */
footer {
	background: #262824;
	color: #D9D2C2;
	padding: 56px 0 40px;
	text-align: center;
	border-top: 1px solid rgba(255, 255, 210, 0.05);
}

.footer-links {
	display: flex;
	justify-content: center;
	gap: 40px;
	margin-bottom: 30px;
	flex-wrap: wrap;
}

.footer-links a {
	color: #D9D2C2;
	text-decoration: none;
	transition: color 0.3s;
}

.footer-links a:hover {
	color: var(--terracotta);
}

/* Responsive Design */
@media (max-width: 900px) {
	.container {
		padding: 0 24px;
	}
	h1 {
		font-size: 2.8rem;
	}
	h2 {
		font-size: 2rem;
	}
	.hero-grid, .about-grid {
		flex-direction: column;
	}
	.cart-sidebar {
		width: 100%;
		right: -100%;
	}
}

@media (max-width: 550px) {
	h1 {
		font-size: 2.2rem;
	}
	.subscribe-card {
		padding: 32px 24px;
	}
	.trust-icons {
		gap: 28px;
	}
	.header-content {
		flex-direction: column;
	}
}