.catalogSystem-card {
    width: 100%;
    padding: 29px 24px 28px 24px;
    background-color: #474646;
    border-radius: 24px;
}

.catalogSystem-card__image {
    width: 100%;
    position: relative;
    padding-bottom: 94%; /* для сохранения пропорций */
    max-width: 342px;
    overflow: hidden;
    border-radius: 24px;
    margin: 0 auto;
}

.catalogSystem-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
}

.catalogSystem-card__title {
    font-family: Buyan;
    font-weight: 700;
    font-size: 32px;
    line-height: 105%;
    color: #FFFFFF;
    margin: 28px 0 22px 0;
    min-height: calc(32px * 1.05 * 2); /* Высота на 2 строки */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.catalogSystem-card__variants {
    display: flex;
    overflow-x: auto;
    gap: 13px;
    margin-bottom: 22px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    min-height: 37px;
    max-height: 37px;
}

.catalogSystem-card__variants.grabbing {
    cursor: grabbing;
}

.catalogSystem-card__variants::-webkit-scrollbar {
    display: none;
}

.catalogSystem-card__variant {
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #807A74;
    text-align: center;
    cursor: pointer;
    color: #807A74;
    font-family: Buyan;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
    min-height: 37px;
    max-height: 37px;
}

.catalogSystem-card__variant.active {
    border: 1px solid #FFFFFF;
    color: #FFFFFF;
}

.catalogSystem-card__prices {
    margin-bottom: 26px;
}

.catalogSystem-card__price {
    display: none;
}

.catalogSystem-card__price.active {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    min-height: 31px;
}

.catalogSystem-card__price .price,
.catalogSystem-card__price .old-price {
    font-family: Montserrat;
    font-weight: 700;
    font-size: 30px;
    line-height: 105%;
    color: #FFFFFF;
}

.catalogSystem-card__price .old-price {
    color: #7E7E7E;
    text-decoration: line-through;
}

.catalogSystem-card__form {
    width: 100%;
}

.catalogSystem-card__button {
  width: 100%;
  border: none;
  border-radius: 18px;
  background: linear-gradient(264.11deg, #FFE9C8 -4.53%, #FFD9AD 18.44%, #FFDDB5 51.46%, #FFDDB5 76.6%, #FFCC8F 111.92%);
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0px 5.8px 0px 0px #E6B57B;
  font-family: Montserrat;
  font-weight: 800;
  font-size: 18px;
  line-height: 128%;
  letter-spacing: 5%;
  text-transform: uppercase;
  color: #584D3E;
  height: 70px;
}

.catalogSystem-card__button:before {
  content: '';
  background: radial-gradient(55.13% 55.13% at 50% 2.23%, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 24px;
}
.catalogSystem-card__button:disabled{
    background: linear-gradient(264.11deg, #929292 -30.35%, #D0D0D0 5.5%, #E8E8E8 49.71%, #CECECE 95.1%, #8A8A8A 123.89%);
    border: 1px solid;
    box-shadow: 0px 5.8px 0px 0px #737373;
    
}

@media screen and (max-width: 1255px) {
    .catalogSystem-card__button {
        height: 66px;
    }
}

@media screen and (max-width: 1025px) {
  .catalogSystem-card {
    padding: 25px 21px 32px 20.5px;
  }

  .catalogSystem-card__image {
    padding-bottom: 72%; /* для сохранения пропорций */
  }
}

@media screen and (max-width: 900px) {
  .catalogSystem-card__image {
    padding-bottom: 93%; /* для сохранения пропорций */
  }

  .catalogSystem-card__title {
    font-size: 30px;
    min-height: calc(30px * 1.05 * 2); /* Высота на 2 строки */
    margin: 24px 0 24px 0;
  }

  .catalogSystem-card__prices {
    margin-bottom: 22px;
  }

  .catalogSystem-card__variants {
    margin-bottom: 24px;
    min-height: 37px;
    max-height: 37px;
  }

  .catalogSystem-card__variant {
    min-height: 37px;
    max-height: 37px;
  }

  .catalogSystem-card__button {
    height: 58px;
  }
}

@media screen and (max-width: 600px) {

  .catalogSystem-card {
    padding: 13px 9px 11px 10px;
    border-radius: 16px;
  }

  .catalogSystem-card__image {
    border-radius: 16px;
    padding-bottom: 88%; /* для сохранения пропорций */
  }

  .catalogSystem-card__title {
    font-size: 16px;
    min-height: calc(16px * 1.05 * 2); /* Высота на 2 строки */
    margin: 11px 0 11px 0;
  }

  .catalogSystem-card__variants {
    margin-bottom: 11px;
    gap: 9px;
    min-height: 27px;
    max-height: 27px;
  }

  .catalogSystem-card__variant {
    font-size: 14px;
    padding: 5px 10px;
    min-height: 27px;
    max-height: 27px;
  }

  .catalogSystem-card__prices {
    margin-bottom: 10px;
    min-height: 11px;
  }

  .catalogSystem-card__price .price, .catalogSystem-card__price .old-price {
    font-size: 16px;
  }
  
  .catalogSystem-card__button {
    height: 27px;
    font-size: 9px;
    border-radius: 9px;
  }
}