css

:root {
    --green: #2d4c2e;
    --beige: #f5f5dc;
    --white: #ffffff;
    --text: #333333;
    --accent: #8b4513;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--beige);
    color: var(--text);
    line-height: 1.6;
}

/* Header & Logo */
header {
    background: var(--green);
    color: var(--beige);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.logo-container { display: flex; align-items: center; gap: 15px; }
.logo-img { height: 50px; border-radius: 5px; }
.logo-text { font-family: 'Playfair Display', serif; font-size: 1.5rem; letter-spacing: 1px; }

nav ul { display: flex; list-style: none; gap: 20px; }
nav a { color: var(--beige); text-decoration: none; font-weight: 600; text-transform: uppercase; font-size: 0.8rem; transition: 0.3s; }
nav a:hover { color: var(--white); }

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://images.unsplash.com');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content h2 { font-family: 'Playfair Display', serif; font-size: 3rem; margin-bottom: 1rem; }
.hero-content p { font-size: 1.2rem; margin-bottom: 2rem; }

/* Buttons */
.btn {
    background: var(--green);
    color: var(--beige);
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}
.btn:hover { background: #3e663f; transform: translateY(-3px); }

/* Product Grid */
main { max-width: 1200px; margin: 0 auto; padding: 40px 20px; }
.section-title { text-align: center; margin-bottom: 40px; }
.section-title h2 { font-family: 'Playfair Display', serif; color: var(--green); font-size: 2.5rem; }

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
}
.product-card:hover { transform: translateY(-10px); }

.product-image img { width: 100%; height: 200px; object-fit: cover; }
.product-info { padding: 20px; text-align: center; }
.product-info h3 { color: var(--green); margin-bottom: 10px; }
.price { font-weight: bold; font-size: 1.4rem; color: var(--accent); }
.unit { font-size: 0.9rem; color: #777; }

/* Form */
.styled-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
}
.styled-form input, .styled-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
}

/* Footer */
footer { background: var(--green); color: var(--beige); padding: 50px 5% 20px; margin-top: 50px; }
.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 30px;
}
.footer-info a { color: var(--beige); text-decoration: none; }
.copyright { text-align: center; padding-top: 20px; font-size: 0.8rem; }

/* Mobile */
@media (max-width: 768px) {
    header { flex-direction: column; gap: 15px; }
    .hero-content h2 { font-size: 2rem; }
}
