/* Global Styles */
:root {
	--lime-green: #a4de02;
	--purple: #7f00ff;
	--white: #ffffff;
	--dark-gray: #2d2d2d;
	--olive: #bfd200;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Rubik", sans-serif;
	color: var(--dark-gray);
	line-height: 1.6;
	background-color: var(--white);
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 600;
	margin-bottom: 1rem;
	line-height: 1.3;
}

p {
	margin-bottom: 1rem;
}

a {
	color: var(--purple);
	text-decoration: none;
	transition: color 0.3s ease;
}

a:hover {
	color: var(--lime-green);
}

ul {
	list-style-position: inside;
	margin-bottom: 1rem;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

section {
	padding: 5rem 0;
}

section h2 {
	text-align: center;
	margin-bottom: 3rem;
	font-size: 2.5rem;
	position: relative;
}

section h2::after {
	content: "";
	display: block;
	width: 80px;
	height: 4px;
	background: var(--lime-green);
	margin: 1rem auto 0;
}

/* Buttons */
.btn {
	display: inline-block;
	padding: 12px 30px;
	border-radius: 30px;
	font-weight: 500;
	text-align: center;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
}

.btn-primary {
	background-color: var(--purple);
	color: var(--white);
}

.btn-primary:hover {
	background-color: var(--lime-green);
	color: var(--dark-gray);
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
	background-color: var(--lime-green);
	color: var(--dark-gray);
}

.btn-secondary:hover {
	background-color: var(--purple);
	color: var(--white);
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Header */
header {
	background-color: var(--white);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	position: sticky;
	top: 0;
	z-index: 1000;
}

.header-wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 0;
}

.logo {
	display: flex;
	align-items: center;
}

nav ul {
	display: flex;
	list-style: none;
	margin: 0;
}

nav ul li {
	margin-left: 2rem;
}

nav ul li a {
	color: var(--dark-gray);
	font-weight: 500;
}

nav ul li a:hover {
	color: var(--purple);
}

.nav-toggle {
	display: none;
}

.nav-toggle-label {
	display: none;
}

/* Hero Section */
.hero {
	background: linear-gradient(135deg, var(--white) 0%, #f9f9f9 100%);
	padding-top: 3rem;
	padding-bottom: 3rem;
}

.hero .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.hero-content {
	flex: 1;
	padding-right: 2rem;
}

.hero-image {
	flex: 1;
}

.hero h1 {
	font-size: 3rem;
	margin-bottom: 1.5rem;
	color: var(--dark-gray);
}

.hero p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
}

/* About Section */
.about-wrap {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.about-content {
	flex: 1;
}

.about-image {
	flex: 1;
}

/* Products Section */
.products-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.product-card {
	background-color: var(--white);
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
}

.product-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-info {
	padding: 1.5rem;
}

.product-info h3 {
	color: var(--purple);
	margin-bottom: 0.5rem;
}

.price {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--lime-green);
	margin: 1rem 0;
}

/* Testimonials */
.testimonials {
	background-color: #f9f9f9;
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.testimonial-card {
	background-color: var(--white);
	padding: 2rem;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
	font-style: italic;
	margin-bottom: 1rem;
}

.testimonial-author {
	font-weight: 500;
	text-align: right;
}

/* Ingredients */
.ingredients-wrap {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.ingredients-content {
	flex: 1;
}

.ingredients-image {
	flex: 1;
}

/* Features */
.features-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
}

.feature-card {
	text-align: center;
	padding: 2rem;
	background-color: #f9f9f9;
	border-radius: 10px;
	transition: transform 0.3s ease;
}

.feature-card:hover {
	transform: translateY(-10px);
}

.feature-icon {
	font-size: 3rem;
	margin-bottom: 1rem;
}

/* Order Form */
.order-form {
	background-color: #f9f9f9;
}

.order-form form {
	max-width: 600px;
	margin: 0 auto;
	background-color: var(--white);
	padding: 2rem;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 500;
}

.form-group input,
.form-group select {
	width: 100%;
	padding: 12px;
	border: 1px solid #ddd;
	border-radius: 5px;
	font-family: "Rubik", sans-serif;
	font-size: 1rem;
}

.form-group.checkbox {
	display: flex;
	align-items: flex-start;
}

.form-group.checkbox input {
	width: auto;
	margin-right: 10px;
	margin-top: 5px;
}

.error-message {
	background-color: #ffeeee;
	color: #e74c3c;
	padding: 1rem;
	border-radius: 5px;
	margin-bottom: 1.5rem;
}

/* FAQ */
.faq-item {
	margin-bottom: 2rem;
	background-color: var(--white);
	padding: 1.5rem;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
	color: var(--purple);
	margin-bottom: 0.5rem;
}

/* Footer */
footer {
	background-color: var(--dark-gray);
	color: var(--white);
	padding: 4rem 0 2rem;
}

.footer-wrap {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.footer-col h3 {
	color: var(--lime-green);
	margin-bottom: 1.5rem;
}

.footer-col ul {
	list-style: none;
}

.footer-col ul li {
	margin-bottom: 0.8rem;
}

.footer-col a {
	color: var(--white);
	opacity: 0.8;
}

.footer-col a:hover {
	color: var(--lime-green);
	opacity: 1;
}

.copyright {
	text-align: center;
	margin-top: 3rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Cookie Popup */
.cookie-popup {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: var(--white);
	padding: 1rem;
	box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
	z-index: 999;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.cookie-popup p {
	margin: 0;
	padding-right: 1rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
	.products-grid,
	.testimonials-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.features-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.nav-toggle-label {
		display: block;
		cursor: pointer;
	}

	.nav-toggle-label span,
	.nav-toggle-label span::before,
	.nav-toggle-label span::after {
		display: block;
		background: var(--dark-gray);
		height: 2px;
		width: 2rem;
		position: relative;
	}

	.nav-toggle-label span::before,
	.nav-toggle-label span::after {
		content: "";
		position: absolute;
	}

	.nav-toggle-label span::before {
		bottom: 7px;
	}

	.nav-toggle-label span::after {
		top: 7px;
	}

	nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: var(--white);
		height: 0;
		overflow: hidden;
		transition: height 0.3s ease;
		box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	}

	nav ul {
		flex-direction: column;
		padding: 2rem;
	}

	nav ul li {
		margin: 0;
		margin-bottom: 1.5rem;
	}

	.nav-toggle:checked ~ nav {
		height: auto;
	}

	.hero .container {
		flex-direction: column;
	}

	.hero-content {
		padding-right: 0;
		margin-bottom: 2rem;
	}

	.about-wrap,
	.ingredients-wrap {
		flex-direction: column;
	}

	.products-grid,
	.testimonials-grid,
	.features-grid {
		grid-template-columns: 1fr;
	}

	.footer-wrap {
		grid-template-columns: 1fr;
	}

	section h2 {
		font-size: 2rem;
	}

	.hero h1 {
		font-size: 2.2rem;
	}

	.cookie-popup {
		flex-direction: column;
	}

	.cookie-popup p {
		margin-bottom: 1rem;
		padding-right: 0;
	}
}

/* Animations */
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

section {
	animation: fadeIn 0.5s ease-out forwards;
}
