:root {
	--primary-sage: #8B9D83;
	--primary-eucalyptus: #6B8E7C;
	--accent-terracotta: #C9A789;
	--accent-rose: #D4B5A6;
	--deep-forest: #3D5A4C;
	--soft-cream: #F8F6F2;
	--warm-white: #FFFCF7;
	--sage-light: #C8D3C5;
	--eucalyptus-light: #B3C9B8;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: Georgia, 'Times New Roman', Times, serif;
	color: var(--deep-forest);
	background: var(--warm-white);
	overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
	font-family: Georgia, 'Times New Roman', Times, serif;
	font-weight: 500;
	letter-spacing: 0.5px;
}

/* Organic background texture */
body::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: 
		radial-gradient(circle at 20% 50%, rgba(139, 157, 131, 0.08) 0%, transparent 50%),
		radial-gradient(circle at 80% 80%, rgba(107, 142, 124, 0.06) 0%, transparent 50%),
		radial-gradient(circle at 40% 90%, rgba(201, 167, 137, 0.04) 0%, transparent 50%);
	pointer-events: none;
	z-index: -1;
}

/* Navigation */
.navbar {
	background: rgba(248, 246, 242, 0.95);
	backdrop-filter: blur(10px);
	padding: 1.2rem 0;
	border-bottom: 1px solid rgba(139, 157, 131, 0.2);
}

.navbar-brand {
	font-family: Georgia, 'Times New Roman', Times, serif;
	font-size: 2rem;
	font-weight: 600;
	color: var(--deep-forest) !important;
	letter-spacing: 3px;
	position: relative;
	display: inline-block;
}

.navbar-brand::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 100%;
	height: 2px;
	background: linear-gradient(90deg, var(--primary-sage), var(--primary-eucalyptus));
	transform: scaleX(0);
}

.navbar-brand:hover::after {
	transform: scaleX(1);
}

.nav-link {
	color: var(--deep-forest) !important;
	font-weight: 400;
	margin: 0 0.8rem;
	position: relative;
}

.nav-link::before {
	content: '';
	position: absolute;
	bottom: -3px;
	left: 50%;
	width: 0;
	height: 2px;
	background: var(--primary-eucalyptus);
	transform: translateX(-50%);
}

.nav-link:hover::before {
	width: 80%;
}

/* Hero Section */
.hero {
	min-height: 85vh;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, var(--soft-cream) 0%, var(--sage-light) 100%);
}

.hero::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 80%;
	height: 150%;
	background: radial-gradient(circle, rgba(107, 142, 124, 0.15) 0%, transparent 70%);
}

.hero::after {
	content: '';
	position: absolute;
	bottom: -30%;
	left: -10%;
	width: 60%;
	height: 100%;
	background: radial-gradient(ellipse, rgba(139, 157, 131, 0.12) 0%, transparent 70%);
}

.hero-content {
	position: relative;
	z-index: 2;
}

.hero h1 {
	font-size: 4.5rem;
	font-weight: 400;
	color: var(--deep-forest);
	margin-bottom: 1.5rem;
	line-height: 1.2;
}

.hero p {
	font-size: 1.3rem;
	color: var(--primary-eucalyptus);
	max-width: 600px;
	line-height: 1.8;
}

/* Buttons */
.btn-primary {
	background: linear-gradient(135deg, var(--primary-eucalyptus), var(--primary-sage));
	border: none;
	padding: 0.9rem 2.5rem;
	font-weight: 600;
	border-radius: 50px;
	letter-spacing: 0.5px;
	box-shadow: 0 4px 15px rgba(107, 142, 124, 0.3);
}

.btn-primary:hover {
	box-shadow: 0 8px 25px rgba(107, 142, 124, 0.4);
	background: linear-gradient(135deg, var(--deep-forest), var(--primary-eucalyptus));
}

.btn-outline {
	background: transparent;
	border: 2px solid var(--primary-sage);
	color: var(--deep-forest);
	padding: 0.9rem 2.5rem;
	font-weight: 600;
	border-radius: 50px;
	letter-spacing: 0.5px;
}

.btn-outline:hover {
	background: var(--primary-sage);
	color: white;
	box-shadow: 0 8px 25px rgba(139, 157, 131, 0.3);
}

/* Section Styling */
.section {
	padding: 5rem 0;
	position: relative;
}

.section-title {
	font-size: 3rem;
	text-align: center;
	margin-bottom: 1rem;
	color: var(--deep-forest);
	position: relative;
	display: inline-block;
	left: 50%;
	transform: translateX(-50%);
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 3px;
	background: linear-gradient(90deg, var(--primary-sage), var(--primary-eucalyptus));
	border-radius: 3px;
}

.section-subtitle {
	text-align: center;
	color: var(--primary-eucalyptus);
	font-size: 1.2rem;
	margin-bottom: 4rem;
}

/* Product Cards */
.product-card {
	background: white;
	border-radius: 25px;
	padding: 2.5rem;
	margin-bottom: 2rem;
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(139, 157, 131, 0.15);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	height: 100%;
}

.product-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background: linear-gradient(90deg, var(--primary-sage), var(--primary-eucalyptus), var(--accent-terracotta));
	transform: scaleX(0);
	transform-origin: left;
}

.product-card:hover {
	box-shadow: 0 20px 50px rgba(107, 142, 124, 0.2);
}

.product-card:hover::before {
	transform: scaleX(1);
}

.product-card h3 {
	font-size: 1.8rem;
	margin-bottom: 1rem;
	color: var(--deep-forest);
}

.product-card p {
	color: var(--primary-eucalyptus);
	line-height: 1.8;
}

.product-card-image {
	width: 100%;
	height: 200px;
	background: var(--sage-light);
	border-radius: 15px;
	margin-bottom: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 3rem;
}

/* Feature Icons */
.feature-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, var(--sage-light), var(--eucalyptus-light));
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	font-size: 2rem;
	color: var(--deep-forest);
}

.feature-icon:hover {
	box-shadow: 0 10px 30px rgba(107, 142, 124, 0.3);
}

/* Comparison Section */
.comparison-table {
	background: white;
	border-radius: 25px;
	padding: 3rem;
	box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
	overflow: hidden;
}

.comparison-header {
	background: linear-gradient(135deg, var(--primary-sage), var(--primary-eucalyptus));
	color: white;
	padding: 1.5rem;
	border-radius: 15px 15px 0 0;
	margin: -3rem -3rem 2rem -3rem;
}

/* Category Badge */
.category-badge {
	display: inline-block;
	background: var(--sage-light);
	color: var(--deep-forest);
	padding: 0.5rem 1.2rem;
	border-radius: 20px;
	font-size: 0.9rem;
	font-weight: 600;
	margin-bottom: 1rem;
}

/* Meta Info */
.meta-info {
	color: var(--primary-eucalyptus);
	font-size: 0.95rem;
	margin-bottom: 1rem;
}

/* Newsletter Section */
.newsletter {
	background: linear-gradient(135deg, var(--primary-eucalyptus), var(--deep-forest));
	border-radius: 30px;
	padding: 4rem 3rem;
	color: white;
	position: relative;
	overflow: hidden;
}

.newsletter::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 100%;
	height: 200%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.newsletter h3 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

.newsletter-form {
	max-width: 500px;
	margin: 2rem auto 0;
	display: flex;
	gap: 1rem;
}

.newsletter-form input {
	flex: 1;
	padding: 1rem 1.5rem;
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 50px;
	background: rgba(255, 255, 255, 0.1);
	color: white;
	backdrop-filter: blur(10px);
}

.newsletter-form input::placeholder {
	color: rgba(255, 255, 255, 0.7);
}

.newsletter-form button {
	padding: 1rem 2.5rem;
	background: white;
	color: var(--deep-forest);
	border: none;
	border-radius: 50px;
	font-weight: 600;
}

.newsletter-form button:hover {
	box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

/* Footer */
footer {
	background: var(--soft-cream);
	padding: 4rem 0 2rem;
	border-top: 1px solid rgba(139, 157, 131, 0.2);
}

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

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

.footer-links a {
	color: var(--primary-eucalyptus);
	text-decoration: none;
	position: relative;
	display: inline-block;
}

.footer-links a::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 1px;
	background: var(--primary-eucalyptus);
}

.footer-links a:hover {
	color: var(--deep-forest);
}

.footer-links a:hover::after {
	width: 100%;
}

.social-links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 45px;
	height: 45px;
	background: var(--sage-light);
	border-radius: 50%;
	color: var(--deep-forest);
	margin-right: 1rem;
	text-decoration: none;
}

.social-links a:hover {
	background: var(--primary-eucalyptus);
	color: white;
}

/* Decorative Elements */
.leaf-decoration {
	position: absolute;
	opacity: 0.1;
	pointer-events: none;
}

.leaf-1 {
	top: 10%;
	left: 5%;
	font-size: 8rem;
	color: var(--primary-sage);
}

.leaf-2 {
	bottom: 20%;
	right: 10%;
	font-size: 6rem;
	color: var(--primary-eucalyptus);
}

/* Article Specific Styles */
.article-hero {
	min-height: 60vh;
	background: linear-gradient(135deg, var(--primary-eucalyptus), var(--deep-forest));
	display: flex;
	align-items: center;
	padding: 4rem 0;
	position: relative;
	overflow: hidden;
	color: white;
}

.article-hero::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 100%;
	height: 200%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.article-hero .breadcrumb {
	background: transparent;
	padding: 0;
	margin-bottom: 2rem;
}

.article-hero .breadcrumb-item a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
}

.article-hero .breadcrumb-item.active {
	color: white;
}

.article-hero .breadcrumb-item + .breadcrumb-item::before {
	color: rgba(255, 255, 255, 0.6);
}

.article-hero h1 {
	color: white;
	text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.article-hero .meta-info {
	color: rgba(255, 255, 255, 0.9);
}

.article-hero .category-badge {
	background: rgba(255, 255, 255, 0.2);
	color: white;
	border: 1px solid rgba(255, 255, 255, 0.3);
	backdrop-filter: blur(10px);
}

.article-hero .key-takeaway {
	background: rgba(255, 255, 255, 0.15);
	border-left: 5px solid white;
	backdrop-filter: blur(10px);
	color: white;
}

.article-hero .key-takeaway h4 {
	color: white;
}

.breadcrumb {
	background: transparent;
	padding: 0;
	margin-bottom: 2rem;
}

.breadcrumb-item a {
	color: var(--primary-eucalyptus);
	text-decoration: none;
}

.breadcrumb-item.active {
	color: var(--deep-forest);
}

.quick-nav {
	background: white;
	border-radius: 20px;
	padding: 2rem;
	position: sticky;
	top: 100px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.quick-nav h4 {
	font-size: 1.3rem;
	margin-bottom: 1.5rem;
	color: var(--deep-forest);
}

.quick-nav ul {
	list-style: none;
	padding: 0;
}

.quick-nav li {
	margin-bottom: 1rem;
}

.quick-nav a {
	color: var(--primary-eucalyptus);
	text-decoration: none;
	display: block;
	padding: 0.5rem 0;
	border-left: 3px solid transparent;
	padding-left: 1rem;
}

.quick-nav a:hover {
	color: var(--deep-forest);
	border-left-color: var(--primary-eucalyptus);
}

.verdict-box {
	background: white;
	border-radius: 25px;
	padding: 3rem;
	margin: 3rem 0;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
	border: 1px solid rgba(139, 157, 131, 0.15);
}

.verdict-box.winner {
	background: linear-gradient(135deg, var(--primary-eucalyptus), var(--deep-forest));
	color: white;
	border: none;
	position: relative;
	overflow: hidden;
}

.verdict-box.winner::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 100%;
	height: 200%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.verdict-box.winner h3,
.verdict-box.winner h4,
.verdict-box.winner h5,
.verdict-box.winner p,
.verdict-box.winner li {
	color: white;
	position: relative;
	z-index: 2;
}

.verdict-box.winner .rating-stars {
	color: #FFD700;
}

.verdict-box.winner .key-takeaway {
	background: rgba(255, 255, 255, 0.15);
	border-left-color: white;
	backdrop-filter: blur(10px);
}

.verdict-box.dark {
	background: linear-gradient(135deg, var(--primary-eucalyptus), var(--deep-forest));
	color: white;
	border: none;
	position: relative;
	overflow: hidden;
}

.verdict-box.dark::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 100%;
	height: 200%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.verdict-box.dark h3,
.verdict-box.dark h4,
.verdict-box.dark h5,
.verdict-box.dark p {
	color: white;
	position: relative;
	z-index: 2;
}

.verdict-box.dark .key-takeaway {
	background: rgba(255, 255, 255, 0.15);
	border-left-color: white;
	backdrop-filter: blur(10px);
}

.rating-stars {
	color: #FFD700;
	font-size: 1.5rem;
	margin: 1rem 0;
}

.pros-cons {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
	margin: 2rem 0;
	position: relative;
	z-index: 2;
}

.pros, .cons {
	background: rgba(255, 255, 255, 0.1);
	padding: 2rem;
	border-radius: 20px;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.verdict-box:not(.winner):not(.dark) .pros,
.verdict-box:not(.winner):not(.dark) .cons {
	background: var(--soft-cream);
	border: none;
}

.pros {
	border-left: 4px solid #4CAF50;
}

.cons {
	border-left: 4px solid #FF9800;
}

.pros h5, .cons h5 {
	font-size: 1.2rem;
	margin-bottom: 1rem;
}

.pros ul, .cons ul {
	list-style: none;
	padding: 0;
}

.pros li::before {
	content: '✓ ';
	color: #4CAF50;
	font-weight: bold;
	margin-right: 0.5rem;
}

.cons li::before {
	content: '✗ ';
	color: #FF9800;
	font-weight: bold;
	margin-right: 0.5rem;
}

.price-widget {
	background: rgba(255, 255, 255, 0.15);
	border-radius: 20px;
	padding: 2rem;
	text-align: center;
	margin: 2rem 0;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	position: relative;
	z-index: 2;
}

.verdict-box:not(.winner):not(.dark) .price-widget {
	background: linear-gradient(135deg, var(--sage-light), var(--eucalyptus-light));
	border: none;
}

.price-widget .price {
	font-size: 2.5rem;
	font-weight: 700;
	color: white;
	font-family: Georgia, 'Times New Roman', Times, serif;
}

.verdict-box:not(.winner):not(.dark) .price-widget .price {
	color: var(--deep-forest);
}

.price-widget small {
	color: rgba(255, 255, 255, 0.9);
}

.verdict-box:not(.winner):not(.dark) .price-widget small {
	color: var(--deep-forest);
}

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

.product-comparison-card {
	background: white;
	border-radius: 20px;
	padding: 2rem;
	text-align: center;
	border: 2px solid transparent;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.product-comparison-card:hover {
	border-color: var(--primary-eucalyptus);
	box-shadow: 0 15px 40px rgba(107, 142, 124, 0.2);
}

.product-comparison-card.winner {
	border: 2px solid #FFD700;
	position: relative;
	background: linear-gradient(to bottom, rgba(255, 215, 0, 0.1), white);
}

.product-comparison-card.winner::before {
	content: '🏆 Winner';
	position: absolute;
	top: -15px;
	left: 50%;
	transform: translateX(-50%);
	background: #FFD700;
	color: var(--deep-forest);
	padding: 0.3rem 1rem;
	border-radius: 20px;
	font-weight: 700;
	font-size: 0.9rem;
}

.article-content {
	font-size: 1.15rem;
	line-height: 2;
	color: var(--deep-forest);
	max-width: 800px;
}

.article-content h2 {
	margin-top: 4rem;
	margin-bottom: 1.5rem;
	font-size: 2.5rem;
	color: var(--deep-forest);
}

.article-content h3 {
	margin-top: 3rem;
	margin-bottom: 1.5rem;
	font-size: 2rem;
	color: var(--deep-forest);
}

.article-content h4 {
	margin-top: 2rem;
	margin-bottom: 1rem;
	font-size: 1.6rem;
	color: var(--deep-forest);
}

.article-content p {
	margin-bottom: 1.5rem;
}

.article-content strong {
	color: var(--primary-eucalyptus);
	font-weight: 600;
}

.featured-image {
	width: 100%;
	height: 400px;
	background: var(--sage-light);
	border-radius: 25px;
	margin: 2rem 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 4rem;
}

.key-takeaway {
	background: linear-gradient(135deg, var(--soft-cream), var(--sage-light));
	border-radius: 20px;
	padding: 2.5rem;
	margin: 3rem 0;
	border-left: 5px solid var(--primary-sage);
}

.key-takeaway h4 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: var(--deep-forest);
}

.key-takeaway ul {
	margin-bottom: 0;
}

.section-divider {
	background: linear-gradient(135deg, var(--primary-eucalyptus), var(--deep-forest));
	color: white;
	padding: 4rem 0;
	margin: 5rem 0;
	border-radius: 30px;
	position: relative;
	overflow: hidden;
}

.section-divider::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 100%;
	height: 200%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.section-divider h2,
.section-divider h3,
.section-divider p {
	color: white;
	position: relative;
	z-index: 2;
}

.product-hero {
	background: white;
	border-radius: 25px;
	padding: 3rem;
	margin: 3rem 0;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
	border: 1px solid rgba(139, 157, 131, 0.15);
}

.product-hero.featured {
	background: linear-gradient(135deg, var(--primary-eucalyptus), var(--deep-forest));
	color: white;
	position: relative;
	overflow: hidden;
}

.product-hero.featured::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 100%;
	height: 200%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.product-hero.featured * {
	position: relative;
	z-index: 2;
	color: white;
}

/* Trending Badge */
.trending-badge {
	position: absolute;
	top: 20px;
	right: 20px;
	background: linear-gradient(135deg, #FF6B6B, #FF8E8E);
	color: white;
	padding: 0.5rem 1rem;
	border-radius: 20px;
	font-size: 0.85rem;
	font-weight: 700;
}

/* Pull Quote */
.pull-quote {
	background: linear-gradient(135deg, var(--primary-eucalyptus), var(--deep-forest));
	color: white;
	padding: 3rem;
	border-radius: 25px;
	margin: 3rem 0;
	font-size: 1.4rem;
	line-height: 1.8;
	font-style: italic;
	position: relative;
	overflow: hidden;
}

.pull-quote::before {
	content: '"';
	position: absolute;
	top: 1rem;
	left: 2rem;
	font-size: 6rem;
	opacity: 0.2;
	font-family: Georgia, serif;
}

.pull-quote::after {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 100%;
	height: 200%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.pull-quote p {
	position: relative;
	z-index: 2;
	margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
	.hero h1 {
		font-size: 3rem;
	}
	
	.hero p {
		font-size: 1.1rem;
	}
	
	.section-title {
		font-size: 2.5rem;
	}
	
	.navbar-brand {
		font-size: 1.5rem;
	}
	
	.newsletter-form {
		flex-direction: column;
	}
	
	.pros-cons {
		grid-template-columns: 1fr;
		gap: 1rem;
	}
	
	.comparison-grid {
		grid-template-columns: 1fr;
	}
	
	.article-content {
		font-size: 1.1rem;
	}
	
	.article-content h2 {
		font-size: 2rem;
	}
	
	.article-hero h1 {
		font-size: 2.5rem;
	}
}