@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Nunito+Sans:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2d5a3d;
    --primary-light: #4a7c59;
    --primary-dark: #1a3d2a;
    --accent: #8b9d77;
    --warm-grey: #e8e4df;
    --light-grey: #f5f3f0;
    --dark: #2c2c2c;
    --text: #4a4a4a;
    --white: #ffffff;
    --shadow: rgba(45, 90, 61, 0.12);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Nunito Sans', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--dark);
    line-height: 1.3;
}

h1 { font-size: 2.2rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.1rem; }

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 10px 24px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    margin-bottom: 10px;
}

.section-header p {
    color: var(--text);
    max-width: 500px;
    margin: 0 auto;
    font-size: 13px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: transform 0.4s ease, background 0.3s ease;
}

header.hidden {
    transform: translateY(-100%);
}

.header-wrapper {
    position: relative;
    z-index: 1001;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(45, 90, 61, 0.1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo i {
    font-size: 1.1rem;
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-desktop a {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--dark);
    position: relative;
    padding: 5px 0;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
    width: 100%;
}

.nav-desktop a:hover,
.nav-desktop a.active {
    color: var(--primary);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--dark);
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.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(5px, -5px);
}

.nav-mobile {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    box-shadow: -5px 0 30px var(--shadow);
    transition: right 0.4s ease;
    z-index: 1000;
    padding: 70px 30px 30px;
}

.nav-mobile.active {
    right: 0;
}

.nav-mobile a {
    display: block;
    padding: 12px 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
    border-bottom: 1px solid var(--light-grey);
}

.nav-mobile a:hover {
    color: var(--primary);
    padding-left: 10px;
}

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--warm-grey) 0%, var(--light-grey) 100%);
    position: relative;
    overflow: hidden;
    padding-top: 60px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 20%;
    right: 30%;
    width: 400px;
    height: 400px;
    background: linear-gradient(45deg, transparent 40%, rgba(45, 90, 61, 0.05) 100%);
    transform: rotate(-45deg);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 600;
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 14px;
    margin-bottom: 25px;
    color: var(--text);
    max-width: 400px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 8px;
    box-shadow: 20px 20px 60px var(--shadow);
}

.hero-badge {
    position: absolute;
    bottom: 20px;
    left: -20px;
    background: var(--white);
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 10px 40px var(--shadow);
}

.hero-badge span {
    display: block;
    font-size: 11px;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-badge strong {
    font-size: 1.4rem;
    color: var(--primary);
    font-family: var(--font-heading);
}

.features {
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-card {
    text-align: center;
    padding: 30px 15px;
    background: var(--light-grey);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow);
}

.feature-card i {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.feature-card h4 {
    margin-bottom: 8px;
    font-size: 1rem;
}

.feature-card p {
    font-size: 12px;
    color: var(--text);
}

.about-preview {
    background: var(--light-grey);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 8px;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary);
    border-radius: 8px;
    z-index: -1;
}

.about-content h2 {
    margin-bottom: 15px;
}

.about-content p {
    margin-bottom: 15px;
    font-size: 13px;
}

.about-stats {
    display: flex;
    gap: 30px;
    margin: 25px 0;
}

.stat-item {
    text-align: center;
}

.stat-item span {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-heading);
}

.stat-item p {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.products-preview {
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.product-card {
    background: var(--light-grey);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow);
}

.product-image {
    height: 200px;
    background: var(--warm-grey);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 20px;
}

.product-info h4 {
    margin-bottom: 8px;
}

.product-info p {
    font-size: 12px;
    color: var(--text);
    margin-bottom: 12px;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
}

.product-price small {
    font-size: 12px;
    color: var(--text);
    font-weight: 400;
}

.categories {
    background: var(--primary);
    color: var(--white);
}

.categories .section-header h2 {
    color: var(--white);
}

.categories .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.category-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.category-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
}

.category-card i {
    font-size: 2rem;
    color: var(--accent);
}

.category-card h4 {
    color: var(--white);
    margin-bottom: 5px;
}

.category-card p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.testimonials {
    background: var(--light-grey);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testimonial-card {
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 20px var(--shadow);
}

.testimonial-card p {
    font-size: 13px;
    font-style: italic;
    margin-bottom: 15px;
    color: var(--text);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonial-author i {
    font-size: 2rem;
    color: var(--accent);
}

.testimonial-author span {
    font-weight: 600;
    font-size: 13px;
    color: var(--dark);
}

.cta {
    background: linear-gradient(135deg, var(--warm-grey) 0%, var(--light-grey) 100%);
    text-align: center;
}

.cta h2 {
    margin-bottom: 15px;
}

.cta p {
    max-width: 500px;
    margin: 0 auto 25px;
    font-size: 14px;
}

footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 30px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 25px;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 10px;
}

.footer-brand p {
    font-size: 12px;
    margin-bottom: 15px;
}

.footer-contact p {
    font-size: 12px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact i {
    color: var(--accent);
    width: 16px;
}

.footer-links h4,
.footer-hours h4 {
    color: var(--white);
    font-size: 14px;
    margin-bottom: 15px;
}

.footer-links a {
    display: block;
    font-size: 12px;
    padding: 4px 0;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-hours p {
    font-size: 12px;
    margin-bottom: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    font-size: 11px;
}

.footer-policies {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-policies a {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-policies a:hover {
    color: var(--white);
}

.page-hero {
    background: linear-gradient(135deg, var(--warm-grey) 0%, var(--light-grey) 100%);
    padding: 100px 0 50px;
    text-align: center;
}

.page-hero h1 {
    margin-bottom: 10px;
}

.page-hero p {
    font-size: 14px;
    color: var(--text);
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 12px;
    margin-top: 15px;
}

.breadcrumb a {
    color: var(--primary);
}

.breadcrumb span {
    color: var(--text);
}

.content-section {
    padding: 50px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse > * {
    direction: ltr;
}

.content-text h2 {
    margin-bottom: 15px;
}

.content-text p {
    font-size: 13px;
    margin-bottom: 12px;
}

.content-image img {
    border-radius: 8px;
    box-shadow: 0 10px 40px var(--shadow);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.team-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--light-grey);
    border-radius: 8px;
}

.team-card i {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 15px;
}

.team-card h4 {
    margin-bottom: 5px;
}

.team-card span {
    font-size: 12px;
    color: var(--primary);
    display: block;
    margin-bottom: 10px;
}

.team-card p {
    font-size: 12px;
    color: var(--text);
}

.contact-section {
    background: var(--light-grey);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info {
    background: var(--primary);
    color: var(--white);
    padding: 35px;
    border-radius: 8px;
}

.contact-info h3 {
    color: var(--white);
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item i {
    font-size: 1.2rem;
    color: var(--accent);
    width: 24px;
}

.contact-item p {
    font-size: 13px;
}

.contact-item strong {
    display: block;
    margin-bottom: 3px;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 10px 40px var(--shadow);
}

.contact-form-wrapper h3 {
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    font-family: var(--font-body);
    font-size: 13px;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    height: 100px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
    margin-top: 3px;
}

.checkbox-group label {
    font-size: 11px;
    margin: 0;
    line-height: 1.4;
}

.checkbox-group a {
    color: var(--primary);
    text-decoration: underline;
}

.map-container {
    margin-top: 40px;
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 8px;
}

.error-page,
.thankyou-page {
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    background: var(--light-grey);
}

.error-content,
.thankyou-content {
    max-width: 500px;
}

.error-content i,
.thankyou-content i {
    font-size: 4rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.error-content h1,
.thankyou-content h1 {
    margin-bottom: 15px;
}

.error-content p,
.thankyou-content p {
    font-size: 14px;
    margin-bottom: 25px;
    color: var(--text);
}

.policy-content {
    padding: 50px 0;
}

.policy-content h2 {
    margin: 30px 0 15px;
    font-size: 1.4rem;
}

.policy-content h3 {
    margin: 25px 0 12px;
    font-size: 1.1rem;
}

.policy-content p {
    font-size: 13px;
    margin-bottom: 12px;
    line-height: 1.7;
}

.policy-content ul {
    margin: 15px 0 15px 20px;
}

.policy-content li {
    font-size: 13px;
    margin-bottom: 8px;
    list-style: disc;
    line-height: 1.6;
}

.privacy-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 400px;
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: none;
}

.privacy-popup.active {
    display: block;
}

.privacy-popup h4 {
    margin-bottom: 10px;
    font-size: 1rem;
}

.privacy-popup p {
    font-size: 12px;
    margin-bottom: 15px;
    color: var(--text);
}

.privacy-popup a {
    color: var(--primary);
    text-decoration: underline;
}

.popup-buttons {
    display: flex;
    gap: 10px;
}

.popup-buttons button {
    flex: 1;
}

.products-list {
    background: var(--white);
}

.products-list .products-grid {
    margin-bottom: 30px;
}

.category-intro {
    background: var(--light-grey);
}

.category-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.category-feature {
    text-align: center;
    padding: 25px 15px;
    background: var(--white);
    border-radius: 8px;
}

.category-feature i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.category-feature h4 {
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.category-feature p {
    font-size: 12px;
    color: var(--text);
}

.care-tips {
    background: var(--white);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.tip-card {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: var(--light-grey);
    border-radius: 8px;
}

.tip-card i {
    font-size: 1.5rem;
    color: var(--primary);
}

.tip-card h4 {
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.tip-card p {
    font-size: 12px;
    color: var(--text);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.value-card {
    text-align: center;
    padding: 25px 15px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 20px var(--shadow);
}

.value-card i {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.value-card h4 {
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.value-card p {
    font-size: 12px;
    color: var(--text);
}

@media (max-width: 991px) {
    .nav-desktop {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero-grid,
    .about-grid,
    .contact-grid,
    .content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-content p {
        margin: 0 auto 25px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .content-grid.reverse {
        direction: ltr;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .team-grid,
    .testimonials-grid,
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid,
    .category-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .features-grid,
    .team-grid,
    .testimonials-grid,
    .products-grid,
    .values-grid,
    .category-features {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        justify-content: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-badge {
        left: 10px;
        bottom: 10px;
        padding: 10px 15px;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 13px;
    }
    
    .container {
        padding: 0 12px;
    }
    
    h1 { font-size: 1.6rem; }
    h2 { font-size: 1.3rem; }
    
    .hero-content h1 {
        font-size: 1.7rem;
    }
    
    .btn {
        padding: 8px 18px;
        font-size: 12px;
    }
    
    .section {
        padding: 35px 0;
    }
    
    .feature-card,
    .product-info,
    .contact-info,
    .contact-form-wrapper {
        padding: 20px;
    }
    
    .privacy-popup {
        left: 10px;
        right: 10px;
        padding: 15px;
    }
}

@media (max-width: 320px) {
    .container {
        padding: 0 10px;
    }
    
    h1 { font-size: 1.4rem; }
    h2 { font-size: 1.2rem; }
    
    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    .logo {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
}
