*{
    margin: 0;
    padding: 0;
    border: 0;
}


body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    border: 0;
    background-color: #FFF8E1;
    color: #333;
}

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


.popular-products {
    padding: 50px 0;
    text-align: center;
}

.product-carousel {
    display: flex;
    max-width: 1200px;
    margin: 30px auto;
    justify-content: space-around;
}

.product {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.product img {
    max-width: 300px;
    height: auto;
}

.product button {
    background-color: #FFA000;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    margin-top: 10px;
}

.product-block{
    display: flex;
    max-width: 1200px;
    margin: 10px auto;
    justify-content: space-around;
    gap: 30px;
    background: #ffc300;
    padding: 30px;
}


.product-features {
    display: flex;
    justify-content: space-between;
    padding: 50px 0;
    background-color: #FFF3E0;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

.feature-list {
    flex: 1;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    padding: 30px 0;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 10px;
}

.feature i{
    color: #ab6e12;
    border: 1px solid #ab6e12;
    border-radius: 50%;
    font-size: 18px;
    padding: 3px;
}

.feature img {
    margin-right: 10px;
}

.featured-product {
    flex: 2;
    text-align: center;
}

.featured-product img{
    max-width: 300px;
}

.best-taste {
    display: flex;
    align-items: center;
    padding: 50px 0;
}

.best-taste .content {
    flex: 1;
    padding: 0 50px;
}

.best-taste button {
    background-color: #FFA000;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
}

.newsletter {
    background-color: #FFF3E0;
    padding: 50px 0;
    text-align: center;
}

.newsletter form {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.newsletter input[type="email"] {
    padding: 10px;
    width: 300px;
    border: 1px solid #FFA000;
    border-radius: 25px 0 0 25px;
}

.newsletter button {
    background-color: #FFA000;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 0 25px 25px 0;
    cursor: pointer;
}


footer {
    background-color: #FFF8E1;
    padding: 50px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
}

.footer-links {
    display: flex;
}

.footer-links .column {
    margin-right: 50px;
}

.footer-links ul {
    list-style-type: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    text-decoration: none;
    color: #333;
}

.copyright {
    text-align: center;
    margin-top: 30px;
}