:root {
  --header-height: 80px;
}
@media (max-width: 1199px) {
  :root {
    --header-height: 60px;
  }
}

.tcl-hero-product {
  padding: 50px 0;
}
.tcl-hero-product__image {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  position: relative;
}
.tcl-hero-product__image img {
  position: absolute;
  width: 100%;
  height: 100%;
  max-width: none;
  -o-object-fit: cover;
     object-fit: cover;
}
.tcl-hero-product__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.tcl-hero-product__title {
  font-size: 32px;
  line-height: 37px;
  margin-bottom: 17px;
}
.tcl-hero-product__description {
  font-size: 18px;
  line-height: 214%;
}
.tcl-hero-product__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 40px;
}
.tcl-hero-product__button {
  background-color: #cc0000;
  font-size: 18px;
  line-height: 120%;
  text-decoration: none !important;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  cursor: pointer;
  color: #fff;
  min-height: 50px;
  min-width: 145px;
  padding: 10px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  border: 1px solid #cc0000;
  text-align: center;
  font-weight: 700;
}
.tcl-hero-product__button:hover {
  background-color: transparent;
  color: #cc0000;
}
.tcl-hero-product__price {
  font-size: 32px;
}
.tcl-hero-product__info-label {
  font-size: 24px;
  line-height: 1.15;
}
.tcl-hero-product__info-label span {
  display: block;
  font-weight: bold;
}
.tcl-hero-product__variations {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.tcl-hero-product__variations-item {
  position: relative;
}
.tcl-hero-product__variations-item input {
  width: 1px;
  height: 1px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.tcl-hero-product__variations-item label {
  width: 40px;
  height: 40px;
  border: 1px solid #e02b20;
  background-color: transparent;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 10px;
  margin-bottom: 5px;
  cursor: pointer;
}
.tcl-hero-product__variations-item input:checked + label {
  background-color: #e02b20;
  color: #fff;
}
.tcl-hero-product__label {
  margin-bottom: 10px;
}