.content-section-tienda{
    display: flex;
    width: 100%;
    justify-content: center;
    gap: 2rem;
    margin: 1.5rem;
    align-items: center;
}

.titulo-tienda{
    display: inline-flex;
}


.tarjeta-informacion-tienda {
  --bg: #18445f;
  --contrast: #e2e0e0;
  position: relative;
  padding: 9px;
  background-color: var(--bg);
  border-radius: 35px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
  width: 40%;
}

.tarjeta-informacion-tienda-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-conic-gradient(var(--bg) 0.0000001%, var(--grey) 0.000104%) 60% 60%/600% 600%;
  filter: opacity(10%) contrast(105%);
}

.tarjeta-informacion-tienda-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background-color: var(--contrast);
  border-radius: 30px;
  /* Content style */

  color: black;
  font-weight: 100;
  text-align: left;

}

.carrusel-section-tienda{
    display: flex;
    width: 60%;
    justify-content: center;
    gap: 2rem;
    margin: 1.5rem;
    flex-direction: column;
}

.informacion-section-tienda{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
}

.resenias-section-tienda{
    display: flex;
}



.opciones-section-tienda{
    display: flex;
    justify-content: space-between;
}

.descripcion-tienda{
    display: flex;
    width: 100%;
    justify-content: center;

}

.descripcion-tienda p{
    width: 60%;
}


.productos-section-tienda{
    display: flex;
    width: 100%;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 50px;
    padding: 25px;
}

.productos-section-tienda > div {
    width: 15%;
}

.titulo-producto-destacado{
    text-align: center;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 27px;
}

.titulo-section-tienda, .opciones-section-tienda, .reviews-section-tienda, .gastos-minimos-section-tienda{
    margin: 0px 0px 15px 0;
}

/*tarjeta productos vista tienda*/
.card-producto {
    width: 200px;
    max-height: 350px;
    min-height: 350px;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0px 6px 17px 0px rgba(0,0,0,0.64);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 16px 0;
}

.titulo-card-producto {
    background-color: #193f56;
    color: white;
    font-weight: bold;
    padding: 10px 0;
    border-radius: 15px 15px 0 0;
    margin: -16px -16px 10px -16px;
}

.titulo-card-producto p {
    font-weight: bold;
    font-size: 12px;
}

.img-card-producto img {
    width: 100%;
    height: 140px; 
    object-fit: contain;
    object-position: center;
}

.descripcion-card-producto {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px 10px;
    flex-grow: 1;
}

.descripcion-card-producto h3{
    font-size: 17px;
    font-weight: bold;
}

.descripcion-card-producto p {
    font-size: 10px;
    color: gray;
    display: -webkit-box;
    -webkit-line-clamp: 3;    
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 5px;
}

.precio-card-producto {
    font-weight: bold;
    color: black !important;
    font-size: 22px !important;
}

.card-producto .flex {
    margin-bottom: 10px;
}

.opciones-plazas{
    flex-direction: column;
    align-items: baseline;
}

.d-block{
    display: block;
}

.contentModalAddCart{
    padding-top: 0px !important;
    margin-top: 5vh;
}

.titulo-modal-add-producto{
    color: white;
    background-color: #193f56;
    width: 100%;
    padding: 5px;
    font-weight: bold;
    text-align: center;
}

@media (max-width: 500px){
    .content-section-tienda{
       flex-direction: column;
       align-items: center;
       margin: 0;
       width: 100%;
    }    

    .tarjeta-informacion-tienda{
        width: 99%;
    }

    .carrusel-section-tienda{
        width: 100%;
    }

    .informacion-section-tienda{
        width: 100%;
    }

    .opciones-section-tienda{
        flex-direction: column;
    }

    .productos-section-tienda{
        flex-direction: column;
    }

    .productos-section-tienda > div{
        width: 100%;
    }

    .contentModalAddCart{
        margin-top: 10vh;
    }

    .card-product{
        width: 260px;
        min-height: 380px;
        max-height: 380px;
    }
}