.section {
  max-width: 1300px;
  margin: 0 auto;
}
@media (max-width: 1310px) {
  .section {
    padding: 0 20px;
  }
}

.price-section {
  padding: 100px 0;
  background: #14161f;
  color: #ffffff;
}
.price-section h2,
.price-section h3,
.price-section h4 {
  font-family: "Libre Bodoni", cursive;
  text-transform: uppercase;
  font-weight: 400;
}
.price-section h2 {
  font-size: 40px;
  line-height: 48px;
}
.price-section h3 {
  font-size: 24px;
}
.price-section p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}
.price-section a {
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
}
@media (max-width: 576px) {
  .price-section {
    padding: 50px 0;
  }
  .price-section h2 {
    font-size: 24px;
    line-height: 32px;
  }
  .price-section h3 {
    font-size: 16px;
  }
  .price-section p {
    font-size: 12px;
    line-height: 16px;
  }
  .price-section a {
    font-size: 16px;
  }
}
.price-section .price-inner {
  display: flex;
  gap: 40px;
}
.price-section .price-inner .slider-section {
  flex: 1;
  width: 780px;
  height: 600px;
}
.price-section .price-inner .slider-section .swiper {
  width: 100%;
  height: 600px;
}
.price-section .price-inner .slider-section .swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.price-section .price-inner .content-section {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.price-section .price-inner .content-section .top-segment .product-title {
  margin-bottom: 12px;
}
.price-section .price-inner .content-section .top-segment .product-subtitle {
  display: block;
}
.price-section .price-inner .content-section .bottom-segment {
  margin-top: 8px;
}
.price-section .price-inner .content-section .bottom-segment .select-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}
.price-section .price-inner .content-section .bottom-segment .products-wrapper {
  margin-top: 30px;
}
.price-section .price-inner .content-section .bottom-segment .products-wrapper .products-inner {
  display: grid;
  grid-template-columns: 210px 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
  margin: 0;
  width: 100%;
}
.price-section .price-inner .content-section .bottom-segment .products-wrapper .products-inner .price-item {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  background: #1c1e29;
  text-align: center;
  border-radius: 6px;
  padding: 10px;
  min-width: auto;
  min-height: auto;
  border: 3px solid #14161f;
  transition: 0.5s;
}
.price-section .price-inner .content-section .bottom-segment .products-wrapper .products-inner .price-item .product-image {
  background: radial-gradient(circle, rgba(94, 94, 95, 0.8588235294) 0%, #222534 70%);
}
.price-section .price-inner .content-section .bottom-segment .products-wrapper .products-inner .price-item .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.price-section .price-inner .content-section .bottom-segment .products-wrapper .products-inner .price-item .products-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 5px;
}
.price-section .price-inner .content-section .bottom-segment .products-wrapper .products-inner .price-item .products-content .qty-segment {
  display: inline-flex;
  justify-content: space-between;
  align-items: flex-end;
}
.price-section .price-inner .content-section .bottom-segment .products-wrapper .products-inner .price-item .products-content .qty-segment .products-unit {
  font-size: 18px;
  font-weight: 700;
}
.price-section .price-inner .content-section .bottom-segment .products-wrapper .products-inner .price-item .products-content .qty-segment .sale-price {
  font-size: 18px;
}
.price-section .price-inner .content-section .bottom-segment .products-wrapper .products-inner .price-item .products-content .qty-segment .sale-price span {
  font-size: 14px;
}
.price-section .price-inner .content-section .bottom-segment .products-wrapper .products-inner .price-item .products-content .bottom-segment {
  display: inline-flex;
  justify-content: space-between;
  font-size: 14px;
  align-items: center;
}
.price-section .price-inner .content-section .bottom-segment .products-wrapper .products-inner .price-item .products-content .bottom-segment .products-save {
  background: rgba(0, 182, 122, 0.1019607843);
  padding: 3px 5px;
  border-radius: 4px;
}
.price-section .price-inner .content-section .bottom-segment .products-wrapper .products-inner .price-item.active {
  border: 3px solid #54555e;
}
.price-section .price-inner .content-section .bottom-segment .products-wrapper .products-inner .price-item:nth-child(1) {
  grid-row: span 2;
  grid-column: 1;
  flex-direction: column;
  max-width: 210px;
  width: 100%;
}
.price-section .price-inner .content-section .bottom-segment .products-wrapper .products-inner .price-item:nth-child(1) .product-image {
  height: 150px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}
.price-section .price-inner .content-section .bottom-segment .products-wrapper .products-inner .price-item:nth-child(1) .product-image img {
  width: 100%;
  height: 115px;
  object-fit: cover;
}
.price-section .price-inner .content-section .bottom-segment .products-wrapper .products-inner .price-item:nth-child(2) {
  grid-row: 1;
}
.price-section .price-inner .content-section .bottom-segment .products-wrapper .products-inner .price-item:nth-child(3) {
  grid-row: 2;
}
.price-section .price-inner .content-section .bottom-segment .products-wrapper .products-inner .price-item:nth-child(2),
.price-section .price-inner .content-section .bottom-segment .products-wrapper .products-inner .price-item:nth-child(3) {
  grid-column: 2;
  width: 100%;
}
.price-section .price-inner .content-section .bottom-segment .products-wrapper .products-inner .price-item:nth-child(2) .product-image,
.price-section .price-inner .content-section .bottom-segment .products-wrapper .products-inner .price-item:nth-child(3) .product-image {
  height: 100%;
  width: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}
.price-section .price-inner .content-section .bottom-segment .products-wrapper .products-inner .price-item:nth-child(2) .product-image img,
.price-section .price-inner .content-section .bottom-segment .products-wrapper .products-inner .price-item:nth-child(3) .product-image img {
  width: 100%;
  height: 67px;
  object-fit: cover;
}
.price-section .price-inner .content-section .bottom-segment .product-quantity {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
}
.price-section .price-inner .content-section .bottom-segment .progress-bar {
  width: 100%;
  height: 8px;
  background: #1c1e29;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  margin-top: 5px;
}
.price-section .price-inner .content-section .bottom-segment .progress-bar .progress-fill {
  height: 100%;
  background: #ff739c;
  width: 23%;
  transition: width 0.4s ease-in-out;
}
.price-section .price-inner .content-section .bottom-segment .single_add_to_cart_button {
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 6px;
  justify-content: center;
  padding: 10px;
  margin-top: 20px;
  margin-bottom: 0;
  color: #14161f;
  transition: 0.5s;
  cursor: pointer;
  height: auto;
  width: 100%;
}
.price-section .price-inner .content-section .bottom-segment .single_add_to_cart_button.loading:after {
  border-color: #243360;
  border-bottom-color: transparent;
}
.price-section .price-inner .content-section .bottom-segment .single_add_to_cart_button:hover {
  background: #222534;
  color: #fff;
}
@media (max-width: 992px) {
  .price-section .price-inner {
    flex-direction: column;
  }
  .price-section .price-inner .slider-section {
    width: 100%;
  }
}
@media (max-width: 481px) {
  .price-section .price-inner .slider-section .swiper {
    height: 280px;
  }
  .price-section .price-inner .content-section .top-segment .product-subtitle {
    font-size: 12px;
  }
  .price-section .price-inner .content-section .bottom-segment .products-wrapper .products-inner {
    display: flex;
    flex-direction: column;
  }
  .price-section .price-inner .content-section .bottom-segment .products-wrapper .products-inner .price-item:nth-child(1) {
    max-width: 100%;
  }
  .price-section .price-inner .content-section .bottom-segment .products-wrapper .products-inner .price-item:nth-child(1) .product-image img {
    object-fit: contain;
  }
  .price-section .price-inner .content-section .bottom-segment .products-wrapper .products-inner .price-item:nth-child(3),
  .price-section .price-inner .content-section .bottom-segment .products-wrapper .products-inner .price-item:nth-child(2) {
    width: 100%;
  }
}

#stampedcreambot {
  background: #14161F;
}
#stampedcreambot #stamped-main-widget {
  margin-top: 0;
  margin-bottom: 0;
}
#stampedcreambot .stamped-container[data-widget-show-product-variant=true] .stamped-review-product a, #stampedcreambot .stamped-container[data-widget-show-product-variant=true] .stamped-review-variant a, #stampedcreambot .stamped-container ul.stamped-tabs li {
  color: #fff;
}
#stampedcreambot li#tab-reviews[data-count]:after {
  color: #14161F;
}

/*# sourceMappingURL=gravite-sale-block.css.map */
