.wrap {
  /* max-width: 1100px;
  width: 90%; */
  width: 100%;
  margin: auto;
}

/* .wrap > h1 {
  color: #494b4d;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  text-align: center;
  margin: 15px 0px;
}

.wrap > h1:after {
  content: "";
  width: 100%;
  height: 1px;
  background: #c7c7c7;
  margin: 20px 0;
} */

.store-wrapper {
  display: flex;
  flex-wrap: wrap;
}

.category_list {
  display: flex;
  flex-direction: column;
  width: 18%;
}

.category_list .category_item {
  display: block;
  width: 90%;
  /* padding: 15px 0; */
  padding: 15px;
  /* margin-bottom: 20px; */
  background: transparent;
  text-align: initial;
  text-decoration: none;
  color: var(--gray-500);
}

/* .category_list .ct_item-active {
  background: #2d3e50;
  background: #005ad620;
  border-right: 4px solid #005ad6;
  color:#0074e0;
} */

/* PRODUCTOS ============*/

.products-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.products-list-2 {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.products-list .product-item {
  /* width: 22%; */
  /* width: 100%;
  height: 450px;
  margin-left: 3%;
  margin-bottom: 25px; */
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.22);
  /* display: flex;
  flex-direction: column;
  align-items: center;
  align-self: flex-start; */
  transition: all 0.4s;
}

.products-list .product-item-2 {
  /* width: 22%; */
  /* width: 100%;
  height: 450px;
  margin-left: 3%;
  margin-bottom: 25px; */
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.22);
  /* display: flex;
  flex-direction: column;
  align-items: center;
  align-self: flex-start; */
  transition: all 0.4s;
}

.products-list .product-item img {
  width: 100%;
}

.products-list .product-item-2 img {
  width: 100%;
}

/* .products-list .product-item a {
  display: block;
  width: 100%;
  padding: 8px 0;
  background: #2d3e50;
  color: #fff;
  text-align: center;
  text-decoration: none;
} */

/* RESPONSIVE */

/* @media screen and (max-width: 1100px) {
  .products-list .product-item {
    width: 30.3%;
  }
} */

@media screen and (max-width: 800px) {

  .category_list,
  .products-list {
    width: 100%;
  }

  .category_list .category_item {
    /* align-self: flex-start; */
    width: 25%;
    font-size: 14px;
  }

  .products-list .product-item:nth-child(3n + 1) {
    margin-left: 0px;
  }

  .category_list-2,
  .products-list-2 {
    width: 100%;
  }

  .category_list-2 .category_item-2 {
    /* align-self: flex-start; */
    width: 35%;
    font-size: 14px;
  }

  .products-list .product-item-2:nth-child(3n + 1) {
    margin-left: 0px;
  }
}

@media screen and (max-width: 700px) {}

/* .category_list .category_item {
    width: 100%;
    margin-bottom: 10px;
  } */

/* @media screen and (max-width: 600px) {
  .products-list .product-item {
    width: 47.5%;
  }

  .products-list .product-item:nth-child(3n + 1) {
    margin-left: 4.5%;
  }

  .products-list .product-item:nth-child(2n + 1) {
    margin-left: 0px;
  }
}

@media screen and (max-width: 350px) {
  .products-list .product_item {
    width: 100%;
    margin-left: 0px;
  }
} */

.window {
  display: block;
  width: 100%;
  margin: 50px auto 0;
  overflow: hidden;
}

.window .header {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  height: 50px;
  width: 100%;
  overflow: hidden;
  transition: all 0.5s ease-out;
  transition-delay: 0.2s;
  z-index: 1;
}

.window .header .burger-container {
  position: relative;
  display: inline-block;
  height: 50px;
  width: 50px;
  cursor: pointer;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  transition: all 0.3s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.window .header .burger-container #burger {
  width: 18px;
  height: 8px;
  position: relative;
  display: block;
  margin: -4px auto 0;
  top: 50%;
}

.window .header .burger-container #burger .bar {
  width: 100%;
  height: 1px;
  display: block;
  position: relative;
  background: var(--blue-300);
  transition: all 0.3s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  transition-delay: 0s;
}

.window .header .burger-container #burger .bar.topBar {
  -webkit-transform: translateY(0px) rotate(0deg);
  transform: translateY(0px) rotate(0deg);
}

.window .header .burger-container #burger .bar.btmBar {
  -webkit-transform: translateY(6px) rotate(0deg);
  transform: translateY(6px) rotate(0deg);
}

.window .header .icon {
  display: inline-block;
  position: absolute;
  height: 100%;
  line-height: 50px;
  width: 50px;
  height: 50px;
  text-align: center;
  font-size: 22px;
  left: 100%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.window .header .icon.icon-bag {
  right: 0;
  top: 0;
  left: auto;
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
  transition: -webkit-transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  transition: transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  transition: transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99), -webkit-transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  transition-delay: 0.65s;
}

.window .header .menu {
  position: relative;
  display: block;
  padding: 25px 48px 0px 48px;
  list-style: none;
  height: 100%;
  backdrop-filter: blur(8px);
}

.window .header .menu li.category-item {
  border-bottom: 1px;
  margin-top: 5px;
  -webkit-transform: scale(1.15) translateY(-30px);
  transform: scale(1.15) translateY(-30px);
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.4, 0.01, 0.165, 0.99), -webkit-transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  transition: transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99), opacity 0.6s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  transition: transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99), opacity 0.6s cubic-bezier(0.4, 0.01, 0.165, 0.99), -webkit-transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99);
}

.window .header ul.menu li.menu-item:nth-child(1) {
  transition-delay: 0.49s;
}

.window .header ul.menu li.menu-item:nth-child(2) {
  transition-delay: 0.42s;
}

.window .header ul.menu li.menu-item:nth-child(3) {
  transition-delay: 0.35s;
}

.window .header ul.menu li.menu-item:nth-child(4) {
  transition-delay: 0.28s;
}

.window .header ul.menu li.menu-item:nth-child(5) {
  transition-delay: 0.21s;
}

.window .header ul.menu li.menu-item:nth-child(6) {
  transition-delay: 0.14s;
}

.window .header ul.menu li.ç-item:nth-child(7) {
  transition-delay: 0.07s;
}

.window .header .menu li.menu-item a {
  display: block;
  position: relative;
  color: 4d4d4d;
  font-family: "Ek Mukta", sans-serif;
  font-weight: 100;
  text-decoration: none;
  font-size: 22px;
  line-height: 2.35;
  font-weight: 200;
  width: 100%;
}

.window .header.menu-opened {
  height: 88vh;
  transition: all 0.3s ease-in;
  transition-delay: 0.25s;
  box-shadow: var(--shadow-2);
}

.window .header.menu-opened .burger-container {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.window .header.menu-opened .burger-container #burger .bar {
  transition: all 0.4s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  transition-delay: 0.2s;
}

.window .header.menu-opened .burger-container #burger .bar.topBar {
  -webkit-transform: translateY(4px) rotate(45deg);
  transform: translateY(4px) rotate(45deg);
}

.window .header.menu-opened .burger-container #burger .bar.btmBar {
  -webkit-transform: translateY(3px) rotate(-45deg);
  transform: translateY(3px) rotate(-45deg);
}

.window .header.menu-opened ul.menu li.menu-item {
  -webkit-transform: scale(1) translateY(0px);
  transform: scale(1) translateY(0px);
  opacity: 1;
}

.window .header.menu-opened ul.menu li.menu-item:nth-child(1) {
  transition-delay: 0.27s;
}

.window .header.menu-opened ul.menu li.menu-item:nth-child(2) {
  transition-delay: 0.34s;
}

.window .header.menu-opened ul.menu li.menu-item:nth-child(3) {
  transition-delay: 0.41s;
}

.window .header.menu-opened ul.menu li.menu-item:nth-child(4) {
  transition-delay: 0.48s;
}

.window .header.menu-opened ul.menu li.menu-item:nth-child(5) {
  transition-delay: 0.55s;
}

.window .header.menu-opened ul.menu li.menu-item:nth-child(6) {
  transition-delay: 0.62s;
}

.window .header.menu-opened ul.menu li.menu-item:nth-child(7) {
  transition-delay: 0.69s;
}

.window .header.menu-opened .icon.icon-bag {
  -webkit-transform: translateX(75px);
  transform: translateX(75px);
  transition-delay: 0.3s;
}

.window .content {
  font-family: "Ek Mukta", sans-serif;
  padding: 67px 4% 0;
  text-align: justify;
  overflow: scroll;
  max-height: 100%;
}

.window .content::-webkit-scrollbar {
  display: none;
}

.window .content h2 {
  margin-bottom: 0px;
  letter-spacing: 1px;
}

.window .content img {
  width: 95%;
  position: relative;
  display: block;
  margin: 75px auto 75px;
}

.window .content img:nth-of-type(2) {
  margin: 75px auto;
}

@media (min-width: 900px) {
  .window {
    width: 100%;
    height: 100vh;
    margin: 0;
    border-radius: 0px;
  }

  .window .header {
    position: fixed;
  }
}

@media (max-width: 900px) {
  .category_item {
    display: block;
    position: relative;
    color: #4d4d4d;
    font-weight: 100;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    width: 100%;
    height: 9%;
  }
}

@media (max-width: 900px) {
  .category_item-2 {
    display: block;
    position: relative;
    color: #4d4d4d;
    font-weight: 100;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    width: 100%;
    height: 9%;

  }
}

.ct_item-active-2 {
  background-color: #DEECFB !important;
  font-weight: 600 !important;
  transition: background-color 0.3s ease, color 0.3s ease !important;
  border-bottom: 4px solid #0B4D93;
  /* Añade la barra abajo del botón activado */
}

.ct_item-active-2 p {
  color: #0B4D93 !important;
  font-weight: 600 !important;
  transition: background-color 0.3s ease, color 0.3s ease !important;
}