@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
.main {
    width: calc(95% - 270px);
    margin-left: 300px;
    background: #FFFF;
    border-radius: 30px;
    height: 90vh;

    display: flex;

}

.main .content {
    width: 100%;
    height: 100%;
    padding: 30px;
    box-sizing: border-box;
    overflow-y: auto;
}

/* width */
.main .content::-webkit-scrollbar {
    width: 5px;
}

/* Track */
.main .content::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px rgba(128, 128, 128, 0.676);

}

/* Handle */
.main .content::-webkit-scrollbar-thumb {
    background: #141414d2;

}


.top-main {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.top-main .welcome-title {
    line-height: 35px;
    font-weight: 600;
}

.top-main .s-c-men .btn-search {
    width: 40px;
    height: 40px;
    border-radius: 15px;
    background: rgb(226, 226, 226);
    color: #141414;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all .5s ease;
}

.top-main .s-c-men .btn-cart {
    width: 40px;
    height: 40px;
    border-radius: 15px;
    background: #141414;
    color: #FFFF;
    font-weight: 700;
    border: none;
    cursor: pointer;
    margin-left: 10px;
    transition: all .5s ease;
}

.top-main .s-c-men button:hover {
    box-shadow: 0px 0px 20px rgba(193, 193, 193, 0.4);
}

.main .content .content-products {
    width: 100%;
    margin-top: 35px;

}

.main .content .content-products .tabs-shop {
    width: 100%;
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main .content .content-products .tabs-shop .filter-shop {
    display: flex;

}

.main .content .content-products .tabs-shop .filter-shop span {
    font-size: 16px;
}

.main .content .content-products .tabs-shop .filter-shop select {
    font-size: 14px;
    outline: none;
    border-radius: 5px;

}

.main .content .content-products .products {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
    justify-content: center;

}

/*---------------------------------------ESTILOS DE LOS PRODUCTOS -----------------------------------------*/

.elige-para-ti {
  font-size: 16px;
  margin-left: 16px;
}

.products_wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 20px;
  padding:  20px;
  justify-content: center;
}

.product_container {
  width: 230px;
  height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  cursor: pointer;
}

.product_container .por-mayor {
  position: absolute;
  top: 60px;
  left: -25px;
  background-color: #28a745; /* Verde */
  color: white;
  padding: 5px 15px;
  font-size: 12px;
  font-weight: bold;
  border-radius: 10px;
  transform: rotate(-45deg); /* Girar la etiqueta */
  transform-origin: top left;
  z-index: 10;
  width: 120px;
  text-align: center;
}

.product_container .descuento {
  position: absolute;
  top: 60px;
  left: -25px;
  background-color: #dc3545; /* Rojo */
  color: white;
  padding: 5px 15px;
  font-size: 12px;
  font-weight: bold;
  border-radius: 10px;
  transform: rotate(-45deg); /* Girar la etiqueta */
  transform-origin: top left;
  z-index: 10;
  width: 120px;
  text-align: center;
}



.product_container .image_product {
  width: 150px;
  height: 150px;
  overflow: hidden;
  border-radius: 30px;
  position: absolute;
  background: #FFFF;
  box-shadow: 0 4px 15px rgb(0 0 0 / 15%);
}

.product_container .image_product img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product_container .text_product {
  width: 100%;
  height: 100%;
  margin-top: 75px;
  padding-top: 90px;
  border-radius: 30px;
  background: #FFFF;
  box-shadow: 0px 0px 5px rgb(0 0 0 / 18%);
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
}

.context_menu{
  position: absolute;
  right: 0;
  top: 0;
  background: none;
  border: none;
  color: #999999;
  font-size: 18px;
}

.product_container .text_product .title_product {
    font-weight: 700;
    font-size: 15px;
    color: #141414;
}
.des_product{
    
    font-size: 12px;
    color: #141414;
}

.product_container .text_product .buttons_product {
  width: 100%;
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product_container .text_product .buttons_product .price_product {
  font-weight: 700;
  font-size: 22px; /* Tamaño mayor para todo el precio */
  color: #141414; /* Color para el precio con descuento */
}

.product_container .text_product .buttons_product .price_product .price_original {
  font-size: 14px;
  color: #999; /* Color gris para el precio original */
  text-decoration: line-through;
  margin-right: 5px;
}

/* Estilo para hacer más pequeño el símbolo S/ */
.product_container .text_product .buttons_product .price_product span.symbol {
  font-size: 14px; /* Símbolo más pequeño */
}

/* Estilo para hacer más grande la parte antes del decimal */
.product_container .text_product .buttons_product .price_product span.before-decimal {
  font-size: 26px; /* Parte antes del decimal más grande */
}

/* Estilo para los decimales */
.product_container .text_product .buttons_product .price_product span.after-decimal {
  font-size: 18px; /* Decimales más pequeños */
}

/* Añadir estilo para el precio tachado */
.product_container .text_product .buttons_product .price_product .price_original {
  font-size: 14px;
  color: #999;
  text-decoration: line-through;
  margin-left: 5px;
}

.product_container .text_product .buttons_product .add_cart {
  min-width: 30px;
  height: 30px;
  padding: 0 5px;
  border-radius: 25px;
  border: none;
  background: #141414;
  color: #FFFF;
  cursor: pointer;
  box-shadow: 0px 0px 10px rgb(0 0 0 / 15%);
}

/* Responsivo */

@media (max-width: 1150px) {
  .products_wrapper {
    grid-template-columns: repeat(4, 1fr);
    zoom: 90%;  
  }
  
  .product_container {
    
    
  }
}



@media (max-width: 550px) {
  .products_wrapper {
    
    gap: 18px;
    padding: 19px;
    margin-top: 40px;
  }
  
  
  /* Estilo para hacer más grande la parte antes del decimal */
  .product_container .text_product .buttons_product .price_product span.before-decimal {
    font-size: 22px; /* Parte antes del decimal más grande */
  }
  
  /* Estilo para los decimales */
  .product_container .text_product .buttons_product .price_product span.after-decimal {
    font-size: 16px; /* Decimales más pequeños */
  }
  
  /* Añadir estilo para el precio tachado */
  .product_container .text_product .buttons_product .price_product .price_original {
    font-size: 16px;
  }
  

  .product_container .image_product {
    width: 150px;
    height: 150px;
    overflow: hidden;
    border-radius: 30px;
    position: absolute;
    background: #FFFF;
    box-shadow: 0 4px 15px rgb(0 0 0 / 15%);
  }

  .product_container .text_product {
    margin-top: 60px;
    height: 180px;
  }

  .product_container .por-mayor {
    font-size: 10px;
  }

  .product_container .descuento {
    font-size: 10px;
  }
  
}


@media (max-width: 400px) {
  
 
  
  /* Estilo para hacer más grande la parte antes del decimal */
  .product_container .text_product .buttons_product .price_product span.before-decimal {
    font-size: 22px; /* Parte antes del decimal más grande */
  }
  
  /* Estilo para los decimales */
  .product_container .text_product .buttons_product .price_product span.after-decimal {
    font-size: 16px; /* Decimales más pequeños */
  }
  
  /* Añadir estilo para el precio tachado */
  .product_container .text_product .buttons_product .price_product .price_original {
    font-size: 16px;
  }
  


  .product_container .por-mayor {
    font-size: 10px;
  }

  .product_container .descuento {
    font-size: 10px;
  }
  
}

.main .aside {
    width: 30%;
    height: 100%;
    padding: 30px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;

}

/*CONTEXT MENU*/
/* ===== Boxicons CSS =====  */


.context {
    padding: 0 7px;
    border-radius: 10px;
    background-color: #fff;
    color: rgb(20, 20, 20);
    list-style-type: none;
    -webkit-box-shadow: 2px 5px 6px 3px rgb(100, 100, 100, .2);
    box-shadow: 2px 5px 6px 3px rgb(100, 100, 100, .2);
    position: absolute;
    top: 5px;
    right: 5px;
    z-index: 100;
    display: none;
    opacity: 0;
    transition: all .2s ease;
}

.context li a {
    display: flex;
    align-items: center;
    padding: 12px 10px;
    border-radius: 7px;
    cursor: pointer;
    user-select: none;
    width: 200px;
    transition: .1s;
    background-color: rgb(200, 200, 200, 0);
    font-size: 14px;
    margin: 7px auto;
}

.context li a:hover {
    background-color: rgb(200, 200, 200, .4);
}

.context li a:active {
    background-color: rgb(200, 200, 200, .6);
}

.context li a i {
    color: rgb(20, 20, 20, .7);
    font-size: 18px;
    margin-right: 10px;
}

.context .divisor {
    width: 100%;
    height: 1px;
    background-color: rgb(100, 100, 100, .2);
}

@media (max-width:1070px) {
    .main .content {
        width: 100%;
    }

    .main .aside {
        display: none;
    }

}

@media (max-width:860px) {

    .main {
        width: 100%;
        height: 100vh;
        margin: 0 auto;
        padding-top: -10px;
        border-radius: 0;
    }
}

@media (max-width:860px) {
    .welcome-title {
        display: none;
    }

    .menu_activated {
        display: flex;
        background: none;
        border: none;
        cursor: pointer;
        width: 30px;
        height: 30px;

        align-items: center;
        justify-content: center;
    }

    .menu_activated i {
        font-size: 40px;
        font-weight: 700;
    }

    .top-main {
        position: sticky;
        top: 0;
        background: #FFFF;
        z-index: 100;
        border-radius: 30px;
        height: 60px;
        padding: 0 15px;
        box-sizing: border-box;
        transition: all .5s ease;
        flex-direction: row-reverse;
    }
}

.ctnQr {
    width: 250px;
    height: 300px;
    background: #ffff;
    border-radius: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
    margin-top: 50px;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 15%);
}

.imgPerfilQr {
    width: 60px;
    height: 60px;
    border: 2px solid #ffff;
    position: absolute;
    top: -35px;
    border-radius: 50px;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 15%);
}

.titleShopQr {
    margin-top: 25px;
    font-weight: 700;
    font-size: 12px;
    margin-bottom: 15px;
}

.lblTextoQr {
    font-size: 12px;
    text-align: center;
    margin-top: 15px;
}

.lblurlqr {
    margin-top: 10px;
    font-size: 11px;
    font-weight: 800;
}

