/* Прячем стандартное р. */
.t-store__card__price-currency,
.t-store__prod-popup__price-currency {
    display: none !important;
}

/* Добавляем ₽/сутки ко всем ценам */
.t-store__card__price-value::after,
.t-store__prod-popup__price-value::after,
.js-store-product-price::after {
    content: " ₽/сутки";
}

/* Убираем р. в корзине */
.t-store__cart__price-currency {
    display: none !important;
}



/* Обёртка именно блока выбора (select / варианты) */
.t-product__option-variants,
.t-product__option-select-wrap {
    border: 1px solid #FF5F00;   /* 1px контур */
    border-radius: 6px;          /* аккуратные углы */
    animation: optionPulse 2s infinite ease-in-out;
}

/* Плавное мягкое мигание */
@keyframes optionPulse {
    0%   { box-shadow: 0 0 0 0 rgba(255,95,0, 0.6); }
    50%  { box-shadow: 0 0 0 6px rgba(255,95,0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255,95,0, 0); }
}


body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;

  background-image: repeating-linear-gradient(
    to right,
    rgba(0, 0, 0, 0.035) 0px,
    rgba(0, 0, 0, 0.035) 1px,
    transparent 1px,
    transparent 120px
  );
}



