:root {
    --primary-color: #A7C7E7;
    --secondary-color: #F6D6AD;
    --accent-color: #E8AEB7;
    --bg-color: #FAFAFA;
    --text-color: #2B2B2B;
    --highlight-color: #B5EAD7;
    --white: #ffffff;
    --light-gray: #f0f0f0;
    --medium-gray: #d0d0d0;
    --dark-gray: #707070;

    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 2rem;
    --space-xl: 4rem;

    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;

    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);

    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Montserrat', sans-serif;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-normal);
}

a:hover {
    color: var(--accent-color);
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-md);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-md);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: none;
}

.primary-btn {
    background-color: var(--primary-color);
    color: var(--white);
}

.primary-btn:hover {
    background-color: #8ab3d9;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.secondary-btn {
    background-color: var(--secondary-color);
    color: var(--text-color);
}

.secondary-btn:hover {
    background-color: #e9c798;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.accent-btn {
    background-color: var(--accent-color);
    color: var(--white);
}

.accent-btn:hover {
    background-color: #d998a3;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Header */
.site-header {
    position: relative;
    z-index: 100;
    background-color: var(--bg-color);
    transition: transform var(--transition-normal);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md);
}

.logo-container {
    z-index: 101;
}

.logo {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    position: relative;
    transition: all var(--transition-normal);
    text-decoration: none;
    display: inline-block;
}

.logo:hover {
    color: var(--accent-color);
}

.logo::after {
    content: "";
    position: absolute;
    width: 30%;
    height: 3px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-color);
    transition: width var(--transition-normal);
}

.logo:hover::after {
    width: 100%;
}

/* Navigation */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 101;
    position: relative;
    z-index: 1000
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--text-color);
    transition: all var(--transition-normal);
}

.main-nav {
    transition: all var(--transition-normal);
}

.nav-list {
    display: flex;
    align-items: center;
}

.nav-list li {
    margin-left: var(--space-lg);
    position: relative;
}

.nav-list a {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
    padding: var(--space-xs) 0;
}

.nav-list a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-color);
    transition: width var(--transition-normal);
}

.nav-list a:hover {
    color: var(--accent-color);
}

.nav-list a:hover::after {
    width: 100%;
}

/* Responsive Navigation */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 250px;
        height: 100vh;
        background-color: var(--white);
        box-shadow: var(--shadow-lg);
        transform: translateX(100%);
        z-index: 999;
        overflow-y: auto;
        display: none;
    }

    .main-nav.active {
        transform: translateX(0);
        display: block;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        padding: 80px var(--space-md) var(--space-md);
    }

    .nav-list li {
        margin: var(--space-md) 0;
        width: 100%;
    }

    .nav-list a {
        display: block;
        width: 100%;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -8px);
    }

    body.menu-open {
        overflow: hidden;
    }
}

/* Hero Section */
.hero-section {
    background-color: var(--primary-color);
    background-image: linear-gradient(135deg, var(--primary-color), var(--highlight-color));
    padding: var(--space-xl) 0;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    opacity: 0.1;
    pointer-events: none;
}

.hero-content {
    max-width: 600px;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
    line-height: 1.2;
    font-weight: 600;
}

.hero-section p {
    font-size: 1.1rem;
    margin-bottom: var(--space-lg);
    opacity: 0.9;
}

.hero-image {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    z-index: 1;
    opacity: 0.9;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    display: none;
}

@media (min-width: 992px) {
    .hero-image {
        display: block;
    }

    .hero-section {
        text-align: left;
    }
}

@media (max-width: 991px) {
    .hero-section {
        text-align: center;
        min-height: 60vh;
    }

    .hero-content {
        margin: 0 auto;
    }
}

/* Benefits Section */
.benefits-section {
    padding: var(--space-xl) 0;
    background-color: var(--white);
}

.benefits-section h2 {
    text-align: center;
    margin-bottom: var(--space-xl);
    font-size: 2rem;
    color: var(--text-color);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.benefit-card {
    background-color: var(--bg-color);
    padding: var(--space-lg);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all var(--transition-normal);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: var(--space-md);
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.benefit-card p {
    font-size: 0.95rem;
    color: var(--dark-gray);
}

/* Featured Products */
.featured-products {
    padding: var(--space-xl) 0;
    background-color: var(--light-gray);
}

.featured-products h2 {
    text-align: center;
    margin-bottom: var(--space-xl);
    font-size: 2rem;
}

.products-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
    justify-content: center;
}

.product-card {
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-card h3 {
    padding: var(--space-md) var(--space-md) var(--space-xs);
    font-size: 1.25rem;
}

.product-card p {
    padding: 0 var(--space-md);
    font-size: 0.9rem;
    color: var(--dark-gray);
    margin-bottom: var(--space-sm);
}

.product-card .price {
    display: block;
    padding: 0 var(--space-md);
    font-weight: 600;
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-bottom: var(--space-md);
}

.product-card .btn {
    margin: 0 var(--space-md) var(--space-md);
}

/* Testimonials */
.testimonials {
    padding: var(--space-xl) 0;
    background-color: var(--white);
}

.testimonials h2 {
    text-align: center;
    margin-bottom: var(--space-xl);
    font-size: 2rem;
}

.testimonial-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.testimonial {
    background-color: var(--bg-color);
    padding: var(--space-lg);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.testimonial::before {
    content: "\201C";
    font-family: Georgia, serif;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.1;
    position: absolute;
    top: -20px;
    left: -20px;
    z-index: 0;
}

.testimonial p {
    font-size: 1rem;
    font-style: italic;
    margin-bottom: var(--space-md);
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.9rem;
}

/* Newsletter */
.newsletter {
    padding: var(--space-xl) 0;
    background-color: var(--highlight-color);
    text-align: center;
}

.newsletter h2 {
    margin-bottom: var(--space-sm);
    font-size: 2rem;
    color: var(--text-color);
}

.newsletter p {
    max-width: 600px;
    margin: 0 auto var(--space-lg);
    color: var(--text-color);
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: var(--border-radius-md) 0 0 var(--border-radius-md);
    font-family: var(--font-primary);
}

.newsletter-form button {
    border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
}

@media (max-width: 576px) {
    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        border-radius: var(--border-radius-md);
        margin-bottom: var(--space-sm);
    }

    .newsletter-form button {
        border-radius: var(--border-radius-md);
    }
}

/* Footer */
.site-footer {
    background-color: var(--text-color);
    color: var(--light-gray);
    padding: var(--space-lg) 0;
    font-size: 0.9rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.footer-logo a {
    color: var(--white);
    font-weight: 600;
    font-family: var(--font-secondary);
    font-size: 1.25rem;
}

.footer-logo p {
    margin-top: var(--space-sm);
    opacity: 0.7;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    margin-bottom: var(--space-md);
    font-size: 1rem;
}

.footer-links ul li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    color: var(--light-gray);
    opacity: 0.7;
    transition: all var(--transition-normal);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.footer-contact address {
    font-style: normal;
}

.footer-contact p {
    margin-bottom: var(--space-sm);
    opacity: 0.7;
}

.footer-contact a {
    color: var(--light-gray);
    transition: all var(--transition-normal);
}

.footer-contact a:hover {
    color: var(--primary-color);
}

.copyright {
    text-align: center;
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    padding: var(--space-md);
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    display: none;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content p {
    margin-right: var(--space-md);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-content p {
        margin-right: 0;
        margin-bottom: var(--space-md);
    }
}

/* Contact Page */
.contact-section {
    padding: var(--space-xl) 0;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-color: var(--primary-color);
    opacity: 0.1;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: -1;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: var(--space-lg);
    color: var(--text-color);
}

.contact-info p {
    margin-bottom: var(--space-lg);
    font-size: 1rem;
    color: var(--dark-gray);
}

.contact-details {
    margin-bottom: var(--space-lg);
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--space-md);
}

.contact-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: var(--space-md);
    color: var(--white);
    flex-shrink: 0;
}

.contact-text {
    font-size: 0.9rem;
}

.contact-text span {
    display: block;
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.map-container {
    height: 250px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.contact-form {
    background-color: var(--white);
    padding: var(--space-lg);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-lg);
    color: var(--text-color);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--space-xs);
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--medium-gray);
    border-radius: var(--border-radius-md);
    font-family: var(--font-primary);
    transition: border-color var(--transition-normal);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.form-check {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--space-md);
}

.form-check-input {
    margin-right: var(--space-sm);
    margin-top: 5px;
}

.form-check-label {
    font-size: 0.9rem;
    color: var(--dark-gray);
}

/* Products Guide Page */
.products-header {
    background-color: var(--secondary-color);
    padding: var(--space-xl) 0;
    text-align: center;
}

.products-header h1 {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
    color: var(--text-color);
}

.products-header p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-color);
}

.products-list {
    padding: var(--space-xl) 0;
}

.product-item {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
    align-items: center;
}

.product-item:nth-child(even) {
    direction: rtl;
}

.product-item:nth-child(even) .product-content {
    direction: ltr;
}

.product-image {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.product-content h2 {
    font-size: 1.75rem;
    margin-bottom: var(--space-md);
    color: var(--text-color);
}

.product-content p {
    margin-bottom: var(--space-md);
    color: var(--dark-gray);
}

.product-features {
    margin-bottom: var(--space-md);
}

.product-feature {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-sm);
}

.product-feature i {
    color: var(--accent-color);
    margin-right: var(--space-sm);
}

.product-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: var(--space-md);
}

@media (max-width: 768px) {

    .product-item,
    .product-item:nth-child(even) {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .product-image {
        order: -1;
        margin-bottom: var(--space-md);
    }
}

/* Eco Practices Page */
.eco-header {
    background-color: var(--highlight-color);
    padding: var(--space-xl) 0;
    text-align: center;
}

.eco-header h1 {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
    color: var(--text-color);
}

.eco-header p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-color);
}

.eco-section {
    padding: var(--space-xl) 0;
}

.eco-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.eco-card {
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.eco-card-image {
    height: 200px;
}

.eco-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.eco-card-content {
    padding: var(--space-lg);
}

.eco-card-content h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
    color: var(--text-color);
}

.eco-card-content p {
    font-size: 0.9rem;
    color: var(--dark-gray);
}

/* 404 Page */
.error-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    text-align: center;
    padding: var(--space-xl) 0;
}

.error-code {
    font-size: 8rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: var(--space-md);
}

.error-title {
    font-size: 2rem;
    margin-bottom: var(--space-md);
    color: var(--text-color);
}

.error-message {
    max-width: 500px;
    margin: 0 auto var(--space-lg);
    color: var(--dark-gray);
}

/* Thank You Page */
.thank-you-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    text-align: center;
    padding: var(--space-xl) 0;
    background-color: var(--white);
}

.thank-you-icon {
    font-size: 5rem;
    color: var(--accent-color);
    margin-bottom: var(--space-lg);
}

.thank-you-title {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
    color: var(--text-color);
}

.thank-you-message {
    max-width: 600px;
    margin: 0 auto var(--space-lg);
    color: var(--dark-gray);
}

/* Responsive Adjustments */
@media (max-width: 576px) {
    html {
        font-size: 14px;
    }

    .container {
        width: 95%;
        padding: var(--space-sm);
    }

    .btn {
        padding: 0.6rem 1.2rem;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section {
        min-height: 50vh;
        padding: var(--space-lg) 0;
    }

    section {
        padding: var(--space-lg) 0;
    }

    h2 {
        font-size: 1.75rem !important;
    }
}