/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2C3E50;
    background-color: #FEFEFE;
}

/* Color Variables */
:root {
    --primary-yellow: #F4D03F;
    --sage-green: #8FBC8F;
    --charcoal: #2C3E50;
    --off-white: #FEFEFE;
    --light-gray: #F8F9FA;
    --medium-gray: #6C757D;
    --white: #FFFFFF;
}

/* Typography */
h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--charcoal);
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--charcoal);
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0.75rem;
    color: var(--charcoal);
}

p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    color: var(--medium-gray);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
.header {
    background-color: var(--white);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(44, 62, 80, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    flex-shrink: 0;
}

.brand-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--charcoal);
    text-decoration: none;
}

.brand-name a {
    color: inherit;
    text-decoration: none;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--off-white) 100%);
    padding: 3rem 0 4rem;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-content h2 {
    font-size: 2.8rem;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--medium-gray);
    line-height: 1.6;
}

.cta-button {
    background-color: var(--primary-yellow);
    color: var(--charcoal);
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #F1C40F;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(244, 208, 63, 0.3);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-svg {
    width: 100%;
    height: auto;
    max-width: 400px;
}

/* Category and Product Images */
.category-image,
.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-gray);
}

.product-image svg {
    width: 100%;
    height: 100%;
    border-radius: 12px 12px 0 0;
}

.hero-image {
    width: 100%;
    height: auto;
    max-width: 400px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(44, 62, 80, 0.15);
}

.about-image-photo,
.story-image-photo {
    width: 100%;
    height: auto;
    max-width: 300px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(44, 62, 80, 0.1);
}

/* Features Section */
.features {
    padding: 4rem 0;
    background-color: var(--white);
}

.features h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(44, 62, 80, 0.1);
}

.feature-icon {
    background-color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(44, 62, 80, 0.1);
}

/* Categories Section */
.categories {
    padding: 4rem 0;
    background-color: var(--light-gray);
}

.categories h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.category-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(44, 62, 80, 0.1);
}

.category-card h3,
.category-card p {
    padding: 0 1.5rem;
}

.category-card p {
    padding-bottom: 1.5rem;
}

/* How It Works Section */
.how-it-works {
    padding: 4rem 0;
    background-color: var(--white);
}

.how-it-works h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

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

.step-number {
    background-color: var(--primary-yellow);
    color: var(--charcoal);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(244, 208, 63, 0.3);
}

/* Products Section */
.products {
    padding: 4rem 0;
    background-color: var(--light-gray);
}

.products h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(44, 62, 80, 0.1);
}

.product-card h3,
.product-card p,
.price,
.product-btn {
    padding: 0 1.5rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--sage-green);
    margin-bottom: 1.5rem;
}

.product-btn {
    background-color: var(--sage-green);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
}

.product-btn:hover {
    background-color: #7BA87B;
    transform: translateY(-2px);
}

.product-btn-email {
    background-color: var(--primary-yellow);
    color: var(--charcoal);
}

.product-btn-email:hover {
    background-color: #F1C40F;
}

/* Testimonials Section */
.testimonials {
    padding: 4rem 0;
    background-color: var(--white);
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    position: relative;
}

.testimonial p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--charcoal);
}

.author {
    font-weight: 600;
    color: var(--sage-green);
}

/* Why Choose Section */
.why-choose {
    padding: 4rem 0;
    background-color: var(--light-gray);
}

.why-choose h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit:hover {
    transform: translateY(-3px);
}

/* Newsletter Section */
.newsletter {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--sage-green) 0%, var(--primary-yellow) 100%);
    color: var(--white);
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.newsletter p {
    color: var(--white);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.email-input {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
}

.subscribe-btn {
    background-color: var(--white);
    color: var(--sage-green);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.subscribe-btn:hover {
    background-color: var(--light-gray);
}

/* Contact Section */
.contact {
    padding: 4rem 0;
    background-color: var(--white);
}

.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background-color: var(--light-gray);
    border-radius: 12px;
}

.contact-icon {
    background-color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(44, 62, 80, 0.1);
}

.contact-details h3 {
    margin-bottom: 0.5rem;
    color: var(--charcoal);
}

.contact-details p {
    margin: 0;
    color: var(--medium-gray);
}

/* Footer */
.footer {
    background-color: var(--charcoal);
    color: var(--white);
    padding: 3rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 2fr 1.5fr;
    gap: 3rem;
    margin-bottom: 2rem;
    align-items: start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-column h4,
.footer-contact h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-brand p,
.footer-contact p {
    color: #BDC3C7;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: #BDC3C7;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-column ul li a:hover {
    color: var(--primary-yellow);
}

.footer-bottom {
    border-top: 1px solid #34495E;
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: #BDC3C7;
    margin: 0;
    font-size: 0.9rem;
}

/* Responsive Design */

/* Centered Sections */
.centered-section {
    text-align: center;
}

.centered-section .container > * {
    text-align: center;
}

.centered-section .features-grid,
.centered-section .categories-grid,
.centered-section .products-grid,
.centered-section .testimonials-grid,
.centered-section .benefits-grid,
.centered-section .steps {
    text-align: center;
}

.centered-section .hero .container {
    text-align: left;
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    border-top: 4px solid var(--primary-yellow);
    box-shadow: 0 -4px 20px rgba(44, 62, 80, 0.1);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.25rem 1.5rem;
    gap: 2rem;
}

.cookie-text h4 {
    color: var(--charcoal);
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
}

.cookie-text p {
    color: var(--medium-gray);
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.4;
}

.cookie-link {
    color: var(--sage-green);
    text-decoration: underline;
}

.cookie-link:hover {
    color: var(--charcoal);
}

.cookie-actions {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    white-space: nowrap;
}

.cookie-accept {
    background-color: var(--primary-yellow);
    color: var(--charcoal);
}

.cookie-accept:hover {
    background-color: #F1C40F;
}

.cookie-manage {
    background-color: var(--sage-green);
    color: var(--white);
}

.cookie-manage:hover {
    background-color: #7BA87B;
}

.cookie-decline {
    background-color: #95A5A6;
    color: var(--white);
}

.cookie-decline:hover {
    background-color: #7F8C8D;
}

.cookie-secondary {
    background-color: transparent;
    color: var(--medium-gray);
    border: 1px solid var(--medium-gray);
}

.cookie-secondary:hover {
    background-color: var(--light-gray);
    color: var(--charcoal);
}

/* Cookie Modal Styles */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(44, 62, 80, 0.7);
    z-index: 1001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background-color: var(--white);
    border-radius: 12px;
    max-width: 550px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 15px 35px rgba(44, 62, 80, 0.3);
}

.cookie-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid var(--light-gray);
}

.cookie-modal-header h3 {
    margin: 0;
    color: var(--charcoal);
    font-size: 1.3rem;
}

.cookie-close {
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--medium-gray);
    padding: 0;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cookie-close:hover {
    color: var(--charcoal);
    background-color: var(--light-gray);
}

.cookie-modal-body {
    padding: 1.5rem 1.5rem 0;
    max-height: 400px;
    overflow-y: auto;
}

.cookie-category {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--light-gray);
}

.cookie-category:last-child {
    border-bottom: none;
    margin-bottom: 1rem;
}

.cookie-category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.cookie-category-header h4 {
    margin: 0;
    color: var(--charcoal);
    font-size: 1.05rem;
    font-weight: 600;
}

.cookie-required {
    background-color: var(--medium-gray);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 55px;
    height: 28px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #BDC3C7;
    transition: 0.3s;
    border-radius: 28px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.cookie-toggle input:checked + .cookie-slider {
    background-color: var(--sage-green);
}

.cookie-toggle input:checked + .cookie-slider:before {
    transform: translateX(27px);
}

.cookie-category p {
    color: var(--medium-gray);
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.5;
}

.cookie-modal-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--light-gray);
    background-color: var(--light-gray);
    border-radius: 0 0 12px 12px;
}

.cookie-modal-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-content h2 {
        font-size: 2.2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .cookie-content {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        padding: 1rem 1.5rem;
    }
    
    .cookie-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .cookie-btn {
        min-width: 100px;
    }
    
    .cookie-modal-actions {
        justify-content: center;
    }
    
    .cookie-modal-content {
        max-width: 95vw;
        margin: 1rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .features-grid,
    .categories-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 1.9rem;
    }
    
    .brand-name {
        font-size: 1.5rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .steps,
    .testimonials-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-actions {
        flex-direction: column;
    }
    
    .cookie-modal-actions {
        flex-direction: column;
    }
}