@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
.catalog-wrapper {
  padding: 50px 0;
}

.products-row {
  display: flex;
  flex-flow: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.products-row .product-item {
  width: calc(25% - 18px);
}
@media screen and (max-width: 991px) {
  .products-row .product-item {
    width: calc(33.3333333333% - 16px);
  }
}
@media screen and (max-width: 768px) {
  .products-row .product-item {
    width: calc(50% - 12px);
  }
}

.product-item {
  position: relative;
  cursor: pointer;
  color: #777;
  transition: 0.3s;
}
.product-item__image {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  margin-bottom: 12px;
}
.product-item__image img {
  cursor: pointer;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.product-item__name {
  font-size: 18px;
  font-weight: 500;
  font-family: "Raleway";
  font-weight: 600;
}
@media screen and (max-width: 991px) {
  .product-item__name {
    line-height: 1.2;
    font-size: 14px;
  }
}
.product-item .view-product-detail {
  padding: 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.4);
  position: absolute;
  z-index: 1;
  bottom: 10px;
  border: none;
  left: 10px;
  color: #000;
  width: calc(100% - 20px);
  font-family: "Raleway";
  font-size: 14px;
  font-weight: 600;
  transition: 0.4s;
  transform: translateY(30px);
  opacity: 0;
  outline: none !important;
}
.product-item .view-product-detail:hover {
  background: #fff;
}
@media screen and (max-width: 575px) {
  .product-item .view-product-detail {
    font-size: 11px;
    padding: 4px;
    border-radius: 3px;
  }
}
.product-item:hover {
  color: #000;
}
.product-item:hover .view-product-detail {
  transform: translateY(0);
  opacity: 1;
}

.product-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: var(--app-height);
  background: rgba(95, 95, 95, 0.37);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.product-wrapper.open {
  opacity: 1;
  visibility: visible;
}
.product-wrapper .close {
  position: absolute;
  top: 15px;
  right: 15px;
  opacity: 1;
  z-index: 10;
}
@media screen and (max-width: 575px) {
  .product-wrapper .close {
    position: relative;
    top: 0;
    right: 0;
    margin-left: auto;
    padding-bottom: 10px;
  }
}
.product-wrapper__inner {
  width: calc(100% - 30px);
  background: #fff;
  max-width: 995px;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-flow: wrap;
  position: relative;
}
@media screen and (max-width: 575px) {
  .product-wrapper__inner {
    width: 100%;
    height: var(--app-height);
    border-radius: 0;
    padding: 10px;
    overflow: auto;
  }
}
.product-wrapper__gallery {
  width: 400px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .product-wrapper__gallery {
    width: 50%;
  }
}
@media screen and (max-width: 575px) {
  .product-wrapper__gallery {
    width: 100%;
    aspect-ratio: 9/12;
    border-radius: 10px;
    overflow: hidden;
  }
}
.product-wrapper__gallery .swiper-slide {
  height: initial;
}
.product-wrapper__gallery img, .product-wrapper__gallery video {
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: cover;
  object-position: center;
}
.product-wrapper__gallery .video-link {
  width: 100%;
  height: 100%;
  position: relative;
  display: block;
}
.product-wrapper__gallery .video-link::before {
  content: "";
  width: 100%;
  height: 100%;
  inset: 0;
  position: absolute;
  background-image: url("../images/play.svg");
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 991px) {
  .product-wrapper__gallery .video-link::before {
    background-size: 70px;
  }
}
.product-wrapper__info {
  width: calc(100% - 400px);
  padding: 40px;
  font-family: "Raleway", sans-serif;
  display: flex;
  justify-content: space-between;
  flex-flow: column;
}
@media screen and (max-width: 991px) {
  .product-wrapper__info {
    padding: 20px;
  }
}
@media screen and (max-width: 768px) {
  .product-wrapper__info {
    width: 50%;
  }
}
@media screen and (max-width: 575px) {
  .product-wrapper__info {
    width: 100%;
    padding: 10px;
  }
}

.product-title {
  font-size: 35px;
  font-weight: 600;
  line-height: 1.1;
  color: #333;
  margin-bottom: 20px;
}
@media screen and (max-width: 991px) {
  .product-title {
    font-size: 25px;
  }
}
@media screen and (max-width: 575px) {
  .product-attr li {
    display: flex;
  }
  .product-attr li em {
    min-width: 100px;
  }
}
.product-attr em {
  color: #333;
}
.product-marketplaces {
  display: flex;
  flex-flow: wrap;
  gap: 6px;
  margin-top: 30px;
}
.product-marketplaces__title {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  width: 100%;
  margin-bottom: 10px;
}
.product-marketplaces__item {
  background: #F7F7F7;
  padding: 10px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  width: calc(50% - 3px);
  font-size: 18px;
  line-height: 1.3;
  color: #777;
  flex-flow: wrap;
  font-family: "Poppins", sans-serif;
}
@media screen and (max-width: 991px) {
  .product-marketplaces__item {
    padding: 4px;
    font-size: 14px;
  }
}
.product-marketplaces__item em {
  color: #333;
}
.product-marketplaces__item p {
  margin: 0;
}
.product-marketplaces__icon {
  width: 54px;
  aspect-ratio: 1;
}
@media screen and (max-width: 991px) {
  .product-marketplaces__icon {
    width: 34px;
  }
  .product-marketplaces__icon img {
    width: 100%;
  }
}
@media screen and (max-width: 991px) {
  .product-marketplaces__content {
    width: 100%;
  }
}
.product-marketplaces__content .rating {
  position: relative;
  display: inline-flex;
  gap: 4px;
  align-items: center;
}
.product-marketplaces__content .rating::before {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  background-image: url("../images/star.svg");
}

.product-wrapper__gallery {
  position: relative;
  display: flex;
  align-items: center;
}
.product-wrapper__gallery .btn-arrow {
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  position: absolute;
  z-index: 2;
  border: none;
  left: 10px;
  outline: none !important;
  opacity: 0;
  transition: 0.3s;
}
.product-wrapper__gallery .btn-arrow.btn-next {
  left: auto;
  right: 10px;
}
.product-wrapper__gallery:hover .btn-arrow {
  opacity: 1;
}
.product-wrapper__gallery .slider-nav__pagination {
  left: 10px;
  color: #333;
  right: auto;
  width: auto;
  opacity: 1;
}

.gallery-badge, .slider-nav__pagination {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.4);
  color: #333;
  font-size: 18px;
  z-index: 2;
  font-family: "Poppins", sans-serif;
  padding: 4px 6px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}
@media screen and (max-width: 991px) {
  .gallery-badge, .slider-nav__pagination {
    font-size: 14px;
  }
}

.btn-border {
  padding: 20px 10px 18px;
  border: 3px solid #F1CF69;
  border-radius: 5px;
  line-height: 1;
  font-size: 1.2rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  color: #333;
  display: inline-block;
  transition: 0.3s;
}
@media screen and (max-width: 575px) {
  .btn-border {
    font-size: 15px;
    padding: 10px 20px;
  }
}
.btn-border:hover {
  background: #F1CF69;
  color: #333;
}

.text-center {
  text-align: center;
}

[data-product] {
  cursor: pointer;
}

.gallery-slider {
  height: 100%;
}

.product-attr {
  max-height: 130px;
  overflow-y: scroll;
}
.product-attr p {
  margin: 0!important;
}
.product-attr p strong {
  color: #333;
  font-weight: 500;
}
.product-attr p.hidden {
  display: none;
}
.product-attr .toggle-btn {
  margin-top: 10px;
  cursor: pointer;
  color: #333;
  text-decoration: none;
  font-size: 14px;
}

.product-categories {
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}
.product-categories .category__link {
  margin-bottom: 10px;
  margin-right: 10px;
  display: flex;
}
.product-categories .category__link a {
  padding: 10px 10px 10px;
  border-color: #f1cf69;
  color: #333333;
  background-color: transparent;
  border-width: 3px;
  border-style: solid;
  line-height: 1;
  font-size: 1.2rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0;
  cursor: pointer;
  border-radius: 5px;
  -webkit-transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out, color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.product-categories .category__link a:hover{
  background: #F1CF69;
}
.product-info-top .toggle-btn {
  margin-top: 10px;
  color: #f1cf69;
  cursor: pointer;
}

#load-more-wrapper #load-more {
  padding: 10px 10px 10px;
  border-color: #f1cf69;
  color: #333333;
  background-color: transparent;
  border-width: 3px;
  border-style: solid;
  line-height: 1;
  font-size: 1.2rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0;
  cursor: pointer;
  border-radius: 5px;
  -webkit-transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out, color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out, color 0.3s ease-in-out;
  margin: 50px auto 0 auto;
  display: block;
  outline: unset;
}
#load-more-wrapper #load-more:hover{
  background: #F1CF69;
}

@media (max-width: 767px) {
  .view-product-detail {
    display: none !important;
  }
  .product-wrapper__gallery .btn-arrow{
    opacity: 1;
  }
}
.plyr__video-embed, .plyr__video-wrapper--fixed-ratio {
  aspect-ratio: 9 / 16!important;
}