/* 
* BUYADE-SUGIVE STYLESHEET
* Color Palette:
* Main background: #F0F8FF (whitish blue)
* Accent: #D72638 (coral red)
* Support: #3BCEAC (mint)
* Text: #1C1C1C (deep black)
* UI Elements: #FFB400 (bright yellow)
* Buttons: gradient from #FF8C42 to #FF3C38
*/

/* Reset and Base Styles */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

:root {
	--color-bg: #f0f8ff;
	--color-accent: #d72638;
	--color-support: #3bceac;
	--color-text: #1c1c1c;
	--color-ui: #ffb400;
	--color-btn-start: #ff8c42;
	--color-btn-end: #ff3c38;
	--font-main: "Poppins", "Noto Sans", sans-serif;
	--transition: all 0.3s ease;
	--shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	--border-radius: 8px;
}

html {
	font-size: 62.5%; /* 10px base font size */
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-main);
	font-size: 1.6rem;
	line-height: 1.6;
	color: var(--color-text);
	background-color: var(--color-bg);
	overflow-x: hidden;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: var(--color-accent);
	text-decoration: none;
	transition: var(--transition);
}

a:hover {
	color: var(--color-btn-start);
}

.container {
	width: 100%;
	max-width: 120rem;
	margin: 0 auto;
	padding: 0 2rem;
}

section {
	padding: 8rem 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin-bottom: 2rem;
	line-height: 1.2;
}

h1 {
	font-size: 4.2rem;
}

h2 {
	font-size: 3.6rem;
	text-align: center;
	margin-bottom: 5rem;
	position: relative;
}

h2::after {
	content: "";
	display: block;
	width: 8rem;
	height: 0.4rem;
	background: var(--color-accent);
	position: absolute;
	bottom: -1rem;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 0.2rem;
}

h3 {
	font-size: 2.4rem;
}

p {
	margin-bottom: 1.5rem;
}

/* Button Styles */
.btn {
	display: inline-block;
	padding: 1.2rem 3rem;
	border-radius: var(--border-radius);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1rem;
	transition: var(--transition);
	text-align: center;
	cursor: pointer;
	border: none;
}

.btn-primary {
	background: linear-gradient(to right, var(--color-btn-start), var(--color-btn-end));
	color: white;
	box-shadow: var(--shadow);
}

.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
	color: white;
}

.btn-secondary {
	background-color: var(--color-support);
	color: white;
}

.btn-secondary:hover {
	background-color: #34b89a;
	color: white;
}

/* Hero Section */
.hero {    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("../img/5o5SNQ.jpg");
	background-size: cover;
	background-position: center;
	color: white;
	text-align: center;
	padding: 15rem 0;
}

.hero h1 {
	margin-bottom: 2rem;
	font-size: 5rem;
}

.hero p {
	margin-bottom: 4rem;
	font-size: 2rem;
	max-width: 70rem;
	margin-left: auto;
	margin-right: auto;
}

/* About Section */
.about {
	text-align: center;
}

.about p {
	max-width: 80rem;
	margin-left: auto;
	margin-right: auto;
}

/* Benefits Section */
.benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
	gap: 4rem;
}

.benefit-card {
	text-align: center;
	padding: 3rem;
	border-radius: var(--border-radius);
	background-color: white;
	box-shadow: var(--shadow);
	transition: var(--transition);
}

.benefit-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.benefit-card .icon {
	width: 8rem;
	height: 8rem;
	margin: 0 auto 2rem;
}

.benefit-card .icon img {
	width: 100%;
	height: 100%;
}

/* Products Section */
.product-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
	gap: 4rem;
}

.product-card {
	background-color: white;
	border-radius: var(--border-radius);
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: var(--transition);
}

.product-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.product-card img {
	width: 100%;
	height: 25rem;
	object-fit: cover;
}

.product-card h3,
.product-card p,
.product-card a {
	padding: 0 2rem;
}

.product-card h3 {
	margin-top: 2rem;
}

.product-card .ingredients {
	color: #666;
	font-style: italic;
}

.product-card .price {
	font-weight: bold;
	color: var(--color-accent);
	font-size: 2.2rem;
	margin: 1rem 0;
}

.product-card .btn {
	margin: 2rem;
	width: calc(100% - 4rem);
}

/* Testimonials Section */
.testimonials {
	background-color: #f9f9f9;
}

.testimonial-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
	gap: 4rem;
}

.testimonial-card {
	background-color: white;
	padding: 3rem;
	border-radius: var(--border-radius);
	box-shadow: var(--shadow);
	text-align: center;
}

.avatar {
	width: 8rem;
	height: 8rem;
	border-radius: 50%;
	overflow: hidden;
	margin: 0 auto 2rem;
	border: 3px solid var(--color-support);
}

.quote {
	font-style: italic;
	position: relative;
	padding: 0 2rem;
}

.quote::before,
.quote::after {
	content: '"';
	font-size: 4rem;
	color: var(--color-support);
	opacity: 0.5;
	position: absolute;
}

.quote::before {
	top: -2rem;
	left: 0;
}

.quote::after {
	bottom: -3rem;
	right: 0;
}

.author {
	font-weight: 600;
	margin-top: 2rem;
}

/* FAQ Section */
.faq-item {
	margin-bottom: 3rem;
	padding: 2rem;
	background-color: white;
	border-radius: var(--border-radius);
	box-shadow: var(--shadow);
}

.faq-item h3 {
	color: var(--color-accent);
	margin-bottom: 1rem;
}

/* Order Form */
.order {
	background-color: #f9f9f9;
}

.order-form {
	max-width: 60rem;
	margin: 0 auto;
	background-color: white;
	padding: 4rem;
	border-radius: var(--border-radius);
	box-shadow: var(--shadow);
}

.form-group {
	margin-bottom: 2rem;
}

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 600;
}

.form-group input,
.form-group select {
	width: 100%;
	padding: 1.2rem;
	border: 1px solid #ddd;
	border-radius: var(--border-radius);
	font-family: var(--font-main);
	font-size: 1.6rem;
}

.form-group.checkbox {
	display: flex;
	align-items: center;
}

.form-group.checkbox input {
	width: auto;
	margin-right: 1rem;
}

.form-group.checkbox label {
	margin-bottom: 0;
}

.order-form .btn {
	width: 100%;
	margin-top: 2rem;
}

/* Footer Styles */
.footer {
	background-color: #333;
	color: white;
	padding: 6rem 0 2rem;
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
	gap: 4rem;
	margin-bottom: 4rem;
}

.footer-logo {
	width: 15rem;
	margin-bottom: 2rem;
}

.footer h3 {
	margin-bottom: 2rem;
	color: var(--color-support);
}

.footer ul {
	list-style: none;
}

.footer ul li {
	margin-bottom: 1rem;
}

.footer a {
	color: white;
}

.footer a:hover {
	color: var(--color-support);
}

.footer-column.contact li {
	display: flex;
	align-items: center;
}

.footer-column.contact .icon {
	width: 2rem;
	height: 2rem;
	margin-right: 1rem;
	fill: var(--color-support);
}

.copyright {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Cookie Notice */
.cookie-notice {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: white;
	padding: 2rem;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
	z-index: 1000;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.cookie-notice p {
	margin-bottom: 0;
	margin-right: 2rem;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
	html {
		font-size: 57.5%; /* adjust base font size for smaller screens */
	}

	.hero {
		padding: 10rem 0;
	}

	.hero h1 {
		font-size: 3.8rem;
	}

	section {
		padding: 6rem 0;
	}

	.benefits-grid,
	.product-grid,
	.testimonial-grid {
		gap: 3rem;
	}

	.order-form {
		padding: 3rem;
	}
}

@media screen and (max-width: 576px) {
	html {
		font-size: 55%; /* further adjust base font size for mobile */
	}

	.hero {
		padding: 8rem 0;
	}

	.hero h1 {
		font-size: 3.4rem;
	}

	section {
		padding: 5rem 0;
	}

	h2 {
		font-size: 3rem;
	}

	.order-form {
		padding: 2rem;
	}

	.cookie-notice {
		flex-direction: column;
		text-align: center;
	}

	.cookie-notice p {
		margin-right: 0;
		margin-bottom: 1.5rem;
	}
}
