@charset "UTF-8";
.products-card-variations {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 0;
  grid-row-gap: 0;
  position: absolute;
  box-sizing: border-box;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 5;
  padding: 10px;
  column-gap: 10px;
  row-gap: 5px;
  background: rgba(255, 255, 255, 0.8);
  transition: 0.3s all ease-in-out;
  opacity: 0;
  transform: translate(0, 10px);
}
@media (min-width: 320px) and (max-width: 767px) {
  .products-card-variations {
    display: none;
    opacity: 1;
    transform: translate(0, 0);
  }
}
.products-card-variations__item {
  display: block;
  color: var(--blue1);
  font-size: 13px;
  line-height: 17px;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
}

.productItem:hover .products-card-variations {
  opacity: 1;
  transform: translate(0, 0);
}

.product-change-variations {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  box-sizing: border-box;
  column-gap: 10px;
  row-gap: 10px;
  padding-top: 20px;
  padding-bottom: 10px;
}
.product-change-variations__item {
  display: block;
  padding: 12px 8px;
  background: linear-gradient(to top, #f6f6f6 0%, #f9f9f9 100%);
  color: #1e1e1e;
  font-size: 16px;
  line-height: 1;
  white-space: nowrap;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s all ease-in-out;
}
.product-change-variations__item:hover {
  color: var(--blue1);
}
.product-change-variations__item.current {
  color: #FFFFFF;
  background: var(--blue1);
}

.product-popup {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  opacity: 1;
  visibility: visible;
  transition: 0.3s all ease-in-out 0s;
}
.product-popup__overflow {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: rgba(0, 0, 0, 0.5);
}
.product-popup__box {
  display: block;
  position: relative;
  width: 1200px;
  max-width: 100%;
  max-height: 100%;
  background: #FFFFFF;
  border-radius: 12px;
  overflow: auto;
  z-index: 5;
  transition: 0.3s all ease-in-out 0s;
}
@media (min-width: 320px) and (max-width: 767px) {
  .product-popup__box {
    max-height: 90vh;
  }
}
.product-popup__close {
  display: block;
  position: absolute;
  top: 16px;
  right: 16px;
  width: 16px;
  height: 16px;
  background: url("images/close123.png") no-repeat center/contain;
  cursor: pointer;
  filter: contrast(0);
  z-index: 4;
}
.product-popup__loader {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 500px;
  background: url("images/loader.gif") no-repeat center/contain;
}
.product-popup:not(.open) {
  visibility: hidden;
  opacity: 1;
  transition: 0.3s all ease-in-out 0s;
}
.product-popup:not(.open) .product-popup__box {
  transform: translate(0, 50px);
}

.popup-single-product {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  box-sizing: border-box;
  padding: 30px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .popup-single-product {
    display: block;
    padding: 40px 10px 10px;
  }
}
.popup-single-product__gallery {
  width: calc(50% - 15px);
}
@media (min-width: 320px) and (max-width: 767px) {
  .popup-single-product__gallery {
    width: 100%;
  }
}
.popup-single-product__main_photos {
  display: block;
  position: relative;
  border-radius: 8px;
  border: 1px solid #cdd3d3;
}
.popup-single-product__main_photos:after {
  content: "";
  display: block;
  padding-top: 78%;
}
.popup-single-product__main_photo {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s all ease-in-out;
}
.popup-single-product__main_photo.active {
  visibility: visible;
  opacity: 1;
}
.popup-single-product__main_photo img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  border-radius: 8px;
}
.popup-single-product__thumbnails {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 10px;
  column-gap: 10px;
  row-gap: 10px;
}
.popup-single-product__thumbnail {
  display: block;
  box-sizing: border-box;
  position: relative;
  width: calc(16.6% - 10px);
  border: 1px solid #cdd3d3;
  cursor: pointer;
  border-radius: 4px;
  transition: 0.3s all ease-in-out;
}
.popup-single-product__thumbnail:hover {
  opacity: 0.7;
}
.popup-single-product__thumbnail.active {
  border: 2px solid var(--blue2);
}
.popup-single-product__thumbnail:after {
  content: "";
  display: block;
  padding-top: 100%;
}
.popup-single-product__thumbnail img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  border-radius: 4px;
}
.popup-single-product__info {
  width: calc(50% - 15px);
}
@media (min-width: 320px) and (max-width: 767px) {
  .popup-single-product__info {
    width: 100%;
  }
}
.popup-single-product__title {
  display: block;
  color: #2d2a33;
  font-size: 32px;
  font-weight: 700;
}
.popup-single-product__sku {
  display: block;
  margin-top: 30px;
  color: #a6a6a6;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}
.popup-single-product__availability {
  display: block;
  color: #7db132;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}
.popup-single-product__availability.availability-1 {
  color: #7db132;
}
.popup-single-product__availability.availability-2 {
  color: #ebac13;
}
.popup-single-product__availability.availability-3 {
  color: #59c5eb;
}
.popup-single-product__price_description {
  font-size: 16px;
  color: #1e1e1e;
}
.popup-single-product__price {
  display: block;
  margin-top: 15px;
  color: #2d2a33;
  font-size: 42px;
  font-weight: 400;
}
.popup-single-product__qty_message {
  margin-top: 10px;
  font-size: 16px;
  color: grey;
}
.popup-single-product__add_to_cart {
  display: block;
  box-sizing: border-box;
  margin-top: 30px;
  width: 220px;
  height: 54px;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.4);
  border-radius: 27px;
  background-color: #ffffff;
  background-image: linear-gradient(to top, var(--blue3) 0%, var(--blue4) 100%);
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  line-height: 54px;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  transition: 0.3s all ease-in-out;
}
.popup-single-product__add_to_cart i {
  margin-right: 10px;
  font-size: 18px;
  font-weight: 400;
}
.popup-single-product__add_to_cart:hover {
  opacity: 0.7;
}
.popup-single-product__add_to_cart.loading {
  opacity: 1 !important;
  cursor: progress !important;
}
.popup-single-product__add_to_cart.loading .fa {
  animation: load_rotate 3s ease-in-out infinite;
}
.popup-single-product__add_to_cart.loading .fa:before {
  content: "";
}
.popup-single-product__add_to_cart.success {
  color: #2d2a33;
  font-size: 15px;
  font-weight: 400;
  line-height: 48px;
  background: #ffffff;
  text-transform: uppercase;
  border: 3px solid #7db132;
}
.popup-single-product__add_to_cart.success i {
  color: #7db132;
}
.popup-single-product__btn_to_cart {
  display: block;
  margin-top: 15px;
  width: 220px;
  text-align: center;
  color: var(--blue1);
  font-size: 14px;
  line-height: 14px;
  text-decoration: underline;
}
.popup-single-product__btn_to_cart:hover {
  text-decoration: none;
}
.popup-single-product__notice {
  margin-top: 20px;
  font-size: 16px;
  color: darkred;
}
.popup-single-product__notice .button {
  display: none !important;
}
.popup-single-product__notice a {
  color: darkred;
  text-decoration: underline;
}
.popup-single-product__notice a:hover {
  text-decoration: none;
}

.header-message {
  background-image: linear-gradient(to top, var(--blue3) 0%, var(--blue4) 100%);
  padding-top: 4px;
  padding-bottom: 4px;
}
.header-message__text {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  color: #FFFFFF;
  text-align: center;
}
.header-message__text a {
  color: #FFFFFF;
  text-decoration: none;
}

.show-product-popup {
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 24px;
  height: 24px;
  z-index: 10;
  background: rgba(255, 255, 255, 0.8) url("images/show.svg") no-repeat center/20px auto;
  border-radius: 4px 0 0 0;
  cursor: pointer;
  transition: 0.3s all ease-in-out;
}
.show-product-popup:hover {
  background-color: white;
}

.cities-popup {
  display: block;
  position: absolute;
  box-sizing: border-box;
  right: 0;
  top: 100%;
  z-index: 11000;
  width: 430px;
  max-width: 100%;
  background: white;
  padding: 20px;
  border-radius: 4px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}
.cities-popup:not(.open) {
  display: none;
}
.cities-popup__heading {
  font-size: 16px;
  line-height: 1.5;
  color: #1e1e1e;
}
.cities-popup__item {
  display: block;
  position: relative;
  box-sizing: border-box;
  padding-right: 80px;
  margin-top: 12px;
}
.cities-popup__name {
  color: #1e1e1e;
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
}
.cities-popup__description {
  margin-top: 4px;
  color: #1e1e1e;
  font-size: 14px;
  line-height: 1.5;
}
.cities-popup__btn, .cities-popup__link {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 80px;
  height: 30px;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.4);
  border-radius: 4px;
  background-color: #dee4e4;
  background-image: linear-gradient(to top, var(--blue3) 0%, var(--blue4) 100%);
  color: #ffffff;
  font-size: 12px;
  font-weight: 400;
  line-height: 30px;
  cursor: pointer;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  transition: 0.3s all ease-in-out 0s;
}
.cities-popup__btn:hover, .cities-popup__link:hover {
  opacity: 0.7;
}
.cities-popup__btn {
  background-image: linear-gradient(to top, #658a29 0%, #7db132 100%);
}
.cities-popup__sep {
  display: block;
  margin: 12px 0;
  width: 100%;
  height: 1px;
  background: lightgrey;
}

.error-popup {
  display: none;
  position: fixed;
  box-sizing: border-box;
  bottom: 0;
  right: 0;
  z-index: 100;
  max-width: 100%;
  padding: 20px 60px 20px 20px;
  color: #721c24;
  background-color: #f8d7da;
  -webkit-box-shadow: -8px -6px 20px -7px rgba(34, 60, 80, 0.2);
  -moz-box-shadow: -8px -6px 20px -7px rgba(34, 60, 80, 0.2);
  box-shadow: -8px -6px 20px -7px rgba(34, 60, 80, 0.2);
  border-radius: 4px 0 0 0;
}
@media (min-width: 320px) and (max-width: 767px) {
  .error-popup {
    padding: 5px 40px 0 0;
  }
}
.error-popup__close {
  display: block;
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 18px;
  color: #721c24;
  cursor: pointer;
  transition: 0.3s all ease-out;
}
.error-popup__close:hover {
  opacity: 0.7;
}
.error-popup.show {
  display: block;
}
.error-popup .woocommerce-error {
  border: none;
  color: #721c24;
  background-color: #f8d7da;
}
.error-popup .woocommerce-error a {
  color: #721c24;
  text-decoration: underline;
}
.error-popup .woocommerce-error a:hover {
  text-decoration: none;
}
.error-popup .wc-forward {
  display: none !important;
}

.cashback-account {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  row-gap: 40px;
}
.cashback-account__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}
@media (min-width: 320px) and (max-width: 767px) {
  .cashback-account__row {
    flex-direction: column;
    justify-content: flex-start;
    row-gap: 20px;
  }
}
.cashback-account__col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  row-gap: 20px;
  width: calc(50% - 20px);
}
@media (min-width: 320px) and (max-width: 767px) {
  .cashback-account__col {
    width: 100%;
  }
}
.cashback-account__param {
  display: block;
  box-sizing: border-box;
  width: 100%;
  padding: 20px;
  border: 2px solid var(--blue8);
  border-radius: 8px;
}
.cashback-account__param_label {
  color: #2d2a33;
  font-size: 16px;
}
.cashback-account__param_value {
  margin-top: 20px;
  color: var(--blue1);
  font-size: 32px;
  font-weight: 700;
}
.cashback-account__table {
  display: table;
  width: 100%;
  color: #2d2a33;
  font-size: 16px;
}
.cashback-account__table strong {
  color: var(--blue1);
  font-weight: 700;
}
.cashback-account__table_row {
  display: table-row;
}
.cashback-account__table_col {
  display: table-cell;
  padding: 10px 15px;
  border-right: 1px solid #cdd3d3;
  border-bottom: 1px solid #cdd3d3;
}
.cashback-account__table_col:first-child {
  border-left: 1px solid #cdd3d3;
}
.cashback-account__table_row:first-child .cashback-account__table_col {
  border-top: 1px solid #cdd3d3;
}

.cashback-changer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #bbbbbb;
  border-radius: 4px;
  padding: 10px 10px 10px 10px;
  margin-bottom: 20px;
}
@media (max-width: 1023px) {
  .cashback-changer {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    row-gap: 10px;
  }
}
.cashback-changer__heading {
  display: block;
  width: calc(60% - 15px);
  max-width: 100%;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  text-decoration: none;
  color: var(--blue2);
}
@media (max-width: 1023px) {
  .cashback-changer__heading {
    width: 100%;
  }
}
.cashback-changer__heading strong {
  font-weight: 700;
  white-space: nowrap;
}
.cashback-changer__control {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  margin-left: auto;
  width: calc(40% - 15px);
  max-width: 100%;
}
@media (max-width: 1023px) {
  .cashback-changer__control {
    width: 100%;
  }
}
.cashback-changer__control input {
  display: block;
  box-sizing: border-box;
  width: calc(100% - 130px);
  padding: 0 12px;
  height: 36px;
  text-align: center;
  font-size: 16px;
  border-radius: 4px;
  border: 1px solid #bbbbbb;
}
.cashback-changer__control button {
  display: block;
  cursor: pointer;
  font-size: 14px;
  color: #515151;
  height: 36px;
  width: 120px;
  border: none;
  background-color: #dcd7e3;
  transition: 0.3s all ease-out;
}
.cashback-changer__control button:hover {
  color: #ffffff;
  background-color: var(--blue2);
}

@media (min-width: 1024px) and (max-width: 1180px) {
  .woocommerce .cart-collaterals .cart_totals, .woocommerce-page .cart-collaterals .cart_totals {
    width: 65%;
  }
}
@media (max-width: 1023px) {
  .woocommerce .cart-collaterals .cart_totals, .woocommerce-page .cart-collaterals .cart_totals {
    width: 100%;
  }
}
.headerMenu .personalBlock {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  top: 0;
  margin: 0;
  height: 100%;
  padding: 0 15px;
  background: var(--blue4);
}
.headerMenu .personalBlock i {
  margin-right: 12px;
  color: #fff;
  font-size: 20px;
  font-weight: 400;
}
.headerMenu .personalBlock a, .headerMenu .personalBlock .sep {
  color: #fff;
  font-size: 15px;
  font-weight: 400;
}

header .favorites-counter-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  position: absolute;
  right: 260px;
  font-size: 18px;
  font-weight: 700;
  top: 0;
  height: 100%;
  text-decoration: none;
  color: var(--blue4);
}
@media (min-width: 320px) and (max-width: 767px) {
  header .favorites-counter-link {
    right: 100px;
  }
}

header .searchform {
  width: 390px;
}

.productsArchiveBlock .productItems .productItem .img video, .singleProductBlock .singleProductGallery .mainPhoto .img video {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  z-index: 2;
}

.page-template-page-favorites .productsArchiveBlock .productItems .productItem {
  width: calc(25% - 20px);
}
@media (min-width: 320px) and (max-width: 767px) {
  .page-template-page-favorites .productsArchiveBlock .productItems .productItem {
    width: 280px;
  }
}

.productItem {
  position: relative;
}

.productItem .favorites-btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  left: 10px;
  top: 10px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 25;
  color: var(--blue10);
  transition: 0.3s all ease-in-out;
}
.productItem .favorites-btn.active {
  color: #e011e1;
}
.productItem .favorites-btn:hover {
  color: #e011e1;
}

#searchform {
  position: absolute;
  z-index: 10000;
}
#searchform .search-form-out {
  display: none;
  position: absolute;
  box-sizing: border-box;
  width: 460px !important;
  top: 50px !important;
  left: 0 !important;
  padding: 15px 25px;
  background: #ffffff;
  border-radius: 4px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
#searchform .search-form-out:before {
  content: "";
  display: block;
  position: absolute;
  top: -6px;
  left: 60px;
  width: 16px;
  height: 16px;
  background: #ffffff;
  transform: rotate(45deg);
}
#searchform .ui-autocomplete {
  display: block;
  position: relative !important;
  top: auto !important;
  left: auto !important;
  width: 100% !important;
  max-height: 300px;
  overflow: auto;
  z-index: 3000;
}
#searchform .ui-autocomplete::-webkit-scrollbar-track {
  background-color: #ffffff;
}
#searchform .ui-autocomplete::-webkit-scrollbar {
  width: 10px;
}
#searchform .ui-autocomplete::-webkit-scrollbar-thumb {
  background: var(--blue3);
}
#searchform .ui-autocomplete li {
  display: block;
  padding: 10px 0;
}
#searchform .ui-autocomplete li.ui-state-focus {
  background: rgba(222, 221, 226, 0.2);
}
#searchform .ui-autocomplete li.ui-state-focus a .name {
  color: var(--blue3);
}
#searchform .ui-autocomplete li a {
  display: block;
  position: relative;
  min-height: 70px;
  padding-left: 90px;
  text-decoration: none;
}
#searchform .ui-autocomplete li a img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 70px;
  height: 70px;
  object-fit: cover;
  -o-object-fit: cover;
}
#searchform .ui-autocomplete li a .name {
  display: block;
  width: 100%;
  font-size: 14px;
  line-height: 18px;
  color: #000000;
  text-decoration: none;
  transition: 0.3s all ease-in-out;
}
#searchform .ui-autocomplete li a .price {
  display: block;
  margin-top: 6px;
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  text-transform: uppercase;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #000000;
}

.productItem .img .availability {
  pointer-events: none;
  z-index: 20 !important;
}

.product-video-play-btn {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
  pointer-events: auto;
}
.product-video-play-btn svg {
  width: 48px;
  height: 48px;
  transition: transform 0.2s ease;
  pointer-events: none;
}
.product-video-play-btn:hover svg {
  transform: scale(1.1);
}
.product-video-play-btn:active svg {
  transform: scale(0.95);
}
@media (min-width: 768px) {
  .product-video-play-btn {
    display: none !important;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .product-video-play-btn {
    display: flex;
  }
}

.buttons-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 245px;
  bottom: 0;
  gap: 16px;
  height: 54px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .buttons-wrapper {
    left: 0;
    bottom: -65px;
  }
}
.buttons-wrapper .favorites-btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 5;
  color: var(--blue10);
  transition: 0.3s all ease-in-out;
}
.buttons-wrapper .favorites-btn.active {
  color: #e011e1;
}
.buttons-wrapper .favorites-btn:hover {
  color: #e011e1;
}
.buttons-wrapper .whatsapp-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #419fd9;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}
@media (min-width: 320px) and (max-width: 767px) {
  .buttons-wrapper .whatsapp-button {
    left: 0;
    bottom: -65px;
  }
}
.buttons-wrapper .whatsapp-button:hover {
  color: #1b94e3;
  text-decoration: none;
}
.buttons-wrapper .whatsapp-button svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.free-shipping-progress {
  box-sizing: border-box;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #f8f9fa;
  border-bottom: 1px solid #e9ecef;
  padding: 16px calc((100vw - 1200px) / 2);
  box-shadow: 0 5px 10px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 9999;
}
.free-shipping-progress__content {
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 8px;
  padding-right: 100px;
}
.free-shipping-progress__icon {
  display: block;
  position: absolute;
  right: 0;
  top: calc(50% - 32px);
  width: 64px;
}
.free-shipping-progress__icon img {
  display: block;
  width: 100%;
  height: auto;
}
.free-shipping-progress__text {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 24px;
  color: #333;
  line-height: 1.5;
  flex-wrap: wrap;
  gap: 8px;
}
.free-shipping-progress__message {
  font-weight: 500;
  color: #495057;
}
.free-shipping-progress__remaining {
  font-weight: 600;
  color: var(--blue1);
  font-size: 20px;
}
.free-shipping-progress__bar {
  width: 100%;
  height: 16px;
  background: #e9ecef;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.free-shipping-progress__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue1) 0%, var(--blue6) 100%);
  border-radius: 4px;
  transition: width 0.8s ease-out;
  position: relative;
}
.free-shipping-progress__fill::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
.free-shipping-progress.free-shipping-achieved .free-shipping-progress__fill {
  background: linear-gradient(90deg, #28a745 0%, #20c997 100%);
}

.free-shipping-progress.free-shipping-achieved .free-shipping-progress__message {
  color: #28a745;
  font-weight: 600;
}

/* Адаптивность */
@media (max-width: 768px) {
  .free-shipping-progress {
    padding: 10px 15px;
  }

  .free-shipping-progress__text {
    font-size: 16px;
  }

  .free-shipping-progress__remaining {
    font-size: 16px;
  }

  .free-shipping-progress__bar {
    height: 14px;
  }
}

/*# sourceMappingURL=styleC.css.map */
