/* ==========================================
   Noble Shine — Catalog
   ========================================== */

.ns-catalog {
    min-height: 100vh;
    padding-bottom: 100px;
    background: #0d263d;
    color: #fff;
}

.ns-catalog .container {
    position: relative;
}


/* ==========================================
   Hero
   ========================================== */

.ns-catalog__hero {
    padding: 58px 0 34px;
    background: transparent;
}

.ns-catalog__hero-inner {
    max-width: 760px;
}

.ns-catalog__eyebrow {
    margin-bottom: 14px;
    color: #4389b8;
    font-size: 12px;
    line-height: 1;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.ns-catalog__title {
    margin: 0;
    color: #fff;
    font-family: inherit;
    font-size: clamp(42px, 4.2vw, 68px);
    line-height: 1;
    font-weight: 400;
}

.ns-catalog__subtitle {
    max-width: 620px;
    margin: 20px 0 0;
    color: rgba(255,255,255,.62);
    font-size: 17px;
    line-height: 1.5;
}


/* ==========================================
   Categories
   ========================================== */

.ns-catalog__categories {
    background: transparent;
}

.ns-catalog__category-list {
    display: flex;
    gap: 10px;
    padding: 4px 0 48px;
    overflow-x: auto;
    scrollbar-width: none;
}

.ns-catalog__category-list::-webkit-scrollbar {
    display: none;
}

.ns-catalog__category {
    flex: 0 0 auto;

    display: inline-flex;
    align-items: center;
    gap: 12px;

    min-height: 45px;
    padding: 0 17px;

    border: 1px solid rgba(67,137,184,.65);

    background: transparent;
    color: rgba(255,255,255,.78);

    font-size: 14px;
    line-height: 1;

    text-decoration: none;

    transition:
        background-color .2s ease,
        border-color .2s ease,
        color .2s ease;
}

.ns-catalog__category:hover,
.ns-catalog__category.active {
    background: #4389b8;
    border-color: #4389b8;
    color: #fff;
}

.ns-catalog__category-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 23px;
    height: 23px;
    padding: 0 7px;

    border-radius: 30px;

    background: rgba(255,255,255,.13);

    font-size: 11px;
}


/* ==========================================
   Heading
   ========================================== */

.ns-catalog__body {
    padding: 0;
}

.ns-catalog__heading {
    margin-bottom: 34px;
}

.ns-catalog__heading h2 {
    margin: 0;

    color: #fff;

    font-size: clamp(32px, 3vw, 48px);
    line-height: 1.05;
    font-weight: 400;
}

.ns-catalog__heading p {
    margin: 8px 0 0;

    color: rgba(255,255,255,.48);

    font-size: 14px;
}


/* ==========================================
   Product grid
   ========================================== */

.ns-products {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));

    column-gap: 30px;
    row-gap: 76px;
}


/* ==========================================
   Product
   ========================================== */

.ns-product {
    min-width: 0;
    background: transparent;
}


/* ==========================================
   Visual wrapper
   ========================================== */

.ns-product__visual {
    position: relative;

    padding:
        25px
        25px
        28px
        25px;
}


/* ==========================================
   Image
   ========================================== */

.ns-product__image {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    aspect-ratio: .82 / 1;

    padding: 28px;

    overflow: hidden;

    background: #1e5275;

    border-radius: 42px;

    text-decoration: none;
}

.ns-product__image > img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;

    transition: transform .35s ease;
}

.ns-product:hover .ns-product__image > img {
    transform: scale(1.035);
}


/* ==========================================
   Placeholder
   ========================================== */

.ns-product__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 100%;
}

.ns-product__placeholder img {
    width: 48%;
    max-width: 135px;
    opacity: .35;
}


/* ==========================================
   Blue corners
   ========================================== */

.ns-product__corner {
    position: absolute;

    width: 62px;
    height: 62px;

    pointer-events: none;
    z-index: 2;
}

.ns-product__corner::before,
.ns-product__corner::after {
    content: "";

    position: absolute;

    background: #4389b8;
}

.ns-product__corner--top {
    top: 0;
    right: 0;
}

.ns-product__corner--top::before {
    top: 0;
    right: 0;

    width: 62px;
    height: 3px;
}

.ns-product__corner--top::after {
    top: 0;
    right: 0;

    width: 3px;
    height: 62px;
}

.ns-product__corner--bottom {
    bottom: 0;
    left: 0;
}

.ns-product__corner--bottom::before {
    bottom: 0;
    left: 0;

    width: 62px;
    height: 3px;
}

.ns-product__corner--bottom::after {
    bottom: 0;
    left: 0;

    width: 3px;
    height: 62px;
}


/* ==========================================
   Favorite
   ========================================== */

.ns-product__favorite {
    position: absolute;

    top: 42px;
    right: 42px;

    z-index: 5;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    padding: 0;

    border: 2px solid #4389b8;
    border-radius: 50%;

    background: transparent;

    color: #f57832;

    font-size: 29px;
    line-height: 1;

    cursor: pointer;

    appearance: none;
}

.ns-product__favorite span {
    display: block;
    line-height: 1;
}


/* ==========================================
   Content
   ========================================== */

.ns-product__content {
    padding: 11px 25px 0;
    background: transparent;
}

.ns-product__category {
    display: none;
}

.ns-product__info {
    display: flex;
    align-items: center;
    gap: 17px;
}

.ns-product__text {
    flex: 1 1 auto;
    min-width: 0;
}


/* ==========================================
   Name
   ========================================== */

.ns-product__name {
    margin: 0;

    color: #fff;

    font-size: clamp(18px, 1.45vw, 26px);
    line-height: 1.18;
    font-weight: 400;
}

.ns-product__name a {
    color: #fff;
    text-decoration: none;
}

.ns-product__name a:hover {
    color: #9bc9e5;
}


/* ==========================================
   Price
   ========================================== */

.ns-product__price {
    margin-top: 20px;

    color: #fff;

    font-size: clamp(20px, 1.5vw, 27px);
    line-height: 1;
    font-weight: 700;
}

.ns-product__price--request {
    color: rgba(255,255,255,.55);

    font-size: 15px;
    font-weight: 400;
}


/* ==========================================
   Plus
   ========================================== */

.ns-product__plus {
    position: relative;

    flex: 0 0 auto;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 54px;
    height: 54px;

    margin-top: 13px;

    border: 2px solid #fff;
    border-radius: 50%;

    background: #f57832;

    text-decoration: none;

    transition:
        transform .2s ease,
        background-color .2s ease;
}

.ns-product__plus:hover {
    transform: scale(1.06);
    background: #ff8240;
}

.ns-product__plus span::before,
.ns-product__plus span::after {
    content: "";

    position: absolute;

    top: 50%;
    left: 50%;

    width: 19px;
    height: 2px;

    background: #fff;

    transform: translate(-50%, -50%);
}

.ns-product__plus span::after {
    transform:
        translate(-50%, -50%)
        rotate(90deg);
}


/* ==========================================
   Empty state
   ========================================== */

.ns-catalog__empty {
    padding: 70px 30px;

    border: 1px solid rgba(67,137,184,.35);

    background: transparent;

    text-align: center;
}

.ns-catalog__empty h3 {
    margin: 0;

    color: #fff;

    font-size: 25px;
    font-weight: 400;
}

.ns-catalog__empty p {
    margin: 10px 0 0;

    color: rgba(255,255,255,.5);
}


/* ==========================================
   Laptop
   ========================================== */

@media (max-width: 1250px) {

    .ns-products {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 64px 22px;
    }

}


/* ==========================================
   Tablet
   ========================================== */

@media (max-width: 900px) {

    .ns-products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


/* ==========================================
   Mobile
   ========================================== */

@media (max-width: 640px) {

    .ns-catalog__hero {
        padding: 42px 0 28px;
    }

    .ns-catalog__title {
        font-size: 40px;
    }

    .ns-catalog__subtitle {
        margin-top: 16px;
        font-size: 15px;
    }

    .ns-catalog__category-list {
        margin-left: -24px;
        margin-right: -24px;

        padding-left: 24px;
        padding-right: 24px;
        padding-bottom: 36px;
    }

    .ns-catalog__heading {
        margin-bottom: 28px;
    }

    .ns-products {
        grid-template-columns: 1fr;
        gap: 62px;
    }

    .ns-product__visual {
        max-width: 520px;

        margin: 0 auto;

        padding: 22px;
    }

    .ns-product__image {
        padding: 28px;
        border-radius: 40px;
    }

    .ns-product__content {
        max-width: 520px;

        margin: 0 auto;

        padding: 10px 22px 0;
    }

    .ns-product__favorite {
        top: 39px;
        right: 39px;
    }

    .ns-product__name {
        font-size: 27px;
    }

    .ns-product__price {
        font-size: 27px;
    }

    .ns-product__plus {
        width: 60px;
        height: 60px;
    }

}

/* =========================================================
   Noble Shine — Product detail
   ========================================================= */

.ns-product-detail {
    position: relative;
    min-height: 100vh;
    padding: 52px 0 120px;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 18% 55%,
            rgba(40, 108, 151, .14),
            transparent 32%
        ),
        radial-gradient(
            circle at 80% 25%,
            rgba(35, 94, 137, .11),
            transparent 30%
        ),
        #0d263d;

    color: #fff;
}


/* =========================================================
   Breadcrumbs
   ========================================================= */

.ns-product-detail__breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;

    margin-bottom: 46px;

    font-size: 13px;
    line-height: 1.4;

    color: rgba(255, 255, 255, .34);
}

.ns-product-detail__breadcrumbs a {
    color: rgba(255, 255, 255, .58);
    text-decoration: none;

    transition: color .2s ease;
}

.ns-product-detail__breadcrumbs a:hover {
    color: #4b95c5;
}


/* =========================================================
   Layout
   ========================================================= */

.ns-product-detail__grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1.08fr)
        minmax(420px, .92fr);

    gap: clamp(60px, 7vw, 120px);

    align-items: start;
}


/* =========================================================
   Product visual
   ========================================================= */

.ns-product-detail__visual {
    position: relative;

    min-width: 0;

    padding:
        34px
        34px
        38px;
}


/* image area */

.ns-product-detail__image {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    min-height: 650px;

    padding: clamp(44px, 6vw, 80px);

    overflow: hidden;

    border-radius: 64px;

    background:
        radial-gradient(
            circle at 50% 42%,
            rgba(255,255,255,.035),
            transparent 55%
        ),
        #1d5174;
}

.ns-product-detail__image img {
    display: block;

    width: 100%;
    height: 100%;

    max-height: 560px;

    object-fit: contain;

    transition: transform .45s ease;
}

.ns-product-detail__visual:hover
.ns-product-detail__image img {
    transform: scale(1.025);
}


/* placeholder logo */

.ns-product-detail__image
.ns-product-detail__placeholder {
    width: 40%;
    max-width: 220px;
    height: auto;

    opacity: .28;
}


/* =========================================================
   Decorative corners — как на главной
   ========================================================= */

.ns-product-detail__corner {
    position: absolute;
    z-index: 3;

    width: 88px;
    height: 88px;

    pointer-events: none;
}

.ns-product-detail__corner::before,
.ns-product-detail__corner::after {
    content: "";

    position: absolute;

    background: #4389b8;
}


/* top right */

.ns-product-detail__corner--top {
    top: 0;
    right: 0;
}

.ns-product-detail__corner--top::before {
    top: 0;
    right: 0;

    width: 86px;
    height: 4px;
}

.ns-product-detail__corner--top::after {
    top: 0;
    right: 0;

    width: 4px;
    height: 86px;
}


/* bottom left */

.ns-product-detail__corner--bottom {
    bottom: 0;
    left: 0;
}

.ns-product-detail__corner--bottom::before {
    bottom: 0;
    left: 0;

    width: 86px;
    height: 4px;
}

.ns-product-detail__corner--bottom::after {
    bottom: 0;
    left: 0;

    width: 4px;
    height: 86px;
}


/* =========================================================
   Product content
   ========================================================= */

.ns-product-detail__content {
    position: relative;

    padding-top: 32px;
}


/* category */

.ns-product-detail__section {
    display: inline-block;

    margin-bottom: 22px;

    color: #4b95c5;

    font-size: 12px;
    line-height: 1.25;
    font-weight: 400;

    letter-spacing: .11em;
    text-transform: uppercase;

    text-decoration: none;

    transition: color .2s ease;
}

.ns-product-detail__section:hover {
    color: #f57832;
}


/* =========================================================
   Title
   ========================================================= */

.ns-product-detail__title {
    max-width: 720px;

    margin: 0;

    color: #fff;

    font-family: inherit;
    font-size: clamp(42px, 4.1vw, 70px);
    line-height: 1.02;
    font-weight: 400;

    letter-spacing: -.025em;
}


/* =========================================================
   Intro
   ========================================================= */

.ns-product-detail__intro {
    max-width: 650px;

    margin-top: 30px;

    color: rgba(255, 255, 255, .64);

    font-size: 17px;
    line-height: 1.65;
}

.ns-product-detail__intro p {
    margin: 0 0 14px;
}

.ns-product-detail__intro p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   Price
   ========================================================= */

.ns-product-detail__price {
    margin-top: 42px;

    color: #fff;

    font-size: clamp(32px, 3vw, 48px);
    line-height: 1;
    font-weight: 700;

    letter-spacing: -.02em;
}

.ns-product-detail__price--request {
    font-size: 22px;
    font-weight: 400;

    color: rgba(255, 255, 255, .56);
}


/* =========================================================
   Actions
   ========================================================= */

.ns-product-detail__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 14px;

    margin-top: 38px;
}


/* add to cart */

.ns-product-detail__cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 230px;
    min-height: 62px;

    padding: 0 30px;

    border: 1px solid #f57832;
    border-radius: 0;

    background: #f57832;

    color: #fff;

    font: inherit;
    font-size: 15px;
    line-height: 1;
    font-weight: 400;

    cursor: pointer;

    transition:
        background-color .2s ease,
        border-color .2s ease,
        transform .2s ease;
}

.ns-product-detail__cart:hover {
    background: #ff8341;
    border-color: #ff8341;

    transform: translateY(-2px);
}

.ns-product-detail__cart:active {
    transform: translateY(0);
}


/* favorite */

.ns-product-detail__favorite {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 62px;
    height: 62px;

    padding: 0;

    border: 2px solid #4389b8;
    border-radius: 50%;

    background: transparent;

    color: #f57832;

    font-family: Arial, sans-serif;
    font-size: 34px;
    line-height: 1;

    cursor: pointer;

    appearance: none;

    transition:
        background-color .2s ease,
        transform .2s ease,
        border-color .2s ease;
}

.ns-product-detail__favorite:hover {
    background: rgba(255,255,255,.06);
    border-color: #58a0cf;

    transform: scale(1.06);
}


/* =========================================================
   Description
   ========================================================= */

.ns-product-detail__description {
    max-width: 680px;

    margin-top: 68px;
    padding-top: 36px;

    border-top: 1px solid rgba(255, 255, 255, .13);
}

.ns-product-detail__description h2 {
    margin: 0 0 22px;

    color: #fff;

    font-size: 27px;
    line-height: 1.2;
    font-weight: 400;
}

.ns-product-detail__description-text {
    color: rgba(255, 255, 255, .64);

    font-size: 16px;
    line-height: 1.7;
}

.ns-product-detail__description-text p {
    margin: 0 0 16px;
}

.ns-product-detail__description-text p:last-child {
    margin-bottom: 0;
}

.ns-product-detail__description-text ul,
.ns-product-detail__description-text ol {
    margin: 18px 0;
    padding-left: 22px;
}

.ns-product-detail__description-text li {
    margin-bottom: 8px;
}

.ns-product-detail__description-text strong {
    color: #fff;
    font-weight: 500;
}

.ns-product-detail__description-text a {
    color: #69a9d2;
    text-decoration: underline;
    text-underline-offset: 3px;
}


/* =========================================================
   Laptop
   ========================================================= */

@media (max-width: 1250px) {

    .ns-product-detail__grid {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(360px, .85fr);

        gap: 58px;
    }

    .ns-product-detail__image {
        min-height: 560px;
    }

    .ns-product-detail__title {
        font-size: clamp(40px, 4vw, 58px);
    }

}


/* =========================================================
   Tablet
   ========================================================= */

@media (max-width: 980px) {

    .ns-product-detail {
        padding-top: 42px;
    }

    .ns-product-detail__grid {
        grid-template-columns: 1fr;

        gap: 54px;
    }

    .ns-product-detail__visual {
        width: 100%;
        max-width: 760px;

        margin: 0 auto;
    }

    .ns-product-detail__image {
        min-height: 600px;
    }

    .ns-product-detail__content {
        max-width: 760px;

        width: 100%;
        margin: 0 auto;

        padding-top: 0;
    }

}


/* =========================================================
   Mobile
   ========================================================= */

@media (max-width: 640px) {

    .ns-product-detail {
        padding:
            28px
            0
            72px;
    }


    /* breadcrumbs */

    .ns-product-detail__breadcrumbs {
        margin-bottom: 28px;

        gap: 7px;

        font-size: 11px;
    }


    /* visual */

    .ns-product-detail__visual {
        padding:
            20px
            20px
            23px;
    }

    .ns-product-detail__image {
        min-height: 410px;

        padding: 34px;

        border-radius: 40px;
    }

    .ns-product-detail__corner {
        width: 58px;
        height: 58px;
    }

    .ns-product-detail__corner--top::before,
    .ns-product-detail__corner--bottom::before {
        width: 58px;
        height: 3px;
    }

    .ns-product-detail__corner--top::after,
    .ns-product-detail__corner--bottom::after {
        width: 3px;
        height: 58px;
    }


    /* content */

    .ns-product-detail__content {
        padding-top: 0;
    }

    .ns-product-detail__section {
        margin-bottom: 15px;

        font-size: 10px;
    }

    .ns-product-detail__title {
        font-size: 39px;
        line-height: 1.04;
    }

    .ns-product-detail__intro {
        margin-top: 22px;

        font-size: 15px;
        line-height: 1.6;
    }

    .ns-product-detail__price {
        margin-top: 30px;

        font-size: 32px;
    }


    /* actions */

    .ns-product-detail__actions {
        gap: 11px;

        margin-top: 28px;
    }

    .ns-product-detail__cart {
        flex: 1 1 auto;

        min-width: 0;
        min-height: 58px;

        padding: 0 18px;
    }

    .ns-product-detail__favorite {
        flex: 0 0 58px;

        width: 58px;
        height: 58px;

        font-size: 31px;
    }


    /* description */

    .ns-product-detail__description {
        margin-top: 52px;
        padding-top: 30px;
    }

    .ns-product-detail__description h2 {
        font-size: 24px;
    }

    .ns-product-detail__description-text {
        font-size: 15px;
    }

}


/* =========================================================
   Small mobile
   ========================================================= */

@media (max-width: 390px) {

    .ns-product-detail__visual {
        padding-left: 16px;
        padding-right: 16px;
    }

    .ns-product-detail__image {
        min-height: 360px;

        padding: 28px;

        border-radius: 34px;
    }

    .ns-product-detail__title {
        font-size: 34px;
    }

    .ns-product-detail__price {
        font-size: 29px;
    }

}
/* ==========================================
   Quick add to cart
   ========================================== */

button.ns-product__plus {
    padding: 0;
    border: 2px solid #fff;

    font: inherit;

    appearance: none;
    -webkit-appearance: none;

    cursor: pointer;
}

.ns-product__plus.is-loading {
    pointer-events: none;
    opacity: .55;
}

.ns-product__plus.is-added {
    background: #4389b8;
}

.ns-product__plus.is-error {
    background: #b94a43;
}


/* Обычный плюс */

.ns-product__plus span::before,
.ns-product__plus span::after {
    transition:
        width .2s ease,
        transform .2s ease;
}


/* Галочка после успешного добавления */

.ns-product__plus span.is-success::before {
    width: 11px;

    transform:
        translate(-7px, 2px)
        rotate(45deg);
}

.ns-product__plus span.is-success::after {
    width: 21px;

    transform:
        translate(-1px, -2px)
        rotate(-45deg);
}

/* ==========================================
   Favorites
   ========================================== */

.ns-product__favorite,
.ns-product-detail__favorite {
    transition:
        background-color .2s ease,
        border-color .2s ease,
        color .2s ease,
        transform .2s ease;
}

.ns-product__favorite.is-active,
.ns-product-detail__favorite.is-active {
    background: #f57832;
    border-color: #f57832;
    color: #fff;
}

.ns-product__favorite.is-active span {
    color: #fff;
}

.ns-product__favorite.is-loading,
.ns-product-detail__favorite.is-loading {
    pointer-events: none;
    opacity: .55;
}

/* =========================================================
   Noble Shine — Favorites page
   ========================================================= */

.ns-favorites-page {
    min-height: 100vh;
}

.ns-favorites-page .ns-catalog__heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
}


/* ==========================================
   Back to catalog
   ========================================== */

.ns-favorites__back {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 46px;
    padding: 0 18px;

    border: 1px solid rgba(67, 137, 184, .62);

    background: transparent;
    color: rgba(255, 255, 255, .82);

    font-size: 14px;
    line-height: 1;

    text-decoration: none;

    transition:
        background-color .2s ease,
        border-color .2s ease,
        color .2s ease,
        transform .2s ease;
}

.ns-favorites__back:hover {
    background: #4389b8;
    border-color: #4389b8;
    color: #fff;

    transform: translateY(-1px);
}


/* ==========================================
   Empty state link
   ========================================== */

.ns-favorites__catalog-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 54px;
    margin-top: 28px;
    padding: 0 24px;

    border: 1px solid #f57832;

    background: #f57832;
    color: #fff;

    font-size: 14px;
    line-height: 1;

    text-decoration: none;

    transition:
        background-color .2s ease,
        border-color .2s ease,
        transform .2s ease;
}

.ns-favorites__catalog-link:hover {
    background: #ff8341;
    border-color: #ff8341;
    color: #fff;

    transform: translateY(-2px);
}


/* ==========================================
   Favorite active state
   ========================================== */

.ns-product__favorite.is-active,
.ns-product-detail__favorite.is-active {
    background: #f57832;
    border-color: #f57832;
    color: #fff;
}

.ns-product__favorite.is-active:hover,
.ns-product-detail__favorite.is-active:hover {
    background: #ff8341;
    border-color: #ff8341;
}

.ns-product__favorite.is-active span {
    color: #fff;
}


/* ==========================================
   Favorites loading state
   ========================================== */

.ns-product__favorite.is-loading,
.ns-product-detail__favorite.is-loading {
    pointer-events: none;
    opacity: .55;
}


/* ==========================================
   Favorites page mobile
   ========================================== */

@media (max-width: 640px) {

    .ns-favorites-page .ns-catalog__heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }

    .ns-favorites__back {
        width: 100%;
    }

    .ns-favorites__catalog-link {
        width: 100%;
        max-width: 320px;
    }
}


/* ==========================================
   Home carousels — plus hover fix
   Owl Carousel clips transformed elements at the stage boundary,
   so on the home carousels we keep the catalog button appearance
   but disable only the scale animation.
   ========================================== */

.products-carousel .ns-product__plus:hover,
.service-carousel .ns-product__plus:hover {
    transform: none;
    background: #ff8240;
}