:root {
    --primary-color: #2c3e50; /* Azul oscuro elegante */
    --secondary-color: #e67e22; /* Naranja sutil para detalles */
    --text-color-dark: #34495e; /* Texto gris oscuro */
    --text-color-light: #ffffff; /* Texto claro para contrastar con el fondo */
    --box-background: rgba(255, 255, 255, 0.15); /* Blanco muy translúcido para la caja */
    --border-radius: 10px;
}

body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    background: var(--primary-color);
    background-image: url('/favoritos/wok.png'); /* Reemplaza con la ruta de tu imagen */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    justify-content: center;
    align-items: center;
    min-height: 100%;

}


.container {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    background-color: rgba(255, 255, 255, 0.8); /* Translúcido */

    border-radius: 8px;
    text-align: center;
}

    #cart {
      position: absolute;
      top: 0px;
      right: 10px;
    }
    .badge {
      padding-left: 9px;
      padding-right: 9px;
      -webkit-border-radius: 9px;
      -moz-border-radius: 9px;
      border-radius: 9px;
    }

    .label-warning[href],
    .badge-warning[href] {
      background-color: #c67605;
    }
    #lblCartCount{
        font-size: 12px;
        background: #ff0000;
        color: #fff;
        padding: 0 5px;
        vertical-align: top;
        margin-left: -10px; 
    }
    #home {
      position: absolute;
      top: 20px;
      right: 50px;
      margin-right: -50%;
      transform: translate(-50%, -50%);    
    }

h1 {
    font-family: 'Poppins', sans-serif;
    color: #5c4033;
}

.swiper-container {
    width: 100%;
    height: 450px; /* Altura del carrusel */
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.card {
    display: flex;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    max-width: 800px;
}

.card-img {
    width: 50%;
    height: auto;
    object-fit: cover;
}

.card-content {
    padding: 20px;
    width: 50%;
    text-align: left;
}

.card-content h2 {
    color: #e67e22;
    font-family: 'Poppins', sans-serif;
}

.card-content p {
    font-weight: 300;
}

.price {
    font-size: 1.5em;
    font-weight: bold;
    color: #2c3e50;
    margin-top: 15px;
}

.add-to-cart-btn {
    display: inline-block;
    background-color: #2c3e50;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    transition: background-color 0.3s;
}

.add-to-cart-btn:hover {
    background-color: #e67e22;
}

/* Estilos para la navegación de swiper */
.swiper-button-next, .swiper-button-prev {
    color: #2c3e50;
}

.swiper-pagination-bullet-active {
    background-color: #2c3e50;
}
