


.t-catalog__card__prod-controls-wrapper:has(*) {
    padding-top: 0!important;
}

.t-catalog__card__wrap_txt-and-opts.t-catalog__card__has-btns {
    margin-bottom: 0!important;
}

/* Контейнер описания продукта */
.js-catalog-prod-descr ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0 var(--space-4, 1rem); /* 16px между элементами */
  list-style: none;
  padding: 0!important;
  margin: 0;
    margin-bottom: 10px;
}

.js-product .t-product__option-variants_buttons .t-product__option-item_simple.t-product__option-item_active {
    border: 1px solid #04a534;
}

.js-product .t-product__option-variants_buttons .t-product__option-item_simple {
        border-radius: 8px;
}

.js-product .t-product__option-variants_buttons .t-product__option-title_buttons {
    font-size: 14px;
    font-family: var(--t-text-font, Arial);
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: -0.6px;
    text-transform: uppercase;
}

.t-product__option-title {
  display: flex;
  align-items: center;
  gap: 6px;
}

.t-product__option-item_active .t-product__option-title::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url('https://static.tildacdn.com/tild3430-3430-4733-a235-316131373639/MaterialSymbolsCheck.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

/* Каждый пункт — иконка + текст */
.js-catalog-prod-descr ol li {
  display: flex;
  align-items: center;
  gap: 6px;
font-size: 14px;
    font-family: var(--t-text-font, Arial);
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: -0.6px;
    text-transform: uppercase;
  white-space: nowrap;
}

/* Иконки через псевдоэлементы — разные для каждого li */
.js-catalog-prod-descr ol li:nth-child(1)::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url('https://static.tildacdn.com/tild3330-3463-4164-b930-316631323961/Frame.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

.js-catalog-prod-descr ol li:nth-child(2)::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url('https://static.tildacdn.com/tild6466-3363-4339-a238-306332643539/Group.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}


.bt2 .tn-atom {
  backdrop-filter: blur(10px) !important;
    background: rgba(46, 46, 46, 0.6) !important;
}


.dashed a {
    text-decoration: underline!important;
    text-decoration-style: dashed!important;
}

.dashed a:hover {
    text-decoration-style: solid !important;
}

.head_menu a:hover, .head_menu .t-active {
        color: #03a535 !important;
}


.moby_menu a:hover, .moby_menu .t-active {
        color: #2E2E2E !important;
}

.t-popup__container {
    border-radius: 8px;
}


.t-feed__col-grid__post-wrapper {
    border-radius: 8px;
}


.t-feed__col-grid__post-wrapper .t-feed__post-bgimg {
    border-radius: 8px;
}



.t-store .t-container {
    max-width: 1380px !important;
}

.t-store .t-col_4 {
    max-width: 420px !important;
}

.t-store__card__bgimg, .t-store__card__bgimg_second {
        border-radius: 9px;
}


.uc-abonem .t786__descr {
    background: #03a535;
    display: inline-block;
    color: #fff;
    padding: 2px 20px 3px 20px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 800;
}


@media screen and (min-width: 1440px) {
.t786__container, .t-container {
        max-width: 1384px!important;
}
}

@media screen and (min-width: 480px) {
    .t786__price_old {
        font-size: 20px!important;
        font-weight: 600!important;
    }
}

.tour_img .tn-atom:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 55%; /* одна треть высоты */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
  border-radius: 0 0 9px 9px;
}


       .wave_btn .tn-atom{
            position: relative;
            cursor: pointer;
            overflow: hidden;
        }

        .wave_btn .tn-atom:before {
            content: '';
            position: absolute;
            top: -50%;
            left: 0;
            width: 160px;
            height: 120px;
            border-radius: 50%;
            opacity: 0;
            box-shadow: 0 0 0 100px rgba(255,255,255,.35);
            pointer-events: none;
            background: rgba(255, 255, 255, .35);
            animation: wave-animation 3s infinite; /* Увеличиваем продолжительность анимации */
        }

        @keyframes wave-animation {
            0% {
                opacity: 1;
                transform: scale3d(.2,.2,1);
            }
            40% {
                opacity: 0;
                transform: scale3d(1.1,1.1,1);
            }
            90% {
                opacity: 0; /* Оставляем элемент невидимым */
                transform: scale3d(1.1,1.1,1);
            }
            100% {
                opacity: 0; /* Оставляем элемент невидимым */
                transform: scale3d(1.1,1.1,1);
            }
        }