/* Карточки акций / горящих часов: бейдж SALE_VALUE + равномерная строка цен */
.special-offer-card__box-image {
  position: relative;
}

.special-offer-card__benefit {
  position: absolute;
  top: 0.5rem;
  right: 0.625rem;
  z-index: 2;
  width: 4.75rem;
  min-height: 5.5rem;
  padding: 0.7rem 0.35rem 0.85rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.12rem;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.16), transparent 46%),
    linear-gradient(165deg, #c43a45 0%, #ab2c36 55%, #8f2430 100%);
  border: 1px solid rgba(255, 241, 181, 0.55);
  border-radius: 50% 50% 48% 48% / 40% 40% 60% 60%;
  box-shadow: 0 8px 18px rgba(93, 24, 33, 0.28);
  pointer-events: none;
  line-height: 1.05;
}

.special-offer-card__benefit::before,
.special-offer-card__benefit::after {
  content: "";
  position: absolute;
  width: 0.7rem;
  height: 1.05rem;
  background: #ab2c36;
  border: 1px solid rgba(255, 241, 181, 0.45);
  border-radius: 60% 40% 55% 45%;
  top: 0.15rem;
  opacity: 0.95;
}

.special-offer-card__benefit::before {
  right: 0.15rem;
  transform: rotate(28deg);
}

.special-offer-card__benefit::after {
  right: 0.55rem;
  top: -0.05rem;
  width: 0.55rem;
  height: 0.85rem;
  transform: rotate(-12deg);
  background: #8f2430;
}

.special-offer-card__benefit-percent {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.special-offer-card__benefit-label {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.92;
}

.special-offer-card__benefit-value {
  margin-top: 0.15rem;
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
}

.special-offer-card__block-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  margin-top: auto;
}

.special-offer-card__box-offer {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex: 0 1 auto;
}

.special-offer-card__box-offer span {
  color: rgba(171, 44, 54, 0.55);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.2;
  text-decoration: line-through;
}

.special-offer-card__box-offer span i {
  font-style: normal;
}

.special-offer-card__block-price .special-offer-card__price,
.special-offer-card__block-price .price-text {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 1 auto;
  color: var(--color-main-title, #2b2222);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
}

.special-offer-card__block-price .price-text i {
  font-style: normal;
  color: inherit;
}

.special-offer-card__block-price .price-text__hour {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  gap: 0.25rem;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  background: rgba(171, 44, 54, 0.12);
  color: #ab2c36;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.3;
  white-space: nowrap;
  margin-left: 0;
}

.special-offer-card__block-price .price-text__hour svg {
  flex-shrink: 0;
  fill: #ab2c36;
  width: 1rem;
  height: 1rem;
}

@media (max-width: 991px) {
  .special-offer-card__benefit {
    width: 4.25rem;
    min-height: 5rem;
    padding: 0.55rem 0.25rem 0.7rem;
  }

  .special-offer-card__benefit-percent {
    font-size: 1.15rem;
  }

  .special-offer-card__benefit-value {
    font-size: 0.75rem;
  }

  .special-offer-card__box-offer span {
    font-size: 1rem;
  }

  .special-offer-card__block-price .special-offer-card__price,
  .special-offer-card__block-price .price-text {
    font-size: 1.25rem;
  }

  .special-offer-card__block-price .price-text__hour {
    font-size: 0.8125rem;
    padding: 0.15rem 0.55rem;
  }
}
