/* Global Variables */
:root {
	--primary-color: #2a9d8f;
	--accent-color: #e9c46a;
	--bg-light: #f4f1de;
	--bg-mint: #a8dadc;
	--text-dark: #264653;
	--text-gray: #8d99ae;
	--shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	--transition: all 0.3s ease;
}

/* Reset & Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: "Inter", sans-serif;
	line-height: 1.6;
	color: var(--text-dark);
	background-color: var(--bg-light);
}

.container {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

h1,
h2,
h3 {
	margin-bottom: 1rem;
	line-height: 1.2;
}

h2 {
	text-align: center;
	font-size: 2.2rem;
	margin-bottom: 2rem;
	position: relative;
	padding-bottom: 0.5rem;
}

h2::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 3px;
	background-color: var(--accent-color);
}

p {
	margin-bottom: 1rem;
}

a {
	color: var(--primary-color);
	text-decoration: none;
	transition: var(--transition);
}

a:hover {
	color: var(--accent-color);
}

section {
	padding: 4rem 0;
}

/* Button Styles */
.btn {
	display: inline-block;
	padding: 0.8rem 1.5rem;
	border-radius: 4px;
	font-weight: 600;
	text-align: center;
	cursor: pointer;
	transition: var(--transition);
	border: none;
}

.btn-primary {
	background-color: var(--primary-color);
	color: white;
}

.btn-primary:hover {
	background-color: #238277;
	color: white;
}

.btn-accent {
	background-color: var(--accent-color);
	color: var(--text-dark);
}

.btn-accent:hover {
	background-color: #d4b053;
	color: var(--text-dark);
}

/* Header & Navigation */
.site-header {
	background-color: white;
	box-shadow: var(--shadow);
	position: sticky;
	top: 0;
	z-index: 1000;
}

.header-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 0;
}

.logo {
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--primary-color);
}

.main-nav ul {
	display: flex;
	list-style: none;
}

.main-nav li {
	margin-left: 1.5rem;
}

.main-nav a {
	color: var(--text-dark);
	font-weight: 500;
}

.main-nav a:hover {
	color: var(--primary-color);
}

.nav-toggle {
	display: none;
}

.nav-toggle-label {
	display: none;
	cursor: pointer;
}

/* Mobile Navigation */
@media (max-width: 768px) {
	.nav-toggle-label {
		display: block;
		position: relative;
		height: 24px;
		width: 30px;
	}

	.nav-toggle-label span,
	.nav-toggle-label span::before,
	.nav-toggle-label span::after {
		display: block;
		background: var(--text-dark);
		height: 3px;
		width: 100%;
		position: absolute;
		transition: var(--transition);
	}

	.nav-toggle-label span {
		top: 10px;
	}

	.nav-toggle-label span::before,
	.nav-toggle-label span::after {
		content: "";
	}

	.nav-toggle-label span::before {
		bottom: 8px;
	}

	.nav-toggle-label span::after {
		top: 8px;
	}

	.main-nav {
		position: absolute;
		top: 100%;
		left: 0;
		background: white;
		width: 100%;
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.3s ease;
	}

	.main-nav ul {
		flex-direction: column;
		padding: 0 1.5rem;
	}

	.main-nav li {
		margin: 0;
		padding: 0.75rem 0;
		border-bottom: 1px solid #f0f0f0;
	}

	.main-nav li:last-child {
		padding-bottom: 1.5rem;
		border-bottom: none;
	}

	.nav-toggle:checked ~ .main-nav {
		max-height: 300px;
		box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	}
}

/* Hero Section */
.hero {
	background-color: var(--bg-mint);
	padding: 6rem 0;
	text-align: center;
}

.hero-content {
	max-width: 800px;
	margin: 0 auto;
}

.hero h1 {
	font-size: 3.5rem;
	margin-bottom: 1rem;
	color: var(--primary-color);
}

.hero-tagline {
	font-size: 1.5rem;
	margin-bottom: 2rem;
	color: var(--text-dark);
}

/* About Section */
.about-content {
	display: flex;
	align-items: center;
	gap: 3rem;
}

.about-text {
	flex: 1;
}

.about-image {
	flex: 1;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: var(--shadow);
}

@media (max-width: 768px) {
	.about-content {
		flex-direction: column;
	}
}

/* Products Section */
.products {
	background-color: white;
}

.products-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.product-card {
	background-color: var(--bg-light);
	border-radius: 8px;
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: var(--transition);
}

.product-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.product-image {
	height: 200px;
	overflow: hidden;
}

.product-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.product-info {
	padding: 1.5rem;
}

.product-price {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 1rem 0;
	font-weight: 600;
}

.price {
	color: var(--primary-color);
	font-size: 1.2rem;
}

.quantity {
	color: var(--text-gray);
}

/* Benefits Section */
.benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
}

.benefit-card {
	text-align: center;
	padding: 2rem;
	background-color: white;
	border-radius: 8px;
	box-shadow: var(--shadow);
}

.benefit-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 1.5rem;
	border-radius: 50%;
	overflow: hidden;
}

.benefit-icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Reviews Section */
.reviews {
	background-color: var(--primary-color);
	color: white;
}

.reviews h2 {
	color: white;
}

.reviews h2::after {
	background-color: white;
}

.reviews-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
}

.review-card {
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	padding: 2rem;
	position: relative;
}

.review-stars {
	color: var(--accent-color);
	font-size: 1.2rem;
	margin-bottom: 1rem;
}

.review-text {
	font-style: italic;
	margin-bottom: 1rem;
}

.review-author {
	text-align: right;
	font-weight: 600;
}

/* FAQ Section */
.faq {
	background-color: white;
}

.faq-container {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	margin-bottom: 1rem;
	border: 1px solid #eee;
	border-radius: 4px;
}

.faq-toggle {
	display: none;
}

.faq-question {
	display: block;
	padding: 1rem;
	font-weight: 600;
	cursor: pointer;
	position: relative;
	transition: var(--transition);
}

.faq-question::after {
	content: "+";
	position: absolute;
	right: 1rem;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.5rem;
}

.faq-toggle:checked + .faq-question::after {
	content: "-";
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.faq-toggle:checked + .faq-question {
	background-color: var(--primary-color);
	color: white;
}

.faq-toggle:checked ~ .faq-answer {
	max-height: 200px;
	padding: 1rem;
	border-top: 1px solid #eee;
}

/* Contact Section */
.contact {
	background-color: var(--bg-mint);
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	max-width: 800px;
	margin: 0 auto;
}

.contact-info {
	background-color: white;
	padding: 2rem;
	border-radius: 8px;
	box-shadow: var(--shadow);
}

/* Order Form Section */
.order {
	background-color: var(--bg-light);
}

.order-form {
	max-width: 600px;
	margin: 0 auto;
	background-color: white;
	padding: 2rem;
	border-radius: 8px;
	box-shadow: var(--shadow);
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 500;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group select {
	width: 100%;
	padding: 0.8rem;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-family: inherit;
}

.radio-group,
.checkbox-group {
	margin-top: 0.5rem;
}

.radio-option,
.checkbox-option {
	display: flex;
	align-items: center;
	margin-bottom: 0.5rem;
}

.radio-option input,
.checkbox-option input {
	margin-right: 0.5rem;
}

.error-message {
	background-color: #f8d7da;
	color: #721c24;
	padding: 0.75rem;
	margin-bottom: 1rem;
	border-radius: 4px;
	text-align: center;
}

/* Footer */
.site-footer {
	background-color: var(--text-dark);
	color: white;
	padding: 3rem 0 1rem;
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-bottom: 2rem;
}

.footer-about,
.footer-contact,
.footer-legal {
	margin-bottom: 1.5rem;
}

.footer-legal ul {
	list-style: none;
}

.footer-legal li {
	margin-bottom: 0.5rem;
}

.footer-legal a {
	color: var(--bg-mint);
}

.footer-legal a:hover {
	color: var(--accent-color);
}

.copyright {
	text-align: center;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 0.9rem;
	color: #aaa;
}

/* Cookie Popup */
.cookie-popup {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: var(--text-dark);
	color: white;
	padding: 1rem 0;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
	z-index: 9999;
}

.cookie-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

.cookie-content p {
	margin-bottom: 0;
}

/* Animations */
.fade-in {
	opacity: 0;
	animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.animate-pulse {
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
	100% {
		transform: scale(1);
	}
}

/* Media Queries */
@media (max-width: 768px) {
	.hero h1 {
		font-size: 2.5rem;
	}

	.hero-tagline {
		font-size: 1.2rem;
	}

	.cookie-content {
		flex-direction: column;
		text-align: center;
	}

	.products-grid,
	.benefits-grid,
	.reviews-grid,
	.footer-grid {
		grid-template-columns: 1fr;
	}
}
