body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #006400;
    background: #F5F5DC;
}

header {
    background: #228B22;
    color: #fff;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    position: relative;
}

.nav-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    padding: 0.5rem;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

nav ul li {
    margin: 0 1rem;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

nav ul li a:hover, nav ul li a.active {
    color: #F5F5DC;
}

.cart-icon {
    position: relative;
}

#cart-count {
    background: #F5F5DC;
    color: #006400;
    border-radius: 50%;
    padding: 0.2rem 0.5rem;
    font-size: 0.8rem;
    position: absolute;
    top: -8px;
    right: -8px;
}

.hero {
    background: url('images/hero-bg.jpg') no-repeat center center/cover;
    text-align: center;
    padding: 5rem 1rem;
    color: #fff;
    position: relative;
    animation: fadeIn 1s ease-in;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(34, 139, 34, 0.4);
    z-index: 1;
}

.hero h1, .hero p, .hero .btn {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3rem;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.2rem;
}

.btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #8B4513;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 1rem;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #A0522D;
}

.reject-btn {
    background: #D2B48C !important;
    color: #006400 !important;
}

.reject-btn:hover {
    background: #DEB887 !important;
}

.content {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
    animation: slideIn 0.5s ease-out;
}

.disclaimer {
    background: #DEB887;
    padding: 1rem;
    border-left: 4px solid #8B4513;
    margin-bottom: 2rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-card {
    background: #FFF8DC;
    padding: 1rem;
    border-radius: 5px;
    text-align: center;
    transition: box-shadow 0.3s;
    border: 1px solid #D2B48C;
}

.product-card:hover {
    box-shadow: 0 4px 8px rgba(139, 69, 19, 0.1);
}

.product-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 5px;
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #8B4513;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 100, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.modal-content {
    background: #F5F5DC;
    padding: 2rem;
    border-radius: 5px;
    text-align: center;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: popIn 0.3s ease-out;
    color: #006400;
}

.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #006400;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    margin: 1rem 0;
    padding: 1rem;
    border-bottom: 1px solid #D2B48C;
}

#checkout-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
}

#checkout-form label {
    font-weight: bold;
    color: #006400;
}

#checkout-form input, #checkout-form textarea {
    padding: 0.5rem;
    border: 1px solid #8B4513;
    border-radius: 5px;
    font-size: 1rem;
    background: #FFF8DC;
    color: #006400;
}

#checkout-form textarea {
    resize: vertical;
    min-height: 80px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 1rem auto;
}

form label {
    font-weight: bold;
}

form input, form textarea {
    padding: 0.5rem;
    border: 1px solid #8B4513;
    border-radius: 5px;
    font-size: 1rem;
}

form textarea {
    resize: vertical;
    min-height: 100px;
}

.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 100, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.popup-content {
    background: #F5F5DC;
    padding: 2rem;
    border-radius: 5px;
    text-align: center;
    max-width: 400px;
    animation: popIn 0.3s ease-out;
    color: #006400;
}

#order-popup .popup-content {
    background: #F5F5DC;
    color: #006400;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #228B22;
    color: #fff;
    padding: 1rem;
    z-index: 1001;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    box-shadow: 0 -2px 10px rgba(34, 139, 34, 0.1);
}

.cookie-content {
    flex: 1;
    min-width: 300px;
}

.cookie-content p {
    margin: 0 0 1rem 0;
    font-size: 0.9rem;
}

.cookie-content a {
    color: #F5F5DC;
    text-decoration: underline;
}

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

.cookie-buttons .btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    margin: 0;
}

footer {
    background: #228B22;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 0.5rem;
}

.footer-links a:hover {
    color: #F5F5DC;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes popIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
    }

    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: #228B22;
        padding: 1rem 0;
        box-shadow: 0 2px 5px rgba(34, 139, 34, 0.2);
    }

    .nav-menu.active {
        display: flex;
    }

    nav ul li {
        margin: 0.5rem 0;
        text-align: center;
        width: 100%;
    }

    .cart-icon {
        margin: 0.5rem 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .modal-content {
        width: 90%;
        margin: 0 auto;
    }

    .cookie-banner {
        flex-direction: column;
        text-align: center;
    }

    .cookie-content {
        min-width: auto;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}