.product-grid-box {
  text-align: center;
}
.product-grid-box .product-badge {
  position: absolute;
  right: -3.125rem;
  top: 0.625rem;
  background-color: #f2f2f2;
  padding: 0.3125rem 0.625rem;
  text-align: center;
  width: 12.5rem;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}
.product-grid-box .product-price {
  margin: 0.3125rem;
}
.product-grid-box .product-price del {
  color: #c0c0c0;
  font-size: 80%;
}
.product-grid-box .product-price ins {
  text-decoration: none;
}
.product-grid-box .product-title,
.product-grid-box .product-price {
  font-size: 1.25rem;
}
.product-grid-box .product-quantity,
.product-grid-box .btn {
  margin: 1.25rem 0.125rem 0 0.125rem;
}
.product-grid-box .product-rating {
  font-size: 80%;
}

.product-detail .image-box {
  background-color: #f2f2f2;
  padding: 1.25rem;
}
.product-detail .product-main-image {
  border: 2px solid #f2f2f2;
  position: relative;
}
.product-detail .product-main-image .main-image {
  max-width: 100%;
}
.product-detail .product-thumbnails {
  margin-top: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.product-detail .product-thumbnails .thumbnail-image {
  padding: 1.25rem;
  border: 2px solid #f2f2f2;
  max-width: 6.25rem;
  margin: 0 0.3125rem;
  background-color: #fff;
}
.product-detail .product-thumbnails .thumbnail-image.xactive {
  border-top: 2px solid #ff9c00;
}
.product-detail .product-category {
  list-style: none;
}
.product-detail .product-category li {
  display: inline-block;
  position: relative;
}
.product-detail .product-category li + li {
  margin-left: 1rem;
}
.product-detail .product-category a {
  position: relative;
}
.product-detail .product-category a + a {
  margin-left: 1rem;
}

html[dir=rtl] .product-detail .product-category li + li {
  margin-left: 0;
  margin-right: 1rem;
}

.product-detail .product-category li + li:before {
  content: "\f105";
  font-family: "FontAwesome";
  position: absolute;
  top: 1px;
  left: -0.75rem;
  color: #c0c0c0;
}

html[dir=rtl] .product-detail .product-category li + li:before {
  content: "\f104";
  left: initial;
  right: -0.75rem;
}

.product-detail .product-category li a {
  color: #c0c0c0;
}

.product-card .product-card-bg {
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  padding-top: 100%;
  background-image: url("/common/brush.svg");
  top: 0px;
}
.product-card .product-card-cover {
  position: relative;
  background-size: cover;
  background-position: center center;
  padding-top: 100%;
}

.product-card-details {
  opacity: 0;
  top: 0px;
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.6);
  width: calc(100% - var(--bs-gutter-x));
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}

.product-card-details:hover {
  opacity: 1;
}

.product-card-button-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  display: inline-block;
  vertical-align: middle;
  height: 40px;
  line-height: 24px;
  padding: 5px 0;
  z-index: 4;
  background-color: #333;
  -webkit-transition: bottom 0.35s ease-in-out;
  transition: bottom 0.35s ease-in-out;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.product-button-cover {
  position: relative;
  display: inline-block;
  vertical-align: top;
  color: inherit;
  font-size: 30px;
  line-height: inherit;
  opacity: 1;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}

.product-button-back-cover {
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  display: inline-block;
  vertical-align: top;
  color: inherit;
  font-size: 30px;
  line-height: inherit;
  letter-spacing: 2px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  -webkit-filter: blur(0);
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}

.product-button:hover .product-button-cover {
  opacity: 0;
}

.product-button:hover .product-button-back-cover {
  opacity: 1;
}

.product-card-button-container .button-like.active-like .product-button-cover {
  opacity: 0 !important;
}

.product-card-button-container .button-like.active-like .product-button-back-cover {
  opacity: 1 !important;
}