.page-head {
    display: none !important;
}

.main-cover.main-page-cover {
    margin-top: -20px !important;
}

.breadcrumb {
    margin: 0 !important;
    padding: 0 !important;
}

@media (min-width: 992px) {
    .main-cover.main-page-cover {
        margin-top: 0 !important;
    }
}

#compare_list_count {
    display: none !important;
}

.section.section-viewed.js-slider-nav-event {
    display: none !important;
}

.footer {
    margin-top: 0 !important;
}

.faq-old {
    display: none !important;
}



@property --angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

.btn-orange-animated {
    position: relative;
    background: #EC690D;
    color: #FFFFFF;
    border: none;
    transition: all 0.3s ease;
    overflow: hidden;
    z-index: 1;
}

.btn-orange-animated::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: conic-gradient(
            from var(--angle),
            #FFFFFF 0deg,
            #FFFFFF 20deg,
            #FFFAF5 30deg,
            #FEE9D6 40deg,
            #FDD9BE 60deg,
            #FBC08E 90deg,
            #F9A96A 110deg,
            #EC690D 130deg,
            #EC690D 230deg,
            #F9A96A 250deg,
            #FBC08E 270deg,
            #FDD9BE 300deg,
            #FEE9D6 320deg,
            #FFFAF5 330deg,
            #FFFFFF 340deg,
            #FFFFFF 360deg
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -2;
}

.btn-orange-animated::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    background: #EC690D;
    z-index: -1;
    transition: background 0.3s ease;
}

.btn-orange-animated:hover {
    background: transparent;
    color: #EC690D;
    transform: translateY(-2px);
}

.btn-orange-animated:hover::after {
    background: #FFFFFF;
}

.btn-orange-animated:hover::before {
    opacity: 1;
    animation: rotate 3s linear infinite;
}

.btn-orange-animated:active, .btn-orange-animated:focus {
    outline: none;
}

@keyframes rotate {
    from {
        --angle: 0deg;
    }
    to {
        --angle: 360deg;
    }
}



.instrument-page-head {
    display: flex;
    flex-direction: column;
    padding: 30px clamp(10px, 5vw, 40px);
    gap: 20px;
    margin-top: 5px;
}

.instrument-page-title {
    font-size: clamp(22px, 5vw, 30px);
    font-weight: 800;
    color: #000000;
    margin-bottom: 0;
}

.instrument-main-part {
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: clamp(10px, 5vw, 40px);
    margin-bottom: clamp(30px, 6vw, 60px);
}

.instrument-banner {
    position: relative;
    width: 100%;
    height: 200px;
    background-color: #143C6D;
    border-radius: 15px;
    margin-bottom: clamp(10px, 5vw, 40px);
    overflow: hidden;
}

.instrument-banner__background-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left;
    z-index: 1;
}

.instrument-banner__content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: center;
    padding: 30px 40px;
    gap: 40px;
    z-index: 2;
}

.instrument-banner__title {
    max-width: 400px;
    text-align: start;
    font-size: clamp(20px, 3vw, 30px);
    font-weight: 800;
    line-height: 1.2;
    color: #FFFFFF;
    text-transform: uppercase;
}

.instrument-banner__button {
    font-size: clamp(14px, 2vw, 20px);
    border-radius: 10px;
    padding: 10px;
    flex-wrap: nowrap;
}

.instrument-banner__button::before {
    border-radius: 12px;
}

.instrument-banner__button::after {
    border-radius: 8px;
}

.instrument-catalog {
    display: grid;
    grid-template-columns: 1fr 3fr;
    grid-gap: 40px;
}

.instrument-faq {
    margin-bottom: clamp(30px, 6vw, 60px);
}

.smart-filter__search {
    margin-bottom: 16px;
}

.smart-filter__search-row {
    display: flex;
    gap: 8px;
}

.smart-filter__search-input {
    flex: 1 1 auto;
    min-width: 0;
}

.smart-filter__search-button {
    flex: 0 0 auto;
    border-radius: 8px;
    padding: 10px 14px;
}

@media (max-width: 1200px) {
    .instrument-banner__content {
        flex-direction: column;
        justify-content: center;
        align-items: end;
        gap: 20px;
    }

    .instrument-banner__title {
        text-align: end;
        max-width: 60%;
    }

    .instrument-catalog {
        grid-template-columns: 1fr 3fr;
        grid-gap: 20px;
    }
}

@media (max-width: 768px) {
    .instrument-banner {
        min-height: 240px;
        height: auto;
        aspect-ratio: 500 / 300;
    }

    .instrument-banner__background-image {
        object-position: center;
    }

    .instrument-banner__content {
        justify-content: center;
        align-items: flex-end;
        gap: 22px;
        padding: 40px 25px;
    }

    .instrument-banner__title {
        max-width: 400px;
        margin: 0;
        line-height: 1.2;
        font-size: clamp(16px, 5vw, 30px);
    }

    .instrument-banner__button {
        min-width: clamp(200px, 50vw, 264px);
        padding: 12px 16px;
        font-size: clamp(14px, 2.5vw, 18px);
        white-space: nowrap;
    }

    .instrument-catalog {
        grid-template-columns: 1fr;
        grid-gap: 0;
    }
}