.e-rating-stars{
  position:relative;
  display:inline-block;
  line-height:1;
  letter-spacing:.135em;
}
.e-rating-stars:after,.e-rating-stars:before{
  font-family:icomoon;
  font-weight:400;
  font-style:normal;
  font-variant:normal;
  line-height:1;
  text-transform:none;
  -moz-osx-font-smoothing:grayscale;
  -webkit-font-smoothing:antialiased;
  speak:never;
  white-space:nowrap;
  vertical-align:top;
  content:"\e921\e921\e921\e921\e921";
}
.e-rating-stars:before{
  color:#dfe0e0;
}
.e-rating-stars:after{
  position:absolute;
  top:0;
  left:0;
  overflow:hidden;
  width:calc(var(--rating) / 5 * 100%);
  color:#91baec;
}

.e-pill-badge{
  display:flex;
  gap:10px;
  align-items:center;
  width:-webkit-max-content;
  width:-moz-max-content;
  width:max-content;
  padding:10px 20px;
  color:var(--badge-base-color, #8b8c8e);
  font-size:18px;
  font-weight:500;
  letter-spacing:.32px;
  text-transform:capitalize;
  border-radius:30px;
  background:hsl(from currentcolor h calc(s * 3) calc(l + (100 - l) * .95));
}
.e-pill-badge .e-checkmark{
  font-size:20px;
}
.e-pill-badge .e-icon-checkmark{
  font-size:.6em;
}
.e-pill-badge--sm,.e-pill-badge--small{
  padding:4px 12px;
  font-size:16px;
  letter-spacing:normal;
}
.e-pill-badge--xs{
  gap:6px;
  padding:2px 12px;
}
.e-pill-badge--xs,.e-pill-badge--xxs{
  font-size:16px;
  letter-spacing:normal;
}
.e-pill-badge--xxs{
  gap:4px;
  padding:0 10px;
}
.e-pill-badge--fill{
  color:var(--badge-base-color, #fff);
  background:var(--badge-fill-color, #ff5429);
}

.c-product-tile{
  display:flex;
  flex-direction:column;
  gap:14px;
}
.c-product-tile a{
  color:inherit;
}
.c-product-tile a:hover{
  -webkit-text-decoration:underline 1px;
          text-decoration:underline 1px;
  text-underline-offset:2px;
}
.c-product-tile__image{
  position:relative;
  overflow:hidden;
  border-radius:10px;
}
.c-product-tile__image img{
  -o-object-fit:cover;
     object-fit:cover;
  aspect-ratio:1/1;
  display:block;
  max-width:100%;
  height:auto;
}
.c-product-tile__image:after{
  position:absolute;
  inset:0;
  z-index:1;
  visibility:hidden;
  background:var(--image-on-hover);
  background-size:cover;
  opacity:0;
  content:"";
  transition:all .2s linear;
}
.c-product-tile__image>.e-pill-badge{
  position:absolute;
  top:10px;
  left:10px;
  z-index:2;
  text-decoration:none;
}
.c-product-tile__image>.e-pill-badge:not(.e-pill-badge--fill){
  background:hsl(from currentcolor h s calc(l + 35));
}
.c-product-tile__time{
  position:absolute;
  bottom:8px;
  left:8px;
  z-index:2;
  display:flex;
  gap:4px;
  align-items:center;
}
.c-product-tile__time .e-pill-badge{
  gap:4px;
  padding:0 8px;
  color:#212428;
  font-size:12px;
  text-transform:uppercase;
  background:#f6f6f7;
}
.c-product-tile__rating{
  display:flex;
  gap:10px;
  align-items:center;
  font-size:16px;
}
.c-product-tile__name{
  font-family:inherit;
  font-weight:600;
}
.c-product-tile__desc{
  font-size:16px;
  line-height:1.25;
}
.c-product-tile__price{
  margin-top:auto;
}
.c-product-tile__button .btn{
  width:100%;
}

.complete-system h2{
  margin-bottom:0;
}
.complete-system__content{
  display:flex;
  flex-direction:column;
  gap:32px;
  align-items:center;
}
.complete-system__items{
  max-width:100%;
}
.complete-system__scale{
  display:flex;
  gap:16px;
  width:100%;
  counter-reset:item;
}
.complete-system__scale li{
  position:relative;
  display:flex;
  flex-direction:column;
  gap:16px;
  align-items:center;
  width:100%;
  counter-increment:item;
}
.complete-system__scale li.active:before{
  color:#fff;
  background:#212428;
}
.complete-system__scale li:before{
  width:30px;
  height:30px;
  font-size:18px;
  font-weight:600;
  line-height:28px;
  text-align:center;
  border:1px solid #212428;
  border-radius:50%;
  background:#f6f6f7;
  content:counters(item, "");
}
.complete-system__scale li:after{
  position:absolute;
  top:15px;
  right:-12px;
  left:-12px;
  z-index:-1;
  height:1px;
  background:#212428;
  content:"";
}
.complete-system__scale li:first-child:after{
  left:auto;
  width:calc(50% + 12px);
}
.complete-system__scale li:last-child:after{
  right:auto;
  width:calc(50% + 12px);
}
.complete-system__scale li span{
  font-size:20px;
  font-weight:500;
}
.complete-system .c-buy-block{
  gap:10px;
  width:100%;
  max-width:400px;
}
.complete-system .c-buy-block small{
  font-size:14px;
  text-align:center;
}
@media screen and (max-width:991px){
  .complete-system__scale li span{
    display:none;
  }
  .complete-system .c-product-tile{
    padding:16px;
    border-radius:10px;
    background:#f6f6f7;
  }
}
@media screen and (max-width:767px){
  .c-product-tile{
    gap:8px;
  }
  .c-product-tile__price{
    font-size:16px;
  }
  .c-product-tile__button .btn{
    display:none;
  }
  .complete-system__content{
    gap:24px;
  }
  .complete-system__scale{
    margin-bottom:-8px;
  }
  .complete-system__scale li:before{
    width:24px;
    height:24px;
    font-size:14px;
    line-height:22px;
  }
  .complete-system__scale li:after{
    top:12px;
    margin-right:-8px;
    margin-left:-8px;
  }
  .complete-system__scale li:first-child:after,.complete-system__scale li:last-child:after{
    width:calc(50% + 8px);
  }
}
@media (hover:hover){
  .c-product-tile__image:hover:after{
    visibility:visible;
    transform:scale(1.02);
    opacity:1;
  }
}
