.grupo_shop{
    display: flex;
    width: 100%;
    height: auto;
    padding: .5em;
    /* border: 1px solid green; */
}
.sw_shop{
  display: flex; justify-content: center; align-items: center;
  width: 100%;
  height: auto;
  padding: .5em;
  /* border: 1px solid magenta; */
}
.wp_shop{
  width: 100%;
  height: min-content;
  /* border: 2px solid blue; */
}
.sl_shop{
  display: flex; justify-content: center; align-items: center;
  height: min-content;
}

/* ======== productos ======== */

.item {
  width: 250px;
  height: min-content;
}
.item_img img {
  width: 100%;
  height: 100%;
  cursor: pointer;
  overflow: hidden;
  border: 2px solid rgba(0, 0, 0, .1);
}
.item_img {
  width: 100%;
  height: auto;
  box-sizing: border-box;
}
.item_title {
  position: relative;
  z-index: 0;
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  width: 100%;
  min-height: 40px;
  font-family: var(--Selphia);
  font-weight: 400;
  text-transform: capitalize;
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  line-height: 1em;
  color: grey;
  box-sizing: border-box;
}
.item_code::before{
  content: 'SKU:';
  font-family: var(--Poppins);
  font-weight: 500;
  color: grey;
}
.item_code {
  z-index: 2;
  font-size: .8rem;
  color: gray;
}
.item_categoria{
  display: none;
}
.item button {
  font-size: .8rem;
  border-radius: .5em;
  font-family: var(--roboto);
  font-size: .8rem;
  font-weight: 500;
  padding: .5em 1em;
}





/* ======== categorias ======= */
#categoria_box{
  width: 100%;
  margin-bottom: 1em;
  cursor: pointer;
}
.categoria_btn{
  margin: 0;
  margin-bottom: 2em;
  padding: 0 .3em;
  font-family: var(--Selphia);
  font-size: 1.5rem;
  text-transform: capitalize;
  color: var(--red);
  background-color: transparent;
  outline: none;
  border: none;
  border-radius: none;
  cursor: pointer;
}
.categoria_separador{
  color: var(--red);
}
.categoria_btn:hover{
  text-decoration: underline;
}


/* ======== paginacion ======= */
.paginacion_wrapper{
  display: flex; justify-content: center; align-items: center;
  width: 100%;
  height: min-content;
  padding: 2em;
}