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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(245, 245, 240, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.nav-logo h1 {
    color: #5a7c5a;
    font-weight: 600;
    font-size: 1.5rem;
}
.nav-logo a {
    text-decoration: none;
}

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

.nav-menu a {
    text-decoration: none;
    color: #666;
    font-weight: 400;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #5a7c5a;
}

.contact-btn {
    background: #5a7c5a !important;
    color: white !important;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    transition: background 0.3s ease;
    font-weight: 500;
}

.contact-btn:hover {
    background: #4a6b4a !important;
}

.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.burger span {
    width: 25px;
    height: 3px;
    background: #5a7c5a;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 85vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('./assets/bg.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 70px;
}

.hero-content h2 {
    font-size: 3.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    font-weight: 300;
    line-height: 1.5;
}

.btn-hero {
    background: #c4a484;
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-hero:hover {
    background: #b8956f;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(196, 164, 132, 0.3);
}

/* Philosophy Section */
.philosophy {
    padding: 6rem 0;
    background: #f5f5f0;
}

.philosophy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.philosophy-text h3 {
    color: #5a7c5a;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.philosophy-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    font-weight: 400;
}

.philosophy-image {
    position: relative;
}

.philosophy-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Products Section */
.products {
    padding: 6rem 0;
    background: #e8e8e0;
}

.products h3 {
    text-align: center;
    color: #5a7c5a;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    font-weight: 600;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.product-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 1.5rem;
}

.product-info h4 {
    color: #333;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.product-info .price {
    font-size: 1.2rem;
    font-weight: 600;
    color: #5a7c5a;
    margin: 0;
}

.product-info .price.strikethrough {
    text-decoration: line-through;
    color: #999;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 0.2rem;
}

.product-info .price-current {
    font-size: 1.2rem;
    font-weight: 600;
    color: #5a7c5a;
    margin: 0;
}

/* Collections Section */
.collections {
    padding: 6rem 0;
    background: #d8d8c8;
}

.collections h3 {
    text-align: center;
    color: #5a7c5a;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    font-weight: 600;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.collection-card {
    background: white;
    padding: 2.5rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.collection-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.collection-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.collection-icon svg {
    width: 50px;
    height: 50px;
}

.collection-card h4 {
    color: #5a7c5a;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.collection-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Why Choose Section */
.why-choose {
    padding: 6rem 0;
    background: #f5f5f0;
}

.why-choose h3 {
    text-align: center;
    color: #5a7c5a;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    font-weight: 600;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.feature {
    text-align: center;
    padding: 1rem;
}

.feature h4 {
    color: #5a7c5a;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.feature p {
    color: #666;
    font-size: 0.95rem;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: #e8e8e0;
}

.testimonials h3 {
    text-align: center;
    color: #5a7c5a;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    font-weight: 600;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #333;
    line-height: 1.6;
    font-size: 1rem;
}

.testimonial-card cite {
    color: #5a7c5a;
    font-weight: 600;
    font-style: normal;
}

/* Contact Section */
.contact {
    padding: 6rem 0 4rem;
    background: #f5f5f0;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-header h3 {
    color: #5a7c5a;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form {
    background: transparent;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    background: white;
    transition: border-color 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #5a7c5a;
}

.btn-submit {
    background: #5a7c5a;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #4a6b4a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(90, 124, 90, 0.3);
}

.contact-info h4 {
    color: #5a7c5a;
    font-size: 1.4rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item strong {
    color: #5a7c5a;
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-item p {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
}

/* Footer */
.footer {
    background: #5a7c5a;
    color: white;
    padding: 3rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-social {
    display: flex;
    gap: 2rem;
}

.footer-social a {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    transition: opacity 0.3s ease;
}

.footer-social a:hover {
    opacity: 0.7;
}

.footer-logo h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.7;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.8;
    color: rgba(255, 255, 255, 0.8);
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    z-index: 1001;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
}

.cookie-popup.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-content p {
    margin-bottom: 1rem;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-decline {
    flex: 1;
    padding: 0.7rem 1rem;
    border: none;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #5a7c5a;
    color: white;
}

.btn-accept:hover {
    background: #4a6b4a;
}

.btn-decline {
    background: transparent;
    color: #5a7c5a;
    border: 1px solid #5a7c5a;
}

.btn-decline:hover {
    background: #5a7c5a;
    color: white;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .collections-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .burger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: #f5f5f0;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 1.5rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .burger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .burger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .burger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero {
        height: 70vh;
        padding: 0 1rem;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .philosophy-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .philosophy-text {
        order: 2;
    }
    
    .philosophy-image {
        order: 1;
    }
    
    .products h3,
    .collections h3,
    .why-choose h3,
    .testimonials h3,
    .contact-header h3 {
        font-size: 2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .collections-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cookie-popup {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .nav {
        padding: 1rem;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .btn-hero,
    .btn-submit {
        padding: 0.8rem 1.5rem;
    }
    
    .product-info {
        padding: 1.2rem;
    }
    
    .collection-card {
        padding: 2rem 1rem;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 0.8rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section animations */
.product-card,
.collection-card,
.testimonial-card {
    animation: fadeInUp 0.6s ease forwards;
    animation-play-state: paused;
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }
.product-card:nth-child(5) { animation-delay: 0.5s; }
.product-card:nth-child(6) { animation-delay: 0.6s; }

.collection-card:nth-child(1) { animation-delay: 0.1s; }
.collection-card:nth-child(2) { animation-delay: 0.2s; }
.collection-card:nth-child(3) { animation-delay: 0.3s; }
.collection-card:nth-child(4) { animation-delay: 0.4s; }

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid #5a7c5a;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header,
    .cookie-popup {
        display: none;
    }
    
    .hero {
        margin-top: 0;
    }
    
    body {
        background: white;
    }
    
    .philosophy,
    .products,
    .collections,
    .why-choose,
    .testimonials,
    .contact {
        background: white;
    }
}