* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background:#f6eeda;
}

.nav {
    background-color: #007BFF;
    color: white;
    padding: 10px;
    text-align: center;
}

.header {
    text-align: center;
}

.header-image {
    width: 10%;
    height: auto;
}

.hero {
    padding: 20px;
    text-align: center;
}

.news {
    display: flex;
    justify-content: space-around;
}

.container {
    display: grid;
    grid-template-columns: 1fr 3fr;
    padding: 20px;
}

.sidebar {
    background-color: #f9f9f9;
    padding: 15px;
    border-right: 1px solid #ddd;
}

.main-content {
    padding: 15px;
}

.product-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.product {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px;
    text-align: center;
    flex: 1 1 30%; /* Ajusta el tamaño según sea necesario */
}

.product img {
    max-width: 100%;
    height: auto;
}

.subscription {
    text-align: center;
    padding: 20px;
}

.footer {
    text-align: center;
    padding: 10px;
    background-color: #007BFF;
    color: white;
}    

button {
    background-color: #007BFF;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

form {
    display: flex;
    justify-content: center;
    gap: 10px;
}

input[type="email"] {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}
.checkout-container {
    display: flex;
    justify-content: space-between;
    padding: 2em;
}

.cart-items, .payment-methods {
    width: 45%;
    background-color: #f9f9f9;
    padding: 1em;
    border: 1px solid #ddd;
    border-radius: 8px;
}