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

html {
	font-size: 62.5%;
	overflow-x: hidden;
	scroll-behavior: smooth;
}

body {
	font-family: 'Rubik', sans-serif;
	line-height: 1;
	font-weight: 400;
	color: #555;
	overflow-x: hidden;
	background: linear-gradient(135deg, #fdf2e9 0%, #fae5d3 100%);
	min-height: 100vh;
}

/* Accessibility link */
.skip-to-content {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	top: auto;
	overflow: hidden;
	z-index: 9999;
}
.skip-to-content:focus {
	position: static;
	width: auto;
	height: auto;
	left: 10px;
	top: 10px;
	padding: 1rem 2rem;
	background: #e195ab;
	color: #fff;
	text-decoration: none;
	border-radius: 5px;
}

/* HEADER */
.header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: rgba(253, 242, 233, 0.95);
	backdrop-filter: blur(10px);
	height: 9.6rem;
	padding: 0 4.8rem;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 999;
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.logo {
	height: 6.2rem;
}

.main-nav-list {
	list-style: none;
	display: flex;
	align-items: center;
	gap: 4.8rem;
}

.main-nav-link:link,
.main-nav-link:visited {
	display: inline-block;
	text-decoration: none;
	color: #333;
	font-weight: 500;
	font-size: 1.8rem;
	transition: all 0.3s;
}

.main-nav-link:hover,
.main-nav-link:active {
	color: #e195ab;
}

.nav-cta:link,
.nav-cta:visited {
	padding: 1.2rem 2.4rem;
	border-radius: 9px;
	color: #fff;
	background-color: #e195ab;
	transition: all 0.3s;
}

.nav-cta:hover,
.nav-cta:active {
	background-color: #a1084a;
	box-shadow: 0 4px 15px rgba(161, 8, 74, 0.2);
}

/* HERO SECTION */
.hero-section {
	padding: 12rem 0 9.6rem 0;
	margin-top: 9.6rem;
}

.container {
	max-width: 120rem;
	padding: 0 3.2rem;
	margin: 0 auto;
}

.hero {
	max-width: 130rem;
	margin: 0 auto;
	padding: 0 3.2rem;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 9.6rem;
	align-items: center;
}

.heading-primary {
	font-size: 5.2rem;
	font-weight: 700;
	line-height: 1.05;
	color: #333;
	letter-spacing: -0.5px;
	margin-bottom: 3.2rem;
	background: linear-gradient(135deg, #e195ab, #a1084a);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-description {
	font-size: 2rem;
	line-height: 1.6;
	margin-bottom: 4.8rem;
	color: #555;
}

.btn {
	display: inline-block;
	text-decoration: none;
	font-size: 2rem;
	font-weight: 600;
	padding: 1.6rem 3.2rem;
	border-radius: 9px;
	border: none;
	cursor: pointer;
	font-family: inherit;
	transition: all 0.3s;
}

.btn--full {
	background-color: #e195ab;
	color: #fff;
	margin-right: 1.6rem;
}

.btn--full:hover {
	background-color: #a1084a;
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(225, 149, 171, 0.4);
}

.btn--outline {
	background-color: #fff;
	color: #555;
	border: 2px solid #e195ab;
}

.btn--outline:hover {
	background-color: #e195ab;
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(225, 149, 171, 0.3);
}

.hero-img-box {
	position: relative;
}

.hero-img {
	width: 100%;
	border-radius: 20px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
	transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
		box-shadow 0.4s ease-in-out;
}

.hero-img:hover {
	transform: scale(1.05);
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.tag-label {
	position: absolute;
	top: 2rem;
	left: 2rem;
	background: #e195ab;
	color: #fff;
	font-size: 1.6rem;
	font-weight: 600;
	padding: 0.8rem 1.6rem;
	border-radius: 50px;
	box-shadow: 0 4px 15px rgba(225, 149, 171, 0.3);
	animation: pulse 2s infinite;
}

/* FEATURES SECTION */
.features-section {
	padding: 9.6rem 0;
	background: linear-gradient(
		135deg,
		rgba(255, 255, 255, 0.9),
		rgba(253, 242, 233, 0.3)
	);
}

.grid {
	display: grid;
	gap: 9.6rem;
}

.grid--3-cols {
	grid-template-columns: repeat(3, 1fr);
}

.feature {
	text-align: center;
	padding: 4rem 3rem;
	background: rgba(255, 255, 255, 0.8);
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: all 0.3s;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.3);
	position: relative;
}

.feature:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.feature-icon {
	color: #e17055;
	height: 3.2rem;
	width: 3.2rem;
	margin-bottom: 3.2rem;
	background: linear-gradient(135deg, #e17055, #fdcb6e);
	border-radius: 50%;
	padding: 1.5rem;
	box-shadow: 0 5px 15px rgba(225, 112, 85, 0.3);
}

.heading-tertiary {
	font-size: 3rem;
	line-height: 1.2;
	margin-bottom: 3.2rem;
	color: #333;
	font-weight: 600;
}

.feature-text {
	font-size: 1.8rem;
	line-height: 1.8;
	color: #666;
}

.badge {
	position: absolute;
	bottom: 2rem;
	right: 2rem;
	background: #e195ab;
	color: #fff;
	padding: 0.5rem 1rem;
	border-radius: 50px;
	font-size: 1.4rem;
	font-weight: 600;
}

/* GALLERY SECTION */
.gallery-section {
	padding: 9.6rem 0;
}

.subheading {
	display: block;
	font-size: 1.6rem;
	font-weight: 500;
	color: #e17055;
	text-transform: uppercase;
	margin-bottom: 1.6rem;
	letter-spacing: 0.75px;
	text-align: center;
}

.heading-secondary {
	font-size: 4.4rem;
	line-height: 1.2;
	margin-bottom: 9.6rem;
	color: #333;
	text-align: center;
	font-weight: 600;
}

.gallery {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.6rem;
	padding: 1.6rem;
}

.gallery-item {
	overflow: hidden;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: all 0.3s;
}

.gallery-item:hover {
	transform: scale(1.05);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
	display: block;
	width: 100%;
	height: 30rem;
	object-fit: cover;
	transition: all 0.4s;
}

.gallery-item img:hover {
	transform: scale(1.1);
}

/* Mobile gallery fixes */
@media (max-width: 75em) {
	.gallery {
		grid-template-columns: repeat(2, 1fr);
		gap: 2rem;
	}

	.gallery-item img {
		height: 25rem;
	}
}

@media (max-width: 59em) {
	.gallery {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.5rem;
	}

	.gallery-item img {
		height: 22rem;
	}
}

@media (max-width: 44em) {
	.gallery {
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
		padding: 1rem;
	}

	.gallery-item img {
		height: 18rem;
		object-fit: cover;
		object-position: center;
	}
}

@media (max-width: 32em) {
	.gallery {
		grid-template-columns: 1fr 1fr;
		gap: 0.8rem;
	}

	.gallery-item img {
		height: 16rem;
	}
}

/* INGREDIENTS SECTION */
.ingredients-section {
	padding: 9.6rem 0;
	background: linear-gradient(
		135deg,
		rgba(225, 112, 85, 0.1),
		rgba(253, 203, 110, 0.1)
	);
}

.ingredients-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 9.6rem;
	align-items: center;
}

.ingredients-list {
	list-style: none;
}

.ingredient-item {
	font-size: 1.8rem;
	line-height: 1.8;
	padding: 1.6rem 0;
	border-bottom: 1px solid rgba(225, 112, 85, 0.2);
	display: flex;
	align-items: center;
	gap: 1.6rem;
}

.ingredient-icon {
	color: #e17055;
	height: 2.4rem;
	width: 2.4rem;
}

.ingredients-img {
	width: 100%;
	border-radius: 20px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* TESTIMONIALS SECTION */
.testimonials-section {
	padding: 9.6rem 0;
}

.testimonials {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4.8rem;
}

.testimonial {
	background: rgba(255, 255, 255, 0.9);
	padding: 4rem;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.3);
}

.testimonial-text {
	font-size: 1.8rem;
	line-height: 1.8;
	margin-bottom: 1.6rem;
	color: #666;
}

.testimonial-name {
	font-size: 1.6rem;
	color: #e17055;
	font-weight: 600;
}

/* FAQ SECTION */
.faq-section {
	padding: 9.6rem 0;
	background: rgba(255, 255, 255, 0.7);
}

.faq-list {
	margin-top: 4.8rem;
}

.faq-item {
	background: #fff;
	border-radius: 10px;
	padding: 2.4rem;
	margin-bottom: 2.4rem;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
	font-size: 2rem;
	font-weight: 600;
	color: #333;
	margin-bottom: 1.2rem;
}

.faq-answer {
	font-size: 1.6rem;
	line-height: 1.8;
	color: #666;
}

/* CTA SECTION */
.cta-section {
	padding: 9.6rem 0;
	background: linear-gradient(135deg, #e17055, #fdcb6e);
}

.cta-container {
	background: rgba(255, 255, 255, 0.95);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
	border-radius: 20px;
	padding: 6.4rem;
	text-align: center;
	backdrop-filter: blur(10px);
}

.cta-text {
	font-size: 4.4rem;
	font-weight: 600;
	color: #333;
	margin-bottom: 3.2rem;
}

.cta-description {
	font-size: 1.8rem;
	line-height: 1.6;
	margin-bottom: 4.8rem;
	color: #555;
}

.price-highlight {
	background: linear-gradient(135deg, #e17055, #fdcb6e);
	color: white;
	padding: 2rem 4rem;
	border-radius: 50px;
	font-size: 2.4rem;
	font-weight: 700;
	margin: 3.2rem 0;
	display: inline-block;
	box-shadow: 0 10px 30px rgba(225, 112, 85, 0.3);
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
	100% {
		transform: scale(1);
	}
}

.floating-elements {
	position: absolute;
	width: 100%;
	height: 100%;
	overflow: hidden;
	pointer-events: none;
}

.floating-element {
	position: absolute;
	opacity: 0.1;
	animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
	top: 10%;
	left: 10%;
	animation-delay: 0s;
}

.floating-element:nth-child(2) {
	top: 20%;
	right: 10%;
	animation-delay: 2s;
}

.floating-element:nth-child(3) {
	bottom: 20%;
	left: 20%;
	animation-delay: 4s;
}

@keyframes float {
	0%,
	100% {
		transform: translateY(0px) rotate(0deg);
	}
	50% {
		transform: translateY(-20px) rotate(10deg);
	}
}

.process-section {
	padding: 9.6rem 0;
	background: rgba(255, 255, 255, 0.7);
}

.process-steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 6.4rem;
	margin-top: 6.4rem;
}

.process-step {
	text-align: center;
	position: relative;
}

.process-number {
	font-size: 8.6rem;
	font-weight: 600;
	color: rgba(225, 112, 85, 0.3);
	margin-bottom: 1.2rem;
}

.process-title {
	font-size: 3rem;
	font-weight: 600;
	margin-bottom: 3.2rem;
	color: #333;
}

.process-description {
	font-size: 1.8rem;
	line-height: 1.8;
	color: #666;
}

/* MOBILE STYLES */
@media (max-width: 84em) {
	.hero {
		gap: 4.8rem;
	}

	.heading-primary {
		font-size: 4.4rem;
	}
}

@media (max-width: 75em) {
	html {
		font-size: 56.25%;
	}

	.grid--3-cols {
		grid-template-columns: repeat(2, 1fr);
	}

	.hero {
		grid-template-columns: 1fr;
		text-align: center;
	}
	.hero-section {
		padding-top: 14rem;
	}
}

@media (max-width: 59em) {
	html {
		font-size: 50%;
	}

	.header {
		padding: 0 3.2rem;
	}

	.hero {
		gap: 6.4rem;
	}

	.grid--3-cols {
		grid-template-columns: 1fr;
		gap: 6.4rem;
	}

	.ingredients-container {
		grid-template-columns: 1fr;
		gap: 6.4rem;
	}

	.testimonials {
		grid-template-columns: 1fr;
	}

	.process-steps {
		grid-template-columns: 1fr;
		gap: 4.8rem;
	}
}

@media (max-width: 44em) {
	.header {
		padding: 0 1.6rem;
	}

	.hero {
		padding: 0 1.6rem;
	}

	.heading-primary {
		font-size: 3.6rem;
	}

	.cta-container {
		padding: 4.8rem 3.2rem;
	}
}

.btn-mobile-nav {
	border: none;
	background: none;
	cursor: pointer;
	display: none;
}

.icon-mobile-nav {
	height: 4.8rem;
	width: 4.8rem;
	color: #333;
}

.center-text {
	text-align: center;
}

.margin-bottom-md {
	margin-bottom: 4.8rem;
}

.section-spacing {
	margin-bottom: 9.6rem;
}
.footer {
	background-color: #2d2d2d;
	color: #fff;
	padding: 6.4rem 0 3.2rem 0;
}

.footer-container {
	max-width: 120rem;
	margin: 0 auto;
	padding: 0 3.2rem;
	display: flex;
	justify-content: center;
}

.logo-col {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.footer-logo {
	display: block;
	margin-bottom: 3.2rem;
	height: 8rem;
}

.social-links {
	list-style: none;
	display: flex;
	gap: 2.4rem;
	margin-bottom: 2.4rem;
}

.footer-link {
	text-decoration: none;
}

.social-icon {
	height: 2.4rem;
	width: 2.4rem;
	color: #f3d0d7;
	transition: all 0.3s;
}

.social-icon:hover {
	color: #c84a6e;
}

.copyright {
	font-size: 1.4rem;
	color: #999;
	line-height: 1.6;
	margin-top: auto;
}

/* Mobile responsive */
@media (max-width: 768px) {
	.footer {
		padding: 4.8rem 0 2.4rem 0;
	}

	.footer-container {
		padding: 0 2.4rem;
	}

	.footer-logo {
		height: 6rem;
		margin-bottom: 2.4rem;
	}

	.social-links {
		gap: 1.6rem;
		margin-bottom: 1.6rem;
	}

	.copyright {
		font-size: 1.2rem;
	}
}
