html, body, button, input, select, textarea {
    font-family: 'Poppins', ui-sans-serif, system-ui, sans-serif;
}


/* Small custom layer on top of Tailwind for motion-heavy components only. */

.nav-link {
    position: relative;
    padding: .55rem .1rem;
    color: rgb(71 85 105);
    font-size: .875rem;
    font-weight: 800;
    transition: color .2s ease;
}
.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: .15rem;
    height: 2px;
    border-radius: 99px;
    background: linear-gradient(90deg, #0B4D98, #FF5A0A);
    transition: right .22s ease;
}
.nav-link:hover,
.nav-link-active { color: #172033; }
.nav-link:hover::after,
.nav-link-active::after { right: 0; }

.calm-icon-btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    border: 1px solid rgb(226 232 240);
    border-radius: 999px;
    background: rgba(255,255,255,.9);
    padding: 0 .9rem;
    color: rgb(51 65 85);
    font-size: .78rem;
    font-weight: 800;
    transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}
.calm-icon-btn:hover {
    transform: translateY(-1px);
    border-color: rgb(203 213 225);
    background: rgb(248 250 252);
    color: #0B4D98;
}

.calm-primary-btn,
.calm-secondary-btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .65rem;
    border-radius: 999px;
    padding: 0 1.25rem;
    font-size: .82rem;
    font-weight: 900;
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
}
.calm-primary-btn {
    color: white;
    border: 1px solid rgba(255,255,255,.08);
    background: linear-gradient(135deg, #0B4D98, #0E5CAA);
    box-shadow: 0 10px 24px rgba(11,77,152,.16);
}
.calm-primary-btn:hover {
    transform: translateY(-1px);
    background: linear-gradient(135deg, #0A468A, #0B4D98);
    box-shadow: 0 14px 30px rgba(11,77,152,.2);
}
.calm-secondary-btn {
    color: rgb(51 65 85);
    border: 1px solid rgb(226 232 240);
    background: rgba(255,255,255,.8);
    backdrop-filter: blur(8px);
}
.calm-secondary-btn:hover {
    transform: translateY(-1px);
    border-color: rgb(203 213 225);
    background: white;
}

.search-drawer {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    transition: grid-template-rows .28s ease, padding .28s ease, border-color .28s ease;
}
.search-drawer > form { min-height: 0; }
.search-drawer.open {
    grid-template-rows: 1fr;
    padding: .75rem 0;
    border-color: rgb(226 232 240);
}

.mobile-menu {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    transition: grid-template-rows .25s ease, padding .25s ease;
}
.mobile-menu.open {
    grid-template-rows: 1fr;
    padding-bottom: .75rem;
}
.mobile-menu a {
    display: block;
    border-bottom: 1px solid rgb(241 245 249);
    padding: .8rem .15rem;
    color: rgb(51 65 85);
    font-size: .875rem;
    font-weight: 800;
}

/* Hero */
.hero-panel {
    position: relative;
    isolation: isolate;
    min-height: clamp(500px, 46vw, 820px);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: clamp(2.2rem, 6vw, 7rem);
}
.hero-theme-1 {
    background:
      radial-gradient(circle at 78% 28%, rgba(255,90,10,.18), transparent 24%),
      radial-gradient(circle at 68% 78%, rgba(11,77,152,.12), transparent 28%),
      linear-gradient(135deg, #ffffff 0%, #f8fbff 55%, #fff7f2 100%);
}
.hero-theme-2 {
    color: white;
    background:
      radial-gradient(circle at 80% 20%, rgba(255,90,10,.27), transparent 22%),
      radial-gradient(circle at 70% 85%, rgba(71,140,255,.18), transparent 25%),
      linear-gradient(128deg, #082f62 0%, #0B4D98 48%, #0B4D98 68%, #073a76 100%);
}
.hero-theme-3 {
    background:
      radial-gradient(circle at 78% 26%, rgba(11,77,152,.14), transparent 22%),
      radial-gradient(circle at 85% 75%, rgba(255,90,10,.13), transparent 24%),
      linear-gradient(135deg, #fffaf7 0%, #ffffff 55%, #f3f8ff 100%);
}
.hero-eyebrow {
    display: inline-block;
    margin-bottom: 1rem;
    color: #FF5A0A;
    font-size: clamp(.7rem, .8vw, .88rem);
    font-weight: 900;
    letter-spacing: .16em;
}
.hero-theme-2 .hero-eyebrow { color: #FFD1B7; }
.hero-title {
    max-width: 900px;
    margin: 0;
    font-size: clamp(2.45rem, 5.5vw, 6.3rem);
    font-weight: 900;
    line-height: .96;
    letter-spacing: -.055em;
    text-wrap: balance;
}
.hero-copy {
    max-width: 740px;
    margin-top: clamp(1rem, 2vw, 1.7rem);
    color: rgb(100 116 139);
    font-size: clamp(.95rem, 1.2vw, 1.25rem);
    line-height: 1.7;
}
.hero-theme-2 .hero-copy { color: rgba(255,255,255,.78); }

.hero-orb {
    position: absolute;
    z-index: -1;
    border-radius: 999px;
    filter: blur(1px);
    opacity: .8;
}
.hero-orb-one {
    width: clamp(180px, 21vw, 420px);
    height: clamp(180px, 21vw, 420px);
    right: 4%;
    top: -8%;
    background: rgba(255,90,10,.07);
}
.hero-orb-two {
    width: clamp(150px, 18vw, 350px);
    height: clamp(150px, 18vw, 350px);
    right: 22%;
    bottom: -13%;
    background: rgba(11,77,152,.07);
}

.calm-slider-btn {
    width: 46px !important;
    height: 46px !important;
    border: 1px solid rgba(148,163,184,.25);
    border-radius: 999px;
    background: rgba(255,255,255,.92);
    color: #334155 !important;
    box-shadow: 0 10px 25px rgba(15,23,42,.08);
    backdrop-filter: blur(10px);
}
.calm-slider-btn::after {
    font-size: 16px !important;
    font-weight: 900;
}
.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(100,116,139,.35);
    opacity: 1;
    transition: width .25s ease, background .25s ease;
}
.swiper-pagination-bullet-active {
    width: 30px;
    border-radius: 999px;
    background: #FF5A0A;
}

/* Infinite marquees */
.marquee-shell {
    -webkit-mask-image: linear-gradient(to right, transparent 0, black 3%, black 97%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, black 3%, black 97%, transparent 100%);
}
.product-marquee-track {
    will-change: transform;
    transform: translate3d(0,0,0);
}
.edge-fade {
    pointer-events: none;
    position: absolute;
    z-index: 20;
    top: 0;
    bottom: 0;
    width: 2.5rem;
}
.edge-fade-left {
    left: 0;
    background: linear-gradient(to right, rgb(248 250 252), rgba(248,250,252,0));
}
.edge-fade-right {
    right: 0;
    background: linear-gradient(to left, rgb(248 250 252), rgba(248,250,252,0));
}

.calm-product-view-btn,
.calm-product-options-btn {
    display: inline-flex;
    min-height: 38px;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    border-radius: 999px;
    padding: 0 1rem;
    font-size: .75rem;
    font-weight: 900;
    transition: all .2s ease;
}
.calm-product-view-btn {
    color: #334155;
    border: 1px solid rgb(226 232 240);
    background: rgb(248 250 252);
}
.calm-product-view-btn:hover {
    color: #0B4D98;
    border-color: rgb(191 219 254);
    background: rgb(239 246 255);
}
.calm-product-options-btn {
    color: #A64310;
    border: 1px solid #FFD9C3;
    background: #FFF6F0;
}
.calm-product-options-btn:hover {
    color: #8C3408;
    border-color: #FFC6A3;
    background: #FFF0E7;
}

@media (max-width: 768px) {
    .hero-panel {
        min-height: clamp(500px, 125vw, 680px);
        align-items: flex-start;
        padding: 3.2rem 1.25rem 5rem;
    }
    .hero-title { font-size: clamp(2.25rem, 11vw, 4rem); }
    .hero-copy { font-size: .95rem; line-height: 1.6; }
    .calm-slider-btn {
        top: auto !important;
        bottom: 1rem;
        margin-top: 0 !important;
        width: 38px !important;
        height: 38px !important;
    }
    .swiper-button-prev { left: 1rem !important; }
    .swiper-button-next { right: 1rem !important; }
    .marquee-shell {
        -webkit-mask-image: linear-gradient(to right, transparent 0, black 7%, black 93%, transparent 100%);
        mask-image: linear-gradient(to right, transparent 0, black 7%, black 93%, transparent 100%);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}


/* Partner brand carousel */
.brand-marquee-shell {
    -webkit-mask-image: linear-gradient(to right, transparent 0, black 4%, black 96%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, black 4%, black 96%, transparent 100%);
}

.brand-marquee-track {
    will-change: transform;
    transform: translate3d(0,0,0);
}

.brand-chip {
    min-width: clamp(150px, 11vw, 210px);
    min-height: 72px;
    display: grid;
    place-items: center;
    padding: 0 1.4rem;
    border: 1px solid rgb(226 232 240);
    border-radius: 1rem;
    background:
      linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,250,252,.96));
    color: rgb(51 65 85);
    font-size: clamp(.9rem, 1vw, 1.05rem);
    font-weight: 800;
    letter-spacing: -.02em;
    box-shadow: 0 3px 14px rgba(15,23,42,.035);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.brand-chip:hover {
    transform: translateY(-2px);
    border-color: rgb(191 219 254);
    box-shadow: 0 10px 26px rgba(15,23,42,.07);
}

@media (max-width: 640px) {
    .brand-chip {
        min-width: 132px;
        min-height: 62px;
        font-size: .84rem;
    }
}


.brand-chip img {
    display: block;
    width: auto;
    max-width: 72%;
    height: 32px;
    max-height: 38px;
    object-fit: contain;
}

@media (min-width: 768px) {
    .brand-chip img {
        height: 38px;
        max-height: 44px;
    }
}


/* Product page */
.product-thumb {
    flex: 0 0 70px;
    width: 70px;
    height: 70px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgb(226 232 240);
    border-radius: .9rem;
    background: white;
    padding: .45rem;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.product-thumb:hover {
    transform: translateY(-1px);
    border-color: rgb(191 219 254);
}
.product-thumb.active {
    border-color: #0B4D98;
    box-shadow: 0 0 0 3px rgba(11,77,152,.08);
}

.variant-option {
    min-height: 62px;
    border: 1px solid rgb(226 232 240);
    border-radius: 1rem;
    background: white;
    padding: .7rem .8rem;
    text-align: left;
    transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}
.variant-option:hover {
    border-color: rgb(191 219 254);
    background: rgb(248 250 252);
}
.variant-option.active {
    border-color: #0B4D98;
    background: rgb(239 246 255);
    box-shadow: 0 0 0 3px rgba(11,77,152,.06);
}

.product-primary-action,
.product-secondary-action {
    min-height: 52px;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .65rem;
    border-radius: 999px;
    padding: 0 1.25rem;
    font-size: .82rem;
    font-weight: 900;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.product-primary-action {
    color: white;
    border: 1px solid #0B4D98;
    background: linear-gradient(135deg, #0B4D98, #0d5aad);
    box-shadow: 0 12px 26px rgba(11,77,152,.16);
}
.product-primary-action:hover {
    transform: translateY(-1px);
    background: linear-gradient(135deg, #083f80, #0B4D98);
    box-shadow: 0 16px 32px rgba(11,77,152,.20);
}
.product-secondary-action {
    color: #A64310;
    border: 1px solid #FFD6BE;
    background: #FFF5EF;
}
.product-secondary-action:hover {
    transform: translateY(-1px);
    border-color: #FFC4A2;
    background: #FFF0E7;
}

.product-tab {
    min-height: 56px;
    flex: 0 0 auto;
    position: relative;
    padding: 0 1rem;
    color: rgb(100 116 139);
    font-size: .75rem;
    font-weight: 800;
    white-space: nowrap;
}
.product-tab::after {
    content: "";
    position: absolute;
    left: 1rem;
    right: 100%;
    bottom: 0;
    height: 2px;
    border-radius: 99px;
    background: linear-gradient(90deg, #0B4D98, #FF5A0A);
    transition: right .2s ease;
}
.product-tab.active {
    color: rgb(30 41 59);
}
.product-tab.active::after {
    right: 1rem;
}
.product-tab-panel {
    display: none;
}
.product-tab-panel.active {
    display: block;
}

@media (min-width: 640px) {
    .product-thumb {
        width: 78px;
        height: 78px;
        flex-basis: 78px;
    }
}
@media (min-width: 1024px) {
    .product-thumb {
        width: 88px;
        height: 88px;
        flex-basis: 88px;
    }
}


/* ==========================================================================
   V7 — BetterLink "Arc" visual system
   Calm, metallic, modern; less gradient-heavy and more product-led.
   ========================================================================== */

:root {
    --arc-navy: #071A2F;
    --arc-blue: #145DA0;
    --arc-blue-soft: #EAF2F9;
    --arc-orange: #F26A21;
    --arc-orange-soft: #FFF4EC;
    --arc-steel: #E9EEF3;
    --arc-titanium: #AEB9C5;
    --arc-graphite: #111A26;
    --arc-line: #DDE4EB;
}

body {
    background:
      linear-gradient(#F8FAFC, #F8FAFC) padding-box;
    color: var(--arc-graphite);
}

/* Header */
header.sticky {
    border-bottom-color: rgba(174,185,197,.34) !important;
    background: rgba(252,253,254,.93) !important;
    box-shadow: 0 8px 26px rgba(7,26,47,.035);
}

.calm-icon-btn {
    color: #334155;
    border-color: #DCE4EB;
    background: rgba(255,255,255,.88);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
}
.calm-icon-btn:hover {
    color: var(--arc-blue);
    border-color: #C4D5E4;
    background: #F8FBFD;
}

.nav-link::after {
    background: var(--arc-orange);
}

/* Hero: cleaner and less oversized */
.heroSwiper {
    border: 1px solid rgba(174,185,197,.42);
    background: #F4F7FA;
}

.hero-panel {
    min-height: clamp(480px, 40vw, 700px);
    padding: clamp(2.4rem, 5vw, 6rem);
}

.hero-theme-1,
.hero-theme-3 {
    background:
      linear-gradient(115deg, rgba(255,255,255,.98) 0%, rgba(247,250,252,.98) 62%, rgba(235,241,247,.94) 100%);
}

.hero-theme-2 {
    color: #fff;
    background:
      linear-gradient(115deg, #071A2F 0%, #0A2848 56%, #0D3A67 100%);
}

.hero-theme-1::after,
.hero-theme-2::after,
.hero-theme-3::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background:
      linear-gradient(120deg, transparent 0 67%, rgba(255,255,255,.16) 67.2% 67.5%, transparent 67.7%),
      linear-gradient(120deg, transparent 0 78%, rgba(242,106,33,.10) 78.2% 78.45%, transparent 78.7%);
}

.hero-title {
    max-width: 760px;
    font-size: clamp(2.45rem, 4.4vw, 5.25rem);
    line-height: 1.00;
    letter-spacing: -.048em;
}

.hero-copy {
    max-width: 650px;
    margin-top: 1.25rem;
    color: #667789;
    font-size: clamp(.92rem, 1vw, 1.08rem);
    line-height: 1.72;
}

.hero-theme-2 .hero-copy {
    color: rgba(235,242,248,.78);
}

.hero-eyebrow {
    color: var(--arc-orange);
    font-size: .72rem;
    letter-spacing: .15em;
}

.calm-primary-btn,
.product-primary-action {
    border-color: #0D4D86;
    background: #0B477E;
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,.12),
      0 8px 20px rgba(7,26,47,.12);
}
.calm-primary-btn:hover,
.product-primary-action:hover {
    background: #083B6B;
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,.15),
      0 12px 26px rgba(7,26,47,.15);
}

.calm-secondary-btn,
.product-secondary-action {
    color: #334155;
    border-color: #D7E0E8;
    background: rgba(255,255,255,.82);
}

.calm-secondary-btn:hover,
.product-secondary-action:hover {
    color: var(--arc-blue);
    border-color: #C3D2DF;
    background: #fff;
}

/* Quiet decorative orbs */
.hero-orb { display: none; }

/* Partner carousel */
.brand-chip {
    min-width: clamp(138px, 10vw, 188px);
    min-height: 68px;
    border-color: #E1E7EC;
    border-radius: 1rem;
    background: #FFFFFF;
    box-shadow: none;
}
.brand-chip:hover {
    border-color: #CBD6E0;
    box-shadow: 0 9px 22px rgba(7,26,47,.06);
}

/* Product section */
.catalog-block {
    position: relative;
}
.catalog-block h2 {
    color: #172334;
}
.catalog-block .h-px {
    background: #DFE5EB !important;
}

.marquee-shell {
    padding: 0 2px;
}

.product-marquee-track article {
    border-color: #DCE3EA !important;
    border-radius: 1.05rem !important;
    background: #fff !important;
    box-shadow: 0 2px 10px rgba(7,26,47,.025) !important;
}
.product-marquee-track article:hover {
    box-shadow: 0 12px 28px rgba(7,26,47,.075) !important;
}
.product-marquee-track article > a:first-child {
    background: #F9FBFC !important;
}

/* Manual carousel arrows */
.manual-carousel-arrow {
    position: absolute;
    z-index: 40;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(174,185,197,.56);
    border-radius: 50%;
    background: rgba(255,255,255,.94);
    color: #28445F;
    box-shadow: 0 8px 20px rgba(7,26,47,.09);
    backdrop-filter: blur(8px);
    font-size: 1.6rem;
    line-height: 1;
    opacity: .94;
    transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}
.manual-carousel-arrow:hover {
    color: #fff;
    border-color: var(--arc-blue);
    background: var(--arc-blue);
}
.manual-carousel-arrow:active {
    transform: translateY(-50%) scale(.96);
}
.manual-carousel-left { left: 8px; }
.manual-carousel-right { right: 8px; }

/* Soft edge masks, not strong white fade */
.marquee-shell {
    -webkit-mask-image: linear-gradient(to right, transparent 0, black 2.2%, black 97.8%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, black 2.2%, black 97.8%, transparent 100%);
}
.edge-fade { display: none; }

/* Product page surfaces */
.product-thumb {
    border-color: #DCE4EB;
    background: #fff;
}
.product-thumb.active {
    border-color: var(--arc-blue);
    box-shadow: 0 0 0 3px rgba(20,93,160,.075);
}

.variant-option {
    border-color: #DCE4EB;
    background: #fff;
}
.variant-option.active {
    border-color: var(--arc-blue);
    background: #F2F7FB;
    box-shadow: 0 0 0 3px rgba(20,93,160,.06);
}

.product-tab::after {
    background: var(--arc-orange);
}

/* MOBILE-FIRST fixes */
@media (max-width: 767px) {
    header.sticky > div:first-child {
        min-height: 64px !important;
        width: calc(100% - 20px) !important;
        gap: 6px !important;
    }

    header.sticky > div:first-child > a:first-child {
        width: min(160px, 46vw) !important;
        flex: 0 1 auto;
        min-width: 0;
    }

    header.sticky > div:first-child > a:first-child img {
        width: 100%;
        max-height: 46px;
        object-fit: contain;
        object-position: left center;
    }

    .calm-icon-btn {
        width: 37px;
        height: 37px;
        min-height: 37px;
        padding: 0 !important;
        flex: 0 0 37px;
    }

    .heroSwiper {
        border-radius: 1.1rem !important;
    }

    .hero-panel {
        min-height: 450px;
        padding: 2.25rem 1.2rem 4.4rem;
        align-items: flex-start;
    }

    .hero-title {
        max-width: 94%;
        font-size: clamp(2rem, 9.2vw, 2.75rem);
        line-height: 1.03;
        letter-spacing: -.045em;
        text-wrap: balance;
    }

    .hero-copy {
        max-width: 96%;
        margin-top: .9rem;
        font-size: .88rem;
        line-height: 1.62;
    }

    .hero-eyebrow {
        margin-bottom: .8rem;
        font-size: .62rem;
        letter-spacing: .13em;
    }

    .hero-panel .mt-7,
    .hero-panel .sm\:mt-9 {
        margin-top: 1.35rem !important;
    }

    .calm-primary-btn,
    .calm-secondary-btn {
        min-height: 42px;
        padding: 0 .95rem;
        font-size: .72rem;
    }

    .calm-slider-btn {
        width: 36px !important;
        height: 36px !important;
        bottom: 12px !important;
        background: rgba(255,255,255,.92);
    }

    .swiper-pagination {
        bottom: 16px !important;
    }

    .brand-chip {
        min-width: 128px;
        min-height: 58px;
    }

    .brand-chip img {
        height: 26px;
        max-width: 70%;
    }

    .manual-carousel-arrow {
        width: 38px;
        height: 38px;
        font-size: 1.35rem;
        background: rgba(255,255,255,.96);
    }
    .manual-carousel-left { left: 5px; }
    .manual-carousel-right { right: 5px; }

    .product-marquee-track article {
        width: min(72vw, 250px) !important;
        border-radius: .95rem !important;
    }

    .product-marquee-track article > a:first-child {
        aspect-ratio: 1 / .9 !important;
    }
}

@media (max-width: 390px) {
    header.sticky > div:first-child > a:first-child {
        width: min(142px, 42vw) !important;
    }

    .calm-icon-btn {
        width: 35px;
        height: 35px;
        min-height: 35px;
        flex-basis: 35px;
    }

    .hero-panel {
        min-height: 430px;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .hero-title {
        font-size: clamp(1.85rem, 8.8vw, 2.35rem);
    }

    .hero-copy {
        font-size: .82rem;
    }
}

/* Wide screen refinement */
@media (min-width: 1536px) {
    .hero-panel {
        min-height: 660px;
    }
}

/* ========================================================================
   V8 catalogue components
   ======================================================================== */
.catalog-filter-panel {
    border: 1px solid #DDE4EB;
    border-radius: 1.15rem;
    background: #fff;
    padding: 1.15rem;
    box-shadow: 0 5px 20px rgba(7,26,47,.035);
}

.filter-link {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    border-radius: .75rem;
    padding: .45rem .65rem;
    color: #64748B;
    font-size: .72rem;
    font-weight: 700;
    transition: background .18s ease, color .18s ease;
}
.filter-link b {
    min-width: 26px;
    color: #94A3B8;
    font-size: .62rem;
    text-align: right;
}
.filter-link:hover {
    color: #145DA0;
    background: #F4F8FB;
}
.filter-link.active {
    color: #0D3F6C;
    background: #EBF3F9;
}
.filter-link.active b { color: #145DA0; }

.catalog-product-card {
    overflow: hidden;
    border: 1px solid #DDE4EB;
    border-radius: 1.05rem;
    background: #fff;
    box-shadow: 0 2px 10px rgba(7,26,47,.025);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.catalog-product-card:hover {
    transform: translateY(-3px);
    border-color: #CFD9E2;
    box-shadow: 0 14px 32px rgba(7,26,47,.075);
}
.catalog-product-image {
    position: relative;
    aspect-ratio: 1 / .9;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: #F9FBFC;
    padding: clamp(1rem, 2vw, 1.5rem);
}
.catalog-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform .35s ease;
}
.catalog-product-card:hover .catalog-product-image img {
    transform: scale(1.025);
}

.pagination-btn {
    min-width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid #DDE4EB;
    border-radius: 999px;
    background: #fff;
    color: #475569;
    font-size: .72rem;
    font-weight: 800;
    transition: background .18s ease, border-color .18s ease, color .18s ease;
}
.pagination-btn:hover {
    color: #145DA0;
    border-color: #C6D7E5;
    background: #F4F8FB;
}
.pagination-btn.active {
    color: #fff;
    border-color: #145DA0;
    background: #145DA0;
}

@media (max-width: 469px) {
    .catalog-product-card .calm-product-view-btn,
    .catalog-product-card .calm-product-options-btn {
        min-height: 36px;
        font-size: .68rem;
    }
}
