body{
    background-color: antiquewhite;
    background-image: url(assets/images/body.jpg);
    background-position: center;
    background-repeat: no-repeat;
}

.wrapper{
    width: 1024px;
    margin-left: auto;
    margin-right: auto;
}

header{
    height: 118px;
    background-color: rgba(255, 255, 255, 0.247);
    text-align: center;
}

nav{
    background-color: rgba(0, 0, 0, 0.288);
    text-align: center;
    padding-top: 14px;
    padding-bottom: 14px;
}

nav a{
    text-decoration: none;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    padding-left: 10px;
    padding-right: 10px;

}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.product-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    border: 3px solid #f7d718;
}

.product-details {
    padding: 15px;
}

.product-title {
    color: #006b3f;
    font-size: 2.2em;
    margin-bottom: 15px;
}

.highlight {
    color: #cf102d;
    font-weight: bold;
}

.description {
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.features-list {
    list-style: none;
    margin: 20px 0;
}

.features-list li {
    padding: 10px;
    margin-bottom: 10px;
    background: #fff5e6;
    border-left: 4px solid #f7d718;
}

.price {
    font-size: 1.8em;
    color: #006b3f;
    margin: 20px 0;
}

.order-button {
    display: inline-block;
    padding: 15px 40px;
    background: #cf102d;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: transform 0.3s;
}

.order-button:hover {
    transform: scale(1.05);
}

.local-badge {
    background: #f7d718;
    color: #006b3f;
    padding: 8px 20px;
    border-radius: 20px;
    display: inline-block;
    margin: 10px 0;
    font-weight: bold;
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .product-image {
        height: 300px;
    }
    
    .product-title {
        font-size: 1.8em;
    }
}


.main-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 30px 0;
    margin-top: 40px;
}

 /* Footer */
 .footer {
    background: #000000;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .nav {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
}