.page-home {
    --home-navy: #0d1b2d;
    --home-blue: #12499a;
    --home-gold: #d39b3e;
    --home-ink: #10203a;
    --home-muted: #66758a;
    --home-line: #dfe6ee;
    --home-soft: #f4f7fb;
}

.home-proof-bar {
    background: #fff;
    border: 1px solid var(--home-line);
    border-radius: 18px;
    box-shadow: 0 18px 48px rgba(16,32,58,.08);
    display: grid;
    gap: 0;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 42px;
    margin-top: 24px;
    overflow: hidden;
}

.home-proof-item {
    align-items: center;
    display: flex;
    gap: 14px;
    min-width: 0;
    padding: 21px 22px;
    position: relative;
}

.home-proof-item:not(:last-child)::after {
    background: var(--home-line);
    content: "";
    height: 38px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
}

.home-proof-item__icon {
    align-items: center;
    background: #eef4fc;
    border: 1px solid #dbe6f3;
    border-radius: 11px;
    color: var(--home-blue);
    display: flex;
    flex: 0 0 44px;
    font-size: 17px;
    height: 44px;
    justify-content: center;
}

.home-proof-item strong,
.home-proof-item small {
    display: block;
}

.home-proof-item strong {
    color: var(--home-ink);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.3;
}

.home-proof-item small {
    color: var(--home-muted);
    font-size: 12px;
    line-height: 1.4;
    margin-top: 3px;
}

.page-home .home-product-section {
    background: rgba(255,255,255,.76);
    border: 1px solid rgba(16,32,58,.07);
    border-radius: 24px;
    box-shadow: 0 20px 58px rgba(16,32,58,.07);
    margin-bottom: 42px;
    overflow: hidden;
    padding: 30px 24px 22px;
}

.page-home .home-product-section--featured {
    background:
        radial-gradient(circle at 94% 0, rgba(211,155,62,.13), transparent 25%),
        linear-gradient(180deg, #fff 0%, #fffaf1 100%);
    border-color: rgba(211,155,62,.18);
}

.page-home .home-product-section .tabs-container,
.page-home .home-product-section .tabs-container .swiper-tabs,
.page-home .home-product-section .tabs-container .tabs-entry {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.page-home .home-product-section .tabs-container .swiper-tabs {
    margin-bottom: 22px !important;
    padding-bottom: 20px !important;
}

.page-home .home-product-section .home-section-heading {
    align-items: flex-end;
    display: flex !important;
    gap: 28px;
    justify-content: space-between;
    min-height: 0 !important;
    padding: 0 !important;
}

.home-section-heading__eyebrow {
    color: var(--home-gold);
    display: block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .15em;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.page-home .home-product-section .home-section-heading .block-title {
    color: var(--home-ink) !important;
    display: block !important;
    font-family: "Sora", "Raleway", sans-serif !important;
    font-size: clamp(26px, 3vw, 34px) !important;
    font-weight: 750 !important;
    letter-spacing: -.035em !important;
    line-height: 1.16 !important;
    margin: 0 0 7px !important;
    padding: 0 !important;
    text-transform: none !important;
}

.page-home .home-product-section .home-section-heading .block-title::before,
.page-home .home-product-section .home-section-heading .block-title::after {
    display: none !important;
}

.home-section-heading p {
    color: var(--home-muted);
    font-size: 14px;
    line-height: 1.55;
    margin: 0;
}

.home-section-heading__link {
    align-items: center;
    border: 1px solid var(--home-line);
    border-radius: 10px;
    color: var(--home-blue);
    display: inline-flex;
    flex: 0 0 auto;
    font-size: 13px;
    font-weight: 800;
    gap: 9px;
    min-height: 44px;
    padding: 11px 15px;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.home-section-heading__link:hover {
    background: var(--home-blue);
    border-color: var(--home-blue);
    color: #fff;
}

.page-home .home-product-section .products-swiper {
    margin-left: -9px;
    margin-right: -9px;
}

.page-home .home-product-section .product-slide-entry {
    border-color: rgba(16,32,58,.08);
    box-shadow: 0 12px 32px rgba(16,32,58,.08);
}

.page-home .home-product-section .product-slide-entry:hover {
    box-shadow: 0 20px 42px rgba(16,32,58,.14);
}

.page-home .home-product-section .pagination {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.page-home .industrial-featured-categories {
    margin-top: 12px;
}

.page-home .content-push {
    background:
        radial-gradient(circle at 10% 38%, rgba(18,73,154,.045), transparent 22%),
        #f4f7fb;
}

@media (max-width: 1050px) {
    .home-proof-bar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-proof-item:nth-child(2)::after {
        display: none;
    }

    .home-proof-item:nth-child(-n+2) {
        border-bottom: 1px solid var(--home-line);
    }
}

@media (max-width: 760px) {
    .page-home .home-hero-layout {
        display: flex !important;
        flex-direction: column;
    }

    .page-home .home-hero-column {
        width: 100%;
    }

    .page-home .home-slider-search {
        order: 1 !important;
    }

    .page-home .home-hero-column .nb-slider-block {
        max-width: 100%;
        order: 2 !important;
        overflow: hidden;
        width: 100%;
    }

    .page-home .nb-slider-block > .row {
        margin-left: 0;
        margin-right: 0;
    }

    .page-home .nb-slider-block > .row > .col-md-12 {
        padding-left: 0;
        padding-right: 0;
    }

    .page-home .nb-hero-slider,
    .page-home .nb-hero-swiper {
        max-width: 100%;
        overflow: hidden;
    }

    .page-home .nb-hero-content {
        box-sizing: border-box;
        max-width: 100%;
        padding-left: 20px !important;
        padding-right: 20px !important;
        width: 100% !important;
    }

    .page-home .nb-hero-content .cell-view,
    .page-home .nb-hero-content .title {
        max-width: 100%;
        width: 100%;
    }

    body.style-2.page-home .nb-hero-content .title {
        font-size: clamp(27px, 8vw, 34px) !important;
        line-height: 1.02 !important;
        overflow-wrap: anywhere;
    }

    .page-home .home-category-column {
        max-height: 430px;
        order: 3 !important;
        overflow-y: auto;
        scrollbar-color: #b8c6d8 transparent;
        scrollbar-width: thin;
        width: 100%;
    }

    .page-home .home-category-column::-webkit-scrollbar {
        width: 5px;
    }

    .page-home .home-category-column::-webkit-scrollbar-thumb {
        background: #b8c6d8;
        border-radius: 10px;
    }

    .home-proof-bar {
        grid-template-columns: 1fr;
        margin-bottom: 30px;
    }

    .home-proof-item {
        padding: 17px 18px;
    }

    .home-proof-item:not(:last-child) {
        border-bottom: 1px solid var(--home-line);
    }

    .home-proof-item::after {
        display: none;
    }

    .page-home .home-product-section {
        border-radius: 18px;
        margin-bottom: 30px;
        padding: 24px 16px 18px;
    }

    .page-home .home-product-section .home-section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
    }

    .home-section-heading__link {
        justify-content: center;
        width: 100%;
    }
}
