
/* PRODUCT LIST    */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Titillium Web", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: small;
    font-size: 15px;
    
}

body{
    background-color: #faeed2;

}

.products-container{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.header{
    height: 80px;
    width: 90%;
    background-color: #027B8D;
    border-radius: 3px;
    margin: 30px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.header .headertext{
    font-size: 30px;
    font-weight: bold;
    color: #faeed2;
}

.cart{
    display: flex;
    background-color: #faeed2;
    justify-content: space-between;
    align-items: center;
    padding: 7px 10px;
    border-radius: 3px;
    width: 80px;
}
.fa-solid{
    color: #027B8D;
}

/* Modal */
.modal {
    display: block; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color:rgba(0, 0, 0, 75%); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
    width: 60%;
    background-color: #faeed2;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 5px solid #027B8D;
   /* width: 80%;  Could be more or less, depending on screen size */
}

.modal-button{
    background-color: #027B8D!important;
}
.close {
    color: #027B8D;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #a6e5e6;
    text-decoration: none;
    cursor: pointer;
}

.container{
    display: flex;
    width: 90%;
    margin-bottom: 30px;
     
}
#root{
    width: 60%;
    display: grid;
    margin: auto;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
  
    
}
.backpackbody{
    display: flex;
    justify-content: center;
}
.sidebar{
    width: 90%;
    border-radius: 5px;
    background-color: #a6e5e6;
    margin-left: 20px;
    padding: 15px;
    text-align: center;
    
}
.head{
    background-color: #027B8D;
    border-radius: 3px;
    height: 40px;
    padding: 10px;
    margin-bottom: 20px;
    color: #faeed2;
    display: flex;
    align-items: center;
}
.foot{
    display: flex;
    justify-content: space-between;
    margin: 20px 0px;
    padding: 10px 0px;
    border-top: 1px solid #4d3b21;
}
.box{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #027B8D;
    border-radius: 5px;
    padding: 15px;
    height: auto;
    margin-bottom: 30px;
}
.img-box{
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.images{
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    object-position: center;
}
.bottom{
    margin-top: 15px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 12px;
    font-weight: bold;
    justify-content: space-between;
    height: 110px;
}
h2{
    font-size: 12px;
    font-weight: bold;
    color: #4d3b21;
}
.bottom button{
    width: 100%;
    position: relative;
    border: none;
    border-radius: 5px;
    background-color: #027B8D;
    padding: 7px 25px;
    cursor: pointer;
    font-size: 12px;
    color: #faeed2;
}
.bottom button:hover{
    background-color: #a6e5e6;
}

.cart p{
    height: 22px;
    width: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    background-color: #027B8D;
    color: #faeed2;
}
.cart-item{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    background-color: #faeed2;
    font-size: 12px;
    border-bottom: 1px solid #a6e5e6;
    border-radius: 3px;
    margin: 10px 10px;
}
.row-img{
    width: 50px;
    height: 50px;
    border-radius: 50px;
    border: 1px solid #027B8D;
    display: flex;
    align-items: center;
   
    justify-content: center;
}
.rowimg{
    max-width: 47px;
    max-height: 47px;
    border-radius: 50%;
}
.fa-trash:hover{
    cursor: pointer;
    color: #4d3b21;
}




/* CARRUSEL */

.carousel-item-1 {
    width: 100%;
    background-size: cover;
    background-image: url("/assets/img/carousel/AdobeStock_211446611.jpeg");
    background-position: center;
}

.carousel-item-2 {
    width: 100%;
    background-size: cover;
    background-image: url("/assets/img/carousel/AdobeStock_410511672.jpeg");
    background-position: center;
}

.carousel-item-3 {
    width: 100%;
    background-size: cover;
    background-image: url("/assets/img/carousel/_DSC4982.JPG");
    background-position: center;
}

.carousel-item-4 {
    width: 100%;
    background-size: cover;
    background-image: url("/assets/img/carousel/AdobeStock_499061001.jpeg");
    background-position: center;
}

.carousel-item-5 {
    width: 100%;
    background-size: cover;
    background-image: url("/assets/img/carousel/AdobeStock_8679382.jpeg");
    background-position: center;
}

.imagencarrusel {
    height: 800px;
    background-repeat: no-repeat;
    background-position: end center;
    min-height: 300px !important;
}

.carousel-caption h3 strong, .carousel-caption p {

  color: #EBA972 ;
 
  margin-bottom: 35px;
  /* Alinear al fondo */
  /* Alinear a la izquierda */
  
  /* Ancho total */
  padding: 0px;
  /* Espaciado interno */
 
  text-align: center;

}

.carousel-caption h3 strong {
    padding: 0 30px;
    color: #EBA972 ;
    background: linear-gradient(90deg, transparent 0%, rgba(0,0,0,50%) 10%, rgba(0,0,0,50%) 90%, transparent 100%); /* 2, 123, 141 */
    /* background-color: rgba(0,0,0,32% ); */
 }

.carousel-caption p
{
color: #FAEED2;
text-shadow: 0 2px 2px #000;
}

#whatsapp-chat {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 2;
}

#whatsapp-chat a {
  display: block;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 60%;
  text-align: center;
  line-height: 55px;
  color: #fff; 
  text-decoration: none;
  transition: background-color 0.3s ease;
}

#whatsapp-chat a:hover {
  background-color: #128C7E;
}

#whatsapp-chat img {
  width: 40px;
  
}

/* .carousel-control-prev-icon-bg {
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'><path d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/></svg>");
}
.carousel-control-next-icon-bg{
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'><path d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/></svg>");
} */

.carousel-control-prev, .carousel-control-next, .carousel-indicators {
    filter: invert(100%) !important;
    z-index: 1;
}

main {
    margin-top: 50px;
}

header {
    width: 100%;
    position: absolute !important;
    top: 0;
    left: 0;
    z-index: 2;
}

@media screen and (max-width: 1400px) {
    .imagencarrusel {
        height: 700px;
        min-height: 700px !important;
    }
}

@media screen and (max-width: 1200px) {
    .imagencarrusel {
        height: 600px;
        min-height: 600px !important;
    }
}

@media screen and (max-width: 992px) {
    .imagencarrusel {
        height: 500px;
        min-height: 500px !important;
    }
}

@media screen and (max-width: 768px) {
    .imagencarrusel {
        height: 400px;
        min-height: 400px !important;
    }
    .carousel-caption h3 strong {
        font-size: medium;
     }
    
    .carousel-caption p {
        font-size: small;
    }
    #root{
        display: flex;
        flex-direction: column;
        margin: auto;
    }
}

@media screen and (max-width: 576px) {
    .imagencarrusel {
        height: 300px;
        min-height: 300px !important;
    }
    .carousel-caption h3 strong {
        font-size: medium;
     }
    
    .carousel-caption p {
        font-size: small;
    }
    #root{
        display: flex;
        flex-direction: column;
        margin: auto;
    }
}