body {
    background-color: #fff8e1;
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.header {
    background-color: #FE001b;
    padding: 10px 20px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
}

.header .logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.header .cart-icon {
    font-size: 1.5rem;
    color: #fff;
}

.buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* margin-top: 15px; */
}

.button-container {
    display: flex;
    gap: 10px;
}

.product-price {
    text-align: right;
    margin-left: 20px;
}
.quantity-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #000000;
}

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

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 1.2rem;
}

.btn-primary {
    background-color: #28a745;
    border: none;
}

.btn-primary:hover {
    background-color: #218838;
}

.btn-secondary {
    background-color: #FE001b;
    border: none;
}

.btn-secondary:hover {
    background-color: #FE001b;
}

.footer {
    background-color: #FE001b;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    bottom: 0;
    width: 100%;
}

.footer .container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.footer .section {
    margin: 10px;
    flex: 1 1 200px;
}

.footer .social-icons a {
    color: #fff;
    margin: 0 10px;
    font-size: 1.5rem;
    text-decoration: none;
}

.footer .social-icons a:hover {
    color: #ddd;
}

.footer .map iframe {
    width: 100%;
    height: 200px;
    border: 0;
    border-radius: 5px;
}

.footer .logo-img {
    max-width: 250px;
    margin-bottom: 20px;
}

/* .product-image {
    margin-right: 20px;
    height: 150px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
} */

.main-image {
    width: 100%;
    height: 620px;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

@media (max-width: 600px) {
    .desktop-image {
        display: none;
    }

    .mobile-image {
        display: block !important;
    }
}

/* ESTILOS DE PRODUCTOS */
.product-container {
    padding: 20px;
    margin-top: 60px;
}

.product-details {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.product-info {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.product-image {
    margin-right: 20px;
    height: 150px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.product-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #000;
}

.product-description {
    font-size: 1rem;
    color: #333;
}
@media (max-width: 600px) {
    .product-image {
        height: 230px;
        width: 130px;
    }
    .product-title {
        font-size: 1.5rem;
    }
    .product-description {
        font-size: 0.9rem;
    }
}
/* FIN ESTILOS DE PRODUCTOS */
