.product-hero {
  padding-top: 105px;
  margin-bottom: 45px;
}

.product-hero .holder__inner {
  padding-bottom: 45px;
  border-bottom: 0.5px solid rgba(28, 28, 28, 0.1);
}

.product-hero .breadcrumb__holder {
  grid-column: 1/13;
}

.product-hero .breadcrumb__holder .separator::after {
  font-family: 'Material Symbols Rounded';
  content: '\e5e1';
  font-size: 14px;
  color: var(--black);
}

.product-hero__gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  grid-column: 1/13;
  padding: 0 10px;
}

.product-thumbs {
  width: 100%;
  margin: unset;
  order: 2;
}

.product-thumbs .swiper-slide {
  display: flex;
  align-items: center;
  max-width: 75px;
  max-height: 75px;
  width: 100%;
  height: 100%;
  border: 0.5px solid #d0d0d0;
  border-radius: 4px;
  cursor: pointer;
  background: var(--white);
  overflow: hidden;
}

.product-thumbs .swiper-slide-thumb-active {
  border-color: var(--orange);
  background: linear-gradient(0deg, #ffffff, #ffffff),
    linear-gradient(0deg, rgba(255, 90, 0, 0.08), rgba(255, 90, 0, 0.08));
}

.product-images {
  width: 100%;
  aspect-ratio: 4/3;
}
.product-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-thumbs img {
  width: 100%;
  height: auto;
  object-fit: contain;
  aspect-ratio: 1/1;
}
.gallery-button {
  max-width: 36px;
  width: 100%;
}
.gallery-button::after {
  all: unset;
  font-family: 'Material Symbols Rounded';
  font-weight: 300;
  font-size: 21px;
  color: var(--black);
  line-height: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 100%;
  background: #ececec;
}
.product-images .swiper-button-next:after {
  content: '\e5c8';
}

.product-images .swiper-button-prev:after {
  content: '\e5c4';
}

.product-hero__content {
  grid-column: 1/13;
}

.product-hero__content .product-info__title {
  margin-bottom: 16px;
}

.product-hero__content .product-info__tags {
  display: block;
}

.product-hero__content .product-item__tag {
  position: relative;
  font-size: 14px;
  line-height: 150%;
  opacity: 0.55;
}

.product-hero__content .product-item__tag:not(:last-child)::after {
  content: '|';
  margin: 0 0.5rem;
}

.product-hero__content .product-info__description {
  margin-top: 24px;
}

.product-hero__content .product-info__cta {
  margin-top: 24px;
}
@media screen and (min-width: 767px) {
  .product-hero {
    padding-top: 135px;
    margin-bottom: 75px;
  }

  .product-hero .holder__inner {
    padding-bottom: 75px;
  }
  .product-hero__gallery {
    flex-wrap: nowrap;
    grid-column: 1/9;
    /* padding: 0; */
  }

  .product-thumbs {
    max-width: 85px;
    height: 100%;
    order: unset;
  }

  .product-thumbs .swiper-slide {
    max-width: 100%;
    max-height: 85px;
  }

  .product-images {
    aspect-ratio: 16/9;
  }

  .product-hero__content {
    grid-column: 9/13;
  }
}
@media screen and (min-width: 990px) {
  .product-hero__gallery {
    padding: 0 20px;
  }
}

@media screen and (min-width: 1199px) {
  .product-hero__gallery {
    padding: 0;
    grid-column: 1/8;
  }
}

@media screen and (min-width: 1401px) {
}

@media screen and (max-width: 1400px) {
}
