#category_page h2 {
  margin: 0 0 1.5em 0;
}

#category_page .cat-banner-cont {
  height: 25vw;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.3));
  border-radius: 3vw;
  margin-bottom: 3em;
}

#category_page .sub-cats-cont {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 2fr));
  place-items: center;
  justify-content: center;
  align-items: center;
  gap: 5vw;
  flex-wrap: wrap;
  margin-bottom: 2em;
  position: sticky;
  top: 85px;
  background: white;
  z-index: 1;
  padding: 2em;
  box-shadow: 0px 17px 11px -15px #6d6d6d;
}

#category_page .sub-cats-cont .sub-cat-item {
  background-color: #fefefe;
  border-radius: 40px;
  padding: 0.5em;
  box-shadow: 0 0 20px 0px #0000001f;
  width: 210px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#category_page .sub-cats-cont .sub-cat-item .sub-cat-item-cont {
  text-align: center;
  color: gray;
  display: flex;
  justify-content: center;
  text-decoration: none;
  align-items: center;
}

#category_page .sub-cats-cont .sub-cat-item a img {
  width: 75px;
  border-radius: 50%;
  flex-basis: 4em;
}

#category_page .sub-cats-cont .sub-cat-item a img.xbox {
  width: 65px;
  height: 65px;
  padding: 0.5em;
}

#category_page .sub-cats-cont .sub-cat-item a p {
  color: gray;
  font-weight: bold;
  margin: 0.5em;
  flex-basis: 8em;
}

img.trusted_by_badge {
  width: 220px;
  margin: 1em -1em;
}

#category_page .videos-cont {
  margin-bottom: 3em;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}

#category_page .videos-sep-cont {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 25px;
  margin: auto;
}

#category_page .videos-sep-cont .videos-sep-line {
  width: 100%;
  height: 3px;
  border-radius: 50px;
  background-color: #e1e1e1;
}

#category_page .videos-sep-cont img {
  width: 150px;
}

#category_page .videos-cont .videos {
  width: 100%;
  margin: 2em 0;
  display: grid;
  grid-gap: 2em;
  grid-template-columns: repeat(auto-fit, minmax(485px, 3fr));
  place-items: center;
}

#category_page .videos-cont .videos video {
  max-width: 500px;
  border-radius: 15px;
  box-shadow: 0 0 20px 0 #00000040;
}

#category_page .cat-info-cont {
  margin-bottom: 2em;
}

#category_page .cat-info-cont p {
  margin: 2em 2.5em;
}

#category_page #no_products_found {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3em;
}

#category_page #no_products_found img {
  width: 25vw;
}

@media screen and (max-width: 560px) {
  #category_page .videos-cont .videos {
    grid-template-columns: unset;
  }

  #category_page .videos-cont .videos video {
    width: 330px;
  }
}

@media screen and (max-width: 390px) {
  .videos-cont .videos video {
    width: 280px;
  }

  #category_page .cat-info-cont {
    margin-block: 2em;
  }
}

@media screen and (max-width: 650px) {
  #category_page .sub-cats-cont .sub-cat-item {
    width: 155px;
  }

  #category_page .sub-cats-cont .sub-cat-item a p {
    font-size: 12px;
  }

  #category_page .sub-cats-cont .sub-cat-item a img.xbox {
    width: 28px;
    height: 50px;
  }

  #category_page .sub-cats-cont .sub-cat-item a img {
    width: 50px;
  }
}

#category_page .slider-content {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

#category_page .carousel-container {
  position: relative;
  width: 50%;
  max-width: 900px;
  overflow: hidden;
  padding-bottom: 3rem;
}

#category_page .carousel {
  display: flex;
  transition: transform 0.5s ease;
}

#category_page .carousel-item {
  min-width: 100%;
}

#category_page .carousel-item img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  height: 25rem;
  max-height: 25rem;
  min-height: 25rem;
}

#category_page .carousel-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-100%);
}

#category_page .carousel-controls span:nth-child(1) {
  margin-left: 1.5rem;
}

#category_page .carousel-controls span:nth-child(2) {
  margin-right: 1.5rem;
}

#category_page .carousel-controls span {
  background-color: #ffffff40;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  min-width: 3rem;
  min-height: 3rem;
  font-size: 2rem;
  color: black;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.5s;
  transform: scale(1);
}

#category_page .carousel-controls span:hover {
  background-color: #ffffff75;
  transform: scale(1.25);
}

#category_page .carousel-indicators {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
}

#category_page .indicator {
  transition: all 1s;
  height: 10px;
  width: 10px;
  margin: 0 5px;
  background-color: transparent;
  border: 1px solid #000;
  border-radius: 50%;
  cursor: pointer;
}

#category_page .indicator.active {
  background-color: #000;
}

#category_page .carousel-item {
  filter: opacity(0);
  transition: all 0.5s;
}

#category_page .carousel-item.active {
  filter: opacity(100%);
}

#category_page .slider-body {
  display: none;
  width: 50%;
  padding: 2rem;
  padding-top: 0;
}

#category_page .slider-body.active {
  display: block;
}

#category_page .slider-body p {
  display: block;
  text-overflow: ellipsis;
  overflow: hidden;
  max-height: 6.875rem;
  max-width: 100%;
  font-weight: bold;
  font-size: 1.5em;
}

#category_page .faq-container {
  height: fit-content;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  flex: 1;
}

#category_page .faq-contact-us-card {
  position: relative;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin: 5rem 0;
}

#category_page .faq-contact-us-card .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-us-button {
  background-color: red;
  border: none;
  border-radius: 1rem;
  padding: 1rem 4rem;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transform: scale(1);
  transition: all 0.5s;
}

.contact-us-button:hover {
  transform: scale(1.05);
  background-color: #e40000;
}

#category_page .faq-card {
  position: relative;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  margin: 10px 0;
  transition: all 0.3s ease;
  transform: scale(1);
  filter: brightness(1);
}

#category_page .faq-card:hover {
  transform: scale(1.05);
  filter: brightness(0.975);
}

#category_page .faq-card.active:hover {
  transform: scale(1);
  filter: brightness(1);
}

#category_page .faq-question {
  position: relative;
  padding: 25px;
  padding-block: 35px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#category_page .faq-question p {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 500;
  color: #231f20;
}

#category_page .faq-question span {
  font-size: 2rem;
  font-weight: 700;
  color: #231f20;
}

  @media (max-width: 600px) {
    #category_page .faq-question {
      padding: 0;
      padding-block: 0;
      flex-direction: column;
      gap: 0.5rem;
    }

    #category_page .faq-question p {
      font-size: 12px;
    }

    #category_page .faq-question span {
      font-size: 1rem;
      font-weight: 500;
    }
  }

#category_page .faq-answer {
  margin-top: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-inline: 30px;
}

#category_page .faq-answer p {
  font-weight: 500;
  font-size: 21px;
  color: #5e5e5e;
}

#category_page .faq-card.active .faq-answer {
  max-height: 200px;
  margin-top: -20px;
}

#category_page .toggle-icon {
  background-color: #e6e5e4;
  border-radius: 5px;
  width: 2.5rem;
  height: 2.5rem;
  min-width: 2.5rem;
  min-height: 2.5rem;
  position: relative;
  font-size: 22px;
  transition: all 0.75s ease;
}

#category_page .faq-card .toggle-icon::before {
  content: "+";
  position: absolute;
  color: #5e5e5e;
  font-size: 22px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#category_page .faq-card.active .toggle-icon {
  background-color: red;
}

#category_page .faq-card.active .toggle-icon::before {
  content: "-";
  color: #fff;
  position: absolute;
  font-size: 22px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#category_page .faq-card .faq-question::before {
  content: "";
  filter: opacity(0);
  position: absolute;
  background-color: red;
  height: 51px;
  width: 12.7px;
  left: -6px;
  top: 50%;
  transform: translateY(-100%);
  transition: all 0.5s;
}

#category_page .faq-card.active .faq-question::before {
  content: "";
  position: absolute;
  background-color: red;
  height: 51px;
  width: 12.7px;
  left: -6px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.5s;
  filter: opacity(100);
}

#category_page .sectionBody {
  font-weight: 500;
  font-size: 20px;
  color: #6e6e6e;
  margin-bottom: 2em;
}

#category_page .faq-columns {
  display: flex;
  justify-content: space-between;
  gap: 4.75rem;
}

@media screen and (max-width: 768px) {
  #category_page .videos-cont .videos {
    grid-template-columns: unset;
  }

  #category_page .videos-cont .videos video {
    width: 330px;
  }

  #category_page .faq-question p {
    font-size: 16px;
    font-weight: 500;
  }

  #category_page .sectionBody {
    font-weight: 400;
    font-size: 16px;
  }

  #category_page .slider-content {
    flex-direction: column;
  }

  #category_page .carousel-container,
  #category_page .slider-body {
    width: 90%;
  }

  #category_page .faq-columns {
    flex-direction: column;
    gap: 2rem;
  }
}

@media screen and (max-width: 390px) {
  .videos-cont .videos video {
    width: 280px;
  }

  #category_page .faq-question p {
    font-size: 16px;
    font-weight: 500;
  }

  #category_page .slider-content {
    flex-direction: column;
  }

  #category_page .carousel-container,
  #category_page .slider-body {
    width: 90%;
  }

  #category_page .faq-columns {
    flex-direction: column;
    gap: 2rem;
  }
}
