* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #fffef7;
    color: #2d2b26;
    line-height: 1.5;
    scroll-behavior: smooth;
}

/* Typography */
h1,
h2,
h3,
.logo,
.nav-links a {
    font-family: 'Playfair Display', serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navbar */
.navbar {
    background: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    padding: 16px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    flex-wrap: wrap;
    gap: 16px;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #2d5a3b;
    letter-spacing: -0.5px;
}

.logo i {
    color: #e8a735;
    margin-right: 6px;
}

.nav-links {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.nav-links a {
    text-decoration: none;
    color: #3a3a3a;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #2d5a3b;
}

.cart-icon {
    position: relative;
    font-size: 22px;
    cursor: pointer;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -12px;
    background: #e8a735;
    color: white;
    font-size: 11px;
    border-radius: 50%;
    padding: 2px 6px;
    font-weight: bold;
}

.mobile-menu {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, #f8f3e9 0%, #f0ebe0 100%);
    padding: 60px 0;
    border-radius: 0 0 40px 40px;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 48px;
    color: #2d5a3b;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 18px;
    color: #5a5a5a;
    margin-bottom: 30px;
}

.btn-primary {
    background: #2d5a3b;
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: #1e3f28;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid #2d5a3b;
    color: #2d5a3b;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-outline:hover {
    background: #2d5a3b;
    color: white;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
}

/* Section Title */
.section-title {
    text-align: center;
    font-size: 36px;
    font-family: 'Playfair Display', serif;
    color: #2d5a3b;
    margin: 60px 0 40px;
}

.section-subtitle {
    text-align: center;
    color: #888;
    margin-bottom: 40px;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.product-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.product-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.product-info {
    padding: 20px;
}

.product-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.product-price {
    color: #2d5a3b;
    font-weight: 700;
    font-size: 22px;
    margin: 10px 0;
}

.product-desc {
    color: #777;
    font-size: 14px;
    margin-bottom: 15px;
}

.btn-add {
    background: #f0ebe0;
    color: #2d5a3b;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    width: 100%;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.btn-add:hover {
    background: #2d5a3b;
    color: white;
}

/* Features */
.features {
    background: #f8f3e9;
    padding: 60px 0;
    border-radius: 40px;
    margin: 40px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.feature i {
    font-size: 48px;
    color: #e8a735;
    margin-bottom: 16px;
}

.feature h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

/* About */
.about {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    margin: 60px 0;
}

.about-img {
    flex: 1;
    border-radius: 30px;
    overflow: hidden;
}

.about-img img {
    width: 100%;
    height: auto;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 32px;
    color: #2d5a3b;
    margin-bottom: 20px;
}

/* Testimonial */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.testimonial-card {
    background: white;
    padding: 28px;
    border-radius: 24px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.stars {
    color: #e8a735;
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: #555;
}

.testimonial-author {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* FAQ */
.faq-section {
    background: #f8f3e9;
    border-radius: 32px;
    padding: 40px;
    margin: 40px 0;
}

.faq-item {
    border-bottom: 1px solid #e0d6c8;
    padding: 18px 0;
}

.faq-question {
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    color: #666;
    margin-top: 12px;
    display: none;
    line-height: 1.6;
}

.faq-answer.show {
    display: block;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin: 40px 0;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
}

.full-width {
    grid-column: span 2;
}

/* Footer */
footer {
    background: #1e3f28;
    color: #d4d4d4;
    padding: 48px 32px 24px;
    margin-top: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-col h4 {
    color: #e8a735;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-col a {
    color: #d4d4d4;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

.social-icons {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.social-icons a {
    font-size: 22px;
}

.copyright {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #3a5a48;
    margin-top: 40px;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        padding: 16px;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 16px;
        text-align: center;
        padding: 20px 0;
    }

    .nav-links.show {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .section-title {
        font-size: 28px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .full-width {
        grid-column: span 1;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .product-img {
        height: 200px;
    }
}