.tooltip-container {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.tooltip-container .tooltip-text {
    visibility: hidden;
    background-color: #333;
    color: #fff;
    text-align: left;
    padding: 8px 10px;
    border-radius: 6px;
    position: absolute;
    z-index: 1000;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 13px;
    line-height: 1.4;
    white-space: nowrap;
}

.tooltip-container:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}


.come-on-button {
    overflow: hidden;
    animation: pulse 1.5s infinite;
    box-shadow: 0 0 0 0 rgba(255, 59, 63, 0.6);
    transition: transform 0.1s ease-in-out;
}

.come-on-button:hover {
    transition: none;
    animation: none;
    box-shadow: 0 0 2px rgba(244, 195, 0, 0.3), 0 0 3px rgba(244, 195, 0, 0.6), 0 0 4px rgba(244, 195, 0, 0.2) inset;
}

.come-on-button:active {
    transform: scale(0.9);
}

.come-on-button span {
    position: relative;
    z-index: 10;
}

/* Пульсация кнопки */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(244, 195, 0, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 4px rgba(244, 195, 0, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(244, 195, 0, 0.3);
    }
}

/* Полоски */
@keyframes stripes-pulse {
    0% {
        transform: translate(0, 0);
        opacity: 0;
    }
    40% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    60% {
        transform: translate(30px, 30px);
        opacity: 1;
    }
    100% {
        transform: translate(60px, 60px);
        opacity: 0;
    }
}

/* Блик — как в .btn-4 */
.come-on-button::after {
    content: "";
    position: absolute;
    top: -50px;
    left: 0px;
    width: 50px;
    height: 400px;
    background: #fff;
    opacity: 0.2;
    transform: rotate(35deg);
    animation: shine 1.5s infinite;
    z-index: 5;

}

@keyframes shine {
    0% {
        transform: translateX(-100%) rotate(35deg);
        opacity: 0;
    }
    40% {
        opacity: 0.1;
    }
    60% {
        transform: translateX(0)  rotate(35deg);
        opacity: 0.2;
    }
    60% {
        transform: translateX(50%)  rotate(35deg);
        opacity: 0.3;
    }
    100% {
        transform: translateX(400%) rotate(35deg);
        opacity: 0;
    }
}

.intec-grid-item.price__block .catalog-element-purchase-order-button {
    color: rgb(45, 45, 45)!important;
}


.catalog-section-list-item-name.intec-cl-text-hover {
    font-size: 16px;
}

.stock-tracker {
    display: flex;
    gap: 4px;
    width: 100%;
    margin-top: 8px;
    max-width: 150px;
}

.stock-tracker::before {
    content: '';
    display: none;
}

.stock-tracker .bar {
    width: 20%;
    height: 4px;
    background: #e8e8e8;
    border-radius: 2px;
}


.stock-tracker[data-available="1"] .bar:nth-child(-n+1),
.stock-tracker[data-available="2"] .bar:nth-child(-n+2),
.stock-tracker[data-available="3"] .bar:nth-child(-n+3),
.stock-tracker[data-available="4"] .bar:nth-child(-n+4),
.stock-tracker[data-available="5"] .bar:nth-child(-n+5) {
    background: #14cc8d;
}

.regions-select-dialog-regions.scrollbar-inner.scroll-content.scroll-scrolly_visible {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

@media (max-width: 1199px) {
    .regions-select-dialog-regions.scrollbar-inner.scroll-content.scroll-scrolly_visible {
        grid-template-columns: repeat(2, 1fr);
    }
}



.catalog-section-items.intec-grid.intec-grid-wrap.intec-grid-a-v-stretch.intec-grid-a-h-start {
    display: flex;
}

.catalog-section-item-wrapper {
    display: flex;
}
.ns-bitrix.c-catalog-section.c-catalog-section-catalog-tile-1 .catalog-section-item-wrapper {
    display: flex;
}
.ns-bitrix.c-catalog-section.c-catalog-section-catalog-tile-1 .catalog-section-item-content {
    display: flex;
    flex-direction: column;
    padding-bottom: 12px;
}

.ns-bitrix.c-catalog-section.c-catalog-section-catalog-tile-1 .catalog-section-item-price {
    display: block;
    margin-top: auto;
}

.ns-bitrix.c-catalog-section.c-catalog-section-catalog-tile-1 .catalog-section-item-price-discount {
    margin-bottom: -29px;
}

.ns-bitrix.c-catalog-section.c-catalog-section-catalog-text-1[data-borders="true"] .catalog-section-item-background {
    width: 100%;
}

.catalog-section-item-purchase-button.catalog-section-item-purchase-button-detail.intec-ui.intec-ui-control-button.intec-ui-scheme-current.intec-ui-mod-round-2 {
    display: flex;
}