/* Gratus - Home Appliances Website Styles */

/* CSS Custom Properties */
:root {
    --brand-blue: #159bd7;
    --brand-green: #78be20;
    --brand-blue-dark: #087eb5;
    --brand-green-dark: #5f9f16;
    --color-primary: #1a1a1a;
    --color-secondary: #2d2d2d;
    --color-accent: #159bd7;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-text-muted: #888888;
    --color-bg: #ffffff;
    --color-bg-light: #f8f8f8;
    --color-bg-dark: #f0f0f0;
    --color-border: #e0e0e0;
    --color-white: #ffffff;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    --transition: all 0.3s ease;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.12);
}

/* Reference-faithful Gratus header */
.reference-header {
    position: fixed;
    z-index: 9990;
    top: 0;
    right: 0;
    left: 0;
    color: #fff;
    transition: background .7s, color .7s, box-shadow .7s
}

.reference-header.is-solid,
.reference-header.is-open {
    color: #17232a;
    background: #fff;
    box-shadow: 0 1px 0 rgba(15, 35, 45, .1)
}

.reference-header-shell,
.reference-products-grid,
.reference-search>div,
.reference-mobile-head,
.reference-mobile nav {
    width: min(100% - 40px, 1240px);
    margin-inline: auto
}

.reference-header-shell {
    display: flex;
    height: 64px;
    align-items: center;
    justify-content: space-between;
    gap: 24px
}

.reference-logo {
    flex: none
}

.reference-logo img {
    display: block;
    width: auto;
    height: 28px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: filter .5s
}

.reference-header.is-solid .reference-logo img,
.reference-header.is-open .reference-logo img {
    filter: none
}

.reference-nav {
    display: none;
    align-items: center;
    gap: 32px
}

.reference-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    font-size: 14px;
    cursor: pointer;
    transition: opacity .3s
}

.reference-nav-link:hover {
    opacity: .6
}

.reference-nav-link svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform .5s
}

.reference-nav-link[aria-expanded=true] svg {
    transform: rotate(180deg)
}

.reference-actions {
    display: flex;
    align-items: center;
    gap: 8px
}

.reference-icon-button,
.reference-menu-button {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: inherit;
    cursor: pointer
}

.reference-icon-button:hover {
    background: rgba(255, 255, 255, .1)
}

.reference-header.is-solid .reference-icon-button:hover,
.reference-header.is-open .reference-icon-button:hover {
    background: #eef2f3
}

.reference-actions svg,
.reference-search svg,
.reference-mobile svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.reference-region {
    display: none;
    align-items: center;
    gap: 6px;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    font-size: 12px;
    letter-spacing: .03em;
    cursor: pointer
}

.reference-region svg {
    width: 16px;
    height: 16px
}

.reference-contact {
    display: none;
    padding: 10px 20px;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 999px;
    background: rgba(255, 255, 255, .1);
    color: inherit;
    font-size: 14px;
    font-weight: 500
}

.reference-header.is-solid .reference-contact,
.reference-header.is-open .reference-contact {
    border-color: #d8e0e3;
    background: #f3f6f7
}

.reference-menu-button svg {
    width: 20px;
    height: 20px
}

.reference-search {
    max-height: 0;
    overflow: hidden;
    border-color: #dce3e6;
    background: #fff;
    color: #17232a;
    opacity: 0;
    transition: max-height .7s, opacity .5s, border-color .7s
}

.reference-search.is-open {
    max-height: 90px;
    border-top: 1px solid #e3e8ea;
    opacity: 1
}

.reference-search>div {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-block: 24px;
    border-bottom: 1px solid #dce3e6
}

.reference-search input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: #17232a;
    font: inherit;
    font-size: 16px
}

.reference-search input::placeholder {
    color: #839097
}

.reference-search button {
    border: 0;
    background: none;
    color: #65747b;
    font-size: 24px;
    cursor: pointer
}

.reference-products {
    display: none;
    max-height: 0;
    overflow: hidden;
    background: #fff;
    color: #17232a;
    opacity: 0;
    transition: max-height .7s, opacity .5s
}

.reference-products.is-open {
    max-height: 520px;
    opacity: 1
}

.reference-products-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    padding-block: 40px
}

.reference-category span {
    display: block;
    overflow: hidden;
    aspect-ratio: 4/5;
    border-radius: 6px;
    background: #edf2f3
}

.reference-category img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(.22, 1, .36, 1)
}

.reference-category:hover img {
    transform: scale(1.05)
}

.reference-category strong,
.reference-category small {
    display: block
}

.reference-category strong {
    margin-top: 16px;
    color: #17232a;
    font-size: 14px;
    font-weight: 600
}

.reference-category small {
    margin-top: 6px;
    color: #77858c;
    font-size: 12px;
    line-height: 1.5
}

.reference-mobile {
    position: fixed;
    z-index: 5;
    inset: 0;
    visibility: hidden;
    background: #fff;
    color: #17232a;
    opacity: 0;
    transition: opacity .5s, visibility .5s
}

.reference-mobile.is-open {
    visibility: visible;
    opacity: 1
}

.reference-mobile-head {
    display: flex;
    height: 64px;
    align-items: center;
    justify-content: space-between
}

.reference-mobile-head img {
    width: auto;
    height: 28px
}

.reference-mobile-head button {
    width: 40px;
    height: 40px;
    border: 0;
    background: none;
    color: #17232a;
    font-size: 30px;
    cursor: pointer
}

.reference-mobile nav {
    display: flex;
    flex-direction: column;
    margin-top: 24px
}

.reference-mobile nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    border-bottom: 1px solid #dce3e6;
    color: #17232a;
    font-size: 20px
}

.reference-mobile nav a svg {
    width: 16px;
    height: 16px;
    color: #7d898f
}

.reference-mobile nav p {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 30px;
    color: #77858c;
    font-size: 14px
}

.reference-mobile nav p svg {
    width: 16px;
    height: 16px
}

.reference-header+main,
.reference-header+.dynamic-product {
    padding-top: 64px
}

.reference-header+main .hero:first-child {
    margin-top: -64px
}

@media(min-width:768px) {
    .reference-header-shell {
        height: 80px
    }

    .reference-logo img {
        height: 46px
    }

    .reference-region,
    .reference-contact {
        display: inline-flex
    }

    .reference-mobile-head {
        height: 80px
    }

    .reference-header+main,
    .reference-header+.dynamic-product {
        padding-top: 80px
    }

    .reference-header+main .hero:first-child {
        margin-top: -80px
    }
}

@media(min-width:1025px) {
    .reference-nav {
        .dynamic-product.product-detail-page>.container {
            width: 100vw;
            max-width: none;
            margin-left: calc(50% - 50vw);
            padding-right: 0;
            padding-left: 0
        }

        display: flex
    }

    .reference-menu-button {
        display: none
    }

    .reference-products {
        display: block
    }
}

/* Homepage customer journey */
.customer-journey {
    position: relative;
    overflow: hidden;
    padding: 64px 0 72px;
    background: #191b1e;
    color: #f4f4f2
}

.customer-journey-inner {
    width: min(100% - 40px, 1726px);
    margin-inline: auto
}

.customer-journey-kicker {
    display: block;
    color: #929396;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .25em;
    text-transform: uppercase
}

.customer-journey h2 {
    margin: 28px 0 82px;
    font-size: clamp(48px, 5.2vw, 82px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -.045em
}

.customer-journey-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 54px
}

.journey-track {
    display: flex;
    align-items: center;
    margin-bottom: 34px
}

.journey-icon {
    position: relative;
    z-index: 1;
    display: grid;
    flex: 0 0 64px;
    width: 64px;
    height: 64px;
    place-items: center;
    border: 1px solid #515357;
    border-radius: 50%;
    background: #191b1e;
    transition: border-color .35s, transform .35s, background .35s
}

.journey-icon svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: #f2f2ef;
    stroke-width: 1.55;
    stroke-linecap: round;
    stroke-linejoin: round
}

.journey-track i {
    position: relative;
    display: block;
    flex: 1;
    height: 1px;
    margin-left: 23px;
    overflow: hidden;
    background: #414347
}

.journey-track i::after {
    position: absolute;
    inset: 0;
    content: "";
    background: #b4b5b7;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1s cubic-bezier(.22, 1, .36, 1) calc(var(--step-delay) + 250ms)
}

.journey-number {
    display: block;
    margin-bottom: 14px;
    color: #8d8e91;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .15em
}

.journey-step h3 {
    margin: 0 0 18px;
    font-size: clamp(32px, 2.6vw, 48px);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -.035em
}

.journey-step p {
    max-width: 340px;
    margin: 0;
    color: #a7a7a8;
    font-size: 17px;
    line-height: 1.75
}

.journey-step {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .75s ease var(--step-delay), transform .75s cubic-bezier(.22, 1, .36, 1) var(--step-delay)
}

.customer-journey.is-visible .journey-step {
    opacity: 1;
    transform: none
}

.customer-journey.is-visible .journey-track i::after {
    transform: scaleX(1)
}

.customer-journey.is-visible .journey-icon {
    animation: journeyIconIn .75s cubic-bezier(.22, 1, .36, 1) both;
    animation-delay: var(--step-delay)
}

.journey-step:hover .journey-icon {
    border-color: #f2f2ef;
    background: #24272a;
    transform: translateY(-4px)
}

@keyframes journeyIconIn {
    0% {
        opacity: 0;
        transform: scale(.72) rotate(-8deg)
    }

    100% {
        opacity: 1;
        transform: scale(1) rotate(0)
    }
}

@media(max-width:1000px) {
    .customer-journey {
        padding-block: 70px
    }

    .customer-journey h2 {
        margin-bottom: 64px
    }

    .customer-journey-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 58px 44px
    }
}

@media(max-width:600px) {
    .customer-journey {
        padding: 58px 0 66px
    }

    .customer-journey-inner {
        width: min(100% - 32px, 1726px)
    }

    .customer-journey-kicker {
        font-size: 11px
    }

    .customer-journey h2 {
        margin: 22px 0 54px;
        font-size: 45px;
        line-height: 1.05
    }

    .customer-journey-grid {
        grid-template-columns: 1fr;
        gap: 46px
    }

    .journey-track {
        margin-bottom: 24px
    }

    .journey-icon {
        flex-basis: 56px;
        width: 56px;
        height: 56px
    }

    .journey-track i {
        margin-left: 18px
    }

    .journey-step h3 {
        font-size: 34px
    }

    .journey-step p {
        font-size: 16px;
        line-height: 1.65
    }
}

@media(prefers-reduced-motion:reduce) {
    .journey-step {
        opacity: 1;
        transform: none;
        transition: none
    }

    .customer-journey.is-visible .journey-icon {
        animation: none
    }

    .journey-track i::after {
        transform: scaleX(1);
        transition: none
    }
}

/* Gratus brand treatment for the customer journey. */
.customer-journey {
    background: linear-gradient(135deg, #071d2b 0%, #0b3147 58%, #0d3a4c 100%);
    color: #fff
}

.customer-journey::before {
    position: absolute;
    top: -220px;
    right: -160px;
    width: 560px;
    height: 560px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(21, 155, 215, .18), transparent 68%);
    content: "";
    pointer-events: none
}

.customer-journey::after {
    position: absolute;
    bottom: -260px;
    left: 20%;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(120, 190, 32, .1), transparent 70%);
    content: "";
    pointer-events: none
}

.customer-journey-inner {
    position: relative;
    z-index: 1
}

.customer-journey-kicker {
    color: #73c8ec
}

.journey-icon {
    border-color: rgba(115, 200, 236, .42);
    background: rgba(255, 255, 255, .035);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .025)
}

.journey-icon svg {
    stroke: #fff
}

.journey-track i {
    background: rgba(255, 255, 255, .2)
}

.journey-track i::after {
    background: linear-gradient(90deg, var(--brand-blue), var(--brand-green))
}

.journey-number {
    color: #78be20
}

.journey-step p {
    color: #b9cbd3
}

.journey-step:hover .journey-icon {
    border-color: #78be20;
    background: rgba(120, 190, 32, .13);
    box-shadow: 0 0 0 7px rgba(120, 190, 32, .06)
}

/* Refined product-category listing */
.product-listing-page {
    font-family: var(--font-family);
    background: #f6f9fa;
    color: #102d3d
}

.product-listing-page .listing-shell {
    padding: 72px 0 100px
}

.product-listing-page .listing-heading {
    align-items: end;
    margin-bottom: 34px
}

.product-listing-page .listing-kicker {
    color: var(--brand-blue);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .2em
}

.product-listing-page .listing-heading h1 {
    margin-top: 10px;
    color: #102f40;
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -.05em
}

.product-listing-page .listing-search {
    width: min(100%, 360px);
    border-color: #d5e0e4;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 8px 28px rgba(16, 47, 64, .04)
}

.product-listing-page .listing-search input {
    font-family: inherit;
    font-size: 14px
}

.product-listing-page .listing-layout {
    grid-template-columns: 270px minmax(0, 1fr);
    gap: 32px;
    align-items: start
}

.product-listing-page .listing-filters {
    top: 104px;
    max-height: calc(100vh - 128px);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 26px 22px;
    border: 1px solid #dce5e8;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(16, 47, 64, .045)
}

.product-listing-page .filter-head h2 {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -.03em
}

.product-listing-page .filter-head span,
.product-listing-page .filter-group h3 {
    font-family: inherit;
    font-weight: 700
}

.product-listing-page .filter-group label {
    border-radius: 6px;
    font-family: inherit;
    font-size: 13px
}

.product-listing-page .listing-results {
    gap: 24px
}

.product-listing-page .listing-product-card {
    overflow: hidden;
    border: 1px solid #dce5e8;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 5px 18px rgba(16, 47, 64, .035);
    transition: transform .4s cubic-bezier(.22, 1, .36, 1), box-shadow .4s, border-color .4s
}

.product-listing-page .listing-product-card:hover {
    border-color: #c5d5db;
    box-shadow: 0 18px 42px rgba(16, 47, 64, .1);
    transform: translateY(-6px)
}

.product-listing-page .listing-product-image {
    height: 315px;
    border-bottom: 1px solid #e8eef0;
    background: #fff
}

.product-listing-page .listing-product-image img {
    padding: 24px;
    object-fit: contain;
    transition: transform .65s cubic-bezier(.22, 1, .36, 1)
}

.product-listing-page .listing-product-card:hover .listing-product-image img {
    transform: scale(1.045)
}

.product-listing-page .listing-product-badge {
    top: 16px;
    left: 16px;
    padding: 7px 11px;
    border-radius: 999px;
    background: var(--brand-green);
    font-size: 9px;
    letter-spacing: .1em
}

.product-listing-page .listing-product-body {
    padding: 24px 26px 26px
}

.product-listing-page .listing-product-category {
    color: var(--brand-blue);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .11em
}

.product-listing-page .listing-product-body h2 {
    display: -webkit-box;
    min-height: 66px;
    margin: 12px 0 18px;
    overflow: hidden;
    color: #102f40;
    font-size: 23px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -.03em;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3
}

.product-listing-page .listing-product-features {
    padding-top: 16px;
    border-top: 1px solid #e7edef
}

.product-listing-page .listing-product-features li {
    color: #6e7f87;
    font-size: 12px;
    line-height: 1.55
}

.product-listing-page .listing-learn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 22px;
    color: #143d53;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase
}

.product-listing-page .listing-learn::after {
    content: "â†’";
    font-size: 17px;
    font-weight: 400;
    transition: transform .3s
}

.product-listing-page .listing-product-card:hover .listing-learn::after {
    transform: translateX(5px)
}

.listing-filter-toggle {
    display: none
}

@media(max-width:900px) {
    .product-listing-page .listing-shell {
        padding: 52px 0 80px
    }

    .product-listing-page .listing-layout {
        grid-template-columns: 1fr
    }

    .listing-filter-toggle {
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: space-between;
        padding: 15px 18px;
        border: 1px solid #d5e0e4;
        border-radius: 7px;
        background: #fff;
        color: #12364a;
        font: 600 14px/1 var(--font-family);
        cursor: pointer
    }

    .listing-filter-toggle svg {
        width: 19px;
        height: 19px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.8;
        stroke-linecap: round
    }

    .product-listing-page .listing-filters {
        display: none;
        position: static;
        max-height: min(680px, calc(100vh - 132px));
        overflow-y: auto
    }

    .product-listing-page .listing-filters.is-mobile-open {
        display: block
    }

    .product-listing-page .listing-results {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }
}

@media(max-width:600px) {
    .product-listing-page .listing-shell {
        padding: 42px 0 70px
    }

    .product-listing-page .listing-heading {
        align-items: stretch;
        gap: 24px;
        margin-bottom: 28px
    }

    .product-listing-page .listing-heading h1 {
        font-size: 42px;
        line-height: 1.05
    }

    .product-listing-page .listing-search {
        width: 100%
    }

    .product-listing-page .listing-layout {
        gap: 18px
    }

    .product-listing-page .listing-results {
        grid-template-columns: 1fr;
        gap: 18px
    }

    .product-listing-page .listing-product-image {
        height: 280px
    }

    .product-listing-page .listing-product-body {
        padding: 22px
    }

    .product-listing-page .listing-product-body h2 {
        min-height: 0;
        font-size: 21px;
        -webkit-line-clamp: 3
    }
}

.product-listing-page .product-category-strip {
    background: #fff
}

.product-listing-page .product-category-intro h2 {
    font-family: var(--font-family);
    font-weight: 600;
    letter-spacing: -.04em
}

.product-listing-page .listing-category-card {
    height: auto;
    min-height: 0;
    border-color: #dfe7ea;
    background: #fff
}

.product-listing-page .listing-category-card img {
    height: 104px;
    object-fit: cover
}

.product-listing-page .listing-category-card span {
    padding: 14px 12px;
    font-family: var(--font-family);
    font-size: 13px;
    font-weight: 600
}

@media(max-width:600px) {
    .product-listing-page .product-category-intro {
        min-height: 178px;
        padding: 32px 20px
    }

    .product-listing-page .product-category-intro h2 {
        font-size: 31px
    }

    .product-listing-page .listing-category-card {
        flex-basis: 230px
    }

    .product-listing-page .listing-category-card img {
        height: 102px
    }

    .product-listing-page .listing-category-card span {
        padding: 13px 10px
    }

    .product-listing-page .product-category-row {
        align-items: start
    }
}

.product-listing-page .listing-product-features {
    display: none;
}

.product-listing-page .listing-product-model {
    display: block;
    margin-top: -8px;
    color: #657983;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    overflow-wrap: anywhere;
}

.product-listing-page .listing-learn {
    padding-top: 18px;
    border-top: 1px solid #e7edef;
}

/* Premium reusable product detail system */
.pdp-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .65s ease, transform .65s ease
}

.pdp-reveal.is-visible {
    opacity: 1;
    transform: none
}

.product-detail-page {
    --pdp-ink: #0b1e2d;
    --pdp-muted: #647682;
    --pdp-line: #dce5e9;
    --pdp-mist: #f3f7f8;
    overflow: hidden
}

.product-detail-page .product-main-image-wrap {
    position: relative
}

.product-zoom {
    position: absolute;
    right: 18px;
    bottom: 18px;
    width: 44px;
    height: 44px;
    border: 1px solid #d8e1e5;
    border-radius: 50%;
    background: rgba(255, 255, 255, .92);
    color: var(--pdp-ink);
    font-size: 22px;
    cursor: pointer
}

.product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center
}

.product-actions .btn {
    margin: 0 !important
}

.btn-outline {
    border: 1px solid #18384d;
    background: #fff;
    color: #18384d
}

.product-store-link {
    width: 100%;
    margin-top: 4px;
    color: #294c60;
    font-size: 13px;
    font-weight: 600
}

.product-quick-specs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    margin: 42px 0 0;
    border-top: 1px solid var(--pdp-line);
    border-bottom: 1px solid var(--pdp-line)
}

.product-quick-specs div {
    padding: 24px;
    border-right: 1px solid var(--pdp-line)
}

.product-quick-specs div:last-child {
    border: 0
}

.product-quick-specs span,
.product-quick-specs strong {
    display: block
}

.product-quick-specs span {
    margin-bottom: 8px;
    color: var(--pdp-muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase
}

.product-quick-specs strong {
    color: var(--pdp-ink);
    font-size: 17px
}

.pdp-section {
    padding: 110px 0
}

.pdp-section>h2,
.pdp-lifestyle h2,
.pdp-final-cta h2 {
    max-width: 760px;
    color: var(--pdp-ink);
    font-size: clamp(38px, 5vw, 66px);
    line-height: 1.02;
    letter-spacing: -.045em
}

.pdp-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 54px;
    border-top: 1px solid var(--pdp-line);
    border-left: 1px solid var(--pdp-line)
}

.pdp-feature-grid article {
    min-height: 240px;
    padding: 30px;
    border-right: 1px solid var(--pdp-line);
    border-bottom: 1px solid var(--pdp-line)
}

.feature-index {
    color: #93a2aa;
    font-size: 11px;
    letter-spacing: .16em
}

.pdp-feature-grid h3 {
    margin: 48px 0 12px;
    color: var(--pdp-ink);
    font-size: 20px
}

.pdp-feature-grid p,
.technology-list p,
.pdp-lifestyle p,
.pdp-section-heading p {
    color: var(--pdp-muted);
    line-height: 1.7
}

.pdp-lifestyle {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    align-items: stretch;
    margin: 30px calc(50% - 50vw);
    background: var(--pdp-mist)
}

.pdp-lifestyle-image {
    min-height: 620px;
    overflow: hidden
}

.pdp-lifestyle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.pdp-lifestyle>div:last-child {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8vw
}

.pdp-lifestyle h2 {
    margin: 18px 0 24px
}

.pdp-lifestyle a {
    margin-top: 20px;
    color: #173b52;
    font-weight: 700
}

.technology-list {
    margin-top: 60px;
    border-top: 1px solid var(--pdp-line)
}

.technology-list article {
    display: grid;
    grid-template-columns: 130px 1fr 1fr;
    gap: 40px;
    align-items: start;
    padding: 30px 0;
    border-bottom: 1px solid var(--pdp-line)
}

.technology-list article>span {
    color: #8a9aa3;
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase
}

.technology-list h3 {
    margin: 0;
    color: var(--pdp-ink);
    font-size: 25px
}

.technology-list p {
    margin: 0
}

.pdp-section-heading {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: end;
    margin-bottom: 45px
}

.pdp-section-heading h2 {
    margin: 10px 0 0;
    color: var(--pdp-ink);
    font-size: clamp(38px, 5vw, 62px)
}

.spec-accordions {
    border-top: 1px solid var(--pdp-line)
}

.spec-accordions details {
    border-bottom: 1px solid var(--pdp-line)
}

.spec-accordions summary {
    display: flex;
    justify-content: space-between;
    padding: 24px 4px;
    color: var(--pdp-ink);
    font-size: 18px;
    font-weight: 650;
    cursor: pointer;
    list-style: none
}

.spec-accordions summary::-webkit-details-marker {
    display: none
}

.spec-accordions details[open] summary span {
    transform: rotate(45deg)
}

.spec-accordions summary span {
    transition: transform .2s
}

.spec-accordions dl {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 60px;
    padding: 0 4px 24px
}

.spec-accordions dl div {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid #edf1f2
}

.spec-accordions dt {
    color: var(--pdp-muted)
}

.spec-accordions dd {
    margin: 0;
    color: var(--pdp-ink);
    font-weight: 600;
    text-align: right
}

.pdp-support {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 80px;
    margin: 30px 0 80px;
    padding: 70px;
    background: #0c2433;
    color: #fff
}

.pdp-support h2 {
    margin: 12px 0 18px;
    color: #fff;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.05
}

.pdp-support p {
    color: #b8c7cf
}

.btn-light {
    background: #fff;
    color: #102d3f
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid rgba(255, 255, 255, .2);
    border-left: 1px solid rgba(255, 255, 255, .2)
}

.support-grid article {
    padding: 28px;
    border-right: 1px solid rgba(255, 255, 255, .2);
    border-bottom: 1px solid rgba(255, 255, 255, .2)
}

.support-grid strong,
.support-grid span {
    display: block
}

.support-grid strong {
    margin-bottom: 35px
}

.support-grid span {
    color: #b8c7cf;
    font-size: 13px
}

.pdp-downloads {
    padding-top: 50px
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 38px
}

.download-grid a {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 4px 20px;
    padding: 24px;
    border: 1px solid var(--pdp-line);
    color: var(--pdp-ink)
}

.download-grid a>span {
    grid-row: 1/3;
    display: grid;
    place-items: center;
    width: 52px;
    height: 58px;
    background: var(--pdp-mist);
    font-size: 11px;
    font-weight: 700
}

.download-grid small {
    color: var(--pdp-muted)
}

.pdp-final-cta {
    margin: 40px calc(50% - 50vw) 0;
    padding: 110px max(5vw, calc((100vw - 1240px)/2));
    background: #102b3c;
    color: #fff
}

.pdp-final-cta h2 {
    margin: 18px 0;
    color: #fff
}

.pdp-final-cta p {
    color: #c0ccd3
}

.pdp-final-cta>div {
    display: flex;
    gap: 12px;
    margin-top: 30px
}

.btn-outline-light {
    border: 1px solid rgba(255, 255, 255, .6);
    color: #fff
}

.product-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: grid;
    place-items: center;
    padding: 5vw;
    background: rgba(4, 14, 20, .94)
}

.product-lightbox[hidden] {
    display: none
}

.product-lightbox img {
    max-width: 90vw;
    max-height: 86vh;
    object-fit: contain
}

.product-lightbox button {
    position: absolute;
    top: 24px;
    right: 28px;
    border: 0;
    background: none;
    color: #fff;
    font-size: 38px;
    cursor: pointer
}

.product-mobile-cta {
    display: none
}

@media(max-width:900px) {
    .product-quick-specs {
        overflow-x: auto;
        grid-template-columns: repeat(5, 180px)
    }

    .pdp-feature-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .pdp-lifestyle {
        grid-template-columns: 1fr
    }

    .pdp-lifestyle-image {
        min-height: 440px
    }

    .technology-list article {
        grid-template-columns: 90px 1fr
    }

    .technology-list p {
        grid-column: 2
    }

    .pdp-section-heading,
    .pdp-support {
        grid-template-columns: 1fr
    }

    .pdp-support {
        gap: 45px;
        padding: 48px 30px
    }

    .pdp-section {
        padding: 78px 0
    }
}

@media(max-width:600px) {
    .product-detail-page {
        padding-bottom: 66px !important
    }

    .pdp-feature-grid {
        grid-template-columns: 1fr
    }

    .pdp-feature-grid article {
        min-height: 190px
    }

    .pdp-feature-grid h3 {
        margin-top: 30px
    }

    .pdp-lifestyle-image {
        min-height: 330px
    }

    .pdp-lifestyle>div:last-child {
        padding: 54px 24px
    }

    .technology-list article {
        grid-template-columns: 1fr;
        gap: 10px
    }

    .technology-list p {
        grid-column: auto
    }

    .spec-accordions dl,
    .download-grid,
    .support-grid {
        grid-template-columns: 1fr
    }

    .pdp-support {
        margin-inline: -16px
    }

    .pdp-final-cta {
        padding: 75px 24px
    }

    .pdp-final-cta>div {
        flex-direction: column
    }

    .product-mobile-cta {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 999;
        display: grid;
        grid-template-columns: 1fr 1fr;
        padding: 9px;
        background: #fff;
        box-shadow: 0 -8px 30px rgba(10, 30, 45, .14)
    }

    .product-mobile-cta a {
        padding: 13px 8px;
        text-align: center;
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase
    }

    .product-mobile-cta a:first-child {
        background: #153b52;
        color: #fff
    }

    .product-mobile-cta a:last-child {
        color: #153b52
    }
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    color: var(--color-text);
    line-height: 1.6;
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body.modal-open {
    overflow: hidden;
}

body.modal-open .reference-header,
body.modal-open>.header {
    display: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Branded 404 page */
.error-page-body {
    background: #fff
}

.error-page {
    padding-top: 80px;
    color: #0b2340
}

.error-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(78px, 10vw, 142px) 0 86px;
    background: linear-gradient(180deg, #f6fafb 0%, #fff 100%)
}

.error-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr);
    gap: 80px;
    align-items: center
}

.error-copy {
    position: relative;
    z-index: 1
}

.error-code {
    margin: 0 0 22px;
    color: #159bd7;
    font-size: clamp(76px, 11vw, 150px);
    font-weight: 800;
    line-height: .75;
    letter-spacing: -.075em
}

.error-copy h1 {
    max-width: 720px;
    margin: 0;
    color: #092642;
    font-size: clamp(42px, 5.2vw, 72px);
    line-height: 1.02;
    letter-spacing: -.052em
}

.error-message {
    max-width: 630px;
    margin: 28px 0 0;
    color: #60717c;
    font-size: 18px;
    line-height: 1.75
}

.error-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 36px
}

.error-actions .btn {
    min-height: 52px;
    padding: 0 24px
}

.error-actions .btn-secondary {
    border-color: #cbdce3;
    background: #fff;
    color: #123544
}

.error-visual {
    position: relative;
    display: grid;
    width: min(100%, 440px);
    aspect-ratio: 1;
    place-items: center;
    justify-self: end;
    border-radius: 50%;
    background: radial-gradient(circle at 45% 42%, #fff 0 32%, #edf7f9 33% 57%, #e2f2f5 58% 100%)
}

.error-visual::before {
    position: absolute;
    width: 64%;
    height: 64%;
    border: 1px solid rgba(21, 155, 215, .22);
    border-radius: 34% 66% 55% 45%/45% 45% 55% 55%;
    content: "";
    transform: rotate(18deg)
}

.error-visual svg {
    position: relative;
    z-index: 2;
    width: 48%;
    fill: none;
    stroke: #0c4a62;
    stroke-width: 5;
    stroke-linecap: round;
    stroke-linejoin: round
}

.error-orbit {
    position: absolute;
    border: 1px solid rgba(120, 190, 32, .38);
    border-radius: 50%
}

.error-orbit-one {
    inset: 8%;
    transform: rotate(-18deg)
}

.error-orbit-two {
    inset: 19%;
    border-color: rgba(21, 155, 215, .28);
    transform: rotate(35deg)
}

.error-help {
    padding: 0 0 100px
}

.error-help-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 70px;
    align-items: end;
    padding-top: 56px;
    border-top: 1px solid #dce8ec
}

.error-search>label {
    display: block;
    margin-bottom: 14px;
    color: #183b4d;
    font-size: 14px;
    font-weight: 700
}

.error-search>div {
    display: flex;
    max-width: 620px;
    border-bottom: 2px solid #183b4d
}

.error-search input {
    width: 100%;
    padding: 15px 2px;
    border: 0;
    outline: 0;
    background: transparent;
    color: #102d3f;
    font: inherit;
    font-size: 17px
}

.error-search button {
    display: grid;
    width: 54px;
    border: 0;
    background: transparent;
    color: #159bd7;
    cursor: pointer;
    place-items: center
}

.error-search svg,
.error-links svg {
    width: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.error-links {
    display: grid;
    border-top: 1px solid #dce8ec
}

.error-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 2px;
    border-bottom: 1px solid #dce8ec;
    color: #183b4d;
    font-weight: 650
}

.error-links a:hover {
    color: #159bd7
}

.error-links a:hover svg {
    transform: translateX(4px)
}

.error-links svg {
    transition: transform .2s ease
}

@media(max-width:900px) {
    .error-page {
        padding-top: 64px
    }

    .error-layout {
        grid-template-columns: 1fr;
        gap: 48px
    }

    .error-visual {
        width: min(78vw, 390px);
        justify-self: start
    }

    .error-help-grid {
        grid-template-columns: 1fr;
        gap: 45px
    }
}

@media(max-width:600px) {
    .error-hero {
        padding: 68px 0 60px
    }

    .error-layout {
        gap: 38px
    }

    .error-code {
        font-size: 88px
    }

    .error-copy h1 {
        font-size: 42px
    }

    .error-message {
        margin-top: 20px;
        font-size: 16px
    }

    .error-actions {
        display: grid
    }

    .error-actions .btn {
        width: 100%;
        justify-content: center
    }

    .error-visual {
        width: min(85vw, 330px);
        justify-self: center
    }

    .error-help {
        padding-bottom: 70px
    }

    .error-help-grid {
        padding-top: 42px
    }
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Utility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    transition: var(--transition);
}

.header.header-scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.header-spacer {
    height: 70px;
}

.logo img {
    width: 128px;
    height: auto;
    max-width: none;
    transform: translateY(-12px);
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 auto;
}

.header-nav-item {
    position: relative;
}

.header-nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text);
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.header-nav-link:hover {
    color: var(--color-accent);
}

.header-nav-link.active {
    color: var(--color-accent);
    font-weight: 600;
}

.header-nav-link svg {
    width: 12px;
    height: 12px;
    transition: var(--transition);
}

.header-nav-item:hover .header-nav-link svg {
    transform: rotate(180deg);
}

.header-actions {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-search {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text);
    transition: var(--transition);
}

.header-search:hover {
    background-color: var(--color-bg-light);
}

.header-search-panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 1100;
    width: min(430px, calc(100vw - 32px));
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px 38px;
    gap: 6px;
    padding: 8px;
    border: 1px solid rgba(18, 53, 68, 0.1);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 24px 60px rgba(18, 53, 68, 0.18), 0 4px 14px rgba(18, 53, 68, 0.08);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px) scale(0.97);
    transform-origin: top right;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.header-search-panel.active {
    display: grid;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.header-search-field {
    min-width: 0;
    height: 44px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 13px;
    border: 1px solid #dce7eb;
    border-radius: 11px;
    color: #78909a;
    background: #f8fbfc;
    transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.header-search-field:focus-within {
    border-color: var(--brand-blue);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(21, 155, 215, 0.12);
}

.header-search-panel input {
    width: 100%;
    min-width: 0;
    height: 100%;
    border: 0;
    padding: 0;
    background: transparent;
    color: #123544;
    font: inherit;
    outline: none;
}

.header-search-panel input:focus {
    box-shadow: none;
}

.header-search-panel .header-search-submit,
.header-search-panel .header-search-close {
    min-width: 0;
    height: 44px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 11px;
    cursor: pointer;
    transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.header-search-panel .header-search-submit {
    background: var(--brand-blue);
    color: #ffffff;
}

.header-search-panel .header-search-submit:hover {
    transform: translateX(2px);
}

.header-search-panel .header-search-close {
    background: transparent;
    color: #6f858e;
}

.header-search-panel .header-search-close:hover {
    background: #eef4f6;
    color: #123544;
}

.region-selector {
    background: none;
    border: none;
    font-size: 14px;
    color: var(--color-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 12px;
    border-radius: 6px;
    transition: var(--transition);
}

.region-selector:hover {
    background-color: var(--color-bg-light);
}

.cart-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text);
    transition: var(--transition);
}

.cart-btn:hover {
    background-color: var(--color-bg-light);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-text);
    transition: var(--transition);
}

/* Mega Menu */
.header-mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: var(--color-white);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border);
    padding: 32px;
    min-width: 700px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
}

.header-nav-item:hover .header-mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.mega-menu-column h4 {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-text-muted);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--color-border);
}

.mega-menu-column ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mega-menu-column a {
    display: block;
    font-size: 14px;
    color: var(--color-text);
    padding: 6px 0;
    transition: var(--transition);
}

.mega-menu-column a:hover {
    color: var(--color-accent);
    padding-left: 4px;
}

/* Mobile Menu */
@media (max-width: 1024px) {
    .header-nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--color-white);
        border-bottom: 1px solid var(--color-border);
        padding: 20px;
        flex-direction: column;
        gap: 0;
        box-shadow: var(--shadow);
    }

    .header-nav.active {
        display: flex;
    }

    .header-nav-item {
        width: 100%;
    }

    .header-nav-link {
        width: 100%;
        justify-content: space-between;
        padding: 12px 0;
        border-bottom: 1px solid var(--color-border);
    }

    .header-mega-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border: none;
        padding: 16px 0 0;
        min-width: auto;
        display: none;
    }

    .header-nav-item.active .header-mega-menu {
        display: block;
    }

    .mega-menu-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .header-actions .btn {
        display: none;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-secondary);
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-border);
}

.btn-secondary:hover {
    border-color: var(--color-text);
}

.btn-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.btn-link:hover {
    color: var(--color-accent);
}

/* Section Title */
.section-title {
    font-size: 32px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--color-text-light);
    margin-bottom: 8px;
}

.section-description {
    font-size: 16px;
    color: var(--color-text-light);
    margin-bottom: 8px;
}

.section-link {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 32px;
}

.section-link:hover {
    color: var(--color-accent);
}

/* Interior page banner and reusable support content */
.page-hero {
    min-height: 58vh;
    padding: 150px 0 90px;
    display: flex;
    align-items: center;
    color: var(--color-white);
    background: linear-gradient(115deg, #171717 0%, #303030 58%, #a77b50 140%);
}

.page-hero h1 {
    max-width: 760px;
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.04;
    margin-bottom: 20px;
}

.page-hero p {
    max-width: 680px;
    font-size: clamp(17px, 2vw, 21px);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.page-hero .btn-primary {
    background: var(--color-white);
    color: var(--color-primary);
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.support-panel {
    padding: 32px;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    background: var(--color-white);
}

.support-panel h3 {
    margin-bottom: 12px;
}

.support-panel p {
    color: var(--color-text-light);
    margin-bottom: 24px;
}

/* Support page */
.support-page {
    background: #f5f8fa;
}

.support-image-banner {
    position: relative;
    width: 100%;
    height: 50vh;
    height: 50svh;
    height: 50dvh;
    overflow: hidden;
    background: #f3eee8;
}

.support-image-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(4, 35, 48, 0.88) 0%, rgba(5, 59, 78, 0.58) 30%, rgba(5, 59, 78, 0.12) 64%, transparent 100%);
}

.support-image-banner img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.support-banner-copy {
    position: absolute;
    z-index: 1;
    right: 0;
    bottom: clamp(34px, 5vw, 72px);
    left: 0;
    color: #fff;
}

.support-banner-copy span {
    display: block;
    margin-bottom: 12px;
    color: #7fc928;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.support-banner-copy h1 {
    max-width: 780px;
    margin: 0 0 14px;
    color: #fff;
    font-size: clamp(44px, 5.2vw, 76px);
    line-height: 1;
    letter-spacing: -.04em;
}

.support-banner-copy p {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, .9);
    font-size: clamp(16px, 1.35vw, 21px);
    line-height: 1.55;
}

@media (max-width: 767px) {
    .support-image-banner {
        height: 50vh;
        height: 50svh;
        height: 50dvh;
    }

    .support-image-banner img {
        object-position: 58% center;
    }

    .support-image-banner::after {
        background: linear-gradient(0deg, rgba(4, 35, 48, .94) 0%, rgba(5, 59, 78, .62) 48%, rgba(5, 59, 78, .08) 100%);
    }

    .support-banner-copy {
        bottom: 26px;
    }

    .support-banner-copy h1 {
        font-size: clamp(34px, 10vw, 48px);
    }

    .support-banner-copy p {
        max-width: 92%;
        font-size: 14px;
    }
}

.support-hero {
    min-height: 720px;
    padding: 154px 0 86px;
    display: flex;
    align-items: center;
    color: var(--color-white);
    background:
        linear-gradient(120deg, rgba(4, 35, 48, 0.98) 0%, rgba(6, 67, 82, 0.96) 56%, rgba(18, 124, 166, 0.9) 100%),
        radial-gradient(circle at 80% 22%, rgba(120, 190, 32, 0.32), transparent 34%);
    overflow: hidden;
}

.support-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
    align-items: center;
    gap: clamp(42px, 6vw, 82px);
}

.support-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: var(--brand-green);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.support-kicker::before {
    content: "";
    width: 30px;
    height: 2px;
    background: currentColor;
}

.support-hero h1 {
    max-width: 690px;
    margin-bottom: 20px;
    font-size: clamp(44px, 6vw, 82px);
    line-height: 1;
    color: var(--color-white);
}

.support-hero p {
    max-width: 660px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(17px, 1.8vw, 22px);
}

.support-search {
    width: min(100%, 680px);
    min-height: 64px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    padding: 7px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(16px);
}

.support-search input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    padding: 0 18px;
    color: var(--color-white);
    background: transparent;
    font: inherit;
}

.support-search input::placeholder {
    color: rgba(255, 255, 255, 0.68);
}

.support-search button,
.support-action-card a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border: 0;
    border-radius: 8px;
    color: #052735;
    background: var(--brand-green);
    font-weight: 800;
    cursor: pointer;
}

.support-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.support-hero-actions a {
    padding: 9px 13px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.86);
    background: rgba(255, 255, 255, 0.08);
    font-size: 13px;
    font-weight: 700;
}

.support-hero-panel {
    position: relative;
    min-height: 430px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background:
        linear-gradient(150deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05)),
        linear-gradient(180deg, rgba(5, 28, 39, 0.1), rgba(5, 28, 39, 0.36));
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
    overflow: hidden;
}

.support-device-card {
    position: absolute;
    inset: 72px 38px 94px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(223, 232, 234, 0.94)),
        linear-gradient(90deg, #ffffff, #d7e1e4);
    box-shadow: inset 0 -18px 0 rgba(5, 50, 66, 0.16), 0 30px 60px rgba(0, 0, 0, 0.24);
}

.device-screen {
    padding: 10px 14px;
    border-radius: 8px;
    color: var(--brand-blue);
    background: rgba(21, 155, 215, 0.1);
    font-size: 18px;
    font-weight: 800;
}

.device-line {
    position: absolute;
    left: 8%;
    right: 8%;
    bottom: 36px;
    height: 10px;
    border-radius: 20px;
    background: #6c777c;
}

.support-status-card {
    position: absolute;
    z-index: 2;
    top: 28px;
    left: 28px;
    width: 220px;
    padding: 18px;
    border-radius: 8px;
    color: #0d3442;
    background: var(--color-white);
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.18);
}

.support-status-card span,
.support-status-card small {
    display: block;
    color: var(--color-text-light);
    font-size: 12px;
    line-height: 1.45;
}

.support-status-card strong {
    display: block;
    margin: 4px 0;
    color: #0d3442;
    font-size: 28px;
    line-height: 1;
}

.support-metric-row {
    position: absolute;
    z-index: 2;
    left: 28px;
    right: 28px;
    bottom: 28px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.support-metric-row span {
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 8px;
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.13);
    font-size: 12px;
    font-weight: 800;
    text-align: center;
}

.support-actions-section,
.support-faq-section {
    padding: 92px 0;
}

.support-section-heading {
    max-width: 760px;
    margin: 0 auto 38px;
    text-align: center;
}

.support-section-heading.align-left {
    margin: 0;
    text-align: left;
}

.support-section-heading h2,
.support-contact-section h2 {
    margin-bottom: 12px;
    color: #0d3442;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.08;
}

.support-section-heading p,
.support-contact-section p {
    color: var(--color-text-light);
    font-size: 16px;
}

.support-action-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.support-action-card {
    min-height: 315px;
    display: flex;
    flex-direction: column;
    padding: 26px;
    border: 1px solid #dce7ec;
    border-radius: 8px;
    background: var(--color-white);
    box-shadow: 0 18px 45px rgba(13, 52, 66, 0.08);
}

.support-action-card h3 {
    margin: 18px 0 10px;
    color: #0d3442;
    font-size: 22px;
    line-height: 1.16;
}

.support-action-card p {
    margin-bottom: 24px;
    color: var(--color-text-light);
}

.support-action-card a {
    width: fit-content;
    margin-top: auto;
}

.support-icon {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #0d3442;
    background: rgba(120, 190, 32, 0.18);
    font-weight: 800;
}

.support-contact-section {
    padding: 64px 0;
    color: var(--color-white);
    background: #073241;
}

.service-complaint-section {
    padding: 92px 0;
    background: #ffffff;
}

.service-complaint-modal[hidden] {
    display: none;
}

.service-complaint-modal {
    position: fixed;
    inset: 0;
    z-index: 2200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.service-complaint-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(3, 30, 42, 0.72);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
}

.service-complaint-dialog {
    position: relative;
    z-index: 1;
    width: min(1160px, 100%);
    max-height: min(90svh, 900px);
    overflow: auto;
    padding: clamp(24px, 3vw, 38px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.32);
}

.service-complaint-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    width: 42px;
    height: 42px;
    border: 1px solid #dbe8ee;
    border-radius: 50%;
    background: #ffffff;
    color: #0d3442;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 10px 26px rgba(13, 52, 66, 0.1);
}

.service-complaint-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(480px, 1.22fr);
    gap: clamp(34px, 6vw, 72px);
    align-items: start;
}

.service-complaint-copy h2 {
    margin: 0 0 14px;
    color: #0d3442;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.06;
}

.service-complaint-copy p {
    color: var(--color-text-light);
    font-size: 16px;
    line-height: 1.7;
}

.service-complaint-note {
    display: grid;
    gap: 6px;
    margin-top: 26px;
    padding: 20px;
    border-left: 4px solid var(--brand-green);
    border-radius: 8px;
    background: #f4f8fb;
}

.service-complaint-note strong,
.service-complaint-note span {
    display: block;
}

.service-complaint-note strong {
    color: #0d3442;
}

.service-complaint-note span {
    color: var(--color-text-light);
}

.service-complaint-form {
    display: grid;
    gap: 16px;
    padding: clamp(24px, 4vw, 38px);
    border: 1px solid #dbe8ee;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(13, 52, 66, 0.08);
}

.service-complaint-success {
    margin: 0;
    padding: 14px 16px;
    border-radius: 8px;
    color: #0d3442;
    background: rgba(120, 190, 32, 0.18);
    font-weight: 700;
}

.service-complaint-form .field-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.service-complaint-form label {
    display: grid;
    gap: 8px;
    color: #0d3442;
    font-size: 13px;
    font-weight: 800;
}

.service-complaint-form input,
.service-complaint-form select,
.service-complaint-form textarea {
    width: 100%;
    min-width: 0;
    border: 1px solid #dbe8ee;
    border-radius: 8px;
    padding: 0 14px;
    color: #0d3442;
    background: #f9fbfc;
    font: inherit;
    font-weight: 600;
    outline: none;
}

.service-complaint-form input,
.service-complaint-form select {
    min-height: 52px;
}

.service-complaint-form textarea {
    min-height: 150px;
    padding-top: 14px;
    resize: vertical;
}

.service-complaint-form input:focus,
.service-complaint-form select:focus,
.service-complaint-form textarea:focus {
    border-color: var(--brand-blue);
    box-shadow: 0 0 0 4px rgba(21, 155, 215, 0.12);
}

.service-complaint-form button {
    min-height: 54px;
    border: 0;
    border-radius: 8px;
    color: #062735;
    background: var(--brand-green);
    font-weight: 800;
    cursor: pointer;
}

.support-contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 48px;
    align-items: center;
}

.support-contact-section h2 {
    color: var(--color-white);
}

.support-contact-section p {
    color: rgba(255, 255, 255, 0.72);
}

.support-contact-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.support-contact-list a {
    min-height: 124px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
}

.support-contact-list .support-contact-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 18px;
    border-radius: 50%;
    background: rgba(113, 199, 24, 0.16);
    color: var(--brand-green);
}

.support-contact-list .support-contact-icon svg {
    width: 20px;
    height: 20px;
    display: block;
    fill: currentColor;
}

.support-contact-copy {
    display: grid;
    gap: 12px;
}

.support-contact-list span {
    color: var(--brand-green);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.support-contact-list .support-contact-copy,
.support-contact-list .support-contact-icon {
    text-transform: none;
}

.support-contact-list strong {
    color: var(--color-white);
    font-size: 16px;
    line-height: 1.25;
    word-break: break-word;
}

.support-faq-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(34px, 6vw, 72px);
    align-items: start;
}

.support-faq-list {
    display: grid;
    gap: 12px;
}

.support-faq-list details {
    border: 1px solid #dce7ec;
    border-radius: 8px;
    background: var(--color-white);
    box-shadow: 0 14px 35px rgba(13, 52, 66, 0.06);
}

.support-faq-list summary {
    min-height: 66px;
    display: flex;
    align-items: center;
    padding: 20px 22px;
    color: #0d3442;
    font-weight: 800;
    cursor: pointer;
}

.support-faq-list p {
    padding: 0 22px 22px;
    color: var(--color-text-light);
}

.support-trust-band {
    padding: 36px 0;
    background: var(--color-white);
    border-top: 1px solid #dce7ec;
}

.support-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.support-trust-grid div {
    min-height: 92px;
    padding: 18px 20px;
    border-left: 4px solid var(--brand-blue);
    background: #f5f8fa;
}

.support-trust-grid strong,
.support-trust-grid span {
    display: block;
}

.support-trust-grid strong {
    color: #0d3442;
    font-size: 18px;
}

.support-trust-grid span {
    margin-top: 4px;
    color: var(--color-text-light);
    font-size: 14px;
}

/* Support page motion system. Content stays visible when JavaScript is unavailable. */
.support-motion-enabled .support-image-banner img {
    --support-parallax: 0px;
    opacity: 0;
    transform: translate3d(0, var(--support-parallax), 0) scale(1.08);
    transition: opacity 1s ease, transform 1.6s cubic-bezier(.2, .75, .2, 1);
    will-change: transform;
}

.support-motion-enabled.support-motion-ready .support-image-banner img {
    opacity: 1;
    transform: translate3d(0, var(--support-parallax), 0) scale(1.03);
}

.support-motion-enabled .support-banner-copy>* {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .75s ease, transform .9s cubic-bezier(.2, .75, .2, 1);
}

.support-motion-enabled.support-motion-ready .support-banner-copy>* {
    opacity: 1;
    transform: translateY(0);
}

.support-motion-enabled.support-motion-ready .support-banner-copy h1 {
    transition-delay: 120ms;
}

.support-motion-enabled.support-motion-ready .support-banner-copy p {
    transition-delay: 220ms;
}

.support-motion-enabled .support-motion-item {
    opacity: 0;
    transform: translateY(42px) scale(.985);
    transition: opacity .65s ease var(--motion-delay, 0ms), transform .85s cubic-bezier(.2, .75, .2, 1) var(--motion-delay, 0ms);
}

.support-motion-enabled .support-motion-item.is-motion-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.support-action-card,
.support-contact-list a,
.support-trust-grid div {
    transition: transform .4s cubic-bezier(.2, .75, .2, 1), box-shadow .4s ease, border-color .4s ease;
}

.support-action-card:hover,
.support-contact-list a:hover,
.support-trust-grid div:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 50px rgba(13, 52, 66, .14);
}

.support-faq-list details {
    transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}

.support-faq-list details:hover,
.support-faq-list details[open] {
    border-color: rgba(21, 155, 215, .45);
    box-shadow: 0 18px 44px rgba(13, 52, 66, .1);
    transform: translateX(-4px);
}

@media (prefers-reduced-motion: reduce) {

    .support-page *,
    .support-page *::before,
    .support-page *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}

/* About page short image hero and motion system. */
.about-image-banner {
    position: relative;
    width: 100%;
    height: 50vh;
    height: 50svh;
    height: 50dvh;
    overflow: hidden;
    background: #6e5747;
}

.about-image-banner::after {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 0;
    background: linear-gradient(90deg, rgba(7, 29, 38, .8) 0%, rgba(7, 38, 50, .55) 35%, rgba(7, 38, 50, .12) 62%, transparent 80%);
}

.about-image-banner img {
    --about-parallax: 0px;
    display: block;
    width: 100%;
    height: calc(100% + 48px);
    object-fit: cover;
    object-position: center;
    transform: translate3d(0, var(--about-parallax), 0) scale(1.035);
}

.about-banner-copy {
    position: absolute;
    z-index: 2;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
}

.about-banner-copy span {
    margin-bottom: 12px;
    color: #7fc928;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.about-banner-copy h1 {
    max-width: 720px;
    margin: 0 0 16px;
    color: #fff;
    font-size: clamp(44px, 5vw, 74px);
    line-height: 1;
    letter-spacing: -.045em;
    text-shadow: 0 4px 28px rgba(0, 0, 0, .25);
}

.about-banner-copy p {
    max-width: 620px;
    margin: 0;
    color: rgba(255, 255, 255, .88);
    font-size: clamp(16px, 1.25vw, 20px);
    line-height: 1.55;
}

.about-motion-enabled .about-image-banner img {
    opacity: 0;
    transform: translate3d(0, var(--about-parallax), 0) scale(1.09);
    transition: opacity 1s ease, transform 1.7s cubic-bezier(.2, .75, .2, 1);
    will-change: transform;
}

.about-motion-enabled.about-motion-ready .about-image-banner img {
    opacity: 1;
    transform: translate3d(0, var(--about-parallax), 0) scale(1.035);
}

.about-motion-enabled .about-banner-copy>* {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .75s ease, transform .9s cubic-bezier(.2, .75, .2, 1);
}

.about-motion-enabled.about-motion-ready .about-banner-copy>* {
    opacity: 1;
    transform: translateY(0);
}

.about-motion-enabled.about-motion-ready .about-banner-copy h1 {
    transition-delay: 120ms;
}

.about-motion-enabled.about-motion-ready .about-banner-copy p {
    transition-delay: 220ms;
}

.about-motion-enabled .about-motion-item {
    opacity: 0;
    transform: translateY(40px) scale(.985);
    transition: opacity .65s ease var(--about-motion-delay, 0ms), transform .85s cubic-bezier(.2, .75, .2, 1) var(--about-motion-delay, 0ms);
}

.about-motion-enabled .about-motion-item.is-about-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.about-purpose-card,
.about-benefits li,
.about-overview-media {
    transition: transform .4s cubic-bezier(.2, .75, .2, 1), box-shadow .4s ease, border-color .4s ease;
}

.about-purpose-card:hover,
.about-benefits li:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 50px rgba(13, 52, 66, .12);
}

.about-overview-media:hover {
    transform: scale(1.018);
    box-shadow: 0 28px 60px rgba(13, 52, 66, .14);
}

@media (max-width: 767px) {
    .about-image-banner::after {
        background: linear-gradient(0deg, rgba(7, 29, 38, .88) 0%, rgba(7, 38, 50, .48) 55%, rgba(7, 38, 50, .08) 100%);
    }

    .about-image-banner img {
        object-position: 62% center;
    }

    .about-banner-copy {
        justify-content: flex-end;
        padding-bottom: 30px;
    }

    .about-banner-copy h1 {
        margin-bottom: 10px;
        font-size: clamp(34px, 10vw, 48px);
    }

    .about-banner-copy p {
        max-width: 92%;
        font-size: 14px;
        line-height: 1.4;
    }
}

@media (prefers-reduced-motion: reduce) {

    .about-page *,
    .about-page *::before,
    .about-page *::after {
        animation: none !important;
        transition-duration: .01ms !important;
    }

    .about-motion-enabled .about-image-banner img,
    .about-motion-enabled .about-banner-copy>*,
    .about-motion-enabled .about-motion-item {
        opacity: 1;
        transform: none;
    }
}

/* Full-width homepage content bands. */
@media (min-width: 1025px) {

    .home-page main>.categories,
    .home-page main>.featured,
    .home-page main>.home-testimonials,
    .dynamic-product.product-detail-page>.container {
        width: 100vw;
        max-width: none;
        margin-left: calc(50% - 50vw);
        padding-right: 0;
        padding-left: 0
    }

    .home-page main>.customer-journey {
        width: 100vw;
        max-width: none;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }

    .home-page main>.categories>.container,
    .home-page main>.featured>.container,
    .home-page main>.home-testimonials>.container,
    .home-page main>.customer-journey>.customer-journey-inner {
        width: min(100% - 40px, 1726px);
        max-width: 1726px;
        margin-inline: auto;
        padding-inline: 0;
    }

    .home-page .categories-slider .category-card {
        flex-basis: calc((100% - 72px) / 4);
        width: calc((100% - 72px) / 4);
    }

    .home-page .featured-slider>.product-card {
        flex-basis: calc((100% - 72px) / 4);
        width: calc((100% - 72px) / 4);
    }

    .home-page .home-testimonials .testimonial-card {
        flex-basis: calc((100% - 44px) / 3);
        width: calc((100% - 44px) / 3);
    }
}

/* Where to Buy page */
.where-page {
    background: #f4f8fb;
}

.where-hero {
    min-height: 720px;
    padding: 154px 0 88px;
    display: flex;
    align-items: center;
    color: var(--color-white);
    background:
        linear-gradient(118deg, rgba(4, 31, 42, 0.98) 0%, rgba(8, 82, 102, 0.96) 58%, rgba(21, 155, 215, 0.92) 100%),
        linear-gradient(90deg, rgba(120, 190, 32, 0.22), transparent 52%);
}

.where-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 460px);
    align-items: center;
    gap: clamp(42px, 6vw, 82px);
}

.where-hero h1 {
    max-width: 760px;
    margin-bottom: 22px;
    color: var(--color-white);
    font-size: clamp(48px, 6.5vw, 86px);
    line-height: 0.98;
}

.where-hero p {
    max-width: 700px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(17px, 1.8vw, 22px);
}

.where-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.where-hero-actions .btn-primary {
    background: var(--brand-green);
    color: #062735;
}

.where-hero-actions .btn-secondary {
    border-color: rgba(255, 255, 255, 0.28);
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.08);
}

.where-finder-card {
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(16px);
}

.where-finder-label {
    display: inline-flex;
    margin-bottom: 12px;
    color: var(--brand-green);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.where-finder-card h2 {
    margin-bottom: 22px;
    color: var(--color-white);
    font-size: 30px;
    line-height: 1.12;
}

.where-finder-form {
    display: grid;
    gap: 14px;
}

.where-finder-form label {
    display: grid;
    gap: 8px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 13px;
    font-weight: 800;
}

.where-finder-form input,
.where-finder-form select {
    width: 100%;
    min-height: 52px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    padding: 0 14px;
    color: #0d3442;
    background: rgba(255, 255, 255, 0.96);
    font: inherit;
    font-weight: 600;
}

.where-finder-form button,
.where-cta-actions a {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 8px;
    padding: 0 22px;
    color: #062735;
    background: var(--brand-green);
    font-weight: 800;
    cursor: pointer;
}

.where-finder-card>p {
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
}

.where-channel-section,
.where-location-section,
.where-steps-section {
    padding: 92px 0;
}

.where-section-heading {
    max-width: 760px;
    margin: 0 auto 38px;
    text-align: center;
}

.where-section-heading.align-left {
    margin: 0;
    text-align: left;
}

.where-section-heading h2,
.where-location-copy h2,
.where-cta-section h2 {
    margin-bottom: 12px;
    color: #0d3442;
    font-size: clamp(30px, 4vw, 50px);
    line-height: 1.08;
}

.where-section-heading p,
.where-location-copy p,
.where-cta-section p {
    color: var(--color-text-light);
    font-size: 16px;
}

.where-channel-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.where-channel-card {
    min-height: 250px;
    padding: 28px;
    border: 1px solid #dbe8ee;
    border-radius: 8px;
    background: var(--color-white);
    box-shadow: 0 18px 45px rgba(13, 52, 66, 0.08);
}

.where-channel-card span {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border-radius: 8px;
    color: #0d3442;
    background: rgba(120, 190, 32, 0.18);
    font-weight: 800;
}

.where-channel-card h3 {
    margin-bottom: 10px;
    color: #0d3442;
    font-size: 24px;
    line-height: 1.14;
}

.where-channel-card p {
    color: var(--color-text-light);
}

.where-location-section {
    background: var(--color-white);
}

.where-location-grid {
    max-width: 820px;
}

.where-city-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.where-city-list span {
    padding: 10px 14px;
    border: 1px solid #dbe8ee;
    border-radius: 8px;
    color: #0d3442;
    background: #f4f8fb;
    font-weight: 800;
    font-size: 13px;
}

.where-steps-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
    gap: clamp(34px, 6vw, 72px);
    align-items: start;
}

.where-steps-list {
    display: grid;
    gap: 12px;
    counter-reset: buy-step;
    list-style: none;
}

.where-steps-list li {
    position: relative;
    min-height: 92px;
    padding: 20px 22px 20px 82px;
    border: 1px solid #dbe8ee;
    border-radius: 8px;
    background: var(--color-white);
    box-shadow: 0 14px 35px rgba(13, 52, 66, 0.06);
}

.where-steps-list li::before {
    counter-increment: buy-step;
    content: counter(buy-step);
    position: absolute;
    top: 20px;
    left: 22px;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #0d3442;
    background: rgba(120, 190, 32, 0.2);
    font-weight: 800;
}

.where-steps-list strong,
.where-steps-list span {
    display: block;
}

.where-steps-list strong {
    color: #0d3442;
    font-size: 20px;
}

.where-steps-list span {
    margin-top: 4px;
    color: var(--color-text-light);
}

.where-cta-section {
    padding: 58px 0;
    color: var(--color-white);
    background: #073241;
}

.where-cta-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
}

.where-cta-section h2 {
    color: var(--color-white);
}

.where-cta-section p {
    color: rgba(255, 255, 255, 0.72);
}

.where-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.where-cta-actions a+a {
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.products-managed-banner {
    position: relative;
    min-height: 560px;
    margin-top: 70px;
    display: flex;
    align-items: center;
    color: var(--color-white);
    background: #082f3d;
    overflow: hidden;
}

.products-managed-banner-media,
.products-managed-banner-media picture,
.products-managed-banner-media img,
.products-managed-banner-media video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.products-managed-banner-media img,
.products-managed-banner-media video {
    object-fit: cover;
}

.products-managed-banner-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(3, 30, 42, 0.82) 0%, rgba(3, 30, 42, 0.48) 48%, rgba(3, 30, 42, 0.12) 100%);
}

.products-managed-banner .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.products-managed-banner-copy {
    max-width: 720px;
}

.products-managed-banner h1 {
    margin-bottom: 18px;
    color: var(--color-white);
    font-size: clamp(46px, 6vw, 78px);
    line-height: 1;
}

.products-managed-banner p {
    max-width: 620px;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.84);
    font-size: clamp(17px, 2vw, 22px);
}

/* Contact page */
.contact-page {
    background: #f4f8fb;
}

.contact-hero {
    min-height: 720px;
    padding: 154px 0 88px;
    display: flex;
    align-items: center;
    color: var(--color-white);
    background:
        linear-gradient(118deg, rgba(4, 31, 42, 0.98) 0%, rgba(7, 73, 91, 0.96) 56%, rgba(21, 155, 215, 0.9) 100%),
        linear-gradient(90deg, rgba(120, 190, 32, 0.2), transparent 55%);
}

.contact-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.98fr);
    align-items: center;
    gap: clamp(42px, 6vw, 82px);
}

.contact-hero h1 {
    max-width: 760px;
    margin-bottom: 22px;
    color: var(--color-white);
    font-size: clamp(48px, 6.5vw, 86px);
    line-height: 0.98;
}

.contact-hero p {
    max-width: 700px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(17px, 1.8vw, 22px);
}

.contact-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.contact-hero-actions .btn-primary {
    background: var(--brand-green);
    color: #062735;
}

.contact-hero-actions .btn-secondary {
    border-color: rgba(255, 255, 255, 0.28);
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.08);
}

.contact-hero-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 18px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(16px);
}

.contact-live-card {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(224, 235, 238, 0.96)),
        #ffffff;
}

.contact-live-card span,
.contact-live-card small {
    display: block;
    color: var(--color-text-light);
    font-size: 13px;
}

.contact-live-card strong {
    display: block;
    margin: 8px 0;
    color: #0d3442;
    font-size: 28px;
    line-height: 1.08;
    word-break: break-word;
}

.contact-route-list {
    display: grid;
    gap: 10px;
}

.contact-route-list a {
    min-height: 68px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border-radius: 8px;
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.1);
    font-weight: 800;
}

.contact-route-list span,
.contact-card span {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border-radius: 8px;
    color: #0d3442;
    background: rgba(120, 190, 32, 0.2);
    font-size: 13px;
    font-weight: 800;
}

.contact-main-section,
.contact-route-section,
.contact-location-section {
    padding: 92px 0;
}

.contact-main-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
    gap: 24px;
    align-items: start;
}

.contact-info-panel,
.contact-form-panel,
.contact-card {
    border: 1px solid #dbe8ee;
    border-radius: 8px;
    background: var(--color-white);
    box-shadow: 0 18px 45px rgba(13, 52, 66, 0.08);
}

.contact-info-panel {
    padding: 30px;
    position: sticky;
    top: 92px;
}

.contact-info-panel h2,
.contact-form-panel h2,
.contact-section-heading h2,
.contact-location-copy h2 {
    margin-bottom: 12px;
    color: #0d3442;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.08;
}

.contact-info-panel p,
.contact-section-heading p,
.contact-location-copy p {
    color: var(--color-text-light);
}

.contact-info-list {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.contact-info-list a {
    min-height: 84px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 16px;
    border-radius: 8px;
    background: #f4f8fb;
}

.contact-info-list span {
    color: var(--brand-blue);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.contact-info-list strong {
    margin-top: 4px;
    color: #0d3442;
    word-break: break-word;
}

.contact-form-panel {
    padding: clamp(24px, 4vw, 38px);
}

.contact-form-label {
    display: inline-flex;
    margin-bottom: 12px;
    color: var(--brand-green);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.contact-form {
    display: grid;
    gap: 16px;
    margin-top: 24px;
}

.contact-field-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.contact-form label {
    display: grid;
    gap: 8px;
    color: #0d3442;
    font-size: 13px;
    font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    min-width: 0;
    border: 1px solid #dbe8ee;
    border-radius: 8px;
    padding: 0 14px;
    color: #0d3442;
    background: #f9fbfc;
    font: inherit;
    font-weight: 600;
    outline: none;
}

.contact-form input,
.contact-form select {
    min-height: 52px;
}

.contact-form textarea {
    min-height: 140px;
    padding-top: 14px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--brand-blue);
    box-shadow: 0 0 0 4px rgba(21, 155, 215, 0.12);
}

.contact-form button {
    min-height: 54px;
    border: 0;
    border-radius: 8px;
    color: #062735;
    background: var(--brand-green);
    font-weight: 800;
    cursor: pointer;
}

.contact-section-heading {
    max-width: 760px;
    margin: 0 auto 38px;
    text-align: center;
}

.contact-card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.contact-card {
    min-height: 240px;
    padding: 26px;
}

.contact-card h3 {
    margin: 22px 0 10px;
    color: #0d3442;
    font-size: 22px;
    line-height: 1.14;
}

.contact-card p {
    color: var(--color-text-light);
}

.contact-location-section {
    background: var(--color-white);
}

.contact-location-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
    gap: 28px;
    align-items: stretch;
}

.contact-map-kicker {
    display: inline-flex;
    margin-bottom: 12px;
    color: var(--brand-blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.contact-map-text {
    margin-top: 14px;
}

.contact-map-card {
    overflow: hidden;
    border: 1px solid #dbe8ee;
    border-radius: 10px;
    background: #f4f8fb;
    box-shadow: 0 18px 45px rgba(13, 52, 66, 0.08);
}

.contact-map-card iframe {
    display: block;
    width: 100%;
    min-height: 430px;
    border: 0;
}

.contact-map-card a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-top: 1px solid #dbe8ee;
    color: #0d3442;
    background: #fff;
    font-size: 13px;
    font-weight: 800;
}

.contact-city-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.contact-city-tags span {
    padding: 10px 14px;
    border: 1px solid #dbe8ee;
    border-radius: 8px;
    color: #0d3442;
    background: #f4f8fb;
    font-size: 13px;
    font-weight: 800;
}

/* Official About page content */
.about-overview {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: center;
    gap: clamp(40px, 7vw, 88px);
}

.about-main-banner {
    min-height: calc(100svh - 72px);
    margin-top: 72px;
    padding: clamp(72px, 9vh, 112px) 0;
    display: flex;
    align-items: center;
}

.about-main-banner .container {
    width: 100%;
}

.about-main-banner .about-overview {
    grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
}

.about-main-banner .about-overview-content {
    min-width: 0;
    max-width: 620px;
}

.about-main-banner .about-overview-content p {
    overflow-wrap: anywhere;
}

.about-overview-media {
    overflow: hidden;
    aspect-ratio: 3 / 2;
    border-radius: 24px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
}

.about-overview-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-overview-content .section-title {
    margin-bottom: 22px;
}

.about-overview-content>p,
.about-overview-content .about-copy {
    color: var(--color-text-light);
    font-size: 17px;
}

.about-overview-content .about-lead {
    color: var(--color-primary);
    font-size: clamp(21px, 2.2vw, 28px);
    line-height: 1.4;
    margin-bottom: 18px;
}

.about-overview-content .about-lead p,
.about-overview-content .about-copy p,
.about-overview-content .about-lead ul,
.about-overview-content .about-copy ul,
.about-overview-content .about-lead ol,
.about-overview-content .about-copy ol {
    margin: 0 0 12px;
}

.about-overview-content .about-lead > :last-child,
.about-overview-content .about-copy > :last-child {
    margin-bottom: 0;
}

.about-purpose-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 38px;
}

.about-purpose-card {
    padding: 32px;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    background: var(--color-white);
    box-shadow: var(--shadow);
}

.about-purpose-card>span {
    display: block;
    color: var(--color-accent);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 18px;
}

.about-purpose-card h3 {
    font-size: 23px;
    margin-bottom: 14px;
}

.about-purpose-card p {
    color: var(--color-text-light);
    font-size: 15px;
    line-height: 1.7;
}

.about-benefits {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 24px;
    margin-top: 36px;
}

.about-benefits li {
    position: relative;
    padding: 20px 22px 20px 54px;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    background: var(--color-white);
    font-weight: 500;
}

.about-benefits li::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 24px;
    width: 12px;
    height: 7px;
    border-left: 3px solid var(--color-accent);
    border-bottom: 3px solid var(--color-accent);
    transform: translateY(-65%) rotate(-45deg);
}

/* Hero Section */
.hero {
    position: relative;
    height: calc(100vh - 70px);
    height: calc(100svh - 70px);
    min-height: 560px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 70px;
}

/* Product templates previously used inline 70vh sizing. Keep every banner
   consistently fitted to the viewport below the shared header. */
.hero[style] {
    height: calc(100vh - 70px) !important;
    height: calc(100svh - 70px) !important;
    min-height: 560px !important;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    color: var(--color-white);
    padding: 40px 0;
}

.hero-badge {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0.9;
}

.hero h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 32px;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero .btn-primary {
    background-color: var(--color-white);
    color: var(--color-primary);
}

.hero .btn-primary:hover {
    background-color: var(--color-bg-light);
}

.hero .btn-secondary {
    border-color: var(--color-white);
    color: var(--color-white);
}

.hero .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.hero-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
}

.hero-slide .hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-slide .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slide .hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0) 100%);
}

.hero-slide .hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    color: var(--color-white);
    padding: 40px 0;
    animation: fadeInUp 0.8s ease 0.3s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slider Navigation Arrows */
.hero-slider-nav {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--color-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.hero-arrow:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

/* Slider Dots */
.hero-slider-dots {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.hero-dot:hover {
    background-color: rgba(255, 255, 255, 0.7);
}

.hero-dot.active {
    background-color: var(--color-white);
    width: 28px;
    border-radius: 5px;
}

/* Categories Section */
.categories {
    padding: 100px 0;
    background-color: var(--color-bg);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.categories .container {
    position: relative;
}

.category-slider-controls {
    position: static;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin: 0 0 16px;
}

.category-slider-btn {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(21, 155, 215, 0.28);
    border-radius: 50%;
    background: var(--color-white);
    color: var(--brand-blue);
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(21, 155, 215, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.category-slider-btn:hover:not(:disabled) {
    color: var(--color-white);
    background: var(--brand-blue);
    border-color: var(--brand-blue);
    box-shadow: 0 12px 28px rgba(21, 155, 215, 0.24);
    transform: translateY(-2px);
}

.category-slider-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.categories-grid.categories-slider {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    width: 100%;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    overscroll-behavior-inline: contain;
    margin-top: 0;
    padding: 4px 2px 22px;
}

.categories-grid.categories-slider::-webkit-scrollbar {
    display: none;
}

.categories-slider .category-card {
    flex: 0 0 calc((100% - 48px) / 3);
    width: calc((100% - 48px) / 3);
    min-width: 0;
    height: auto;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

@media (max-width: 1024px) and (min-width: 769px) {
    .categories-slider .category-card {
        flex-basis: calc((100% - 24px) / 2);
        width: calc((100% - 24px) / 2);
    }
}

.category-card {
    position: relative;
    display: block;
    border: 1px solid rgba(21, 155, 215, 0.08);
    border-radius: 42px 10px 14px 14px;
    overflow: hidden;
    background-color: var(--color-white);
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.category-card:hover {
    transform: translateY(-4px);
    border-color: rgba(21, 155, 215, 0.18);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.14);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 88px;
    height: 88px;
    border-radius: 0 0 88px 0;
    background: linear-gradient(135deg, rgba(21, 155, 215, 0.16), rgba(120, 190, 32, 0.12));
    pointer-events: none;
    z-index: 1;
}

.category-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 42px 10px 0 0;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.category-card:hover .category-image img {
    transform: scale(1.05);
}

.category-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 16px 20px 8px;
    color: var(--color-primary);
}

.category-card p {
    font-size: 14px;
    color: var(--color-text-light);
    margin: 0 20px 20px;
}

/* Featured Section */
.featured {
    padding: 100px 0;
    background-color: var(--color-bg-light);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.featured-slider-controls {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin: 0 0 16px;
}

.featured-slider-btn {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(21, 155, 215, 0.28);
    border-radius: 50%;
    background: var(--color-white);
    color: var(--brand-blue);
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(21, 155, 215, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.featured-slider-btn:hover:not(:disabled) {
    color: var(--color-white);
    background: var(--brand-blue);
    border-color: var(--brand-blue);
    box-shadow: 0 12px 28px rgba(21, 155, 215, 0.24);
    transform: translateY(-2px);
}

.featured-slider-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.featured-grid.featured-slider {
    display: flex;
    flex-flow: row nowrap;
    align-items: stretch;
    gap: 24px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    overscroll-behavior-inline: contain;
    margin-top: 0;
    padding: 4px 2px 26px;
}

.featured-grid.featured-slider::-webkit-scrollbar {
    display: none;
}

.featured-slider>.product-card {
    flex: 0 0 calc((100% - 48px) / 3);
    width: calc((100% - 48px) / 3);
    min-width: 0;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.product-card {
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--color-white);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #f1f6f8 100%);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 18px;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.03);
}

.product-content {
    padding: 24px;
}

.product-category {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-accent);
    margin-bottom: 8px;
}

.product-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-primary);
}

.product-content p {
    font-size: 14px;
    color: var(--color-text-light);
    margin-bottom: 16px;
}

.product-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.product-actions .btn-link {
    font-size: 13px;
}

/* Product listing page */
.product-listing-page {
    background: linear-gradient(180deg, #f7fafb 0%, #ffffff 48%, #f6f8f9 100%);
    padding-top: 72px;
}

.product-category-strip {
    position: relative;
    isolation: isolate;
    background: #ffffff;
    border-bottom: 1px solid #dce7eb;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 16px 42px rgba(18, 53, 68, 0.06);
}

.product-category-strip .container {
    padding-right: clamp(20px, 3vw, 42px);
}

.product-category-panel {
    position: relative;
    display: grid;
    grid-template-columns: minmax(380px, 25vw) 48px minmax(0, 1fr) 48px;
    align-items: center;
    gap: 18px;
    min-height: 230px;
}

.product-category-intro {
    position: relative;
    min-height: 230px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 34px 52px 34px 0;
    color: #ffffff;
    background: linear-gradient(135deg, var(--brand-blue) 0%, #087eb5 100%);
    overflow: hidden;
}

.product-category-intro::after {
    content: '';
    position: absolute;
    top: -46px;
    right: -78px;
    width: 164px;
    height: calc(100% + 92px);
    border-radius: 50%;
    background: #ffffff;
    box-shadow: -18px 0 34px rgba(18, 53, 68, 0.14);
}

.category-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: #ffffff;
}

.product-category-intro h2 {
    position: relative;
    z-index: 1;
    margin: 0;
    max-width: 340px;
    font-size: clamp(30px, 2.5vw, 44px);
    line-height: 1.06;
    overflow-wrap: break-word;
    color: #ffffff;
}

.product-category-intro h2::after {
    content: '';
    display: block;
    width: 44px;
    height: 3px;
    margin-top: 18px;
    border-radius: 999px;
    background: var(--brand-green);
}

.product-category-row {
    display: flex;
    align-items: stretch;
    gap: 16px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 26px 2px 32px;
}

.product-category-row::-webkit-scrollbar {
    display: none;
}

.listing-category-card {
    position: relative;
    flex: 0 0 clamp(172px, 15.8vw, 235px);
    min-height: 154px;
    scroll-snap-align: start;
    overflow: hidden;
    border: 1px solid #e3ecef;
    border-radius: 8px;
    background: #ffffff;
    color: #123544;
    box-shadow: 0 8px 22px rgba(18, 53, 68, 0.08);
    transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.listing-category-card img {
    width: 100%;
    height: 102px;
    min-height: 102px;
    object-fit: cover;
    opacity: 1;
    transition: var(--transition);
}

.listing-category-card span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 12px;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
}

.listing-category-card.active,
.listing-category-card:hover {
    color: var(--brand-blue);
    border-color: rgba(21, 155, 215, 0.42);
    box-shadow: 0 14px 34px rgba(21, 155, 215, 0.15);
    transform: translateY(-3px);
}

.listing-category-card.active span::after,
.listing-category-card:hover span::after {
    content: '';
    position: absolute;
    bottom: 13px;
    width: 34px;
    height: 2px;
    border-radius: 999px;
    background: var(--brand-green);
}

.listing-category-card:hover img {
    transform: scale(1.04);
}

.product-category-nav {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d7e4e9;
    border-radius: 50%;
    background: #ffffff;
    color: #123544;
    box-shadow: 0 8px 22px rgba(18, 53, 68, 0.12);
    cursor: pointer;
    transition: transform 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.product-category-nav:hover:not(:disabled) {
    color: var(--brand-blue);
    border-color: rgba(21, 155, 215, 0.45);
    transform: translateY(-2px);
}

.product-category-nav:disabled {
    opacity: 0.38;
    cursor: not-allowed;
}

.listing-shell {
    padding: 44px 0 84px;
}

.listing-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 34px;
}

.listing-kicker {
    display: block;
    color: var(--brand-blue);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.listing-heading h1 {
    font-size: clamp(42px, 5.4vw, 76px);
    line-height: 1;
    font-weight: 700;
    color: #123544;
}

.listing-search {
    position: relative;
    width: min(360px, 100%);
}

.listing-search input {
    width: 100%;
    height: 52px;
    border: 1px solid #d8e5ea;
    border-radius: 8px;
    background: var(--color-white);
    padding: 0 18px 0 44px;
    font: inherit;
    box-shadow: 0 8px 20px rgba(18, 53, 68, 0.04);
}

.listing-search::before {
    content: '';
    position: absolute;
    left: 17px;
    top: 50%;
    width: 16px;
    height: 16px;
    border: 2px solid #8aa0a8;
    border-radius: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.listing-search::after {
    content: '';
    position: absolute;
    left: 31px;
    top: 31px;
    width: 8px;
    height: 2px;
    border-radius: 999px;
    background: #8aa0a8;
    transform: rotate(45deg);
    pointer-events: none;
}

.listing-layout {
    display: grid;
    grid-template-columns: minmax(250px, 300px) minmax(0, 1fr);
    gap: 36px;
    align-items: start;
}

.listing-filters {
    position: sticky;
    top: 112px;
    max-height: calc(100vh - 136px);
    overflow-y: auto;
    overscroll-behavior: contain;
    background: var(--color-white);
    border: 1px solid #dce7eb;
    border-radius: 8px;
    padding: 22px;
    box-shadow: 0 14px 34px rgba(18, 53, 68, 0.08);
}

.listing-filters::-webkit-scrollbar {
    width: 8px;
}

.listing-filters::-webkit-scrollbar-track {
    background: #f1f6f8;
    border-radius: 999px;
}

.listing-filters::-webkit-scrollbar-thumb {
    background: #c5d7df;
    border-radius: 999px;
}

.filter-head {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid #e5eef1;
}

.filter-head span {
    display: block;
    margin-bottom: 5px;
    color: var(--brand-blue);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}

.filter-head h2 {
    margin: 0;
    color: #123544;
    font-size: 25px;
    line-height: 1.1;
}

.filter-group {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #e5eef1;
}

.filter-group h3 {
    font-size: 15px;
    margin-bottom: 14px;
    color: #123544;
}

.filter-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 38px;
    margin-bottom: 8px;
    padding: 0 10px;
    color: #526973;
    font-size: 14px;
    border: 1px solid transparent;
    border-radius: 7px;
    background: #f8fbfc;
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.filter-group label:hover {
    border-color: rgba(21, 155, 215, 0.22);
    color: #123544;
}

.filter-group input {
    width: 17px;
    height: 17px;
    accent-color: var(--brand-green);
    flex: 0 0 auto;
}

.filter-group label:has(input:checked) {
    border-color: rgba(120, 190, 32, 0.42);
    background: rgba(120, 190, 32, 0.1);
    color: #123544;
    font-weight: 700;
}

.filter-reset {
    border: 0;
    background: transparent;
    color: var(--brand-blue);
    font-weight: 700;
    cursor: pointer;
    font-family: var(--font-family);
}

.filter-reset-link {
    padding: 2px 0;
    font-size: 13px;
}

.filter-reset-block {
    width: 100%;
    height: 44px;
    border: 1px solid rgba(21, 155, 215, 0.36);
    border-radius: 999px;
    background: #ffffff;
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.filter-reset-block:hover {
    color: #ffffff;
    border-color: var(--brand-blue);
    background: var(--brand-blue);
}

.listing-results {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
}

.listing-product-card {
    background: var(--color-white);
    border: 1px solid #dce7eb;
    border-radius: 8px;
    min-height: 100%;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(18, 53, 68, 0.06);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.listing-product-card.is-hidden {
    display: none;
}

.listing-product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(21, 155, 215, 0.24);
    box-shadow: 0 18px 46px rgba(18, 53, 68, 0.13);
}

/* Modern product catalogue pagination. */
.product-pagination {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 18px;
}

.pagination-pages {
    display: flex;
    align-items: center;
    gap: 7px;
}

.pagination-page,
.pagination-control {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid #d9e6eb;
    border-radius: 12px;
    background: #fff;
    color: #23485b;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}

.pagination-control svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.pagination-page:hover,
.pagination-control[href]:hover {
    border-color: #159bd7;
    background: #f1fbff;
    color: #159bd7;
    box-shadow: 0 8px 18px rgba(21, 155, 215, .14);
    transform: translateY(-2px);
}

.pagination-page.is-current {
    border-color: #159bd7;
    background: #159bd7;
    color: #fff;
    box-shadow: 0 8px 18px rgba(21, 155, 215, .22);
}

.pagination-control[aria-disabled="true"] {
    opacity: .38;
    cursor: not-allowed;
}

.pagination-ellipsis {
    width: 22px;
    color: #7a8c95;
    font-size: 18px;
    text-align: center;
}

@media (max-width: 600px) {
    .product-pagination {
        gap: 8px;
        margin-top: 10px;
    }

    .pagination-pages {
        gap: 4px;
    }

    .pagination-page,
    .pagination-control {
        width: 36px;
        height: 36px;
        border-radius: 10px;
        font-size: 12px;
    }

    .pagination-ellipsis {
        width: 14px;
    }
}

.listing-product-link {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    color: inherit;
}

.listing-product-image {
    position: relative;
    aspect-ratio: 1.52 / 1;
    background: linear-gradient(180deg, #f9fbfc 0%, #eef4f6 100%);
    overflow: hidden;
}

.listing-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: clamp(16px, 3vw, 30px);
    transition: var(--transition);
}

.listing-product-card:hover .listing-product-image img {
    transform: scale(1.03);
}

.listing-product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0 11px;
    border-radius: 999px;
    background: var(--brand-green);
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.listing-product-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 24px 26px 26px;
}

.listing-product-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin: 4px 0 24px;
}

.listing-product-features li {
    min-height: 54px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px;
    border: 1px solid #e3ecef;
    border-radius: 7px;
    background: #f8fbfc;
    color: #637780;
    font-size: 12px;
    line-height: 1.25;
    font-weight: 600;
}

.listing-product-features li:last-child {
    border-right: 1px solid #e3ecef;
}

.listing-product-features li span {
    display: block;
    color: #123544;
    font-size: 13px;
    font-weight: 800;
}

.listing-product-category {
    color: var(--brand-blue);
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 8px;
}

.listing-product-body h2 {
    min-height: 70px;
    font-size: clamp(22px, 1.7vw, 30px);
    line-height: 1.14;
    color: #123544;
    margin-bottom: 18px;
}

.listing-learn {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brand-blue);
    font-size: 14px;
    font-weight: 800;
}

.listing-learn::after {
    content: '';
    width: 8px;
    height: 8px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
}

.listing-product-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding: 0 26px 26px;
}

.listing-enquiry-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 9px 12px;
    border: 1px solid var(--brand-blue);
    border-radius: 4px;
    background: var(--brand-blue);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
}

.listing-enquiry-btn:hover {
    border-color: #173c52;
    background: #173c52;
    color: #fff;
}

/* Product Showcase Section */
.product-showcase {
    padding: 90px 0 100px;
    background: var(--color-white);
}

.product-showcase .section-title {
    text-align: center;
    margin-bottom: 28px;
}

.showcase-tabs {
    display: flex;
    justify-content: center;
    gap: clamp(18px, 3vw, 56px);
    margin: 0 auto 36px;
    padding: 0 0 14px;
    overflow-x: auto;
    scrollbar-width: none;
    border-bottom: 1px solid var(--color-border);
}

.showcase-tabs::-webkit-scrollbar {
    display: none;
}

.showcase-tab {
    position: relative;
    flex: 0 0 auto;
    padding: 8px 0;
    border: 0;
    background: transparent;
    color: var(--color-text-light);
    font: inherit;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    cursor: pointer;
    white-space: nowrap;
    transition: color 0.25s ease;
}

.showcase-tab::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -15px;
    width: 0;
    height: 3px;
    border-radius: 999px;
    background: var(--brand-green);
    transform: translateX(-50%);
    transition: width 0.25s ease;
}

.showcase-tab:hover,
.showcase-tab.active {
    color: var(--brand-blue);
}

.showcase-tab.active::after {
    width: 100%;
}

.showcase-panels {
    position: relative;
}

.showcase-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(300px, 0.85fr);
    gap: 26px;
    align-items: stretch;
}

.showcase-panel[hidden] {
    display: none;
}

.showcase-hero-card,
.showcase-side-card {
    position: relative;
    display: flex;
    min-height: 430px;
    overflow: hidden;
    border-radius: 8px;
    background: #111;
    color: var(--color-white);
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.12);
}

.showcase-hero-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.showcase-hero-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.06) 20%, rgba(0, 0, 0, 0.62) 100%);
}

.showcase-hero-card:hover img {
    transform: scale(1.04);
}

.showcase-card-content,
.showcase-side-card {
    z-index: 1;
}

.showcase-card-content {
    align-self: flex-end;
    padding: clamp(28px, 3vw, 46px);
    max-width: 620px;
}

.showcase-side-card {
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(26px, 3vw, 42px);
    background:
        linear-gradient(150deg, rgba(21, 155, 215, 0.9), rgba(120, 190, 32, 0.82)),
        url('../images/optimized/cat-kitchen.svg') center / cover;
}

.showcase-card-content h3,
.showcase-side-card h3 {
    font-size: clamp(30px, 3vw, 52px);
    line-height: 1.04;
    margin-bottom: 12px;
}

.showcase-card-content p,
.showcase-side-card p {
    max-width: 440px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 22px;
}

.showcase-card-content span,
.showcase-side-card span {
    display: inline-flex;
    align-items: center;
    color: var(--color-white);
    font-size: 15px;
    font-weight: 700;
}

.showcase-card-content span::after,
.showcase-side-card span::after {
    content: '->';
    margin-left: 8px;
}

/* Video Campaign Banners */
.video-campaigns {
    background: #050607;
    color: var(--color-white);
    padding: 0;
}

.video-campaigns .container {
    padding-left: 0;
    padding-right: 0;
}

.video-campaigns-heading {
    padding: 72px var(--site-gutter) 34px;
    text-align: center;
    background: #050607;
}

.video-campaigns .section-title,
.video-campaigns .section-subtitle {
    color: var(--color-white);
}

.video-campaigns .section-subtitle {
    color: rgba(255, 255, 255, 0.72);
}

.video-banner-stack {
    display: grid;
    gap: 0;
}

.stacked-campaigns {
    padding-bottom: 0;
}

.stacked-campaigns .container {
    padding-left: 0;
    padding-right: 0;
}

.video-banner {
    position: relative;
    min-height: clamp(520px, 54vw, 760px);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    isolation: isolate;
    background: #050607;
}

.story-banner-header {
    position: absolute;
    top: clamp(32px, 5.6vw, 86px);
    left: 50%;
    z-index: 2;
    width: min(900px, calc(100% - 40px));
    padding: 0 20px;
    color: var(--color-white);
    text-align: center;
    transform: translateX(-50%);
}

.story-banner-header h3 {
    margin: 0 0 24px;
    color: var(--color-white);
    font-size: clamp(30px, 3.5vw, 56px);
    font-weight: 800;
    line-height: 1;
}

.story-banner-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(24px, 4vw, 66px);
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
}

.story-banner-tabs::-webkit-scrollbar {
    display: none;
}

.story-banner-tabs a {
    position: relative;
    flex: 0 0 auto;
    padding: 0 0 13px;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(14px, 1.1vw, 18px);
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.story-banner-tabs a::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: #00d5d5;
    transform: translateX(-50%);
    transition: width 0.2s ease;
}

.story-banner-tabs a:hover,
.story-banner-tabs a.active {
    color: #00d5d5;
}

.story-banner-tabs a.active::after,
.story-banner-tabs a:hover::after {
    width: 100%;
}

.video-banner+.video-banner {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.story-banner-ac {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.video-banner img,
.video-banner video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.94;
    transform: scale(1.005);
    transition: transform 0.7s ease, opacity 0.7s ease;
    z-index: -2;
}

.video-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(5, 6, 7, 0.58) 0%, rgba(5, 6, 7, 0.16) 35%, rgba(5, 6, 7, 0.88) 100%),
        radial-gradient(circle at 50% 76%, rgba(21, 155, 215, 0.18), transparent 36%);
    z-index: -1;
}

.video-banner:hover img,
.video-banner:hover video {
    opacity: 1;
    transform: scale(1.045);
}

.story-banner.is-changing .story-banner-image,
.story-banner.is-changing .story-banner-video {
    opacity: 0.35;
}

.video-banner-content {
    width: min(760px, calc(100% - 40px));
    padding: 0 20px clamp(28px, 4vw, 52px);
    text-align: center;
}

.story-banner-tv img,
.story-banner-washing img,
.story-banner-ac img,
.story-banner-ac video {
    object-position: center;
}

.story-banner-ac video {
    object-fit: fill;
    object-position: center center;
    transform-origin: center center;
    width: 100%;
    height: 100%;
    max-width: none;
    transform: none;
}

@media (min-width: 769px) {
    .story-banner-ac video {
        width: 100%;
        height: 100%;
        transform: none;
    }

    .story-banner-ac:hover video {
        transform: none;
    }
}

.story-banner-cinema img {
    object-position: center 42%;
}

.story-banner-fridge img {
    object-position: center 45%;
}

.video-banner-content>span {
    display: block;
    color: var(--brand-green);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0;
}

.video-banner-content h3 {
    color: var(--color-white);
    font-size: clamp(32px, 5vw, 70px);
    font-weight: 800;
    line-height: 0.98;
    margin-bottom: 14px;
}

.video-banner-content p {
    max-width: 560px;
    margin: 0 auto 22px;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(15px, 1.4vw, 20px);
    line-height: 1.55;
}

.video-play-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    padding: 10px 18px 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.36);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.video-play-btn:hover {
    background: var(--brand-blue);
    border-color: var(--brand-blue);
    transform: translateY(-2px);
}

.video-play-icon,
.video-modal-play {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--color-white);
    color: var(--brand-blue);
    position: relative;
    flex: 0 0 auto;
}

.video-play-icon::before,
.video-modal-play::before {
    content: '';
    position: absolute;
    left: 11px;
    top: 8px;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 9px solid currentColor;
}

.video-banner-fridge img,
.video-banner-cinema img {
    filter: saturate(0.9) contrast(1.05) brightness(0.72);
}

.video-banner-fridge::before,
.video-banner-washing::before {
    background:
        linear-gradient(180deg, rgba(5, 6, 7, 0.18) 0%, rgba(5, 6, 7, 0.34) 42%, rgba(5, 6, 7, 0.92) 100%),
        radial-gradient(circle at 52% 68%, rgba(120, 190, 32, 0.16), transparent 36%);
}

.video-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(0, 0, 0, 0.72);
}

.video-modal.active {
    display: flex;
}

.video-modal-dialog {
    position: relative;
    width: min(940px, 100%);
    padding: 18px;
    border-radius: 10px;
    background: #0b0d0f;
    color: var(--color-white);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.video-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    color: var(--color-white);
    cursor: pointer;
}

.video-modal-frame {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 8px;
    background: #000;
}

.video-modal-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.78;
}

.video-modal-play {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 72px;
    height: 72px;
    transform: translate(-50%, -50%);
}

.video-modal-play::before {
    left: 29px;
    top: 22px;
    border-top-width: 14px;
    border-bottom-width: 14px;
    border-left-width: 20px;
}

.video-modal-dialog h2 {
    margin: 18px 4px 6px;
    font-size: 24px;
}

.video-modal-dialog p {
    margin: 0 4px 4px;
    color: rgba(255, 255, 255, 0.68);
}

/* Smart Living Section */
.smart-living {
    padding: 100px 0;
    background-color: var(--color-bg);
    text-align: center;
}

.smart-living-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 40px 0;
}

.smart-living-image {
    border-radius: 12px;
    overflow: hidden;
}

.smart-living-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition);
}

.smart-living-image:hover img {
    transform: scale(1.03);
}

.smart-living-text {
    font-size: 24px;
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.smart-living-description {
    font-size: 16px;
    color: var(--color-text-light);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Pillars Section */
.pillars {
    padding: 100px 0;
    background-color: var(--color-bg-light);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 28px;
    margin-top: 32px;
}

.pillar-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background-color: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--color-text);
}

.pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.14);
}

.pillar-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.pillar-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.pillar-card:hover .pillar-image img {
    transform: scale(1.05);
}

.pillar-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 12px;
    color: var(--color-primary);
}

.pillar-card p {
    font-size: 15px;
    line-height: 1.65;
    color: var(--color-text-light);
    margin: 0 0 20px;
}

.pillar-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 32px;
}

.pillar-highlights {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0 0 26px;
}

.pillar-highlights li {
    position: relative;
    padding-left: 24px;
    font-size: 14px;
    color: var(--color-text);
}

.pillar-highlights li::before {
    content: '';
    position: absolute;
    top: .35em;
    left: 0;
    width: 10px;
    height: 6px;
    border-left: 2px solid var(--color-accent);
    border-bottom: 2px solid var(--color-accent);
    transform: rotate(-45deg);
}

.pillar-cta {
    margin-top: auto;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-primary);
}

.pillar-card:hover .pillar-cta {
    color: var(--color-accent);
}

.pillar-card:focus-visible {
    outline: 3px solid var(--color-accent);
    outline-offset: 4px;
}

/* Campaigns Section */
.campaigns {
    padding: 100px 0;
    background-color: var(--color-bg);
}

.campaigns-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.campaign-card {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--color-white);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.campaign-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.campaign-card-large {
    grid-column: span 2;
    grid-row: span 2;
}

.campaign-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.campaign-card-large .campaign-image {
    height: 400px;
}

.campaign-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.campaign-card:hover .campaign-image img {
    transform: scale(1.05);
}

.campaign-content {
    padding: 20px;
}

.campaign-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-primary);
}

.campaign-content p {
    font-size: 14px;
    color: var(--color-text-light);
    margin-bottom: 12px;
}

/* Why Gratus video upload section */
.why-video {
    position: relative;
    isolation: isolate;
    min-height: clamp(460px, 68vh, 760px);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 96px 0;
    background: #123544;
}

.why-video .container {
    position: relative;
    z-index: 2;
}

.why-video-frame {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background: linear-gradient(135deg, #0d83bb, #123544);
}

.why-video-frame video,
.why-video-frame img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.why-video-shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(18, 53, 68, 0.88) 0%, rgba(18, 53, 68, 0.68) 42%, rgba(21, 155, 215, 0.28) 100%),
        linear-gradient(180deg, rgba(21, 155, 215, 0.18), rgba(120, 190, 32, 0.18));
}

.why-video-shade::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    height: 38%;
    background: linear-gradient(180deg, rgba(18, 53, 68, 0), rgba(18, 53, 68, 0.54));
}

.why-video-copy h2 {
    max-width: 560px;
    margin: 0 0 16px;
    color: #ffffff;
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.08;
}

.why-video-copy p {
    max-width: 520px;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 17px;
    line-height: 1.7;
}

.why-video .section-kicker {
    color: var(--brand-green);
}

.why-video-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    gap: 14px;
    padding: 28px;
    color: #ffffff;
    text-align: center;
    background:
        radial-gradient(circle at 72% 28%, rgba(120, 190, 32, 0.42), transparent 30%),
        linear-gradient(135deg, #159bd7, #123544);
}

.why-video-placeholder strong {
    font-size: 16px;
    font-weight: 700;
}

/* Why Gratus Section */
.why-gratus {
    padding: 100px 0;
    background-color: var(--color-bg-light);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 32px;
}

.reason-item {
    padding: 24px;
    background-color: var(--color-white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.reason-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.reason-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-primary);
}

.reason-item p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* Experience Section */
.experience {
    padding: 100px 0;
    background-color: var(--color-bg);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.step-item {
    text-align: center;
    padding: 32px 20px;
    background-color: var(--color-white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.step-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

.step-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-primary);
}

.step-item p {
    font-size: 14px;
    color: var(--color-text-light);
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background-color: var(--color-bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.testimonial-card {
    background-color: var(--color-white);
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    flex-shrink: 0;
}

.testimonial-info strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
}

.testimonial-info span {
    font-size: 13px;
    color: var(--color-text-muted);
}

.testimonial-card blockquote {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-card blockquote::before {
    content: '"';
    font-size: 24px;
    color: var(--color-accent);
    font-weight: 700;
}

.testimonial-product {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-accent);
}

/* Instagram Section */
.instagram {
    padding: 100px 0;
    background-color: var(--color-bg);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-top: 32px;
}

.instagram-item {
    display: block;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 4px;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.instagram-item:hover img {
    transform: scale(1.1);
}

/* Blog Section */
.blog {
    padding: 100px 0;
    background-color: var(--color-bg-light);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.blog-card {
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--color-white);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.blog-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 20px;
}

.blog-meta {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.blog-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-primary);
    line-height: 1.5;
    transition: var(--transition);
}

.blog-card:hover .blog-content h3 {
    color: var(--color-accent);
}

/* Newsletter Section */
.newsletter {
    padding: 80px 0;
    background-color: var(--color-primary);
    color: var(--color-white);
    text-align: center;
}

.newsletter .section-title,
.newsletter .section-subtitle {
    color: var(--color-white);
}

.newsletter .section-subtitle {
    opacity: 0.8;
}

.newsletter-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 480px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    outline: none;
    transition: var(--transition);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
    border-color: rgba(255, 255, 255, 0.6);
    background-color: rgba(255, 255, 255, 0.15);
}

.newsletter-form .btn-primary {
    background-color: var(--color-white);
    color: var(--color-primary);
}

.newsletter-form .btn-primary:hover {
    background-color: var(--color-bg-light);
}

/* Footer */
.footer {
    padding: 80px 0 40px;
    background-color: var(--color-secondary);
    color: rgba(255, 255, 255, 0.8);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo img {
    width: 128px;
    height: auto;
    max-width: none;
    margin-bottom: 0;
    transform: translateY(-12px);
}

.logo,
.footer-logo {
    display: inline-block;
    width: 128px;
    height: 36px;
    overflow: hidden;
    background: var(--color-white);
}

.footer-logo {
    margin-bottom: 20px;
    border-radius: 4px;
}

.footer-brand>p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-social a:hover {
    color: var(--color-white);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-column a:hover {
    color: var(--color-white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal a:hover {
    color: var(--color-white);
}

/* Floating Actions */
.floating-actions {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.floating-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    cursor: pointer;
}

.floating-btn::before {
    content: "";
    width: 24px;
    height: 24px;
    background-color: currentColor;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.floating-btn-scroll {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.floating-btn-scroll::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m18 15-6-6-6 6'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m18 15-6-6-6 6'/%3E%3C/svg%3E");
}

.floating-btn-scroll:hover {
    background-color: var(--color-secondary);
    transform: translateY(-2px);
}

.floating-btn-whatsapp {
    background-color: #25D366;
    color: var(--color-white);
}

.floating-btn-whatsapp::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='black' d='M16.01 3.2c-7.07 0-12.82 5.73-12.82 12.78 0 2.25.59 4.46 1.72 6.4L3.08 29l6.78-1.78a12.84 12.84 0 0 0 6.15 1.56c7.07 0 12.82-5.73 12.82-12.79C28.83 8.94 23.08 3.2 16.01 3.2Zm0 23.42c-1.94 0-3.83-.52-5.5-1.5l-.4-.23-4.02 1.05 1.07-3.9-.26-.41a10.55 10.55 0 0 1-1.55-5.65c0-5.86 4.78-10.63 10.66-10.63s10.66 4.77 10.66 10.63c0 5.87-4.78 10.64-10.66 10.64Zm5.84-7.96c-.32-.16-1.89-.93-2.18-1.04-.29-.1-.5-.16-.72.16-.21.32-.82 1.04-1.01 1.25-.19.21-.37.24-.69.08-.32-.16-1.35-.5-2.57-1.59a9.63 9.63 0 0 1-1.78-2.21c-.19-.32-.02-.49.14-.65.15-.15.32-.37.48-.56.16-.19.21-.32.32-.53.1-.21.05-.4-.03-.56-.08-.16-.72-1.72-.98-2.36-.26-.62-.52-.54-.72-.55h-.61c-.21 0-.56.08-.85.4-.29.32-1.12 1.09-1.12 2.66s1.15 3.09 1.31 3.3c.16.21 2.26 3.44 5.47 4.82.76.33 1.36.53 1.83.68.77.24 1.47.21 2.02.13.62-.09 1.89-.77 2.16-1.52.27-.75.27-1.39.19-1.52-.08-.13-.29-.21-.61-.37Z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='black' d='M16.01 3.2c-7.07 0-12.82 5.73-12.82 12.78 0 2.25.59 4.46 1.72 6.4L3.08 29l6.78-1.78a12.84 12.84 0 0 0 6.15 1.56c7.07 0 12.82-5.73 12.82-12.79C28.83 8.94 23.08 3.2 16.01 3.2Zm0 23.42c-1.94 0-3.83-.52-5.5-1.5l-.4-.23-4.02 1.05 1.07-3.9-.26-.41a10.55 10.55 0 0 1-1.55-5.65c0-5.86 4.78-10.63 10.66-10.63s10.66 4.77 10.66 10.63c0 5.87-4.78 10.64-10.66 10.64Zm5.84-7.96c-.32-.16-1.89-.93-2.18-1.04-.29-.1-.5-.16-.72.16-.21.32-.82 1.04-1.01 1.25-.19.21-.37.24-.69.08-.32-.16-1.35-.5-2.57-1.59a9.63 9.63 0 0 1-1.78-2.21c-.19-.32-.02-.49.14-.65.15-.15.32-.37.48-.56.16-.19.21-.32.32-.53.1-.21.05-.4-.03-.56-.08-.16-.72-1.72-.98-2.36-.26-.62-.52-.54-.72-.55h-.61c-.21 0-.56.08-.85.4-.29.32-1.12 1.09-1.12 2.66s1.15 3.09 1.31 3.3c.16.21 2.26 3.44 5.47 4.82.76.33 1.36.53 1.83.68.77.24 1.47.21 2.02.13.62-.09 1.89-.77 2.16-1.52.27-.75.27-1.39.19-1.52-.08-.13-.29-.21-.61-.37Z'/%3E%3C/svg%3E");
}

.floating-btn-whatsapp:hover {
    background-color: #20bd5a;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {

    .categories-grid,
    .featured-grid,
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .featured-slider>.product-card {
        flex-basis: calc((100% - 24px) / 2);
        width: calc((100% - 24px) / 2);
    }

    .showcase-panel {
        grid-template-columns: 1fr;
    }

    .campaigns-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .campaign-card-large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .campaign-card-large .campaign-image {
        height: 300px;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .header-actions {
        margin-left: auto;
        margin-right: 14px;
    }

    .header-actions .header-search,
    .header-actions .cart-btn {
        display: none;
    }

    .header-nav {
        max-height: calc(100svh - 70px);
        overflow-y: auto;
        overscroll-behavior: contain;
    }
}

@media (max-width: 768px) {
    .container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .page-hero {
        min-height: 62svh;
        padding: 120px 0 64px;
    }

    .support-grid {
        grid-template-columns: 1fr;
    }

    .support-hero {
        min-height: auto;
        padding: 112px 0 54px;
    }

    .support-hero-grid,
    .support-contact-grid,
    .support-faq-grid,
    .support-trust-grid {
        grid-template-columns: 1fr;
    }

    .support-hero-grid {
        gap: 28px;
    }

    .support-hero h1 {
        font-size: 46px;
    }

    .support-hero p {
        font-size: 17px;
    }

    .support-search {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 8px;
    }

    .support-search input {
        min-height: 48px;
        padding: 0 12px;
    }

    .support-search button {
        width: 100%;
    }

    .support-hero-actions {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .support-hero-actions a {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 42px;
        padding: 8px;
        text-align: center;
    }

    .support-hero-panel {
        min-height: 330px;
    }

    .support-status-card {
        top: 16px;
        left: 16px;
        width: 188px;
        padding: 14px;
    }

    .support-status-card strong {
        font-size: 23px;
    }

    .support-device-card {
        inset: 78px 18px 88px;
    }

    .device-screen {
        font-size: 15px;
    }

    .support-metric-row {
        left: 16px;
        right: 16px;
        bottom: 16px;
        grid-template-columns: 1fr;
        gap: 7px;
    }

    .support-metric-row span {
        min-height: 36px;
    }

    .support-actions-section,
    .support-faq-section {
        padding: 58px 0;
    }

    .support-section-heading,
    .support-section-heading.align-left {
        margin-bottom: 28px;
        text-align: left;
    }

    .support-action-grid,
    .support-contact-list {
        grid-template-columns: 1fr;
    }

    .support-action-card {
        min-height: auto;
        padding: 22px;
    }

    .support-contact-section {
        padding: 52px 0;
    }

    .support-contact-grid {
        gap: 26px;
    }

    .service-complaint-section {
        padding: 58px 0;
    }

    .service-complaint-modal {
        align-items: stretch;
        padding: 12px;
    }

    .service-complaint-dialog {
        width: 100%;
        max-height: calc(100svh - 24px);
        margin: auto;
        padding: 18px;
    }

    .service-complaint-close {
        top: 10px;
        right: 10px;
        width: 38px;
        height: 38px;
        font-size: 24px;
    }

    .service-complaint-grid,
    .service-complaint-form .field-row {
        grid-template-columns: 1fr;
    }

    .service-complaint-grid {
        gap: 22px;
        padding-top: 26px;
    }

    .service-complaint-form {
        padding: 22px;
    }

    .where-hero {
        min-height: auto;
        padding: 112px 0 54px;
    }

    .where-hero-grid,
    .where-location-grid,
    .where-steps-grid,
    .where-cta-grid {
        grid-template-columns: 1fr;
    }

    .where-hero-grid {
        gap: 28px;
    }

    .where-hero h1 {
        font-size: 46px;
    }

    .where-hero p {
        font-size: 17px;
    }

    .where-hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .where-hero-actions .btn {
        width: 100%;
    }

    .where-finder-card {
        padding: 22px;
    }

    .where-finder-card h2 {
        font-size: 25px;
    }

    .where-channel-section,
    .where-location-section,
    .where-steps-section {
        padding: 58px 0;
    }

    .where-section-heading,
    .where-section-heading.align-left {
        margin-bottom: 28px;
        text-align: left;
    }

    .where-channel-grid {
        grid-template-columns: 1fr;
    }

    .where-channel-card {
        min-height: auto;
        padding: 22px;
    }

    .where-steps-list li {
        padding: 18px 18px 18px 72px;
    }

    .where-steps-list li::before {
        left: 18px;
    }

    .where-cta-section {
        padding: 48px 0;
    }

    .where-cta-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .contact-hero {
        min-height: auto;
        padding: 112px 0 54px;
    }

    .contact-hero-grid,
    .contact-hero-panel,
    .contact-main-grid,
    .contact-location-grid {
        grid-template-columns: 1fr;
    }

    .contact-hero-grid {
        gap: 28px;
    }

    .contact-hero h1 {
        font-size: 46px;
    }

    .contact-hero p {
        font-size: 17px;
    }

    .contact-hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .contact-hero-actions .btn {
        width: 100%;
    }

    .contact-hero-panel {
        padding: 16px;
    }

    .contact-live-card {
        min-height: 210px;
        padding: 20px;
    }

    .contact-live-card strong {
        font-size: 24px;
    }

    .contact-main-section,
    .contact-route-section,
    .contact-location-section {
        padding: 58px 0;
    }

    .contact-info-panel {
        position: static;
        padding: 22px;
    }

    .contact-field-row,
    .contact-card-grid {
        grid-template-columns: 1fr;
    }

    .contact-section-heading {
        margin-bottom: 28px;
        text-align: left;
    }

    .contact-card {
        min-height: auto;
        padding: 22px;
    }

    .contact-map-card iframe {
        min-height: 310px;
    }

    .products-managed-banner {
        min-height: 520px;
        margin-top: 68px;
        align-items: flex-end;
        padding: 0 0 48px;
    }

    .products-managed-banner-shade {
        background: linear-gradient(180deg, rgba(3, 30, 42, 0.12) 0%, rgba(3, 30, 42, 0.68) 54%, rgba(3, 30, 42, 0.94) 100%);
    }

    .products-managed-banner h1 {
        font-size: 42px;
    }

    .products-managed-banner p {
        font-size: 16px;
    }

    .about-overview,
    .about-purpose-grid,
    .about-benefits {
        grid-template-columns: 1fr;
    }

    .about-overview {
        gap: 34px;
    }

    .about-main-banner {
        min-height: auto;
        margin-top: 68px;
        padding: 56px 0 68px;
    }

    .about-main-banner .about-overview {
        grid-template-columns: 1fr;
    }

    .about-main-banner .about-overview-content {
        max-width: none;
    }

    .about-overview-media {
        border-radius: 16px;
    }

    .about-purpose-card {
        padding: 26px;
    }

    .category-slider-controls {
        position: static;
        justify-content: flex-end;
        margin: 0 0 14px;
    }

    .featured-slider-controls {
        justify-content: flex-end;
        margin: 0 0 14px;
    }

    .categories-grid.categories-slider {
        display: flex;
        gap: 16px;
        margin-right: -18px;
        padding-right: 18px;
    }

    .featured-grid.featured-slider {
        gap: 16px;
        margin-right: -18px;
        padding-right: 18px;
    }

    .categories-slider .category-card {
        flex-basis: min(82vw, 340px);
        width: min(82vw, 340px);
    }

    .featured-slider>.product-card {
        flex-basis: min(82vw, 360px);
        width: min(82vw, 360px);
    }

    .header .container {
        height: 64px;
    }

    .logo img {
        height: 30px;
    }

    .header-nav {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background-color: var(--color-white);
        border-bottom: 1px solid var(--color-border);
        padding: 10px 20px 24px;
        max-height: calc(100svh - 64px);
        box-shadow: var(--shadow);
    }

    .header-nav.active {
        display: flex;
    }

    .header-nav-item {
        width: 100%;
    }

    .header-nav-link {
        width: 100%;
        justify-content: space-between;
        padding: 12px 0;
        border-bottom: 1px solid var(--color-border);
    }

    .header-mega-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border: none;
        padding: 16px 0 0;
        min-width: auto;
        display: none;
    }

    .header-nav-item.active .header-mega-menu {
        display: block;
    }

    .mega-menu-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .header-actions .btn {
        display: none;
    }

    .region-selector {
        font-size: 12px;
        padding: 7px 8px;
    }

    .hero {
        height: calc(100vh - 64px);
        height: calc(100svh - 64px);
        min-height: 520px;
        margin-top: 64px;
    }

    .hero[style] {
        height: calc(100vh - 64px) !important;
        height: calc(100svh - 64px) !important;
        min-height: 520px !important;
    }

    .hero-image img,
    .hero-slide .hero-image img {
        object-position: 62% center;
    }

    .hero-image::after,
    .hero-slide .hero-image::after {
        background: linear-gradient(to right, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.38) 70%, rgba(0, 0, 0, 0.12) 100%);
    }

    .hero-content,
    .hero-slide .hero-content {
        max-width: min(88vw, 520px);
        padding: 34px 0 100px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-slider-nav {
        bottom: 24px;
        right: 20px;
    }

    .hero-arrow {
        width: 40px;
        height: 40px;
    }

    .hero-slider-dots {
        bottom: 32px;
        gap: 10px;
    }

    .hero-dot {
        width: 8px;
        height: 8px;
    }

    .hero-dot.active {
        width: 22px;
    }

    .categories-grid,
    .featured-grid,
    .pillars-grid,
    .campaigns-grid,
    .reasons-grid,
    .steps-grid,
    .testimonials-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .product-showcase {
        padding: 56px 0 64px;
    }

    .video-campaigns-heading {
        padding: 52px var(--site-gutter) 26px;
    }

    .story-banner-header {
        top: 34px;
        width: min(100%, calc(100vw - 28px));
        padding: 0;
    }

    .story-banner-header h3 {
        margin-bottom: 18px;
        font-size: clamp(24px, 5vw, 36px);
    }

    .story-banner-tabs {
        justify-content: flex-start;
        gap: 28px;
        padding: 0 4px 2px;
    }

    .video-banner {
        min-height: 520px;
    }

    .video-banner-content {
        width: min(100%, 560px);
        padding-bottom: 44px;
    }

    .showcase-tabs {
        justify-content: flex-start;
        gap: 24px;
        margin-bottom: 28px;
        padding-left: 0;
        padding-right: 0;
    }

    .showcase-hero-card,
    .showcase-side-card {
        min-height: 360px;
    }

    .campaign-card-large {
        grid-column: span 1;
    }

    .campaign-card-large .campaign-image {
        height: 250px;
    }

    .smart-living-images {
        grid-template-columns: 1fr;
    }

    .smart-living-image img {
        height: 250px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer {
        padding: 56px 0 28px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .floating-actions {
        bottom: 16px;
        right: 16px;
    }

    .floating-btn {
        width: 48px;
        height: 48px;
        padding: 0;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: clamp(32px, 10vw, 42px);
        line-height: 1.06;
    }

    .hero-subtitle {
        max-width: 32rem;
        margin-bottom: 24px;
    }

    .hero-actions {
        gap: 10px;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-slider-nav {
        display: none;
    }

    .hero-slider-dots {
        bottom: 22px;
    }

    .footer-brand>p {
        max-width: none;
    }

    .section-title {
        font-size: 26px;
    }

    .categories-grid,
    .featured-grid,
    .pillars-grid,
    .campaigns-grid,
    .reasons-grid,
    .steps-grid,
    .testimonials-grid,
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .showcase-tabs {
        gap: 20px;
    }

    .showcase-tab {
        font-size: 15px;
    }

    .showcase-hero-card,
    .showcase-side-card {
        min-height: 310px;
    }

    .video-campaigns-heading {
        text-align: left;
    }

    .story-banner-header {
        top: 28px;
        width: calc(100vw - 24px);
    }

    .story-banner-header h3 {
        margin-bottom: 14px;
        font-size: 22px;
    }

    .story-banner-tabs {
        gap: 22px;
    }

    .story-banner-tabs a {
        padding-bottom: 9px;
        font-size: 11px;
    }

    .video-banner {
        width: 100vw;
        max-width: 100vw;
        min-height: 470px;
        align-items: flex-end;
    }

    .video-banner img,
    .video-banner video {
        object-position: center top;
    }

    .story-banner-ac video {
        object-fit: fill;
        object-position: center center;
        width: 100%;
        height: 100%;
        max-width: none;
        transform: none;
    }

    .video-banner-content {
        width: min(100%, 100vw);
        max-width: 100vw;
        padding-left: 18px;
        padding-right: 18px;
        text-align: center;
        transform: translateX(0);
    }

    .video-banner-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .video-banner-content h3 {
        max-width: min(280px, calc(100vw - 56px));
        margin-left: auto;
        margin-right: auto;
        font-size: clamp(21px, 6.2vw, 25px);
        line-height: 1.08;
        overflow-wrap: anywhere;
    }

    .video-modal {
        padding: 14px;
    }

    .video-modal-dialog {
        padding: 12px;
    }

    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4px;
    }
}

/* Category carousel cache-safe final guard: always one horizontal track. */
.categories .categories-grid.categories-slider {
    display: flex !important;
    grid-template-columns: none !important;
    flex-flow: row nowrap !important;
    align-items: stretch;
    overflow-x: auto;
    overflow-y: hidden;
}

.categories .categories-slider>.category-card {
    display: block;
    flex-grow: 0;
    flex-shrink: 0;
}

@media (min-width: 1025px) {
    .categories .categories-slider>.category-card {
        flex-basis: calc((100% - 48px) / 3);
        width: calc((100% - 48px) / 3);
    }
}

/* Mobile/tablet homepage hero: preserve the same complete campaign artwork. */
@media (max-width: 1024px) {

    body>main>.hero.home-hero:first-child,
    body>main>.hero.home-hero[style]:first-child {
        width: 100%;
        height: clamp(320px, 58vw, 560px) !important;
        min-height: 320px !important;
        aspect-ratio: auto;
        margin-top: 68px;
        background: transparent;
    }

    .home-hero .hero-slider,
    .home-hero .hero-slide,
    .home-hero .hero-image {
        width: 100%;
        height: 100%;
        background: transparent;
    }

    .home-hero .hero-slide .hero-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
    }

    .home-hero .hero-slide .hero-image::after {
        background: none;
    }

    .home-hero .hero-content,
    .home-hero .hero-slider-nav {
        display: none;
    }

    .home-hero .hero-slider-dots {
        bottom: 10px;
    }
}

@media (max-width: 640px) {

    body>main>.hero.home-hero:first-child,
    body>main>.hero.home-hero[style]:first-child {
        height: clamp(340px, 86vw, 460px) !important;
        min-height: 340px !important;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .categories .categories-slider>.category-card {
        flex-basis: calc((100% - 24px) / 2);
        width: calc((100% - 24px) / 2);
    }
}

@media (max-width: 768px) {
    .categories .categories-slider>.category-card {
        flex-basis: min(82vw, 340px);
        width: min(82vw, 340px);
    }
}

/* --------------------------------------------------------------------------
   Shared header â€” final layout guard
   Keeps legacy mega-menu markup from flashing over the hero while the shared
   header partial loads, and gives the middle navigation a stable grid column.
   -------------------------------------------------------------------------- */
body>.header {
    height: 72px;
    background: #fff;
}

body>.header .container {
    width: min(100% - 40px, 1480px);
    max-width: 1480px;
    height: 72px;
    padding: 0;
    display: grid;
    grid-template-columns: minmax(150px, 1fr) auto minmax(220px, 1fr);
    gap: 28px;
}

body>.header .logo {
    justify-self: start;
}

body>.header .logo img {
    width: 128px;
    height: auto;
    max-width: none;
}

body>.header .header-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(4px, 0.7vw, 14px);
    margin: 0;
    min-width: 0;
    white-space: nowrap;
}

body>.header .header-nav-item {
    position: static;
    flex: 0 0 auto;
}

body>.header .header-nav-link {
    min-height: 44px;
    padding: 10px clamp(8px, 0.8vw, 15px);
    border: 0;
    border-bottom: 2px solid transparent;
    border-radius: 0;
    background: transparent;
    color: #2f2f2f;
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    white-space: nowrap;
    appearance: none;
    -webkit-appearance: none;
}

body>.header .header-nav-link:hover,
body>.header .header-nav-link.active {
    color: var(--color-accent);
    border-bottom-color: var(--color-accent);
}

body>.header .has-mega-menu {
    position: static;
}

body>.header .header-mega-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    z-index: 998;
    width: 100vw;
    min-width: 0;
    padding: 32px var(--site-gutter) 30px;
    border: 0;
    border-top: 1px solid #dce7eb;
    border-radius: 0;
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(18, 53, 68, 0.08);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
}

body>.header .has-mega-menu:hover .header-mega-menu,
body>.header .has-mega-menu:focus-within .header-mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

body>.header .mega-menu-grid {
    width: min(100%, 1240px);
    display: grid;
    grid-template-columns: repeat(5, minmax(150px, 1fr));
    gap: 30px clamp(24px, 3.4vw, 58px);
    margin: 0 auto;
}

body>.header .mega-menu-column h4 {
    margin: 0 0 14px;
    padding: 0;
    border: 0;
    color: var(--brand-blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

body>.header .mega-menu-column h4 a {
    color: inherit;
}

body>.header .mega-menu-column ul {
    display: grid;
    gap: 9px;
}

body>.header .mega-menu-column a {
    display: inline-flex;
    width: fit-content;
    padding: 0;
    color: #123544;
    font-size: 14px;
    line-height: 1.35;
}

body>.header .mega-menu-column a:hover {
    color: var(--brand-blue);
    padding-left: 0;
}

body>.header .header-actions {
    justify-self: end;
    margin: 0;
    gap: 12px;
    white-space: nowrap;
}

body>.header .header-actions .btn {
    min-width: 104px;
    padding: 11px 20px;
}

body>.header .mobile-menu-toggle {
    justify-self: end;
}

body>main>.hero:first-child {
    margin-top: 72px;
    height: calc(100vh - 72px);
    height: calc(100svh - 72px);
}

@media (max-width: 1180px) {
    body>.header .container {
        grid-template-columns: 130px auto minmax(54px, 1fr);
        gap: 14px;
    }

    body>.header .header-nav {
        gap: 0;
    }

    body>.header .header-nav-link {
        padding-left: 8px;
        padding-right: 8px;
        font-size: 13px;
    }

    body>.header .region-selector {
        display: none;
    }

    body>.header .header-actions .btn {
        display: none;
    }
}

@media (max-width: 1024px) {
    body.menu-open {
        overflow: hidden;
    }

    body>.header,
    body>.header .container {
        height: 68px;
    }

    body>.header .container {
        width: min(100% - 32px, 1480px);
        display: flex;
        gap: 16px;
    }

    body>.header .header-nav {
        display: none;
        position: fixed;
        inset: 68px 0 auto;
        width: 100%;
        max-height: calc(100svh - 68px);
        padding: 14px 20px 28px;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        overflow-y: auto;
        background: #fff;
        border-top: 1px solid var(--color-border);
        border-bottom: 1px solid var(--color-border);
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    }

    body>.header .header-nav.active {
        display: flex;
    }

    body>.header .header-nav-item {
        width: 100%;
    }

    body>.header .header-nav-link {
        width: 100%;
        min-height: 52px;
        padding: 14px 4px;
        justify-content: space-between;
        border-bottom: 1px solid var(--color-border);
        font-size: 16px;
    }

    body>.header .header-mega-menu {
        position: static;
        width: 100%;
        max-height: 0;
        padding: 0;
        border: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        overflow: hidden;
        pointer-events: auto;
        transform: none;
        transition: max-height 0.25s ease;
    }

    body>.header .has-mega-menu.active .header-mega-menu {
        max-height: 70svh;
        padding: 16px 0 8px;
        overflow-y: auto;
    }

    body>.header .mega-menu-grid {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    body>.header .mega-menu-column h4 {
        margin-bottom: 10px;
    }

    body>.header .header-actions {
        margin-left: auto;
    }

    body>.header .header-actions .btn,
    body>.header .region-selector {
        display: none;
    }

    body>.header .header-actions .header-search {
        display: flex;
    }

    body>.header .header-search-panel {
        right: -58px;
        width: min(340px, calc(100vw - 28px));
    }

    body>.header .mobile-menu-toggle {
        display: flex;
        width: 42px;
        height: 42px;
        align-items: center;
        justify-content: center;
    }

    body>main>.hero:first-child {
        margin-top: 68px;
        height: calc(100vh - 68px);
        height: calc(100svh - 68px);
    }
}

@media (max-width: 480px) {
    body>.header .logo img {
        width: 118px;
        height: auto;
        transform: translateY(-11px);
    }

    body>.header .logo {
        width: 118px;
        height: 34px;
    }

    body>.header .container {
        width: calc(100% - 28px);
    }
}

/* Homepage desktop hero: all campaign banners are natively 1920 Ã— 620. */
@media (min-width: 1025px) {
    body>main>.hero.home-hero:first-child {
        width: 100%;
        height: calc(100vh - 72px);
        height: calc(100svh - 72px);
        min-height: 720px;
        max-height: 980px;
        aspect-ratio: auto;
        background: transparent;
    }

    .home-hero .hero-slider {
        height: 100%;
    }

    .home-hero .hero-slide,
    .home-hero .hero-image {
        height: 100%;
        background: transparent;
    }

    .home-hero .hero-slide .hero-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
    }

    .home-hero .hero-slide .hero-image::after {
        background: linear-gradient(to right, rgba(0, 0, 0, 0.46) 0%, rgba(0, 0, 0, 0.14) 42%, rgba(0, 0, 0, 0) 68%);
    }
}

/* Compact, consistent rhythm between homepage sections. */
.home-page main>section:not(.hero) {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 56px;
    padding-bottom: 56px;
}

.home-page main>section:not(.hero)+section:not(.hero) {
    border-top: 0;
}

.home-page .categories-grid,
.home-page .featured-grid,
.home-page .pillars-grid {
    margin-top: 24px;
}

.home-page .section-title {
    margin-bottom: 8px;
}

.home-page .section-subtitle {
    margin-bottom: 12px;
}

.home-page .section-link {
    margin-bottom: 16px;
}

@media (max-width: 768px) {
    .home-page main>section:not(.hero) {
        padding-top: 36px;
        padding-bottom: 36px;
    }
}

/* Gratus logo palette â€” shared buttons, controls and interface icons. */
.btn-primary,
.hero .btn-primary,
.page-hero .btn-primary,
.floating-btn-scroll,
.newsletter-form .btn-primary {
    background-color: var(--brand-blue);
    border-color: var(--brand-blue);
    color: var(--color-white);
}

.btn-primary:hover,
.hero .btn-primary:hover,
.page-hero .btn-primary:hover,
.floating-btn-scroll:hover,
.newsletter-form .btn-primary:hover {
    background-color: var(--brand-green);
    border-color: var(--brand-green);
    color: var(--color-white);
}

.btn-secondary,
.hero .btn-secondary,
.page-hero .btn-secondary {
    border-color: var(--brand-blue);
    color: var(--brand-blue);
}

.btn-secondary:hover,
.hero .btn-secondary:hover,
.page-hero .btn-secondary:hover {
    background-color: var(--brand-blue);
    border-color: var(--brand-blue);
    color: var(--color-white);
}

.category-slider-btn {
    border-color: rgba(21, 155, 215, 0.35);
    color: var(--brand-blue);
}

.category-slider-btn:hover:not(:disabled) {
    background-color: var(--brand-green);
    border-color: var(--brand-green);
    color: var(--color-white);
}

.header-search,
.cart-btn,
.mobile-menu-toggle,
.hero-arrow,
.footer-social a,
.section-link,
.btn-link,
.pillar-cta,
.step-number {
    color: var(--brand-blue);
}

.mobile-menu-toggle span {
    background-color: var(--brand-blue);
}

.pillar-highlights li::before,
.about-benefits li::before,
.about-purpose-card>span {
    color: var(--brand-green);
}

.header-nav-link:hover,
.header-nav-link.active,
body>.header .header-nav-link:hover,
body>.header .header-nav-link.active {
    color: var(--brand-blue);
    border-bottom-color: var(--brand-green);
}

.floating-btn-whatsapp {
    background-color: var(--brand-green);
}

.floating-btn-whatsapp:hover {
    background-color: var(--brand-green-dark);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid rgba(21, 155, 215, 0.38);
    outline-offset: 3px;
}

/* Full-size website layout
   Expands the whole site to the browser width while keeping practical gutters
   so content does not touch the screen edge on large displays. */
:root {
    --site-gutter: clamp(24px, 4vw, 72px);
}

.container,
body>.header .container {
    width: 100%;
    max-width: none;
    padding-left: var(--site-gutter);
    padding-right: var(--site-gutter);
}

body>.header .container {
    width: 100%;
    max-width: none;
}

.page-hero,
.hero,
.categories,
.featured,
.smart-living,
.pillars,
.campaigns,
.why-gratus,
.experience,
.testimonials,
.instagram,
.blog,
.newsletter,
.footer {
    width: 100%;
}

.home-hero .hero-content {
    display: none;
}

.home-hero .hero-slide .hero-image::after {
    background: none;
}

@media (min-width: 1280px) {

    .categories-grid:not(.categories-slider),
    .featured-grid,
    .pillars-grid,
    .reasons-grid,
    .testimonials-grid,
    .blog-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .categories .categories-slider>.category-card {
        flex-basis: calc((100% - 72px) / 4);
        width: calc((100% - 72px) / 4);
    }

    .campaigns-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .steps-grid,
    .instagram-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }

    .product-image {
        height: clamp(240px, 18vw, 340px);
    }

    .category-image,
    .blog-image,
    .campaign-image {
        height: clamp(220px, 15vw, 300px);
    }

    .campaign-card-large .campaign-image {
        height: clamp(420px, 31vw, 620px);
    }
}

@media (min-width: 1600px) {

    .hero-content,
    .hero-slide .hero-content {
        max-width: 760px;
    }

    .hero h1 {
        font-size: clamp(56px, 4.4vw, 84px);
    }

    .hero-subtitle {
        font-size: clamp(18px, 1.2vw, 24px);
    }

    .section-title {
        font-size: clamp(34px, 2.4vw, 48px);
    }

    .footer-grid {
        grid-template-columns: minmax(320px, 0.8fr) minmax(0, 2.4fr);
    }
}

@media (max-width: 1024px) {
    :root {
        --site-gutter: 20px;
    }

    body>.header .container {
        width: 100%;
        padding-left: var(--site-gutter);
        padding-right: var(--site-gutter);
    }

    .floating-actions {
        position: fixed;
        right: 18px;
        bottom: 18px;
        padding: 0;
        align-items: flex-end;
        background: transparent;
    }

    .floating-btn {
        width: 48px;
        height: 48px;
    }

    .product-listing-page {
        padding-top: 68px;
    }

    .product-category-panel {
        grid-template-columns: 1fr 46px 46px;
        gap: 12px;
        padding: 0 0 24px;
    }

    .product-category-intro {
        grid-row: 1;
        grid-column: 1 / -1;
        min-height: 150px;
        margin-left: calc(var(--site-gutter) * -1);
        margin-right: calc(var(--site-gutter) * -1);
        padding: 34px var(--site-gutter);
    }

    .product-category-intro::after {
        right: -96px;
    }

    .product-category-row {
        grid-column: 1 / -1;
        grid-row: 2;
        padding: 0 2px 2px;
    }

    .product-category-prev {
        grid-column: 2;
        grid-row: 1;
        justify-self: end;
        align-self: end;
        margin-bottom: 24px;
        z-index: 2;
    }

    .product-category-next {
        grid-column: 3;
        grid-row: 1;
        justify-self: end;
        align-self: end;
        margin-bottom: 24px;
        z-index: 2;
    }

    .listing-layout {
        grid-template-columns: 1fr;
    }

    .listing-filters {
        position: static;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
        align-items: start;
    }

    .filter-group {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: 0;
    }

    .filter-head,
    .filter-reset-block {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .floating-actions {
        position: fixed;
        right: 16px;
        bottom: 16px;
        padding: 0;
        align-items: flex-end;
        background: transparent;
    }

    .floating-btn {
        width: 48px;
        height: 48px;
    }

    .product-category-panel {
        min-height: 0;
    }

    .product-category-intro {
        min-height: 132px;
    }

    .product-category-row {
        gap: 12px;
    }

    .listing-category-card {
        flex-basis: min(74vw, 230px);
    }

    .listing-heading {
        align-items: stretch;
        flex-direction: column;
    }

    .listing-search {
        width: 100%;
    }

    .listing-filters {
        grid-template-columns: 1fr;
    }

    .listing-results {
        grid-template-columns: 1fr;
    }

    .listing-product-features {
        grid-template-columns: 1fr;
    }

    .listing-product-features li {
        min-height: auto;
        padding: 11px 12px;
        border-right: 1px solid #e3ecef;
        border-bottom: 1px solid #e3ecef;
    }

    .listing-product-features li:last-child {
        border-bottom: 1px solid #e3ecef;
    }
}

@media (max-width: 480px) {
    :root {
        --site-gutter: 16px;
    }
}

/* Support and Why Gratus buying guide sections */
.dynamic-product {
    padding: 120px 0 70px;
    background: #fff
}

.product-breadcrumb {
    margin-bottom: 28px;
    color: #64748b;
    font-size: 14px
}

.dynamic-product-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr);
    gap: 70px;
    align-items: center
}

.dynamic-product-media {
    min-height: 520px;
    background: #f5f7f8;
    border-radius: 16px;
    display: grid;
    place-items: center;
    padding: 40px
}

.dynamic-product-media img {
    max-width: 100%;
    max-height: 480px;
    object-fit: contain
}

.dynamic-product-copy h1 {
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.08;
    margin: 14px 0
}

.dynamic-product-copy .model {
    color: #64748b
}

.product-price {
    display: block;
    font-size: 25px;
    margin: 24px 0
}

.dynamic-product-copy ul {
    display: grid;
    gap: 10px;
    margin: 0 0 28px;
    padding-left: 20px
}

.dynamic-description {
    max-width: 900px;
    padding: 70px 0 10px
}

.dynamic-description h2 {
    font-size: 32px
}

@media(max-width:800px) {
    .dynamic-product {
        padding-top: 90px
    }

    .dynamic-product-grid {
        grid-template-columns: 1fr;
        gap: 30px
    }

    .dynamic-product-media {
        min-height: 320px
    }

    .dynamic-product-media img {
        max-height: 290px
    }
}

/* Product detail page */
.product-detail-page {
    padding: 104px 0 80px;
    background: linear-gradient(180deg, #f7fafb 0%, #ffffff 42%, #f6f8f9 100%);
}

.product-detail-page .container {
    max-width: none;
}

.product-detail-page .product-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    color: #6c818a;
    font-size: 13px;
}

.product-detail-page .product-breadcrumb a {
    color: #123544;
    font-weight: 700;
}

.product-detail-hero {
    grid-template-columns: minmax(0, 0.98fr) minmax(420px, 1.02fr);
    gap: clamp(34px, 5vw, 72px);
    align-items: start;
}

.product-detail-media {
    position: sticky;
    top: 96px;
    min-height: clamp(460px, 43vw, 660px);
    padding: clamp(28px, 4vw, 58px);
    border: 1px solid #dce7eb;
    border-radius: 8px;
    background:
        radial-gradient(circle at 72% 18%, rgba(21, 155, 215, 0.16), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #eef5f7 100%);
    box-shadow: 0 18px 46px rgba(18, 53, 68, 0.09);
}

.product-main-image-wrap {
    display: grid;
    place-items: center;
    min-height: clamp(360px, 34vw, 540px);
}

.product-detail-media [data-product-main-image] {
    width: 100%;
    max-height: clamp(380px, 36vw, 560px);
    object-fit: contain;
    filter: drop-shadow(0 18px 28px rgba(18, 53, 68, 0.16));
}

.product-media-rail {
    position: absolute;
    left: 20px;
    top: 20px;
    display: grid;
    gap: 9px;
}

.product-media-rail span {
    width: 8px;
    height: 28px;
    border-radius: 999px;
    background: #d6e5ea;
}

.product-media-rail span.active {
    background: var(--brand-blue);
}

.product-thumb-row {
    display: flex;
    gap: 10px;
    margin-top: 22px;
    padding: 2px 2px 4px;
    overflow-x: auto;
    scrollbar-width: thin;
}

.product-thumb-row button {
    width: 82px;
    height: 72px;
    flex: 0 0 82px;
    padding: 7px;
    border: 1px solid #dce7eb;
    border-radius: 8px;
    background: #ffffff;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.product-thumb-row button.active,
.product-thumb-row button:hover {
    border-color: var(--brand-blue);
    box-shadow: 0 8px 20px rgba(21, 155, 215, 0.16);
    transform: translateY(-1px);
}

.product-thumb-row img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.product-detail-copy {
    padding-top: 18px;
}

.product-detail-copy .listing-product-category {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--brand-blue);
    font-size: 14px;
    font-weight: 800;
}

.product-detail-copy h1 {
    max-width: 760px;
    margin: 0 0 12px;
    color: #123544;
    font-size: clamp(38px, 4.4vw, 66px);
    line-height: 1.02;
    letter-spacing: 0;
}

.product-detail-copy .model {
    margin: 0 0 18px;
    color: #657a83;
    font-size: 16px;
}

.product-detail-lead {
    max-width: 680px;
    margin: 0 0 24px;
    color: #526973;
    font-size: 17px;
    line-height: 1.7;
}

.product-spec-chips {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 0 0 26px;
    padding: 0;
    list-style: none;
}

.product-spec-chips li {
    min-height: 60px;
    display: flex;
    align-items: center;
    padding: 13px 15px;
    border: 1px solid #dce7eb;
    border-radius: 8px;
    background: #ffffff;
    color: #123544;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(18, 53, 68, 0.04);
}

.product-enquiry-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    margin: 0 0 26px;
    padding: 26px;
    border: 1px solid #dce7eb;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(18, 53, 68, 0.08);
}

.product-enquiry-panel .product-price {
    margin: 0 0 8px;
    color: var(--brand-green);
    font-size: clamp(24px, 2.2vw, 34px);
    line-height: 1.1;
}

.product-enquiry-panel p {
    max-width: 420px;
    margin: 0;
    color: #60757e;
    font-size: 14px;
    line-height: 1.55;
}

.product-enquiry-panel .btn {
    min-width: 190px;
    min-height: 52px;
    border-radius: 8px;
    font-weight: 800;
}

.product-service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.product-service-grid div {
    min-height: 116px;
    padding: 18px;
    border: 1px solid #dce7eb;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.72);
}

.product-service-grid strong,
.product-service-grid span {
    display: block;
}

.product-service-grid strong {
    margin-bottom: 8px;
    color: #123544;
    font-size: 13px;
    line-height: 1.35;
}

.product-service-grid span {
    color: #71858d;
    font-size: 12px;
    line-height: 1.45;
}

.product-detail-info {
    max-width: none;
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
    gap: clamp(32px, 5vw, 72px);
    margin-top: 42px;
    padding: clamp(30px, 4vw, 46px);
    border: 1px solid #dce7eb;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(18, 53, 68, 0.06);
}

.product-overview h2,
.product-spec-table h2 {
    margin: 0 0 18px;
    color: #123544;
    font-size: clamp(24px, 2vw, 32px);
}

.product-overview p {
    margin: 0;
    color: #526973;
    font-size: 15px;
    line-height: 1.75;
}

.product-spec-table dl {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    margin: 0;
    overflow: hidden;
    border: 1px solid #e1ebef;
    border-radius: 8px;
}

.product-spec-table div {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 12px;
    padding: 14px 16px;
    border-bottom: 1px solid #e1ebef;
}

.product-spec-table div:nth-last-child(-n+2) {
    border-bottom: 0;
}

.product-spec-table dt {
    color: #71858d;
    font-weight: 700;
}

.product-spec-table dd {
    margin: 0;
    color: #123544;
    font-weight: 800;
}

@media (max-width: 1180px) {

    .product-detail-hero,
    .product-detail-info {
        grid-template-columns: 1fr;
    }

    .product-detail-media {
        position: relative;
        top: auto;
    }
}

@media (max-width: 760px) {
    .product-detail-page {
        padding-top: 88px;
    }

    .product-detail-copy h1 {
        font-size: 34px;
    }

    .product-detail-media {
        min-height: 330px;
        padding: 24px;
    }

    .product-detail-media img {
        max-height: 290px;
    }

    .product-spec-chips,
    .product-service-grid,
    .product-spec-table dl {
        grid-template-columns: 1fr;
    }

    .product-enquiry-panel {
        grid-template-columns: 1fr;
        padding: 22px;
    }

    .product-enquiry-panel .btn {
        width: 100%;
    }

    .product-spec-table div,
    .product-spec-table div:nth-last-child(-n+2) {
        grid-template-columns: 1fr;
        gap: 5px;
        border-bottom: 1px solid #e1ebef;
    }

    .product-spec-table div:last-child {
        border-bottom: 0;
    }

    .product-detail-info {
        padding: 24px;
    }
}

/* Product detail final layout guard: compact Gratus catalogue style. */
.product-detail-page {
    padding: 96px 0 74px;
    background: linear-gradient(180deg, #f4f8fb 0%, #ffffff 46%, #f6f8f9 100%);
}

.product-detail-page .product-breadcrumb {
    width: fit-content;
    margin-bottom: 18px;
    padding: 9px 12px;
    border: 1px solid #dce7eb;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.78);
}

.product-detail-hero {
    grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1.08fr);
    gap: clamp(24px, 4vw, 46px);
    align-items: stretch;
}

.product-detail-media {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    min-height: 0;
    padding: clamp(22px, 3vw, 34px);
    background:
        radial-gradient(circle at 82% 12%, rgba(21, 155, 215, 0.12), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #eef5f7 100%);
}

.product-main-image-wrap {
    min-height: 0;
    aspect-ratio: 1.08 / 1;
    max-height: 560px;
    overflow: hidden;
}

.product-detail-media [data-product-main-image] {
    display: block;
    max-height: min(520px, 48vw);
    margin: 0 auto;
    transform: scale(1.08);
    transform-origin: center center;
}

.product-detail-copy {
    display: flex;
    flex-direction: column;
    padding: clamp(24px, 3vw, 34px);
    border: 1px solid #dce7eb;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 18px 46px rgba(18, 53, 68, 0.08);
}

.product-detail-copy .listing-product-category {
    margin-bottom: 12px;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.product-detail-copy h1 {
    max-width: 820px;
    font-size: clamp(29px, 2.75vw, 44px);
    line-height: 1.1;
}

.product-detail-copy .model {
    margin-bottom: 14px;
    font-weight: 700;
}

.product-detail-lead {
    max-width: 760px;
    margin-bottom: 22px;
    font-size: 16px;
    line-height: 1.65;
}

.product-spec-chips {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 22px;
}

.product-spec-chips li {
    min-height: 50px;
    padding: 12px 14px;
    background: #f8fbfc;
}

.product-enquiry-panel {
    margin-bottom: 18px;
    border-color: rgba(21, 155, 215, 0.18);
    background: linear-gradient(135deg, #ffffff 0%, #f3faf7 100%);
}

.product-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-service-grid div {
    min-height: 92px;
    background: #f8fbfc;
}

.product-detail-info {
    margin-top: 28px;
    gap: clamp(24px, 4vw, 48px);
}

.related-products-section {
    margin-top: 34px;
    padding: clamp(28px, 4vw, 42px);
    border: 1px solid #dce7eb;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(18, 53, 68, 0.06);
    overflow: hidden;
}

.related-products-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
}

.related-products-heading h2 {
    margin: 0;
    color: #123544;
    font-size: clamp(26px, 3vw, 42px);
    line-height: 1.08;
}

.related-products-heading a {
    color: var(--brand-blue);
    font-weight: 800;
}

.related-products-slider {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 2px 2px 12px;
}

.related-products-slider::-webkit-scrollbar {
    display: none;
}

.related-product-card {
    flex: 0 0 clamp(215px, 16vw, 255px);
    width: clamp(215px, 16vw, 255px);
    min-width: 215px;
    height: 292px;
    scroll-snap-align: start;
    border: 1px solid #dce7eb;
    border-radius: 8px;
    background: #ffffff;
    overflow: hidden;
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.related-product-card:hover {
    transform: translateY(-3px);
    border-color: rgba(21, 155, 215, 0.28);
    box-shadow: 0 16px 34px rgba(18, 53, 68, 0.12);
}

.related-product-card a {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
}

.related-product-image {
    flex: 0 0 220px;
    height: 220px;
    min-height: 0;
    display: grid;
    place-items: center;
    padding: 12px;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #eef5f7 100%);
}

.related-product-image img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.related-product-body {
    flex: 1 1 auto;
    min-height: 72px;
    display: flex;
    align-items: center;
    padding: 12px 14px;
    background: #ffffff;
}

.related-product-body h3 {
    margin: 0;
    color: #123544;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 800;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

@media (max-width: 1180px) {
    .product-detail-hero {
        grid-template-columns: 1fr;
    }

    .product-main-image-wrap {
        aspect-ratio: 1.35 / 1;
        max-height: 430px;
    }
}

@media (max-width: 760px) {
    .product-detail-page {
        padding-top: 84px;
    }

    .product-detail-page .product-breadcrumb {
        width: 100%;
    }

    .product-detail-media,
    .product-detail-copy {
        padding: 20px;
    }

    .product-main-image-wrap {
        aspect-ratio: 1 / 0.9;
        max-height: 330px;
    }

    .product-detail-media [data-product-main-image] {
        max-height: 300px;
        transform: scale(1.04);
    }

    .product-detail-copy h1 {
        font-size: clamp(25px, 7vw, 30px);
        line-height: 1.12;
    }

    .product-spec-chips,
    .product-service-grid {
        grid-template-columns: 1fr;
    }

    .related-products-section {
        padding: 22px 18px;
    }

    .related-products-heading {
        align-items: start;
        flex-direction: column;
    }

    .related-product-card {
        flex-basis: min(70vw, 235px);
        width: min(70vw, 235px);
        min-width: min(70vw, 235px);
        height: 270px;
    }

    .related-product-image {
        flex-basis: 198px;
        height: 198px;
    }
}

/* Professional dynamic product detail */
.dynamic-product.product-detail-page {
    padding: 98px 0 86px;
    background: #f7f9fb;
}

.dynamic-product .product-breadcrumb {
    margin-bottom: 22px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #71808d;
    box-shadow: none;
    font-size: 13px;
}

.dynamic-product .product-breadcrumb a {
    color: #344b5e;
}

.dynamic-product .product-breadcrumb a:hover {
    color: var(--brand-blue);
}

.dynamic-product .product-detail-hero {
    grid-template-columns: minmax(440px, 1.08fr) minmax(430px, .92fr);
    gap: clamp(44px, 5vw, 78px);
    align-items: start;
}

.dynamic-product .product-detail-media {
    position: sticky;
    top: 94px;
    min-height: 620px;
    padding: 24px 26px 26px 112px;
    border: 1px solid #e0e7ed;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 12px 36px rgba(18, 53, 68, .06);
}

.dynamic-product .product-main-image-wrap {
    min-height: 540px;
    aspect-ratio: auto;
    max-height: none;
    overflow: visible;
}

.dynamic-product .product-detail-media [data-product-main-image] {
    width: 100%;
    max-width: 610px;
    max-height: 540px;
    object-fit: contain;
    transform: none;
    filter: drop-shadow(0 22px 22px rgba(18, 53, 68, .16));
}

.dynamic-product .product-media-rail {
    display: none;
}

.dynamic-product .product-thumb-row {
    position: absolute;
    top: 24px;
    bottom: 24px;
    left: 22px;
    width: 68px;
    margin: 0;
    padding: 0 5px 0 0;
    flex-direction: column;
    overflow-x: hidden;
    overflow-y: auto;
}

.dynamic-product .product-thumb-row button {
    width: 62px;
    height: 68px;
    flex: 0 0 68px;
    border-radius: 10px;
    box-shadow: none;
}

.dynamic-product .product-thumb-row button.active,
.dynamic-product .product-thumb-row button:hover {
    border-color: var(--brand-blue);
    box-shadow: 0 0 0 1px var(--brand-blue);
    transform: none;
}

.dynamic-product .product-detail-copy {
    padding: 4px 0 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.dynamic-product .product-detail-copy .listing-product-category {
    margin-bottom: 13px;
    color: #087fc0;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .11em;
}

.dynamic-product .product-detail-copy h1 {
    margin-bottom: 12px;
    color: #0b2340;
    font-size: clamp(34px, 3.2vw, 52px);
    line-height: 1.06;
    letter-spacing: -.04em;
}

.dynamic-product .product-detail-copy .model {
    margin-bottom: 22px;
    color: #627485;
    font-size: 15px;
    font-weight: 600;
}

.dynamic-product .product-detail-lead {
    margin-bottom: 22px;
    color: #506678;
    font-size: 15px;
    line-height: 1.65;
}

.dynamic-product .product-spec-chips {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    margin-bottom: 24px;
    padding: 18px 0;
    border-top: 1px solid #dfe7ed;
    border-bottom: 1px solid #dfe7ed;
}

.dynamic-product .product-spec-chips li {
    min-height: 42px;
    gap: 10px;
    padding: 8px 12px 8px 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #17344e;
    box-shadow: none;
    font-size: 13px;
    font-weight: 700;
}

.dynamic-product .product-spec-chips li svg {
    flex: 0 0 auto;
    color: var(--brand-blue);
}

.dynamic-product .product-enquiry-panel {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 30px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.dynamic-product .product-enquiry-panel .product-price {
    display: block;
    margin-bottom: 7px;
    color: #0b2340;
    font-size: 28px;
    letter-spacing: -.02em;
}

.dynamic-product .product-enquiry-panel p {
    color: #627485;
}

.dynamic-product .product-enquiry-panel .btn {
    width: 100%;
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 10px;
    box-shadow: 0 12px 26px rgba(21, 155, 215, .18);
}

.dynamic-product .product-enquiry-panel .btn svg {
    transition: transform .2s ease;
}

.dynamic-product .product-enquiry-panel .btn:hover svg {
    transform: translateX(4px);
}

.dynamic-product .product-service-grid {
    grid-column: 1 / -1;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    margin-top: 26px;
    padding: 14px 0;
    border-top: 1px solid #dfe7ed;
    border-bottom: 1px solid #dfe7ed;
}

.dynamic-product .product-service-grid div {
    min-height: 70px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 10px 22px;
    border: 0;
    border-right: 1px solid #dfe7ed;
    border-radius: 0;
    background: transparent;
}

.dynamic-product .product-service-grid div:last-child {
    border-right: 0;
}

.dynamic-product .product-service-grid svg {
    flex: 0 0 auto;
    color: var(--brand-blue);
}

.dynamic-product .product-service-grid strong,
.dynamic-product .product-service-grid small {
    display: block;
}

.dynamic-product .product-service-grid strong {
    margin: 0 0 4px;
    color: #16324b;
    font-size: 13px;
}

.dynamic-product .product-service-grid small {
    color: #768793;
    font-size: 11px;
    line-height: 1.35;
}

.dynamic-product .product-detail-info {
    grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
    gap: clamp(42px, 6vw, 86px);
    margin-top: 30px;
    padding: 42px 0;
    border: 0;
    border-bottom: 1px solid #dfe7ed;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.dynamic-product .section-kicker {
    color: var(--brand-blue);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.dynamic-product .product-overview h2,
.dynamic-product .product-spec-table h2 {
    margin-top: 8px;
    color: #0b2340;
    font-size: 26px;
    letter-spacing: -.025em;
}

.dynamic-product .product-overview p {
    color: #53697a;
    line-height: 1.75;
}

.dynamic-product .product-spec-table dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border: 0;
    border-radius: 0;
}

.dynamic-product .product-spec-table div {
    padding: 13px 0;
    border-bottom: 1px solid #dfe7ed;
}

.dynamic-product .product-spec-table div:nth-last-child(-n+2) {
    border-bottom: 1px solid #dfe7ed;
}

.dynamic-product .product-spec-table dt {
    font-size: 12px;
}

.dynamic-product .product-spec-table dd {
    font-size: 13px;
}

.dynamic-product .related-products-section {
    margin-top: 38px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.dynamic-product .related-products-heading h2 {
    color: #0b2340;
    font-size: 30px;
}

.dynamic-product .related-product-card {
    border-radius: 14px;
    box-shadow: 0 7px 22px rgba(18, 53, 68, .05);
}

@media (min-width: 1181px) {
    .dynamic-product .product-detail-hero {
        position: relative;
        padding-bottom: 126px;
    }

    .dynamic-product .product-service-grid {
        position: absolute;
        right: 0;
        bottom: 0;
        left: 0;
    }
}

@media (max-width: 1180px) {
    .dynamic-product .product-detail-hero {
        grid-template-columns: 1fr;
    }

    .dynamic-product .product-detail-media {
        position: relative;
        top: auto;
        min-height: 520px;
    }

    .dynamic-product .product-service-grid {
        margin-top: 0;
    }
}

@media (max-width: 760px) {
    .dynamic-product.product-detail-page {
        padding-top: 86px;
    }

    .dynamic-product .product-detail-media {
        min-height: 390px;
        padding: 18px;
    }

    .dynamic-product .product-main-image-wrap {
        min-height: 340px;
    }

    .dynamic-product .product-detail-media [data-product-main-image] {
        max-height: 340px;
        transform: none;
    }

    .dynamic-product .product-thumb-row {
        position: static;
        width: 100%;
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
    }

    .dynamic-product .product-detail-copy h1 {
        font-size: 34px;
    }

    .dynamic-product .product-spec-chips {
        grid-template-columns: 1fr;
    }

    .dynamic-product .product-service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .dynamic-product .product-service-grid div:nth-child(2) {
        border-right: 0;
    }

    .dynamic-product .product-service-grid div {
        border-bottom: 1px solid #dfe7ed;
    }

    .dynamic-product .product-service-grid div:nth-last-child(-n+2) {
        border-bottom: 0;
    }

    .dynamic-product .product-detail-info {
        grid-template-columns: 1fr;
        padding: 32px 0;
    }

    .dynamic-product .product-spec-table dl {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .dynamic-product .product-service-grid {
        grid-template-columns: 1fr;
    }

    .dynamic-product .product-service-grid div,
    .dynamic-product .product-service-grid div:nth-child(2),
    .dynamic-product .product-service-grid div:nth-last-child(-n+2) {
        border-right: 0;
        border-bottom: 1px solid #dfe7ed;
    }

    .dynamic-product .product-service-grid div:last-child {
        border-bottom: 0;
    }
}

.support-band {
    padding: 94px 0;
    background: #103946;
}

.support-band-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(480px, 1fr);
    gap: clamp(48px, 7vw, 112px);
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
}

.support-band .section-kicker {
    color: var(--brand-green);
}

.support-band h2 {
    max-width: 650px;
    margin: 0 0 16px;
    color: #fff;
    font-size: clamp(34px, 3.2vw, 48px);
    line-height: 1.12;
    font-weight: 700;
}

.support-band-copy p {
    max-width: 560px;
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 17px;
    line-height: 1.55;
}

.support-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.support-btn {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 22px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.support-btn svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
}

.support-call {
    border: 1px solid var(--brand-blue);
    background: var(--brand-blue);
    color: #fff;
}

.support-whatsapp {
    border: 1px solid rgba(255, 255, 255, 0.32);
    background: transparent;
    color: #fff;
}

.support-btn:hover {
    transform: translateY(-2px);
}

.support-call:hover {
    background: #0c85bf;
    border-color: #0c85bf;
}

.support-whatsapp:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.48);
}

.support-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.support-card {
    min-height: 156px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    text-decoration: none;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.support-card:hover {
    transform: translateY(-3px);
    border-color: rgba(137, 207, 57, 0.55);
    background: rgba(255, 255, 255, 0.09);
}

.support-card-icon {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    color: var(--brand-green);
}

.support-card-icon svg {
    width: 23px;
    height: 23px;
}

.support-card h3 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 16px;
    line-height: 1.35;
}

.support-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    line-height: 1.55;
}

.gulf-guide {
    padding: 96px 0;
    background: var(--color-white);
}

.gulf-guide-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.92fr);
    gap: clamp(48px, 7vw, 112px);
    align-items: start;
    max-width: 1280px;
    margin: 0 auto;
}

.section-kicker {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--brand-blue);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.gulf-guide h2 {
    max-width: 620px;
    margin: 0 0 40px;
    color: #123544;
    font-size: clamp(32px, 3.1vw, 46px);
    line-height: 1.12;
    font-weight: 700;
}

.gulf-benefits {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 56px;
}

.gulf-benefit {
    min-width: 0;
}

.gulf-benefit-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(21, 155, 215, 0.1);
    color: var(--brand-blue);
}

.gulf-benefit-icon svg {
    width: 22px;
    height: 22px;
}

.gulf-benefit h3 {
    margin: 0 0 8px;
    color: #123544;
    font-size: 16px;
    line-height: 1.35;
}

.gulf-benefit p {
    max-width: 340px;
    margin: 0;
    color: #6d7f84;
    font-size: 14px;
    line-height: 1.65;
}

.buying-guide-card {
    padding: clamp(28px, 3vw, 40px);
    border: 1px solid #d9e5ea;
    border-radius: 16px;
    background: #f5f9fa;
    box-shadow: 0 12px 28px rgba(18, 53, 68, 0.04);
}

.buying-guide-card h3 {
    margin: 0 0 28px;
    color: #123544;
    font-size: clamp(22px, 2vw, 28px);
    line-height: 1.24;
}

.guide-list article {
    padding: 18px 0;
    border-top: 1px solid #d9e5ea;
}

.guide-list article:first-child {
    border-top: 0;
    padding-top: 0;
}

.guide-list h4 {
    margin: 0 0 6px;
    color: #123544;
    font-size: 14px;
    line-height: 1.45;
}

.guide-list p {
    margin: 0;
    color: #6d7f84;
    font-size: 14px;
    line-height: 1.55;
}

.buying-guide-card .btn {
    margin-top: 22px;
    border-radius: 999px;
    background: #123544;
    border-color: #123544;
    color: #fff;
}

.buying-guide-card .btn:hover {
    background: var(--brand-blue);
    border-color: var(--brand-blue);
}

@media (max-width: 960px) {
    .why-video {
        min-height: 560px;
    }

    .support-band-grid {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .gulf-guide-grid {
        grid-template-columns: 1fr;
    }

    .buying-guide-card {
        max-width: none;
    }
}

@media (max-width: 640px) {
    .why-video {
        min-height: 520px;
        display: flex;
        align-items: flex-end;
        padding: 64px 0 54px;
        background: #123544;
    }

    .why-video .container {
        width: 100%;
        padding-left: var(--site-gutter);
        padding-right: var(--site-gutter);
        position: relative;
        z-index: 2;
    }

    .why-video-frame {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        min-height: 100%;
        aspect-ratio: initial;
        overflow: hidden;
        border: 0;
        border-radius: 0;
        background:
            linear-gradient(135deg, rgba(21, 155, 215, 0.28), rgba(120, 190, 32, 0.18)),
            #071b32;
        box-shadow: none;
    }

    .why-video-frame.is-portrait {
        aspect-ratio: initial;
        max-height: none;
    }

    .why-video-frame video,
    .why-video-frame img {
        width: 100%;
        height: 100%;
        min-height: 100%;
        max-height: none;
        object-fit: cover;
        object-position: center center;
        background: #071b32;
    }

    .why-video-shade {
        position: absolute;
        inset: 0;
        height: 100%;
        min-height: 100%;
        display: block;
        background:
            linear-gradient(180deg, rgba(18, 53, 68, 0.2) 0%, rgba(18, 53, 68, 0.58) 42%, rgba(18, 53, 68, 0.94) 100%),
            linear-gradient(135deg, rgba(21, 155, 215, 0.35), rgba(120, 190, 32, 0.16));
    }

    .why-video-frame.is-portrait+.why-video-shade {
        aspect-ratio: initial;
        max-height: none;
    }

    .why-video-copy h2 {
        max-width: 340px;
        margin-bottom: 12px;
        font-size: 34px;
        line-height: 1.08;
        color: #ffffff;
    }

    .why-video-copy p {
        max-width: 340px;
        font-size: 15px;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.82);
    }

    .why-video-copy {
        margin: 0;
        padding: 0;
        background: transparent;
    }

    .why-video-placeholder {
        aspect-ratio: auto;
        min-height: 100%;
        padding: 24px;
    }

    .why-video-placeholder strong {
        max-width: 230px;
        font-size: 14px;
    }

    .support-band {
        padding: 58px 0;
    }

    .support-card-grid {
        grid-template-columns: 1fr;
    }

    .support-card {
        min-height: auto;
    }

    .support-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .support-btn {
        justify-content: center;
        width: 100%;
    }

    .gulf-guide {
        padding: 56px 0;
    }

    .gulf-benefits {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .gulf-guide h2 {
        margin-bottom: 30px;
    }
}

/* Desktop banner fit guard: keep uploaded banners full-bleed across the viewport. */
@media (min-width: 1025px) {

    body>main>.hero.home-hero:first-child,
    body>main>.hero.home-hero[style]:first-child {
        width: 100vw;
        max-width: 100vw;
        height: 100vh !important;
        height: 100svh !important;
        height: 100dvh !important;
        min-height: 0 !important;
        max-height: none !important;
        aspect-ratio: auto;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        background: #050607;
    }

    .home-hero .hero-slider,
    .home-hero .hero-slide,
    .home-hero .hero-image {
        height: 100%;
        background: #050607;
    }

    .home-hero .hero-slide .hero-image img,
    .home-hero .hero-slide .hero-image video {
        width: 100%;
        height: 100%;
        object-fit: cover !important;
        object-position: center center;
    }

    .products-managed-banner {
        width: 100vw;
        max-width: 100vw;
        min-height: 0;
        height: clamp(420px, 36.4583vw, 700px);
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        background: #050607;
    }

    .products-managed-banner-media img,
    .products-managed-banner-media video {
        object-fit: cover;
        object-position: center center;
        background: #050607;
    }
}

/* Desktop-only category carousel in the Products mega menu. */
.reference-products-carousel {
    position: relative;
    display: flex;
    width: min(100% - 40px, 1820px);
    margin-inline: auto;
    align-items: center;
    gap: 16px
}

.reference-products-grid {
    display: flex;
    width: 100%;
    gap: 24px;
    overflow-x: auto;
    padding-block: 40px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    overscroll-behavior-x: contain
}

.reference-products-grid::-webkit-scrollbar {
    display: none
}

.reference-category {
    flex: 0 0 clamp(145px, 10.5vw, 190px);
    min-width: 0;
    scroll-snap-align: start
}

.reference-category strong {
    font-size: 14px
}

.reference-category small {
    font-size: 12px
}

.reference-products-arrow {
    display: grid;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid #d5dfe3;
    border-radius: 50%;
    background: #fff;
    color: #17232a;
    box-shadow: 0 8px 24px rgba(15, 35, 45, .1);
    cursor: pointer;
    transition: background .25s, color .25s, opacity .25s
}

.reference-products-arrow:hover:not(:disabled) {
    background: #17232a;
    color: #fff
}

.reference-products-arrow:disabled {
    opacity: .25;
    cursor: default
}

.reference-products-arrow svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

@media(max-width:1024px) {
    .reference-products {
        display: none !important
    }

    .reference-products-carousel {
        display: none
    }
}

/* Region selector and duplicate Contact pill are intentionally removed. */
.reference-header .reference-region,
.reference-header .reference-contact {
    display: none !important
}

/* CMS homepage hero content and slide motion. */
.home-hero .hero-slide>.container {
    position: absolute;
    z-index: 3;
    inset: 0;
    display: flex;
    align-items: center;
    pointer-events: none;
}

.home-hero .hero-content {
    display: block !important;
    width: min(650px, 55vw);
    max-width: 650px;
    padding: 110px 0 70px;
    color: #fff;
    opacity: 0;
    transform: translateY(44px);
}

.home-hero .hero-slide .hero-image::after {
    z-index: 1;
    background: linear-gradient(90deg, rgba(4, 20, 29, .7) 0%, rgba(4, 20, 29, .42) 32%, rgba(4, 20, 29, .08) 58%, transparent 76%) !important;
}

.home-hero .hero-content h1 {
    max-width: 13ch;
    margin: 0 0 18px;
    color: #fff;
    font-size: clamp(34px, 3.6vw, 56px);
    line-height: 1.04;
    letter-spacing: -.035em;
    text-shadow: 0 4px 28px rgba(0, 0, 0, .28);
    overflow-wrap: break-word;
    text-wrap: balance;
}

.home-hero .hero-content .hero-subtitle {
    max-width: 570px;
    margin: 0 0 30px;
    color: rgba(255, 255, 255, .9);
    font-size: clamp(18px, 1.35vw, 23px);
    line-height: 1.55;
    opacity: 0;
    transform: translateY(24px);
}

.home-hero .hero-content .hero-actions {
    pointer-events: auto;
    opacity: 0;
    transform: translateY(22px);
}

.home-hero .hero-slide.active .hero-content {
    animation: cmsHeroCopyIn .9s cubic-bezier(.2, .75, .2, 1) .18s both;
}

.home-hero .hero-slide.active .hero-subtitle {
    animation: cmsHeroItemIn .75s cubic-bezier(.2, .75, .2, 1) .46s both;
}

.home-hero .hero-slide.active .hero-actions {
    animation: cmsHeroItemIn .75s cubic-bezier(.2, .75, .2, 1) .62s both;
}

.home-hero .hero-slide.active .hero-image img,
.home-hero .hero-slide.active .hero-image video {
    animation: cmsHeroMediaIn 5.2s cubic-bezier(.2, .7, .2, 1) both;
}

@keyframes cmsHeroCopyIn {
    from {
        opacity: 0;
        transform: translateY(44px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes cmsHeroItemIn {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes cmsHeroMediaIn {
    from {
        transform: scale(1.045);
    }

    to {
        transform: scale(1);
    }
}

@media (max-width: 1024px) {
    .home-hero .hero-slide>.container {
        align-items: flex-end;
    }

    .home-hero .hero-content {
        display: block !important;
        width: min(100%, 620px);
        padding: 0 0 54px;
    }

    .home-hero .hero-content h1 {
        max-width: 15ch;
        font-size: clamp(30px, 5.5vw, 44px);
    }

    .home-hero .hero-content .hero-subtitle {
        font-size: clamp(15px, 2vw, 19px);
    }

    .home-hero .hero-slide .hero-image::after {
        background: linear-gradient(0deg, rgba(4, 20, 29, .82) 0%, rgba(4, 20, 29, .34) 52%, transparent 82%) !important;
    }
}

@media (max-width: 640px) {
    .home-hero .hero-content {
        padding-bottom: 34px;
    }

    .home-hero .hero-content h1 {
        max-width: 100%;
        margin-bottom: 10px;
        font-size: clamp(24px, 7vw, 32px);
    }

    .home-hero .hero-content .hero-subtitle {
        margin-bottom: 16px;
        font-size: 14px;
        line-height: 1.4;
    }

    .home-hero .hero-content .hero-actions {
        display: none;
    }

    .home-hero .hero-slider-dots {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {

    .home-hero .hero-slide.active .hero-content,
    .home-hero .hero-slide.active .hero-subtitle,
    .home-hero .hero-slide.active .hero-actions,
    .home-hero .hero-slide.active .hero-image img,
    .home-hero .hero-slide.active .hero-image video {
        animation: none !important;
        opacity: 1;
        transform: none;
    }
}

/* Premium homepage featured-product cards */
.home-page .featured {
    background: #f5f7f7
}

.home-page .featured .container {
    position: relative
}

.home-page .featured-slider-controls {
    position: absolute;
    top: 2px;
    right: 20px;
    margin: 0
}

.home-page .featured-slider-btn {
    width: 42px;
    height: 42px;
    border-color: #d8e1e4;
    background: transparent;
    color: #193b4f;
    box-shadow: none
}

.home-page .featured-slider-btn:hover:not(:disabled) {
    border-color: #173c52;
    background: #173c52;
    box-shadow: none
}

.home-page .featured-grid.featured-slider {
    gap: 18px;
    padding: 12px 4px 30px
}

.home-page .featured-slider>.product-card {
    flex-basis: calc((100% - 36px)/3);
    width: calc((100% - 36px)/3)
}

.home-page .product-card {
    display: flex;
    flex-direction: column;
    border: 1px solid #e0e6e8;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 3px 14px rgba(15, 37, 48, .035);
    transition: transform .4s cubic-bezier(.22, 1, .36, 1), box-shadow .4s, border-color .4s
}

.home-page .product-card:hover {
    border-color: #cbd7db;
    box-shadow: 0 18px 42px rgba(15, 37, 48, .1);
    transform: translateY(-7px)
}

.home-page .product-link {
    display: flex;
    min-height: 0;
    flex: 1 1 auto;
    flex-direction: column;
    color: inherit
}

.home-page .product-image {
    position: relative;
    height: 205px;
    border-bottom: 1px solid #edf1f2;
    background: #fff
}

.home-page .product-image img {
    width: 100%;
    height: 100%;
    padding: 12px 18px;
    object-fit: contain;
    object-position: center;
    transition: transform .65s cubic-bezier(.22, 1, .36, 1)
}

.home-page .product-card:hover .product-image img {
    transform: scale(1.055)
}

.featured-product-badge {
    position: absolute;
    z-index: 1;
    top: 18px;
    left: 18px;
    padding: 7px 10px;
    border-radius: 999px;
    background: #fff;
    color: #527080;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
    box-shadow: 0 3px 12px rgba(20, 45, 58, .08)
}

.home-page .product-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 18px 20px 14px
}

.featured-product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 10px
}

.home-page .product-category {
    margin: 0;
    color: #159bd7;
    font-size: 10px;
    letter-spacing: .13em
}

.featured-product-model {
    overflow: hidden;
    color: #8a999f;
    font-size: 10px;
    letter-spacing: .05em;
    text-overflow: ellipsis;
    white-space: nowrap
}

.home-page .product-content h3 {
    display: -webkit-box;
    min-height: 46px;
    margin: 0 0 8px;
    overflow: hidden;
    color: #142d3b;
    font-size: 21px;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -.025em;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2
}

.home-page .product-content p {
    display: -webkit-box;
    min-height: 42px;
    margin: 0 0 14px;
    overflow: hidden;
    color: #718087;
    font-size: 13px;
    line-height: 1.65;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2
}

.featured-product-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid #e7edef;
    color: #173c52;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase
}

.featured-product-cta svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform .3s
}

.home-page .product-card:hover .featured-product-cta svg {
    transform: translateX(5px)
}

.featured-product-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: auto 20px 20px;
    padding-top: 12px;
    border-top: 1px solid #e7edef;
}

.featured-product-actions .featured-product-cta {
    display: flex;
    min-height: 38px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0;
    padding: 10px 12px;
    border: 1px solid #d7e4e9;
    border-radius: 4px;
    color: #173c52;
    line-height: 1;
}

.featured-cta-desktop {
    display: none;
}

.featured-enquiry-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    margin: 0;
    padding: 11px 16px;
    border: 1px solid #159bd7;
    border-radius: 4px;
    background: #159bd7;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    transition: background .25s ease, border-color .25s ease, transform .25s ease;
}

.featured-enquiry-btn:hover {
    border-color: #173c52;
    background: #173c52;
    color: #fff;
    transform: translateY(-1px);
}

@media(max-width:900px) {
    .home-page .featured-slider>.product-card {
        flex-basis: calc((100% - 18px)/2);
        width: calc((100% - 18px)/2)
    }

    .home-page .product-image {
        height: 250px
    }
}

@media(max-width:600px) {
    .home-page .featured-slider-controls {
        position: static;
        margin: 0 0 8px
    }

    .home-page .featured-slider>.product-card {
        flex-basis: 86%;
        width: 86%
    }

    .home-page .product-image {
        height: 235px
    }

    .home-page .product-content {
        padding: 21px
    }

    .home-page .product-content h3 {
        font-size: 19px
    }
}

@media(max-width:600px) {
    .product-mobile-cta {
        grid-template-columns: 1fr 1fr;
        padding: 8px max(8px, env(safe-area-inset-right)) calc(8px + env(safe-area-inset-bottom)) max(8px, env(safe-area-inset-left))
    }

    .product-mobile-cta a {
        display: grid;
        min-height: 44px;
        place-items: center;
        line-height: 1.2
    }
}

/* Product-detail refinement: resilient long names, gallery media and mobile layout. */
.dynamic-product .product-detail-copy {
    min-width: 0
}

.dynamic-product .product-detail-copy h1 {
    max-width: 14ch;
    overflow-wrap: anywhere;
    text-wrap: balance
}

.dynamic-product .product-detail-lead {
    max-width: 58ch
}

.dynamic-product .pdp-lifestyle-image {
    display: grid;
    min-height: 560px;
    place-items: center;
    padding: 48px;
    background: #fff
}

.dynamic-product .pdp-lifestyle-image img {
    width: 100%;
    height: 100%;
    max-height: 620px;
    object-fit: contain;
    object-position: center;
    transition: transform .55s cubic-bezier(.22, 1, .36, 1)
}

.dynamic-product .pdp-lifestyle-image:hover img {
    transform: scale(1.08)
}

.dynamic-product .pdp-lifestyle>div:last-child {
    background: #f3f7f8
}

.dynamic-product .product-quick-specs strong {
    overflow-wrap: anywhere
}

@media(max-width:900px) {
    .dynamic-product .product-detail-hero {
        gap: 44px
    }

    .dynamic-product .pdp-lifestyle-image {
        min-height: 420px;
        padding: 28px
    }

    .dynamic-product .pdp-lifestyle-image img {
        max-height: 460px
    }
}

@media(max-width:600px) {
    .dynamic-product.product-detail-page {
        overflow: hidden;
        padding-top: 76px
    }

    .dynamic-product.product-detail-page>.container {
        width: min(100% - 32px, 1240px)
    }

    .dynamic-product .product-breadcrumb {
        display: flex;
        max-width: 100%;
        gap: 8px;
        overflow: hidden;
        white-space: nowrap
    }

    .dynamic-product .product-breadcrumb span:last-child {
        overflow: hidden;
        text-overflow: ellipsis
    }

    .dynamic-product .product-detail-media {
        width: 100%;
        min-width: 0;
        min-height: 430px;
        padding: 14px
    }

    .dynamic-product .product-main-image-wrap {
        min-height: 320px
    }

    .dynamic-product .product-detail-media [data-product-main-image] {
        width: 100%;
        max-height: 310px
    }

    .dynamic-product .product-thumb-row {
        display: flex;
        max-width: 100%;
        padding-bottom: 4px;
        scrollbar-width: thin
    }

    .dynamic-product .product-thumb-row button {
        flex: 0 0 68px
    }

    .dynamic-product .product-detail-copy {
        width: 100%;
        max-width: 100%;
        overflow: hidden
    }

    .dynamic-product .product-detail-copy h1 {
        max-width: 100%;
        margin-top: 12px;
        font-size: clamp(30px, 9vw, 39px);
        line-height: 1.08;
        letter-spacing: -.045em;
        overflow-wrap: break-word;
        word-break: normal
    }

    .dynamic-product .product-detail-lead {
        font-size: 15px;
        line-height: 1.65
    }

    .dynamic-product .product-actions {
        display: grid;
        grid-template-columns: 1fr
    }

    .dynamic-product .product-actions .btn {
        width: 100%;
        justify-content: center
    }

    .dynamic-product .product-store-link {
        padding: 8px 0
    }

    .dynamic-product .product-quick-specs {
        margin-top: 34px
    }

    .dynamic-product .pdp-lifestyle-image {
        min-height: 300px;
        padding: 20px
    }

    .dynamic-product .pdp-lifestyle-image img {
        max-height: 340px
    }

    .dynamic-product .pdp-lifestyle-image:hover img {
        transform: none
    }

    .dynamic-product .pdp-lifestyle>div:last-child {
        padding: 48px 24px
    }

    .dynamic-product .pdp-section>h2,
    .dynamic-product .pdp-lifestyle h2,
    .dynamic-product .pdp-final-cta h2 {
        font-size: clamp(34px, 10vw, 46px)
    }

    .dynamic-product .pdp-section-heading {
        gap: 20px
    }

    .dynamic-product .pdp-support {
        padding: 42px 24px
    }

    .dynamic-product .download-grid a {
        grid-template-columns: 48px 1fr;
        padding: 18px
    }

    .dynamic-product .product-mobile-cta {
        grid-template-columns: 1fr 1fr;
        padding: 8px max(8px, env(safe-area-inset-right)) calc(8px + env(safe-area-inset-bottom)) max(8px, env(safe-area-inset-left))
    }

    .dynamic-product .product-mobile-cta a {
        display: grid;
        min-height: 44px;
        place-items: center;
        line-height: 1.2
    }
}

/* Where To Buy short image banner and full-page motion. */
.where-image-banner {
    position: relative;
    width: 100%;
    height: 50vh;
    height: 50svh;
    height: 50dvh;
    overflow: hidden;
    background: #243740
}

.where-image-banner::after {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 0;
    background: linear-gradient(90deg, rgba(5, 27, 37, .84) 0%, rgba(5, 43, 57, .58) 38%, rgba(5, 43, 57, .12) 65%, transparent 82%)
}

.where-image-banner img {
    --where-parallax: 0px;
    display: block;
    width: 100%;
    height: calc(100% + 48px);
    object-fit: cover;
    object-position: center;
    transform: translate3d(0, var(--where-parallax), 0) scale(1.035)
}

.where-banner-copy {
    position: absolute;
    z-index: 2;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff
}

.where-banner-copy>span {
    margin-bottom: 12px;
    color: #7fc928;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase
}

.where-banner-copy h1 {
    max-width: 580px;
    margin: 0 0 12px;
    color: #fff;
    font-size: clamp(26px, 2.5vw, 38px);
    line-height: 1.08;
    letter-spacing: -.03em;
    text-shadow: 0 4px 28px rgba(0, 0, 0, .28)
}

.where-banner-copy p {
    max-width: 650px;
    margin: 0 0 22px;
    color: rgba(255, 255, 255, .9);
    font-size: clamp(15px, 1.05vw, 18px);
    line-height: 1.55
}

.where-finder-section {
    padding: 76px 0;
    background: #eef4f6
}

.where-finder-section .where-finder-card {
    width: min(100%, 920px);
    margin-inline: auto;
    padding: 34px;
    border: 1px solid #d8e5e9;
    background: #fff;
    box-shadow: 0 24px 65px rgba(13, 52, 66, .1);
    backdrop-filter: none
}

.where-finder-section .where-finder-card h2 {
    color: #0d3442
}

.where-finder-section .where-finder-card>p,
.where-finder-section .where-finder-form label {
    color: #647781
}

.where-finder-section .where-finder-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px
}

.where-finder-section .where-finder-form button {
    grid-column: 1/-1
}

.where-motion-enabled .where-image-banner img {
    opacity: 0;
    transform: translate3d(0, var(--where-parallax), 0) scale(1.09);
    transition: opacity 1s ease, transform 1.7s cubic-bezier(.2, .75, .2, 1);
    will-change: transform
}

.where-motion-enabled.where-motion-ready .where-image-banner img {
    opacity: 1;
    transform: translate3d(0, var(--where-parallax), 0) scale(1.035)
}

.where-motion-enabled .where-banner-copy>* {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .75s ease, transform .9s cubic-bezier(.2, .75, .2, 1)
}

.where-motion-enabled.where-motion-ready .where-banner-copy>* {
    opacity: 1;
    transform: translateY(0)
}

.where-motion-enabled.where-motion-ready .where-banner-copy h1 {
    transition-delay: 120ms
}

.where-motion-enabled.where-motion-ready .where-banner-copy p {
    transition-delay: 220ms
}

.where-motion-enabled.where-motion-ready .where-banner-copy .where-hero-actions {
    transition-delay: 320ms
}

.where-motion-enabled .where-motion-item {
    opacity: 0;
    transform: translateY(42px) scale(.985);
    transition: opacity .65s ease var(--where-motion-delay, 0ms), transform .85s cubic-bezier(.2, .75, .2, 1) var(--where-motion-delay, 0ms)
}

.where-motion-enabled .where-motion-item.is-where-visible {
    opacity: 1;
    transform: translateY(0) scale(1)
}

.where-channel-card,
.where-steps-list li,
.where-cta-actions a {
    transition: transform .4s cubic-bezier(.2, .75, .2, 1), box-shadow .4s ease, border-color .4s ease
}

.where-channel-card:hover,
.where-steps-list li:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 50px rgba(13, 52, 66, .12)
}

.where-cta-actions a:hover {
    transform: translateY(-4px)
}

@media(max-width:767px) {
    .where-image-banner::after {
        background: linear-gradient(0deg, rgba(5, 27, 37, .9) 0%, rgba(5, 43, 57, .52) 58%, rgba(5, 43, 57, .08) 100%)
    }

    .where-image-banner img {
        object-position: 62% center
    }

    .where-banner-copy {
        justify-content: flex-end;
        padding-bottom: 28px
    }

    .where-banner-copy h1 {
        margin-bottom: 8px;
        font-size: clamp(22px, 6vw, 28px)
    }

    .where-banner-copy p {
        max-width: 94%;
        margin-bottom: 14px;
        font-size: 13px;
        line-height: 1.4
    }

    .where-banner-copy .where-hero-actions {
        gap: 8px
    }

    .where-banner-copy .btn {
        padding: 11px 14px;
        font-size: 12px
    }

    .where-finder-section {
        padding: 50px 0
    }

    .where-finder-section .where-finder-card {
        padding: 24px
    }

    .where-finder-section .where-finder-form {
        grid-template-columns: 1fr
    }
}

@media(prefers-reduced-motion:reduce) {

    .where-motion-enabled .where-image-banner img,
    .where-motion-enabled .where-banner-copy>*,
    .where-motion-enabled .where-motion-item {
        opacity: 1;
        transform: none;
        transition: none
    }
}

/* Contact short image banner and full-page motion. */
.contact-image-banner {
    position: relative;
    width: 100%;
    height: 50vh;
    height: 50svh;
    height: 50dvh;
    overflow: hidden;
    background: #60493a
}

.contact-image-banner::after {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 0;
    background: linear-gradient(90deg, rgba(5, 27, 37, .84) 0%, rgba(5, 43, 57, .58) 38%, rgba(5, 43, 57, .1) 64%, transparent 82%)
}

.contact-image-banner img {
    --contact-parallax: 0px;
    display: block;
    width: 100%;
    height: calc(100% + 48px);
    object-fit: cover;
    object-position: center;
    transform: translate3d(0, var(--contact-parallax), 0) scale(1.035)
}

.contact-banner-copy {
    position: absolute;
    z-index: 2;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff
}

.contact-banner-copy>span {
    margin-bottom: 12px;
    color: #7fc928;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase
}

.contact-banner-copy h1 {
    max-width: 760px;
    margin: 0 0 16px;
    color: #fff;
    font-size: clamp(44px, 5vw, 74px);
    line-height: 1;
    letter-spacing: -.045em;
    text-shadow: 0 4px 28px rgba(0, 0, 0, .28)
}

.contact-banner-copy p {
    max-width: 720px;
    margin: 0 0 24px;
    color: rgba(255, 255, 255, .9);
    font-size: clamp(16px, 1.25vw, 20px);
    line-height: 1.55
}

.contact-banner-copy .contact-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px
}

.contact-banner-copy .btn-primary {
    background: #7fc928;
    color: #062735
}

.contact-banner-copy .btn-secondary {
    border-color: rgba(255, 255, 255, .42);
    background: rgba(255, 255, 255, .1);
    color: #fff
}

.contact-motion-enabled .contact-image-banner img {
    opacity: 0;
    transform: translate3d(0, var(--contact-parallax), 0) scale(1.09);
    transition: opacity 1s ease, transform 1.7s cubic-bezier(.2, .75, .2, 1);
    will-change: transform
}

.contact-motion-enabled.contact-motion-ready .contact-image-banner img {
    opacity: 1;
    transform: translate3d(0, var(--contact-parallax), 0) scale(1.035)
}

.contact-motion-enabled .contact-banner-copy>* {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .75s ease, transform .9s cubic-bezier(.2, .75, .2, 1)
}

.contact-motion-enabled.contact-motion-ready .contact-banner-copy>* {
    opacity: 1;
    transform: translateY(0)
}

.contact-motion-enabled.contact-motion-ready .contact-banner-copy h1 {
    transition-delay: 120ms
}

.contact-motion-enabled.contact-motion-ready .contact-banner-copy p {
    transition-delay: 220ms
}

.contact-motion-enabled.contact-motion-ready .contact-banner-copy .contact-hero-actions {
    transition-delay: 320ms
}

.contact-motion-enabled .contact-motion-item {
    opacity: 0;
    transform: translateY(42px) scale(.985);
    transition: opacity .65s ease var(--contact-motion-delay, 0ms), transform .85s cubic-bezier(.2, .75, .2, 1) var(--contact-motion-delay, 0ms)
}

.contact-motion-enabled .contact-motion-item.is-contact-visible {
    opacity: 1;
    transform: translateY(0) scale(1)
}

.contact-card,
.contact-info-list a {
    transition: transform .4s cubic-bezier(.2, .75, .2, 1), box-shadow .4s ease, border-color .4s ease
}

.contact-card:hover,
.contact-info-list a:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 50px rgba(13, 52, 66, .12)
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    transform: translateY(-2px)
}

@media(max-width:767px) {
    .contact-image-banner::after {
        background: linear-gradient(0deg, rgba(5, 27, 37, .91) 0%, rgba(5, 43, 57, .54) 58%, rgba(5, 43, 57, .08) 100%)
    }

    .contact-image-banner img {
        object-position: 62% center
    }

    .contact-banner-copy {
        justify-content: flex-end;
        padding-bottom: 28px
    }

    .contact-banner-copy h1 {
        margin-bottom: 10px;
        font-size: clamp(34px, 10vw, 48px)
    }

    .contact-banner-copy p {
        max-width: 94%;
        margin-bottom: 16px;
        font-size: 14px;
        line-height: 1.4
    }

    .contact-banner-copy .contact-hero-actions {
        gap: 8px
    }

    .contact-banner-copy .btn {
        padding: 11px 14px;
        font-size: 12px
    }
}

@media(prefers-reduced-motion:reduce) {

    .contact-motion-enabled .contact-image-banner img,
    .contact-motion-enabled .contact-banner-copy>*,
    .contact-motion-enabled .contact-motion-item {
        opacity: 1;
        transform: none;
        transition: none
    }
}

/* Homepage premium testimonials with stagger motion. */
.home-testimonials {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: linear-gradient(145deg, #f3f7f8 0%, #fff 48%, #eef5f6 100%)
}

.home-testimonials .container {
    position: relative;
}

.home-testimonials::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -120px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(21, 155, 215, .12), transparent 70%);
    pointer-events: none
}

.home-testimonials-heading {
    position: relative;
    display: block;
    margin-bottom: 46px;
    opacity: 1;
    transform: none
}

.home-page main .section-title,
.home-page main .home-section-heading {
    margin: 0 0 24px;
    font-size: 46px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -.025em;
}

.home-testimonials-heading .section-subtitle {
    margin: 0;
    color: #65717c;
    font-size: 27px;
    font-weight: 400;
    line-height: 1.35;
}

.home-testimonials .testimonials-grid {
    position: relative;
    display: flex;
    gap: 22px;
    margin-top: 0;
    overflow-x: auto;
    padding: 4px 4px 26px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    overscroll-behavior-x: contain
}

.home-testimonials .testimonials-grid::-webkit-scrollbar {
    display: none
}

.home-testimonials .testimonial-card {
    position: relative;
    display: flex;
    flex: 0 0 calc((100% - 22px)/2);
    min-height: 350px;
    flex-direction: column;
    padding: 34px;
    border: 1px solid #dce7ea;
    border-radius: 10px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 12px 38px rgba(13, 52, 66, .06);
    opacity: 1;
    transform: none;
    scroll-snap-align: start;
    transition: box-shadow .4s ease, border-color .4s ease
}

.home-testimonials .testimonial-card::after {
    content: "\201D";
    position: absolute;
    right: 26px;
    bottom: 18px;
    color: rgba(21, 155, 215, .1);
    font: 700 100px/1 Georgia, serif
}

.home-testimonials .testimonial-rating {
    margin-bottom: 28px;
    color: #7fc928;
    font-size: 16px;
    letter-spacing: .2em
}

.home-testimonials .testimonial-card blockquote {
    position: relative;
    z-index: 1;
    margin: 0 0 30px;
    color: #233f4d;
    font-size: 17px;
    font-style: normal;
    line-height: 1.75
}

.home-testimonials .testimonial-card blockquote::before {
    display: none
}

.home-testimonials .testimonial-header {
    margin-top: auto;
    margin-bottom: 18px
}

.home-testimonials .testimonial-avatar {
    background: linear-gradient(135deg, #173c52, #159bd7)
}

.home-testimonials .testimonial-product {
    color: #159bd7
}

.home-testimonials.is-testimonials-visible .home-testimonials-heading {
    animation: testimonialsHeadingIn .85s cubic-bezier(.2, .75, .2, 1) both
}

.home-testimonials.is-testimonials-visible .testimonial-card {
    animation: testimonialCardIn .9s cubic-bezier(.2, .75, .2, 1) var(--testimonial-delay) both
}

.home-testimonials .testimonial-card:hover {
    z-index: 2;
    border-color: rgba(21, 155, 215, .38);
    box-shadow: 0 28px 68px rgba(13, 52, 66, .14);
    transform: translateY(-10px) scale(1.015)
}

/* Keep one additional story off-screen on desktop so the carousel can slide. */
@media (min-width: 1025px) {
    .home-page .home-testimonials .testimonial-card {
        flex-basis: calc((100% - 22px) / 2);
        width: calc((100% - 22px) / 2);
    }
}

@keyframes testimonialsHeadingIn {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes testimonialCardIn {
    from {
        opacity: 0;
        transform: translateY(46px) scale(.975)
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1)
    }
}

@media(max-width:900px) {
    .home-testimonials-heading {
        margin-bottom: 30px
    }

    .home-testimonials .testimonials-grid {
        gap: 18px
    }

    .home-testimonials .testimonial-card {
        flex: 0 0 min(82vw, 380px);
        scroll-snap-align: center
    }
}

@media(max-width:600px) {
    .home-testimonials {
        padding: 72px 0
    }

    .home-testimonials-heading {
        margin-bottom: 30px
    }

    .home-page main .section-title,
    .home-page main .home-section-heading {
        margin-bottom: 12px;
        font-size: 32px;
    }

    .home-testimonials-heading .section-subtitle {
        font-size: 18px;
    }

    .home-testimonials .testimonial-card {
        min-height: 330px;
        padding: 27px
    }
}

@media(prefers-reduced-motion:reduce) {

    .home-testimonials-heading,
    .home-testimonials .testimonial-card {
        opacity: 1;
        transform: none;
        transition: none
    }
}

/* Refined customer complaint form. */
.service-complaint-dialog {
    width: min(780px, 100%);
    padding: 0;
    border: 0;
    border-radius: 18px;
    overflow: auto
}

.service-complaint-grid {
    display: block;
    min-height: 0
}

.service-complaint-copy {
    position: relative;
    padding: 64px 46px;
    background: linear-gradient(155deg, #062d3d 0%, #0b4b61 65%, #087d8e 100%);
    color: #fff;
    overflow: hidden
}

.service-complaint-copy::after {
    content: "";
    position: absolute;
    right: -150px;
    bottom: -170px;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 50%;
    box-shadow: 0 0 0 55px rgba(255, 255, 255, .035)
}

.service-complaint-copy .support-kicker {
    color: #8bd42e
}

.service-complaint-copy h2 {
    color: #fff;
    font-size: clamp(40px, 4vw, 58px);
    letter-spacing: -.045em
}

.service-complaint-copy p {
    color: rgba(255, 255, 255, .76)
}

.service-complaint-note {
    position: relative;
    z-index: 1;
    border-left-color: #8bd42e;
    background: rgba(255, 255, 255, .09)
}

.service-complaint-note strong {
    color: #fff
}

.service-complaint-note span {
    color: rgba(255, 255, 255, .72)
}

.service-complaint-form {
    align-content: start;
    gap: 14px;
    padding: 44px;
    border: 0;
    border-radius: 0;
    background: #fff;
    box-shadow: none
}

.complaint-form-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 4px 0 2px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e4edf0
}

.complaint-form-heading span {
    display: grid;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 50%;
    background: rgba(21, 155, 215, .11);
    color: var(--brand-blue);
    font-size: 12px;
    font-weight: 800
}

.complaint-form-heading strong,
.complaint-form-heading small {
    display: block
}

.complaint-form-heading strong {
    color: #0d3442;
    font-size: 16px
}

.complaint-form-heading small {
    margin-top: 2px;
    color: #7a8d96;
    font-size: 12px
}

.service-complaint-form label {
    position: relative
}

.service-complaint-form label em {
    position: absolute;
    top: 0;
    right: 0;
    color: #d54b3d;
    font-style: normal
}

.service-complaint-form input,
.service-complaint-form select,
.service-complaint-form textarea {
    border-color: #d9e6eb;
    border-radius: 10px;
    background: #f7fafb;
    transition: border-color .2s, box-shadow .2s, background .2s
}

.service-complaint-form input:hover,
.service-complaint-form select:hover,
.service-complaint-form textarea:hover {
    border-color: #bdd2da;
    background: #fff
}

.service-complaint-form textarea {
    min-height: 118px
}

.service-complaint-form input[type="file"] {
    min-height: auto;
    padding: 10px 12px;
    font-size: 12px;
    line-height: 1.35;
}

.complaint-upload-note {
    color: #7a8d96;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.4;
}

.complaint-privacy-note {
    margin: 0;
    color: #7a8d96;
    font-size: 12px;
    line-height: 1.5
}

.service-complaint-form button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 22px;
    border-radius: 10px;
    background: linear-gradient(135deg, #78be20, #91d832);
    box-shadow: 0 12px 24px rgba(120, 190, 32, .2);
    transition: transform .2s, box-shadow .2s
}

.service-complaint-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(120, 190, 32, .28)
}

@media(max-width:900px) {
    .service-complaint-form {
        padding: 34px 28px
    }
}

@media(max-width:600px) {
    .service-complaint-modal {
        padding: 8px
    }

    .service-complaint-dialog {
        max-height: calc(100svh - 16px);
        border-radius: 13px
    }

    .service-complaint-copy {
        padding: 50px 22px 30px
    }

    .service-complaint-copy h2 {
        font-size: 38px
    }

    .service-complaint-note {
        display: none
    }

    .service-complaint-form {
        padding: 26px 20px
    }

    .service-complaint-form .field-row {
        grid-template-columns: 1fr
    }
}

/* CMS-managed top banner media. */
.support-image-banner .managed-page-banner-media,
.where-image-banner .managed-page-banner-media,
.about-image-banner .managed-page-banner-media,
.contact-image-banner .managed-page-banner-media {
    display: block;
    width: 100%;
    height: calc(100% + 48px);
    object-fit: cover;
    object-position: center
}

/* CMS-managed legal pages. */
.legal-page {
    padding: 110px 0;
    background: #fff
}

.legal-content {
    max-width: 920px
}

.legal-content h1 {
    margin: 0 0 24px;
    color: #0b2239;
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.05
}

.legal-content h2 {
    margin: 34px 0 12px;
    color: #0b2239;
    font-size: 24px
}

.legal-content p,
.legal-content li {
    color: #42526a;
    font-size: 16px;
    line-height: 1.8
}

.legal-content ul,
.legal-content ol {
    padding-left: 22px
}

.legal-content a {
    color: #007c72;
    font-weight: 700
}

/* Responsive hardening for all public pages. */
html {
    overflow-x: hidden;
}

body {
    min-width: 320px;
    overflow-x: clip;
}

img,
video,
picture,
svg {
    max-width: 100%;
}

img,
video {
    height: auto;
}

.container,
.reference-header-shell,
.reference-products-grid,
.reference-search>div,
.reference-mobile-head,
.reference-mobile nav {
    width: min(100% - 40px, 1240px);
    max-width: 1240px;
    margin-inline: auto;
}

.reference-header-shell,
.reference-actions,
.reference-nav,
.hero-content,
.products-managed-banner-copy,
.support-banner-copy,
.about-banner-copy,
.where-banner-copy,
.contact-banner-copy,
.product-detail-copy,
.listing-heading,
.footer-grid,
.footer-links {
    min-width: 0;
}

.reference-nav {
    gap: clamp(14px, 2.2vw, 28px);
}

.reference-nav-link,
.reference-contact,
.reference-region {
    white-space: nowrap;
}

.reference-products-carousel {
    position: relative;
    width: min(100% - 40px, 1240px);
    margin-inline: auto;
}

.reference-products-grid {
    width: 100%;
    max-width: none;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
}

.reference-products-grid::-webkit-scrollbar {
    display: none;
}

.reference-category {
    min-width: 0;
    scroll-snap-align: start;
}

.hero,
.home-hero,
.products-managed-banner,
.support-image-banner,
.about-image-banner,
.where-image-banner,
.contact-image-banner {
    isolation: isolate;
}

.hero-image,
.hero-image picture,
.hero-image img,
.hero-slide .hero-image,
.hero-slide .hero-image picture,
.hero-slide .hero-image img,
.hero-slide .hero-image video,
.products-managed-banner-media,
.products-managed-banner-media picture,
.products-managed-banner-media img,
.products-managed-banner-media video,
.support-image-banner img,
.about-image-banner img,
.where-image-banner img,
.contact-image-banner img,
.support-image-banner .managed-page-banner-media,
.about-image-banner .managed-page-banner-media,
.where-image-banner .managed-page-banner-media,
.contact-image-banner .managed-page-banner-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.home-hero .hero-slide .hero-image img,
.home-hero .hero-slide .hero-image video {
    display: block;
}

.hero-content h1,
.products-managed-banner h1,
.support-banner-copy h1,
.about-banner-copy h1,
.where-banner-copy h1,
.contact-banner-copy h1,
.section-title,
.home-testimonials-heading h2,
.product-detail-copy h1 {
    overflow-wrap: anywhere;
    text-wrap: balance;
}

.hero-content p,
.products-managed-banner p,
.support-banner-copy p,
.about-banner-copy p,
.where-banner-copy p,
.contact-banner-copy p,
.product-detail-lead,
.section-subtitle,
.section-description {
    overflow-wrap: break-word;
}

.categories-grid,
.featured-grid,
.support-grid,
.support-action-grid,
.support-contact-grid,
.support-faq-grid,
.support-trust-grid,
.about-overview,
.about-purpose-grid,
.contact-main-grid,
.contact-card-grid,
.where-channel-grid,
.where-location-grid,
.where-cta-grid,
.listing-results,
.product-service-grid,
.pdp-feature-grid,
.download-grid,
.footer-grid,
.footer-links {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
}

.category-card,
.product-card,
.listing-product-card,
.support-action-card,
.contact-card,
.where-channel-card,
.related-product-card {
    min-width: 0;
}

.category-image img,
.product-image img,
.listing-product-image img,
.related-product-image img,
.product-main-image-wrap img,
.product-thumb-row img {
    display: block;
    width: 100%;
    height: 100%;
}

.product-image img,
.listing-product-image img,
.related-product-image img,
.product-main-image-wrap img,
.product-thumb-row img {
    object-fit: contain;
    object-position: center;
}

.contact-field-row,
.field-row,
.where-finder-form {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
}

input,
select,
textarea,
button {
    max-width: 100%;
}

@media (max-width: 1180px) and (min-width: 1025px) {
    .reference-header-shell {
        gap: 14px;
    }

    .reference-nav {
        gap: 14px;
    }

    .reference-nav-link {
        font-size: 13px;
    }

    .reference-contact {
        padding-inline: 14px;
    }
}

@media (max-width: 1024px) {
    .reference-header {
        background: #fff;
        color: #17232a;
        box-shadow: 0 1px 0 rgba(15, 35, 45, .1);
    }

    .reference-logo img {
        filter: none;
    }

    .reference-mobile {
        z-index: 10000;
        overflow-y: auto;
        overscroll-behavior: contain;
    }

    body.reference-menu-open {
        overflow: hidden;
    }

    .reference-products {
        display: none !important;
    }

    .products-managed-banner {
        min-height: clamp(420px, 62svh, 620px);
        margin-top: 64px;
    }

    .products-managed-banner-copy {
        max-width: 620px;
    }

    .listing-heading {
        display: grid;
        gap: 20px;
    }

    .product-quick-specs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .technology-list article {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}

@media (max-width: 767px) {

    .container,
    .reference-header-shell,
    .reference-search>div,
    .reference-mobile-head,
    .reference-mobile nav {
        width: min(100% - 32px, 1240px);
        padding-inline: 0;
    }

    .reference-actions {
        gap: 4px;
    }

    .reference-icon-button,
    .reference-menu-button {
        width: 38px;
        height: 38px;
    }

    .reference-region,
    .reference-contact {
        display: none !important;
    }

    .reference-search>div {
        padding-block: 16px;
    }

    .reference-search input {
        font-size: 15px;
    }

    .reference-mobile nav a {
        min-height: 54px;
        font-size: 18px;
    }

    body>main>.hero.home-hero:first-child,
    body>main>.hero.home-hero[style]:first-child {
        height: auto !important;
        min-height: clamp(430px, calc(100svh - 64px), 660px) !important;
        max-height: none;
        margin-top: 64px;
    }

    .home-hero .hero-slider,
    .home-hero .hero-slide,
    .home-hero .hero-image {
        min-height: inherit;
    }

    .home-hero .hero-slide>.container {
        align-items: flex-end;
        min-height: inherit;
    }

    .home-hero .hero-content {
        width: 100%;
        max-width: 100%;
        padding-bottom: clamp(26px, 8svh, 52px);
    }

    .home-hero .hero-content h1 {
        font-size: clamp(24px, 8.4vw, 36px);
        line-height: 1.08;
    }

    .home-hero .hero-content .hero-subtitle {
        max-width: 36rem;
        font-size: 14px;
        line-height: 1.45;
    }

    .products-managed-banner,
    .support-image-banner,
    .about-image-banner,
    .where-image-banner,
    .contact-image-banner {
        min-height: 430px;
        height: auto;
    }

    .products-managed-banner .container,
    .support-banner-copy,
    .about-banner-copy,
    .where-banner-copy,
    .contact-banner-copy {
        min-height: 430px;
    }

    .products-managed-banner-copy,
    .support-banner-copy,
    .about-banner-copy,
    .where-banner-copy,
    .contact-banner-copy {
        justify-content: flex-end;
        padding-top: 90px;
        padding-bottom: 28px;
    }

    .products-managed-banner h1,
    .support-banner-copy h1,
    .about-banner-copy h1,
    .contact-banner-copy h1 {
        max-width: 100%;
        margin-bottom: 10px;
        font-size: clamp(30px, 10vw, 44px);
        line-height: 1.06;
    }

    .where-banner-copy h1 {
        max-width: 100%;
        font-size: clamp(26px, 8vw, 36px);
    }

    .products-managed-banner p,
    .support-banner-copy p,
    .about-banner-copy p,
    .where-banner-copy p,
    .contact-banner-copy p {
        max-width: 100%;
        font-size: 14px;
        line-height: 1.45;
    }

    .products-managed-banner-media img,
    .products-managed-banner-media video,
    .support-image-banner img,
    .about-image-banner img,
    .where-image-banner img,
    .contact-image-banner img,
    .support-image-banner .managed-page-banner-media,
    .about-image-banner .managed-page-banner-media,
    .where-image-banner .managed-page-banner-media,
    .contact-image-banner .managed-page-banner-media {
        height: 100%;
        transform: none !important;
    }

    .products-managed-banner-media img,
    .products-managed-banner-media video {
        object-position: 58% center;
    }

    .support-image-banner img,
    .about-image-banner img,
    .where-image-banner img,
    .contact-image-banner img,
    .support-image-banner .managed-page-banner-media,
    .about-image-banner .managed-page-banner-media,
    .where-image-banner .managed-page-banner-media,
    .contact-image-banner .managed-page-banner-media {
        object-position: 60% center;
    }

    .home-hero .hero-actions,
    .products-managed-banner-copy .hero-actions,
    .where-hero-actions,
    .contact-hero-actions,
    .where-cta-actions {
        width: 100%;
        gap: 10px;
    }

    .hero-actions .btn,
    .where-hero-actions .btn,
    .contact-hero-actions .btn,
    .where-cta-actions a {
        flex: 1 1 160px;
        min-height: 44px;
        padding-inline: 14px;
        white-space: normal;
    }

    .home-page main>section:not(.hero) {
        padding-top: 44px;
        padding-bottom: 44px;
    }

    .section-title,
    .home-testimonials-heading h2,
    .product-listing-page .listing-heading h1,
    .product-category-intro h2 {
        font-size: clamp(30px, 9vw, 42px);
        line-height: 1.08;
    }

    .categories-grid.categories-slider,
    .featured-grid.featured-slider,
    .product-category-row,
    .related-products-slider,
    .home-testimonials .testimonials-grid {
        max-width: 100%;
        overflow-x: auto;
        overscroll-behavior-x: contain;
        scroll-snap-type: x mandatory;
    }

    .categories .categories-slider>.category-card,
    .home-page .featured-slider>.product-card,
    .listing-category-card,
    .related-product-card,
    .home-testimonials .testimonial-card {
        flex-basis: min(86vw, 360px);
        width: min(86vw, 360px);
        scroll-snap-align: start;
    }

    .product-listing-page .listing-results {
        grid-template-columns: 1fr;
    }

    .product-listing-page .listing-product-image {
        height: clamp(220px, 62vw, 300px);
    }

    .product-listing-page .listing-product-body h2 {
        min-height: 0;
    }

    .product-quick-specs {
        grid-template-columns: 1fr;
    }

    .product-quick-specs div {
        border-right: 0;
        border-bottom: 1px solid var(--pdp-line, #dce5e9);
    }

    .product-quick-specs div:last-child {
        border-bottom: 0;
    }

    .pdp-section {
        padding: 64px 0;
    }

    .pdp-feature-grid,
    .pdp-section-heading,
    .pdp-lifestyle {
        grid-template-columns: 1fr;
    }

    .pdp-lifestyle {
        margin-inline: calc(50% - 50vw);
    }

    .footer {
        padding-top: 52px;
    }

    .footer-bottom,
    .footer-legal {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

@media (max-width: 420px) {

    .container,
    .reference-header-shell,
    .reference-search>div,
    .reference-mobile-head,
    .reference-mobile nav {
        width: min(100% - 24px, 1240px);
    }

    .reference-logo img {
        height: 25px;
    }

    .home-hero .hero-content h1,
    .products-managed-banner h1,
    .support-banner-copy h1,
    .about-banner-copy h1,
    .where-banner-copy h1,
    .contact-banner-copy h1 {
        font-size: clamp(24px, 9.5vw, 34px);
    }

    .hero-actions .btn,
    .where-hero-actions .btn,
    .contact-hero-actions .btn,
    .where-cta-actions a {
        flex-basis: 100%;
    }
}

/* Jobs @ Gratus page */
.jobs-page {
    background: #f5f8fa;
    color: #0d3442;
}

.jobs-image-banner {
    position: relative;
    width: 100%;
    height: 50vh;
    height: 50svh;
    height: 50dvh;
    overflow: hidden;
    background: #243740;
    color: #fff;
    isolation: isolate;
}

.jobs-image-banner::after {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 0;
    background: linear-gradient(90deg, rgba(5, 27, 37, .86) 0%, rgba(5, 43, 57, .62) 38%, rgba(5, 43, 57, .18) 66%, transparent 84%);
}

.jobs-image-banner>img,
.jobs-image-banner>video,
.jobs-image-banner .managed-page-banner-media {
    --jobs-parallax: 0px;
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: calc(100% + 48px);
    object-fit: cover;
    object-position: center;
    transform: translate3d(0, var(--jobs-parallax), 0) scale(1.035);
}

.jobs-banner-copy {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
}

.jobs-banner-copy h1 {
    max-width: 720px;
    margin: 0 0 16px;
    color: #fff;
    font-size: clamp(44px, 5vw, 74px);
    line-height: 1;
    letter-spacing: -.045em;
    text-shadow: 0 4px 28px rgba(0, 0, 0, .25);
    overflow-wrap: anywhere;
    text-wrap: balance;
}

.jobs-banner-copy p {
    max-width: 620px;
    margin: 0 0 24px;
    color: rgba(255, 255, 255, .88);
    font-size: clamp(16px, 1.25vw, 20px);
    line-height: 1.55;
}

.jobs-banner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.jobs-banner-actions .btn-primary {
    background: #78be20;
    color: #062735;
}

.jobs-banner-actions .btn-secondary {
    border-color: rgba(255, 255, 255, .46);
    background: rgba(255, 255, 255, .1);
    color: #fff;
}

.jobs-hero {
    padding: 156px 0 86px;
    background:
        linear-gradient(135deg, rgba(5, 31, 45, .96), rgba(9, 91, 119, .92)),
        #082f3d;
    color: #fff;
    overflow: hidden;
}

.jobs-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .85fr);
    gap: clamp(34px, 6vw, 82px);
    align-items: center;
}

.jobs-hero-copy h1 {
    max-width: 720px;
    margin: 10px 0 18px;
    color: #fff;
    font-size: clamp(42px, 6vw, 78px);
    line-height: 1;
    letter-spacing: -.045em;
}

.jobs-hero-copy p {
    max-width: 640px;
    margin: 0 0 28px;
    color: rgba(255, 255, 255, .84);
    font-size: clamp(16px, 1.4vw, 20px);
    line-height: 1.65;
}

.jobs-hero .btn-primary {
    background: #78be20;
    color: #062735;
}

.jobs-artwork {
    display: none;
}

.jobs-artwork svg {
    width: min(100%, 560px);
    height: auto;
    filter: drop-shadow(0 26px 56px rgba(0, 0, 0, .25));
}

.jobs-motion-enabled .jobs-image-banner>img,
.jobs-motion-enabled .jobs-image-banner>video,
.jobs-motion-enabled .jobs-image-banner .managed-page-banner-media {
    opacity: 0;
    transform: translate3d(0, var(--jobs-parallax), 0) scale(1.09);
    transition: opacity 1s ease, transform 1.7s cubic-bezier(.2, .75, .2, 1);
    will-change: transform;
}

.jobs-motion-enabled.jobs-motion-ready .jobs-image-banner>img,
.jobs-motion-enabled.jobs-motion-ready .jobs-image-banner>video,
.jobs-motion-enabled.jobs-motion-ready .jobs-image-banner .managed-page-banner-media {
    opacity: 1;
    transform: translate3d(0, var(--jobs-parallax), 0) scale(1.035);
}

.jobs-motion-enabled .jobs-banner-copy>div>* {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .75s ease, transform .9s cubic-bezier(.2, .75, .2, 1);
}

.jobs-motion-enabled.jobs-motion-ready .jobs-banner-copy>div>* {
    opacity: 1;
    transform: translateY(0);
}

.jobs-motion-enabled.jobs-motion-ready .jobs-banner-copy h1 {
    transition-delay: 120ms;
}

.jobs-motion-enabled.jobs-motion-ready .jobs-banner-copy p {
    transition-delay: 220ms;
}

.jobs-motion-enabled.jobs-motion-ready .jobs-banner-actions {
    transition-delay: 320ms;
}

.jobs-openings {
    padding: 78px 0 96px;
}

.jobs-section-heading {
    display: grid;
    gap: 10px;
    max-width: 760px;
    margin-bottom: 34px;
}

.jobs-section-heading h2 {
    margin: 0;
    font-size: clamp(34px, 4.5vw, 58px);
    line-height: 1.04;
    letter-spacing: -.04em;
}

.jobs-section-heading p {
    margin: 0;
    color: #657983;
    font-size: 16px;
    line-height: 1.7;
}

.jobs-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.jobs-list {
    display: grid;
    gap: 18px;
}

.job-card,
.jobs-apply-panel {
    border: 1px solid #dce7ea;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 8px 28px rgba(13, 52, 66, .055);
}

.job-card {
    display: grid;
    gap: 18px;
    padding: 26px;
}

.job-card>div>span,
.job-card>span {
    color: #159bd7;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.job-card h3 {
    margin: 8px 0 10px;
    color: #102f40;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.12;
}

.job-card p,
.job-summary,
.job-rich-content {
    margin: 0;
    color: #607782;
    line-height: 1.7;
}

.job-summary > :first-child,
.job-rich-content > :first-child {
    margin-top: 0;
}

.job-summary > :last-child,
.job-rich-content > :last-child {
    margin-bottom: 0;
}

.job-summary p,
.job-rich-content p,
.job-rich-content ul,
.job-rich-content ol {
    margin: 0 0 10px;
}

.job-rich-content ul,
.job-rich-content ol {
    padding-left: 22px;
}

.job-card ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.job-card li {
    padding: 8px 11px;
    border-radius: 999px;
    background: #eef6f8;
    color: #264d5f;
    font-size: 12px;
    font-weight: 700;
}

.job-card details {
    border-top: 1px solid #e7eef1;
    padding-top: 14px;
}

.job-card summary {
    color: #123544;
    font-weight: 750;
    cursor: pointer;
}

.job-card details p,
.job-card details .job-rich-content {
    margin-top: 12px;
    white-space: normal;
}

.job-apply-link {
    display: inline-flex;
    width: max-content;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border-radius: 7px;
    border: 0;
    background: #0d3442;
    color: #fff;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.jobs-apply-panel {
    position: relative;
    display: grid;
    gap: 16px;
    padding: 26px;
}

.jobs-apply-modal[hidden] {
    display: none;
}

.jobs-apply-modal {
    position: fixed;
    inset: 0;
    z-index: 10020;
    display: grid;
    place-items: center;
    padding: 24px;
}

.jobs-apply-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(5, 27, 37, .68);
    backdrop-filter: blur(5px);
    cursor: pointer;
}

.jobs-apply-modal .jobs-apply-panel {
    width: min(760px, 100%);
    max-height: min(88vh, 780px);
    overflow: auto;
    padding: 30px;
    box-shadow: 0 28px 90px rgba(0, 0, 0, .28);
}

.jobs-apply-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 38px;
    height: 38px;
    border: 1px solid #d9e6eb;
    border-radius: 50%;
    background: #fff;
    color: #102f40;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
}

.jobs-apply-panel h2 {
    margin: 0;
    color: #102f40;
    font-size: 30px;
    line-height: 1.1;
}

.jobs-success {
    margin: 0;
    padding: 12px 13px;
    border-radius: 8px;
    background: #e6f7ef;
    color: #08755f;
    font-weight: 700;
}

.jobs-form {
    display: grid;
    gap: 14px;
}

.jobs-form label {
    display: grid;
    gap: 7px;
    color: #526176;
    font-size: 13px;
    font-weight: 700;
}

.jobs-form input,
.jobs-form select,
.jobs-form textarea {
    width: 100%;
    min-width: 0;
    border: 1px solid #d9e6eb;
    border-radius: 8px;
    background: #f8fbfc;
    color: #102f40;
    padding: 12px 13px;
    outline: 0;
}

.jobs-form input:focus,
.jobs-form select:focus,
.jobs-form textarea:focus {
    border-color: #159bd7;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(21, 155, 215, .12);
}

.jobs-form textarea {
    resize: vertical;
}

.cv-upload small {
    color: #7b8b93;
    font-size: 12px;
    font-weight: 500;
}

.jobs-form button {
    min-height: 48px;
    border: 0;
    border-radius: 8px;
    background: #78be20;
    color: #062735;
    font-weight: 800;
    cursor: pointer;
}

@media (max-width: 900px) {
    .jobs-image-banner {
        min-height: 430px;
        height: auto;
    }

    .jobs-banner-copy {
        min-height: 430px;
        justify-content: flex-end;
        padding-top: 90px;
        padding-bottom: 28px;
    }

    .jobs-image-banner::after {
        background: linear-gradient(0deg, rgba(5, 27, 37, .92) 0%, rgba(5, 43, 57, .62) 54%, rgba(5, 43, 57, .14) 100%);
    }

    .jobs-hero {
        padding: 116px 0 70px;
    }

    .jobs-hero-grid,
    .jobs-layout {
        grid-template-columns: 1fr;
    }

    .jobs-artwork {
        order: -1;
        display: none;
    }

    .jobs-artwork svg {
        width: min(82vw, 430px);
    }

    .jobs-apply-panel {
        position: static;
    }
}

@media (max-width: 600px) {
    .jobs-image-banner {
        min-height: 430px;
    }

    .jobs-banner-copy {
        min-height: 430px;
        padding-bottom: 28px;
    }

    .jobs-banner-copy h1 {
        margin-bottom: 10px;
        font-size: clamp(30px, 10vw, 44px);
        line-height: 1.06;
    }

    .jobs-banner-copy p {
        max-width: 100%;
        margin-bottom: 18px;
        font-size: 14px;
        line-height: 1.45;
    }

    .jobs-banner-actions {
        width: 100%;
    }

    .jobs-banner-actions .btn {
        flex: 1 1 150px;
        min-height: 44px;
        padding-inline: 14px;
        white-space: normal;
    }

    .jobs-hero {
        padding: 104px 0 54px;
    }

    .jobs-hero-copy h1 {
        font-size: clamp(34px, 11vw, 46px);
    }

    .jobs-openings {
        padding: 54px 0 72px;
    }

    .job-card,
    .jobs-apply-panel {
        padding: 21px;
    }

    .job-apply-link,
    .jobs-form button {
        width: 100%;
    }
}

/* Shared footer refinement */
.footer {
    background: #10232f;
    color: rgba(255, 255, 255, .76);
}

.footer .container {
    width: min(100% - 40px, 1240px);
}

.footer-grid {
    grid-template-columns: minmax(260px, .9fr) minmax(0, 1.8fr);
    gap: clamp(34px, 5vw, 70px);
    align-items: start;
}

.footer-logo {
    display: inline-flex;
    width: auto;
    height: auto;
    min-height: 42px;
    align-items: center;
    overflow: visible;
    margin-bottom: 22px;
    padding: 0;
    border-radius: 0;
    background: transparent;
}

.footer-logo img {
    display: block;
    width: 126px;
    height: auto;
    max-width: 100%;
    margin: 0;
    transform: none;
}

.footer-brand>p,
.footer-description,
.footer-address {
    max-width: 390px;
    margin: 0 0 16px;
    color: rgba(255, 255, 255, .72);
    line-height: 1.75;
}

.footer-address {
    max-width: 430px;
}

.footer-description p,
.footer-address p,
.footer-description ul,
.footer-address ul,
.footer-description ol,
.footer-address ol {
    margin: 0 0 10px;
}

.footer-description > :last-child,
.footer-address > :last-child {
    margin-bottom: 0;
}

.footer-description ul,
.footer-address ul,
.footer-description ol,
.footer-address ol {
    padding-left: 20px;
}

.footer-links {
    grid-template-columns: repeat(4, minmax(140px, 1fr));
    gap: clamp(22px, 3vw, 38px);
}

.footer-column {
    min-width: 0;
}

.footer-column h4 {
    margin: 0 0 14px;
    color: #fff;
    letter-spacing: .08em;
}

.footer-column ul {
    margin: 0;
    padding: 0;
}

.footer-column a {
    display: inline-flex;
    max-width: 100%;
    color: rgba(255, 255, 255, .68);
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.footer-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.footer-social-links a,
.footer-social-links .footer-social-placeholder {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 50%;
    background: rgba(255, 255, 255, .04);
    color: rgba(255, 255, 255, .78);
    transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}

.footer-social-links a:hover {
    border-color: rgba(255, 255, 255, .28);
    background: rgba(255, 255, 255, .12);
    color: #ffffff;
    transform: translateY(-1px);
}

.footer-social-links .footer-social-placeholder {
    opacity: .72;
    cursor: default;
}

.footer-social-links svg {
    width: 18px;
    height: 18px;
    display: block;
    fill: currentColor;
}

.footer-bottom {
    gap: 18px;
    margin-top: 8px;
}

.footer-bottom p {
    margin: 0;
}

.footer-legal {
    flex-wrap: wrap;
}

@media (max-width: 900px) {
    .footer {
        padding: 62px 0 34px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        margin-bottom: 44px;
    }

    .footer-brand>p {
        max-width: 620px;
    }

    .footer-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .footer .container {
        width: min(100% - 28px, 1240px);
    }

    .footer {
        padding: 52px 0 94px;
    }

    .footer-grid {
        gap: 28px;
        margin-bottom: 34px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-column ul {
        gap: 8px;
    }

    .footer-bottom {
        display: grid;
        align-items: start;
        padding-top: 26px;
    }

    .footer-legal {
        gap: 16px;
    }

    .floating-actions {
        right: 14px;
        bottom: 14px;
    }
}

/* Desktop full-screen public layout */
@media (min-width: 1025px) {

    .container,
    .footer .container,
    .reference-header-shell,
    .reference-products-carousel,
    .reference-search>div {
        width: 100%;
        max-width: none;
        padding-left: var(--site-gutter);
        padding-right: var(--site-gutter);
    }

    body>main,
    body>main>section,
    .page-hero,
    .hero,
    .home-hero,
    .products-managed-banner,
    .support-image-banner,
    .about-image-banner,
    .where-image-banner,
    .contact-image-banner {
        width: 100%;
        max-width: none;
    }
}

.page-managed-banner {
    position: relative;
    width: 100%;
    min-height: 430px;
    overflow: hidden;
    background: #10232f;
    color: #fff;
}

.page-managed-banner::after {
    position: absolute;
    inset: 0;
    z-index: 1;
    content: "";
    background: linear-gradient(90deg, rgba(5, 27, 37, .84) 0%, rgba(5, 43, 57, .58) 42%, rgba(5, 43, 57, .1) 70%, transparent 100%);
}

.page-managed-banner>img,
.page-managed-banner>video,
.page-managed-banner .managed-page-banner-media {
    display: block;
    width: 100%;
    height: 430px;
    object-fit: cover;
    object-position: center;
}

.page-managed-banner-copy {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: none;
}

.page-managed-banner-copy h1 {
    max-width: 760px;
    margin: 0 0 16px;
    color: #fff;
    font-size: clamp(44px, 5vw, 74px);
    line-height: 1;
    overflow-wrap: anywhere;
}

.page-managed-banner-copy p {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, .9);
    font-size: clamp(16px, 1.25vw, 20px);
    line-height: 1.55;
}

.page-managed-banner-copy .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

@media (max-width: 767px) {
    .page-managed-banner {
        min-height: 330px;
    }

    .page-managed-banner::after {
        background: linear-gradient(0deg, rgba(5, 27, 37, .91) 0%, rgba(5, 43, 57, .54) 58%, rgba(5, 43, 57, .08) 100%);
    }

    .page-managed-banner>img,
    .page-managed-banner>video,
    .page-managed-banner .managed-page-banner-media {
        height: 330px;
    }

    .page-managed-banner-copy {
        justify-content: flex-end;
        padding-bottom: 28px;
    }

    .page-managed-banner-copy h1 {
        max-width: 100%;
        font-size: clamp(34px, 10vw, 48px);
    }

    .page-managed-banner-copy p {
        max-width: 94%;
        font-size: 14px;
        line-height: 1.4;
    }
}

/* Product listing cards: keep only product name, model and Learn More. */
.product-listing-page .listing-product-category,
.product-listing-page .listing-product-features {
    display: none !important;
}

.product-listing-page .listing-product-body h2 {
    margin-top: 0;
    margin-bottom: 14px;
}

.product-listing-page .listing-product-model {
    display: block;
    margin: 0 0 24px;
    color: #657983;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
    overflow-wrap: anywhere;
}

.product-listing-page .listing-learn {
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid #e7edef;
}

.region-popup {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(22, 38, 46, .62);
    backdrop-filter: blur(5px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s ease;
}

.region-popup.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.region-popup-dialog {
    position: relative;
    width: min(560px, 100%);
    padding: 40px 34px 36px;
    border: 1px solid rgba(127, 201, 40, .16);
    border-radius: 20px;
    background: linear-gradient(135deg, #f7fffd 0%, #ffffff 54%, #eefcf8 100%);
    box-shadow: 0 28px 80px rgba(9, 28, 39, .28);
    text-align: center;
}

.region-popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #ffffff;
    color: #0d2233;
    box-shadow: 0 10px 24px rgba(11, 34, 49, .12);
    cursor: pointer;
}

.region-popup-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 0 18px;
    border-radius: 999px;
    background: #dff6f3;
    color: #00a99d;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.region-popup h2 {
    margin: 14px 0 8px;
    color: #0d2233;
    font-size: clamp(30px, 5vw, 40px);
    line-height: 1.05;
}

.region-popup p {
    margin: 0;
    color: #64788a;
    font-size: 15px;
    line-height: 1.5;
}

.region-popup-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 30px;
}

.region-popup-option {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 112px;
    padding: 20px;
    border: 1px solid rgba(0, 169, 157, .2);
    border-radius: 16px;
    background: #ffffff;
    color: #0d2233;
    text-decoration: none;
    box-shadow: 0 14px 34px rgba(11, 34, 49, .1);
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.region-popup-option:hover,
.region-popup-option:focus-visible {
    border-color: #00a99d;
    box-shadow: 0 18px 44px rgba(0, 169, 157, .18);
    transform: translateY(-2px);
}

.region-popup-option span {
    color: inherit;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

@media (max-width: 560px) {
    .region-popup {
        padding: 14px;
    }

    .region-popup-dialog {
        padding: 36px 18px 22px;
        border-radius: 16px;
    }

    .region-popup-actions {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 22px;
    }

    .region-popup-option {
        min-height: 72px;
        border-radius: 12px;
    }
}

@media (max-width: 767px) {

    .products-managed-banner,
    .support-image-banner,
    .about-image-banner,
    .where-image-banner,
    .contact-image-banner,
    .jobs-image-banner,
    .page-managed-banner {
        min-height: 360px;
        height: 360px;
    }

    .products-managed-banner .container,
    .support-banner-copy,
    .about-banner-copy,
    .where-banner-copy,
    .contact-banner-copy,
    .jobs-banner-copy,
    .page-managed-banner-copy {
        min-height: 360px;
        justify-content: flex-end;
        padding-top: 88px;
        padding-bottom: 24px;
    }

    .products-managed-banner::after,
    .support-image-banner::after,
    .about-image-banner::after,
    .where-image-banner::after,
    .contact-image-banner::after,
    .jobs-image-banner::after,
    .page-managed-banner::after {
        background: linear-gradient(0deg, rgba(5, 27, 37, .88) 0%, rgba(5, 43, 57, .44) 44%, rgba(5, 43, 57, .04) 78%);
    }

    .products-managed-banner-media,
    .products-managed-banner-media picture,
    .products-managed-banner-media img,
    .products-managed-banner-media video,
    .support-image-banner>img,
    .about-image-banner>img,
    .where-image-banner>img,
    .contact-image-banner>img,
    .jobs-image-banner>img,
    .jobs-image-banner>video,
    .page-managed-banner>img,
    .page-managed-banner>video,
    .support-image-banner .managed-page-banner-media,
    .about-image-banner .managed-page-banner-media,
    .where-image-banner .managed-page-banner-media,
    .contact-image-banner .managed-page-banner-media,
    .jobs-image-banner .managed-page-banner-media,
    .page-managed-banner .managed-page-banner-media {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
        transform: none !important;
    }

    .products-managed-banner-copy>span,
    .support-banner-copy>span,
    .about-banner-copy>span,
    .where-banner-copy>span,
    .contact-banner-copy>span,
    .page-managed-banner-copy>span,
    .home-hero .hero-actions,
    .products-managed-banner-copy .hero-actions,
    .support-hero-actions,
    .where-hero-actions,
    .contact-hero-actions,
    .jobs-banner-actions,
    .page-managed-banner-copy .hero-actions {
        display: none !important;
    }

    .products-managed-banner h1,
    .support-banner-copy h1,
    .about-banner-copy h1,
    .where-banner-copy h1,
    .contact-banner-copy h1,
    .jobs-banner-copy h1,
    .page-managed-banner-copy h1 {
        max-width: 100%;
        margin: 0 0 10px;
        font-size: clamp(28px, 8.5vw, 36px);
        line-height: 1.08;
    }

    .products-managed-banner p,
    .support-banner-copy p,
    .about-banner-copy p,
    .where-banner-copy p,
    .contact-banner-copy p,
    .jobs-banner-copy p,
    .page-managed-banner-copy p {
        display: -webkit-box;
        max-width: 100%;
        margin: 0;
        overflow: hidden;
        color: rgba(255, 255, 255, .92);
        font-size: 14px;
        line-height: 1.45;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
    }
}

/* Final product-detail polish overrides */
.dynamic-product.product-detail-page {
    --pdp-ink: #0c2133;
    --pdp-muted: #5d7080;
    --pdp-soft: #f4f8fa;
    --pdp-line: #dce6ec;
    padding-top: 104px;
    background: radial-gradient(circle at 18% 0, rgba(21, 155, 215, .12), transparent 34%), linear-gradient(180deg, #f7fafb 0, #fff 48%, #f8fafb 100%)
}

.dynamic-product.product-detail-page>.container {
    width: min(100% - 44px, 1320px)
}

.dynamic-product .product-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 22px;
    color: #728391
}

.dynamic-product .product-detail-hero {
    position: relative;
    grid-template-columns: minmax(0, 1.02fr) minmax(390px, .98fr);
    gap: clamp(34px, 4.4vw, 66px);
    align-items: start;
    padding: clamp(18px, 2.4vw, 30px);
    border: 1px solid rgba(17, 53, 72, .1);
    border-radius: 24px;
    background: rgba(255, 255, 255, .84);
    box-shadow: 0 24px 70px rgba(17, 53, 72, .1);
    backdrop-filter: blur(10px)
}

.dynamic-product .product-detail-media {
    top: 96px;
    min-height: 640px;
    padding: 28px 28px 30px 108px;
    border: 1px solid rgba(17, 53, 72, .08);
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(255, 255, 255, .92), rgba(245, 250, 252, .96)), radial-gradient(circle at 50% 82%, rgba(21, 155, 215, .13), transparent 38%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8)
}

.dynamic-product .product-main-image-wrap {
    display: grid;
    min-height: 555px;
    place-items: center
}

.dynamic-product .product-main-image-wrap::after {
    width: min(74%, 460px);
    height: 34px;
    align-self: end;
    margin-top: -28px;
    border-radius: 999px;
    background: rgba(19, 45, 60, .14);
    filter: blur(18px);
    content: ""
}

.dynamic-product .product-detail-media [data-product-main-image] {
    max-width: min(100%, 620px);
    max-height: 530px;
    object-fit: contain;
    filter: drop-shadow(0 28px 30px rgba(13, 41, 58, .18))
}

.dynamic-product .product-zoom {
    right: 22px;
    bottom: 22px;
    border-color: rgba(12, 33, 51, .12);
    color: #0c6ea5;
    box-shadow: 0 10px 22px rgba(12, 33, 51, .12)
}

.dynamic-product .product-thumb-row {
    left: 24px;
    width: 62px;
    gap: 10px
}

.dynamic-product .product-thumb-row button {
    width: 58px;
    height: 64px;
    border-color: rgba(17, 53, 72, .1);
    border-radius: 8px;
    background: #fff
}

.dynamic-product .product-detail-copy {
    position: sticky;
    top: 98px;
    padding: 4px 0 0
}

.dynamic-product .product-detail-copy .listing-product-category {
    display: inline-flex;
    width: auto;
    margin-bottom: 14px;
    padding: 8px 11px;
    border: 1px solid rgba(21, 155, 215, .18);
    border-radius: 999px;
    background: #eef8fc;
    color: #0879b7;
    letter-spacing: .08em
}

.dynamic-product .product-detail-copy h1 {
    max-width: 17ch;
    margin: 0 0 14px;
    color: var(--pdp-ink);
    font-size: clamp(38px, 3.7vw, 58px);
    line-height: 1.02;
    letter-spacing: 0
}

.dynamic-product .product-detail-copy .model {
    margin: 0 0 12px
}

.dynamic-product .product-status-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 22px
}

.dynamic-product .product-status-row span {
    display: inline-flex;
    align-items: center;
    min-height: 31px;
    padding: 7px 11px;
    border: 1px solid rgba(16, 57, 76, .12);
    border-radius: 999px;
    background: #fff;
    color: #405768;
    font-size: 12px;
    font-weight: 700
}

.dynamic-product .product-detail-lead {
    max-width: 64ch;
    margin: 0 0 24px;
    color: #4d6575;
    font-size: 16px;
    line-height: 1.72
}

.dynamic-product .product-spec-chips {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 0 0 24px;
    padding: 0;
    border: 0
}

.dynamic-product .product-spec-chips li {
    min-height: 52px;
    padding: 13px 14px;
    border: 1px solid rgba(16, 57, 76, .1);
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 8px 18px rgba(17, 53, 72, .04)
}

.dynamic-product .product-enquiry-panel {
    margin: 0 0 24px;
    padding: 22px;
    border: 1px solid rgba(16, 57, 76, .12);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 16px 36px rgba(17, 53, 72, .08)
}

.dynamic-product .product-enquiry-kicker {
    display: block;
    margin-bottom: 6px;
    color: #0b83bd;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase
}

.dynamic-product .product-enquiry-panel .product-price {
    margin: 0 0 8px;
    font-size: 30px
}

.dynamic-product .product-actions {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px
}

.dynamic-product .product-actions .btn {
    min-height: 52px;
    border-radius: 8px
}

.dynamic-product .product-share-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 118px;
    min-height: 52px;
    border: 1px solid #d7e2e8;
    border-radius: 8px;
    background: #f8fbfc;
    color: #17344e;
    font-weight: 800;
    cursor: pointer
}

.dynamic-product .product-share-button svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8
}

.dynamic-product .product-store-link {
    grid-column: 1/-1;
    width: auto;
    margin: 2px 0 0;
    color: #0879b7
}

.dynamic-product .product-service-grid {
    position: static;
    grid-column: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 0;
    padding: 0;
    border: 0
}

.dynamic-product .product-service-grid div {
    min-height: 78px;
    padding: 14px;
    border: 1px solid rgba(16, 57, 76, .1);
    border-radius: 10px;
    background: rgba(255, 255, 255, .78)
}

.dynamic-product .product-service-grid div:last-child {
    border-right: 1px solid rgba(16, 57, 76, .1)
}

.dynamic-product .product-quick-specs {
    overflow: hidden;
    margin: 28px 0 0;
    border: 1px solid rgba(16, 57, 76, .12);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(17, 53, 72, .06)
}

.dynamic-product .product-quick-specs div {
    padding: 22px 20px
}

.dynamic-product .pdp-section {
    padding: 88px 0
}

.dynamic-product .pdp-section>h2,
.dynamic-product .pdp-lifestyle h2,
.dynamic-product .pdp-section-heading h2 {
    max-width: 820px;
    color: var(--pdp-ink);
    letter-spacing: 0
}

.dynamic-product .pdp-feature-grid {
    gap: 16px;
    margin-top: 34px;
    border: 0
}

.dynamic-product .pdp-feature-grid article {
    min-height: 190px;
    padding: 26px;
    border: 1px solid rgba(16, 57, 76, .1);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 14px 30px rgba(17, 53, 72, .06)
}

.dynamic-product .pdp-feature-grid h3 {
    margin: 40px 0 0;
    font-size: 22px;
    line-height: 1.2
}

.dynamic-product .feature-index {
    display: inline-grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 50%;
    background: #eef8fc;
    color: #0879b7;
    font-size: 12px
}

.dynamic-product .pdp-lifestyle {
    overflow: hidden;
    margin-top: 8px;
    border-radius: 22px;
    background: #102d3f;
    color: #fff
}

.dynamic-product .pdp-lifestyle>div:last-child {
    background: transparent
}

.dynamic-product .pdp-lifestyle h2,
.dynamic-product .pdp-lifestyle p,
.dynamic-product .pdp-lifestyle a {
    color: #fff
}

.dynamic-product .pdp-lifestyle p {
    color: rgba(255, 255, 255, .76)
}

.dynamic-product .technology-list {
    margin-top: 38px;
    border-top: 1px solid rgba(16, 57, 76, .12)
}

.dynamic-product .technology-list article {
    grid-template-columns: 120px minmax(220px, .75fr) minmax(0, 1fr);
    padding: 24px 0
}

.dynamic-product .pdp-specifications {
    padding-top: 66px
}

.dynamic-product .pdp-section-heading {
    gap: 44px;
    margin-bottom: 30px
}

.dynamic-product .spec-accordions {
    overflow: hidden;
    border: 1px solid rgba(16, 57, 76, .12);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(17, 53, 72, .06)
}

.dynamic-product .spec-accordions details {
    border-bottom: 1px solid #e6eef2
}

.dynamic-product .spec-accordions details:last-child {
    border-bottom: 0
}

.dynamic-product .spec-accordions summary {
    padding: 22px 24px
}

.dynamic-product .spec-accordions dl {
    padding: 0 24px 24px
}

.dynamic-product .related-products-section {
    margin-top: 18px;
    padding: 62px 0 0;
    border-top: 1px solid #dce6ec
}

.dynamic-product .related-products-heading {
    margin-bottom: 24px
}

.dynamic-product .related-products-heading h2 {
    margin-top: 8px;
    font-size: clamp(30px, 3vw, 42px)
}

.dynamic-product .related-products-slider {
    gap: 18px;
    padding: 4px 4px 18px
}

.dynamic-product .related-product-card {
    flex-basis: 282px;
    border: 1px solid rgba(16, 57, 76, .1);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(17, 53, 72, .06)
}

.dynamic-product .related-product-image {
    min-height: 228px;
    background: linear-gradient(180deg, #f8fbfc, #eef5f8)
}

.dynamic-product .related-product-image img {
    padding: 20px
}

.dynamic-product .related-product-body {
    min-height: 122px;
    padding: 18px
}

.dynamic-product .related-product-body span {
    display: block;
    margin-bottom: 8px;
    color: #0b83bd;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase
}

.dynamic-product .related-product-body h3 {
    margin: 0;
    color: var(--pdp-ink);
    font-size: 15px;
    line-height: 1.35;
    -webkit-line-clamp: 3
}

@media(min-width:1181px) {
    .dynamic-product .product-detail-hero {
        padding-bottom: clamp(18px, 2.4vw, 30px)
    }
}

@media(max-width:1180px) {
    .dynamic-product .product-detail-copy {
        position: static
    }

    .dynamic-product .product-detail-media {
        position: relative;
        top: auto
    }

    .dynamic-product .product-detail-hero {
        grid-template-columns: 1fr
    }
}

@media(max-width:760px) {
    .dynamic-product.product-detail-page {
        padding-top: 84px
    }

    .dynamic-product.product-detail-page>.container {
        width: min(100% - 28px, 1320px)
    }

    .dynamic-product .product-detail-hero {
        padding: 14px;
        border-radius: 18px
    }

    .dynamic-product .product-detail-media {
        min-height: 420px;
        padding: 16px;
        border-radius: 14px
    }

    .dynamic-product .product-main-image-wrap {
        min-height: 320px
    }

    .dynamic-product .product-detail-copy h1 {
        max-width: 100%;
        font-size: clamp(30px, 8.6vw, 40px)
    }

    .dynamic-product .product-status-row span {
        font-size: 11px
    }

    .dynamic-product .product-spec-chips,
    .dynamic-product .product-actions,
    .dynamic-product .product-service-grid {
        grid-template-columns: 1fr
    }

    .dynamic-product .product-share-button {
        width: 100%
    }

    .dynamic-product .product-quick-specs {
        grid-template-columns: repeat(5, minmax(168px, 1fr));
        overflow-x: auto
    }

    .dynamic-product .pdp-section {
        padding: 62px 0
    }

    .dynamic-product .technology-list article,
    .dynamic-product .pdp-section-heading {
        grid-template-columns: 1fr;
        gap: 14px
    }

    .dynamic-product .spec-accordions dl {
        grid-template-columns: 1fr
    }

    .dynamic-product .product-mobile-cta button {
        display: grid;
        min-height: 44px;
        place-items: center;
        border: 1px solid #d7e2e8;
        background: #f8fbfc;
        color: #153b52;
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase
    }
}

@media(min-width:1025px) {
    .dynamic-product.product-detail-page {
        padding-top: 80px
    }

    .dynamic-product.product-detail-page>.container {
        width: 100%;
        max-width: none
    }

    .dynamic-product .product-breadcrumb {
        width: min(100% - 72px, 1320px);
        margin: 22px auto
    }

    .dynamic-product .product-detail-hero {
        width: 100%;
        min-height: calc(100vh - 124px);
        grid-template-columns: minmax(0, 1.05fr) minmax(440px, .95fr);
        align-items: center;
        margin: 0;
        border-right: 0;
        border-left: 0;
        border-radius: 0;
        padding: clamp(34px, 5vw, 72px) max(36px, calc((100vw - 1320px)/2));
        box-shadow: none
    }

    .dynamic-product .product-detail-media {
        position: relative;
        top: auto;
        min-height: min(680px, calc(100vh - 210px))
    }

    .dynamic-product .product-main-image-wrap {
        min-height: min(590px, calc(100vh - 270px))
    }

    .dynamic-product .product-detail-copy {
        position: relative;
        top: auto
    }

    .dynamic-product .product-quick-specs,
    .dynamic-product .pdp-section,
    .dynamic-product .pdp-lifestyle,
    .dynamic-product .related-products-section {
        width: min(100% - 72px, 1320px);
        margin-right: auto;
        margin-left: auto
    }
}

@media(max-width:760px) {
    .dynamic-product .related-product-card {
        flex: 0 0 min(78vw, 270px);
        width: min(78vw, 270px);
        min-width: min(78vw, 270px);
        height: auto;
        min-height: 0;
        overflow: hidden
    }

    .dynamic-product .related-product-card a {
        height: auto;
        min-height: 100%;
        display: flex;
        flex-direction: column
    }

    .dynamic-product .related-product-image {
        flex: 0 0 auto;
        height: clamp(178px, 54vw, 218px);
        min-height: 0
    }

    .dynamic-product .related-product-body {
        flex: 0 0 auto;
        min-height: 104px;
        display: block;
        padding: 16px;
        background: #fff
    }

    .dynamic-product .related-product-body h3 {
        display: -webkit-box;
        overflow: hidden;
        line-height: 1.35;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3
    }
}

@media(min-width:1025px) {
    .dynamic-product .product-detail-hero {
        min-height: calc(100vh - 80px);
        padding: 0;
        gap: 0;
        background: #fff
    }

    .dynamic-product .product-detail-media {
        height: calc(100vh - 80px);
        min-height: 640px;
        border: 0;
        border-radius: 0;
        padding: 40px 36px 40px 118px
    }

    .dynamic-product .product-main-image-wrap {
        min-height: calc(100vh - 160px)
    }

    .dynamic-product .product-detail-copy {
        height: calc(100vh - 80px);
        min-height: 640px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 48px max(40px, calc((100vw - 1320px)/2)) 48px 56px
    }
}

/* Desktop product showcase: keep the first viewport calm, spacious and legible. */
@media(min-width:1025px) {
    .dynamic-product.product-detail-page {
        padding-top: 80px;
        background: #f5f8fa
    }

    .dynamic-product .product-breadcrumb {
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 14px max(36px, calc((100vw - 1440px)/2));
        border-bottom: 1px solid #dfe8ec;
        background: #fff;
        font-size: 12px;
        letter-spacing: .01em
    }

    .dynamic-product .product-detail-hero {
        min-height: calc(100vh - 124px);
        grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
        align-items: stretch;
        background: linear-gradient(105deg, #edf7fa 0%, #fff 46%, #fff 100%)
    }

    .dynamic-product .product-detail-media {
        height: auto;
        min-height: max(600px, calc(100vh - 124px));
        padding: 42px 6vw 42px 10vw;
        background: radial-gradient(circle at 50% 46%, #fff 0 31%, #eef7fa 65%, #e2f0f4 100%);
        box-shadow: inset -1px 0 0 rgba(12, 33, 51, .08)
    }

    .dynamic-product .product-main-image-wrap {
        min-height: max(520px, calc(100vh - 208px))
    }

    .dynamic-product .product-detail-media [data-product-main-image] {
        max-width: min(100%, 760px);
        max-height: min(66vh, 660px)
    }

    .dynamic-product .product-detail-copy {
        height: auto;
        min-height: max(600px, calc(100vh - 124px));
        max-width: 760px;
        padding: 52px max(7vw, 48px) 52px clamp(44px, 6vw, 100px)
    }

    .dynamic-product .product-detail-copy h1 {
        max-width: none;
        font-size: clamp(42px, 3.8vw, 68px);
        line-height: 1.04;
        overflow-wrap: normal;
        text-wrap: pretty
    }

    .dynamic-product .product-detail-lead {
        max-width: 60ch;
        font-size: 17px
    }

    .dynamic-product .product-spec-chips {
        max-width: 670px
    }

    .dynamic-product .product-enquiry-panel {
        max-width: 670px;
        padding: 24px
    }

    .dynamic-product .product-service-grid {
        max-width: 670px
    }

    .dynamic-product .product-quick-specs,
    .dynamic-product .pdp-section,
    .dynamic-product .pdp-lifestyle,
    .dynamic-product .related-products-section {
        width: 100%;
        max-width: none;
        margin-right: 0;
        margin-left: 0;
        padding-right: clamp(36px, 7vw, 120px);
        padding-left: clamp(36px, 7vw, 120px)
    }

    .dynamic-product .product-quick-specs {
        border-right: 0;
        border-left: 0;
        border-radius: 0
    }

    .dynamic-product .pdp-lifestyle {
        padding-top: 0;
        padding-bottom: 0
    }

    .dynamic-product .related-products-section {
        padding-top: 62px
    }

    .dynamic-product .related-product-card {
        height: auto;
        min-height: 360px
    }

    .dynamic-product .related-product-card a {
        height: auto;
        min-height: 360px
    }

    .dynamic-product .related-product-body {
        flex: 1 1 auto;
        min-height: 132px;
        align-items: flex-start
    }

    .dynamic-product .related-product-body h3 {
        display: block;
        overflow: visible;
        -webkit-line-clamp: unset;
        overflow-wrap: anywhere
    }
}

/* Product detail responsive fixes: mobile gallery thumbnails and desktop related cards. */

/* Mobile web-app shell: app-like navigation, catalogue browsing and product views. */
.mobile-app-tabs {
    display: none;
}

@media (max-width: 768px) {
    :root {
        --app-bottom-nav: 74px;
        --app-shell-bg: #f5f8fa;
        --app-ink: #082f3f;
        --app-muted: #607580;
        --app-line: #dce8ee;
    }

    html {
        background: var(--app-shell-bg);
    }

    body {
        background:
            linear-gradient(180deg, #ffffff 0, #f5f8fa 340px, #f5f8fa 100%);
        color: var(--app-ink);
        padding-bottom: calc(var(--app-bottom-nav) + env(safe-area-inset-bottom));
    }

    body.reference-menu-open {
        overflow: hidden;
    }

    .reference-header {
        color: var(--app-ink);
        background: rgba(255, 255, 255, .94);
        box-shadow: 0 1px 0 rgba(8, 47, 63, .08), 0 12px 32px rgba(8, 47, 63, .08);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }

    .reference-header-shell {
        width: 100%;
        height: 64px;
        padding: 0 16px;
        gap: 12px;
    }

    .reference-logo {
        width: 132px;
        height: 40px;
        display: grid;
        place-items: center;
        overflow: hidden;
        border-radius: 0;
        background: transparent;
    }

    .reference-logo img {
        height: 38px;
        transform: translateY(-7px);
        filter: none;
    }

    .reference-actions {
        gap: 4px;
    }

    .reference-icon-button,
    .reference-menu-button {
        width: 42px;
        height: 42px;
        border: 1px solid transparent;
        color: #073144;
    }

    .reference-icon-button {
        background: #f3f8fa;
        border-color: #e3eef3;
    }

    .reference-menu-button {
        order: -1;
        margin-right: 2px;
        background: transparent;
    }

    .reference-contact,
    .reference-region {
        display: none;
    }

    .reference-search {
        position: fixed;
        z-index: 10001;
        top: 72px;
        right: 12px;
        left: 12px;
        max-height: none;
        border: 1px solid var(--app-line);
        border-radius: 18px;
        box-shadow: 0 22px 54px rgba(8, 47, 63, .16);
        transform: translateY(-10px);
        pointer-events: none;
    }

    .reference-search.is-open {
        max-height: 92px;
        border-top: 1px solid var(--app-line);
        transform: translateY(0);
        pointer-events: auto;
    }

    .reference-search>div {
        width: 100%;
        padding: 18px;
        border: 0;
    }

    .reference-mobile {
        z-index: 10000;
        display: flex;
        flex-direction: column;
        background:
            linear-gradient(180deg, #ffffff 0%, #f7fbfc 100%);
    }

    .reference-mobile-head,
    .reference-mobile nav {
        width: 100%;
        padding-right: 20px;
        padding-left: 20px;
    }

    .reference-mobile-head {
        height: 68px;
        border-bottom: 1px solid #e2edf2;
    }

    .reference-mobile-head img {
        height: 40px;
        transform: translateY(-7px);
    }

    .reference-mobile-head button {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: #f0f6f8;
        font-size: 28px;
    }

    .reference-mobile nav {
        flex: 1;
        margin-top: 0;
        padding-top: 14px;
        padding-bottom: calc(24px + var(--app-bottom-nav));
        overflow-y: auto;
    }

    .reference-mobile nav a {
        min-height: 58px;
        margin-bottom: 8px;
        padding: 0 16px;
        border: 1px solid #e2edf2;
        border-radius: 16px;
        background: #fff;
        box-shadow: 0 10px 24px rgba(8, 47, 63, .05);
        font-size: 17px;
        font-weight: 800;
    }

    .reference-mobile nav p {
        margin: 18px 4px 0;
        padding: 14px;
        border-radius: 14px;
        background: #eef8fb;
    }

    .mobile-app-tabs {
        position: fixed;
        z-index: 9998;
        right: 0;
        bottom: 0;
        left: 0;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 4px;
        min-height: var(--app-bottom-nav);
        padding: 8px max(10px, env(safe-area-inset-right)) calc(8px + env(safe-area-inset-bottom)) max(10px, env(safe-area-inset-left));
        border-top: 1px solid rgba(8, 47, 63, .09);
        background: rgba(255, 255, 255, .96);
        box-shadow: 0 -18px 42px rgba(8, 47, 63, .12);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }

    .mobile-app-tab {
        min-width: 0;
        min-height: 54px;
        display: grid;
        place-items: center;
        gap: 3px;
        border-radius: 16px;
        color: #385565;
        font-size: 11px;
        font-weight: 800;
        line-height: 1;
    }

    .mobile-app-tab svg {
        width: 23px;
        height: 23px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.9;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .mobile-app-tab.active {
        color: #ffffff;
        background: linear-gradient(135deg, var(--brand-blue), #087eb5);
        box-shadow: 0 10px 22px rgba(21, 155, 215, .25);
    }

    .floating-actions {
        right: 14px;
        bottom: calc(var(--app-bottom-nav) + 14px + env(safe-area-inset-bottom));
        z-index: 9990;
    }

    .floating-btn {
        width: 46px;
        height: 46px;
        box-shadow: 0 16px 32px rgba(8, 47, 63, .18);
    }

    .footer {
        padding-bottom: calc(34px + var(--app-bottom-nav));
    }

    .product-listing-page {
        padding-top: 64px;
        background: var(--app-shell-bg);
    }

    .products-managed-banner {
        min-height: 390px;
        margin-top: 0;
        border-radius: 0 0 28px 28px;
        box-shadow: 0 18px 40px rgba(8, 47, 63, .12);
    }

    .products-managed-banner-copy {
        max-width: 92%;
    }

    .products-managed-banner h1 {
        font-size: clamp(34px, 10vw, 44px);
        line-height: 1.02;
    }

    .products-managed-banner p {
        font-size: 15px;
        line-height: 1.55;
    }

    .product-category-strip {
        margin-top: 14px;
        border: 0;
        background: transparent;
        box-shadow: none;
    }

    .product-category-strip .container {
        padding-right: 0;
        padding-left: 16px;
    }

    .product-category-panel {
        display: block;
        padding: 0;
        min-height: 0;
    }

    .product-category-intro,
    .product-category-nav {
        display: none;
    }

    .product-category-row {
        display: flex;
        gap: 12px;
        padding: 8px 16px 14px 0;
        overflow-x: auto;
        scroll-padding-left: 16px;
    }

    .listing-category-card {
        flex: 0 0 92px;
        width: 92px;
        min-height: 118px;
        border: 0;
        border-radius: 999px 999px 18px 18px;
        background: transparent;
        box-shadow: none;
        overflow: visible;
    }

    .listing-category-card img {
        width: 72px;
        height: 72px;
        min-height: 72px;
        margin: 0 auto 8px;
        padding: 8px;
        border: 2px solid transparent;
        border-radius: 50%;
        background: #ffffff;
        object-fit: contain;
        box-shadow: 0 10px 24px rgba(8, 47, 63, .08);
    }

    .listing-category-card span {
        min-height: 34px;
        padding: 0;
        color: #163849;
        font-size: 12px;
        line-height: 1.15;
        font-weight: 800;
    }

    .listing-category-card.active img,
    .listing-category-card:hover img {
        border-color: var(--brand-blue);
        box-shadow: 0 12px 28px rgba(21, 155, 215, .18);
    }

    .listing-category-card.active,
    .listing-category-card:hover {
        color: var(--brand-blue);
        transform: none;
    }

    .listing-category-card.active span::after,
    .listing-category-card:hover span::after {
        display: none;
    }

    .listing-shell {
        padding: 10px 0 calc(38px + var(--app-bottom-nav));
    }

    .listing-shell .container {
        padding-right: 16px;
        padding-left: 16px;
    }

    .listing-heading {
        display: grid;
        grid-template-columns: 1fr;
        gap: 14px;
        margin-bottom: 16px;
    }

    .listing-kicker {
        display: none;
    }

    .listing-heading h1,
    .product-listing-page .listing-heading h1 {
        font-size: 28px;
        line-height: 1.1;
        letter-spacing: -.03em;
    }

    .listing-search {
        width: 100%;
    }

    .listing-search input {
        height: 58px;
        border: 1px solid #dfebf1;
        border-radius: 18px;
        padding-left: 50px;
        color: #102f40;
        background: #ffffff;
        box-shadow: 0 12px 30px rgba(8, 47, 63, .07);
        font-size: 15px;
        font-weight: 700;
    }

    .listing-layout {
        display: block;
    }

    .listing-filter-toggle {
        position: sticky;
        top: 72px;
        z-index: 12;
        min-height: 52px;
        margin: 0 0 16px;
        border-radius: 18px;
        color: #ffffff;
        background: linear-gradient(135deg, #123544, #0b6079);
        border: 0;
        box-shadow: 0 14px 28px rgba(8, 47, 63, .16);
        font-size: 14px;
    }

    .product-listing-page .listing-filters,
    .listing-filters {
        position: fixed;
        z-index: 10002;
        right: 0;
        bottom: 0;
        left: 0;
        display: block;
        max-height: min(78svh, 680px);
        padding: 20px 18px calc(18px + env(safe-area-inset-bottom));
        overflow-y: auto;
        border: 0;
        border-radius: 24px 24px 0 0;
        background: #ffffff;
        box-shadow: 0 -24px 70px rgba(8, 47, 63, .28);
        transform: translateY(105%);
        visibility: hidden;
        transition: transform .28s cubic-bezier(.22, 1, .36, 1), visibility .28s;
    }

    .product-listing-page .listing-filters.is-mobile-open,
    .listing-filters.is-mobile-open {
        display: block;
        transform: translateY(0);
        visibility: visible;
    }

    .filter-head {
        position: sticky;
        top: -20px;
        z-index: 2;
        margin: -20px -18px 18px;
        padding: 18px;
        background: #ffffff;
        border-bottom: 1px solid #e2edf2;
    }

    .filter-head h2 {
        font-size: 24px;
    }

    .filter-group {
        margin-bottom: 18px;
        padding-bottom: 18px;
        border-bottom: 1px solid #edf3f6;
    }

    .filter-group label {
        min-height: 48px;
        margin-bottom: 10px;
        padding: 0 14px;
        border-radius: 14px;
        background: #f5f9fb;
        font-size: 14px;
    }

    .filter-reset-block {
        height: 50px;
        border-radius: 16px;
    }

    .listing-results,
    .product-listing-page .listing-results {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .listing-product-card,
    .product-listing-page .listing-product-card {
        border: 1px solid #e0ebf0;
        border-radius: 18px;
        box-shadow: 0 12px 30px rgba(8, 47, 63, .08);
    }

    .listing-product-image,
    .product-listing-page .listing-product-image {
        height: auto;
        aspect-ratio: 1 / .92;
        border-bottom: 0;
        background: linear-gradient(180deg, #ffffff 0%, #f0f6f8 100%);
    }

    .listing-product-image img,
    .product-listing-page .listing-product-image img {
        padding: 16px;
    }

    .listing-product-badge,
    .product-listing-page .listing-product-badge {
        top: 10px;
        left: 10px;
        min-height: 22px;
        padding: 0 8px;
        font-size: 8px;
    }

    .listing-product-body,
    .product-listing-page .listing-product-body {
        padding: 14px;
    }

    .listing-product-category,
    .product-listing-page .listing-product-category {
        font-size: 10px;
    }

    .listing-product-body h2,
    .product-listing-page .listing-product-body h2 {
        min-height: 48px;
        margin: 8px 0 12px;
        font-size: 14px;
        line-height: 1.25;
        letter-spacing: 0;
        -webkit-line-clamp: 3;
    }

    .product-listing-page .listing-product-model {
        margin-top: 0;
        font-size: 11px;
    }

    .listing-learn,
    .product-listing-page .listing-learn {
        min-height: 42px;
        justify-content: center;
        margin-top: 12px;
        padding: 0;
        border: 0;
        border-radius: 13px;
        background: linear-gradient(135deg, var(--brand-blue), #087eb5);
        color: #ffffff;
        font-size: 11px;
        letter-spacing: .06em;
    }

    .dynamic-product.product-detail-page {
        padding-top: 74px;
        padding-bottom: calc(30px + var(--app-bottom-nav));
        background: var(--app-shell-bg);
    }

    .dynamic-product .product-breadcrumb {
        display: none;
    }

    .dynamic-product .product-detail-hero {
        gap: 16px;
    }

    .dynamic-product .product-detail-media {
        position: relative;
        top: auto;
        min-height: 0;
        padding: 16px;
        border-radius: 22px;
        box-shadow: 0 14px 34px rgba(8, 47, 63, .1);
    }

    .dynamic-product .product-main-image-wrap {
        min-height: 280px;
        aspect-ratio: 1 / .9;
    }

    .dynamic-product .product-detail-media [data-product-main-image] {
        max-height: 280px;
    }

    .dynamic-product .product-thumb-row {
        position: static;
        width: auto;
        margin-top: 12px;
        padding: 2px 0 4px;
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
    }

    .dynamic-product .product-detail-copy {
        padding: 20px 4px 0;
    }

    .dynamic-product .product-detail-copy h1 {
        font-size: clamp(28px, 8vw, 34px);
        line-height: 1.1;
    }

    .dynamic-product .product-enquiry-panel .btn {
        border-radius: 16px;
    }

    .product-mobile-cta,
    .dynamic-product .product-mobile-cta {
        bottom: calc(var(--app-bottom-nav) + env(safe-area-inset-bottom));
        z-index: 9997;
        border-top: 1px solid #dfeaf0;
        box-shadow: 0 -14px 34px rgba(8, 47, 63, .12);
    }

    .dynamic-product .product-service-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        border: 0;
    }

    .dynamic-product .product-service-grid div {
        min-height: 86px;
        padding: 14px;
        border: 1px solid #e0ebf0;
        border-radius: 16px;
        background: #ffffff;
    }
}

@media (max-width: 420px) {
    .listing-results,
    .product-listing-page .listing-results {
        gap: 12px;
    }

    .listing-product-body,
    .product-listing-page .listing-product-body {
        padding: 12px;
    }

    .listing-product-body h2,
    .product-listing-page .listing-product-body h2 {
        font-size: 13px;
    }
}

/* Mobile catalogue screenshot match: compact app density for 390px phones. */
@media (max-width: 768px) {
    :root {
        --app-bottom-nav: 50px;
    }

    body {
        background: #ffffff;
        padding-bottom: calc(50px + env(safe-area-inset-bottom));
    }

    .reference-header-shell {
        height: 38px;
        padding: 0 8px;
        gap: 6px;
    }

    .reference-logo {
        width: 92px;
        height: 28px;
        justify-self: start;
    }

    .reference-logo img {
        height: 26px;
        transform: translateY(-5px);
    }

    .reference-actions {
        margin-left: auto;
        gap: 2px;
    }

    .reference-icon-button,
    .reference-menu-button {
        width: 30px;
        height: 30px;
        background: transparent;
        border: 0;
    }

    .reference-actions svg,
    .reference-search svg,
    .reference-mobile svg {
        width: 16px;
        height: 16px;
        stroke-width: 2.2;
    }

    .reference-header+main,
    .reference-header+.dynamic-product,
    .product-listing-page {
        padding-top: 38px;
    }

    .product-listing-page .listing-shell {
        padding-top: 10px;
    }

    .products-managed-banner {
        width: calc(100% - 12px);
        min-height: 132px;
        height: 132px;
        margin: 0 6px 6px;
        align-items: stretch;
        border-radius: 6px;
        overflow: hidden;
        box-shadow: 0 5px 14px rgba(8, 47, 63, .16);
    }

    .products-managed-banner .container {
        width: 100%;
        padding: 0 14px;
        display: flex;
        align-items: center;
    }

    .products-managed-banner-copy {
        width: 48%;
        max-width: 48%;
        padding: 0;
    }

    .products-managed-banner h1 {
        max-width: 150px;
        margin: 0 0 7px;
        font-size: 16px;
        line-height: 1.18;
        letter-spacing: -.02em;
    }

    .products-managed-banner p {
        max-width: 142px;
        margin: 0 0 8px;
        font-size: 7px;
        line-height: 1.35;
    }

    .products-managed-banner-copy .hero-actions {
        display: flex;
        margin: 0;
    }

    .products-managed-banner-copy .btn {
        min-height: 24px;
        padding: 0 9px;
        border-radius: 3px;
        font-size: 7px;
        font-weight: 800;
    }

    .products-managed-banner-shade {
        background: linear-gradient(90deg, rgba(4, 29, 40, .72) 0%, rgba(4, 29, 40, .42) 44%, rgba(4, 29, 40, .04) 100%);
    }

    .products-managed-banner-media img,
    .products-managed-banner-media video {
        object-position: center center;
    }

    .product-category-strip {
        margin: 0;
    }

    .product-category-strip .container {
        padding-left: 6px;
    }

    .product-category-row {
        gap: 7px;
        padding: 4px 8px 9px 0;
    }

    .listing-category-card {
        flex-basis: 49px;
        width: 49px;
        min-height: 58px;
    }

    .listing-category-card img {
        width: 34px;
        height: 34px;
        min-height: 34px;
        margin-bottom: 3px;
        padding: 3px;
        border-width: 1px;
        box-shadow: 0 4px 10px rgba(8, 47, 63, .09);
    }

    .listing-category-card span {
        min-height: 18px;
        font-size: 6px;
        line-height: 1.15;
    }

    .listing-shell .container {
        padding-right: 6px;
        padding-left: 6px;
    }

    .listing-heading {
        margin-bottom: 8px;
        gap: 7px;
    }

    .listing-heading h1,
    .product-listing-page .listing-heading h1 {
        order: 2;
        font-size: 13px;
        font-weight: 800;
        line-height: 1.1;
    }

    .listing-search {
        order: 1;
        width: calc(100% - 75px);
    }

    .listing-search input {
        height: 30px;
        border-radius: 5px;
        padding: 0 8px 0 28px;
        font-size: 8px;
        box-shadow: none;
    }

    .listing-search::before {
        left: 10px;
        width: 10px;
        height: 10px;
        border-width: 1.5px;
    }

    .listing-search::after {
        left: 19px;
        top: 19px;
        width: 5px;
        height: 1.5px;
    }

    .listing-layout {
        position: relative;
    }

    .listing-filter-toggle {
        position: absolute;
        top: -45px;
        right: 0;
        z-index: 3;
        width: 68px;
        min-height: 30px;
        margin: 0;
        padding: 0 9px;
        border: 1px solid #dfe9ee;
        border-radius: 5px;
        background: #ffffff;
        color: #082f3f;
        box-shadow: none;
        font-size: 9px;
        font-weight: 800;
    }

    .listing-filter-toggle svg {
        width: 13px;
        height: 13px;
        stroke-width: 2;
    }

    .listing-results,
    .product-listing-page .listing-results {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .listing-product-card,
    .product-listing-page .listing-product-card {
        border-radius: 6px;
        box-shadow: none;
    }

    .listing-product-image,
    .product-listing-page .listing-product-image {
        aspect-ratio: 1 / .84;
        background: #ffffff;
    }

    .listing-product-image img,
    .product-listing-page .listing-product-image img {
        padding: 9px;
    }

    .listing-product-badge,
    .product-listing-page .listing-product-badge {
        top: 7px;
        left: 7px;
        min-height: 14px;
        padding: 0 5px;
        border-radius: 3px;
        font-size: 6px;
    }

    .listing-product-body,
    .product-listing-page .listing-product-body {
        padding: 8px;
    }

    .listing-product-category,
    .product-listing-page .listing-product-category,
    .product-listing-page .listing-product-model {
        font-size: 7px;
        line-height: 1.25;
    }

    .listing-product-body h2,
    .product-listing-page .listing-product-body h2 {
        min-height: 35px;
        margin: 5px 0 7px;
        font-size: 8px;
        line-height: 1.32;
    }

    .listing-learn,
    .product-listing-page .listing-learn {
        min-height: 20px;
        margin-top: 7px;
        border-radius: 4px;
        font-size: 7px;
    }

    .mobile-app-tabs {
        min-height: 50px;
        padding: 4px max(6px, env(safe-area-inset-right)) calc(4px + env(safe-area-inset-bottom)) max(6px, env(safe-area-inset-left));
        box-shadow: 0 -8px 22px rgba(8, 47, 63, .11);
    }

    .mobile-app-tab {
        min-height: 42px;
        border-radius: 7px;
        font-size: 8px;
        gap: 1px;
        color: #082f3f;
    }

    .mobile-app-tab svg {
        width: 19px;
        height: 19px;
    }

    .mobile-app-tab.active {
        color: var(--brand-blue);
        background: transparent;
        box-shadow: none;
    }

    .floating-actions {
        right: calc(50% - 18px);
        bottom: calc(50px + env(safe-area-inset-bottom) + 6px);
    }

    .floating-btn {
        width: 36px;
        height: 36px;
        background-color: #1d252b;
        box-shadow: 0 8px 18px rgba(0, 0, 0, .22);
    }
}
.dynamic-product .product-thumb-row {
    min-width: 0;
}

.dynamic-product .related-product-card a {
    overflow: hidden;
}

.dynamic-product .related-product-body h3 {
    display: block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media(max-width:760px) {
    .dynamic-product .product-detail-media {
        display: flex;
        min-height: 0;
        flex-direction: column;
        padding: 14px;
    }

    .dynamic-product .product-main-image-wrap {
        width: 100%;
        min-height: clamp(260px, 74vw, 340px);
    }

    .dynamic-product .product-detail-media [data-product-main-image] {
        max-width: 100%;
        max-height: clamp(240px, 68vw, 320px);
    }

    .dynamic-product .product-thumb-row {
        position: static;
        width: 100%;
        max-width: 100%;
        display: grid;
        grid-auto-columns: clamp(68px, 21vw, 86px);
        grid-auto-flow: column;
        gap: 10px;
        margin-top: 14px;
        padding: 2px 2px 8px;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        scroll-snap-type: x proximity;
        scrollbar-width: thin;
    }

    .dynamic-product .product-thumb-row button {
        width: auto;
        height: clamp(58px, 18vw, 72px);
        flex: 0 0 auto;
        scroll-snap-align: start;
    }

    .dynamic-product .product-media-rail {
        display: none;
    }
}

@media(min-width:1025px) {
    .dynamic-product .related-products-slider {
        align-items: stretch;
    }

    .dynamic-product .related-product-card {
        flex: 0 0 clamp(250px, 21vw, 292px);
        min-height: 334px;
    }

    .dynamic-product .related-product-card a {
        min-height: 334px;
    }

    .dynamic-product .related-product-image {
        min-height: 206px;
    }

    .dynamic-product .related-product-body {
        min-height: 96px;
        padding: 16px 18px 18px;
    }

    .dynamic-product .related-product-body h3 {
        overflow-wrap: normal;
    }
}

/* Mobile products page repair: force screenshot-style compact catalogue UI. */
@media (max-width: 768px) {
    .reference-header,
    .reference-header.is-solid,
    .reference-header.is-open {
        height: 42px !important;
        min-height: 42px !important;
        background: #fff !important;
        color: #082f3f !important;
        box-shadow: 0 1px 0 #e6eef2 !important;
    }

    .reference-header-shell {
        height: 42px !important;
        padding: 0 10px !important;
    }

    .reference-logo {
        width: 104px !important;
        height: 34px !important;
        display: flex !important;
        align-items: center !important;
        overflow: hidden !important;
    }

    .reference-logo img {
        width: 96px !important;
        height: auto !important;
        max-width: none !important;
        transform: translateY(-9px) !important;
        filter: none !important;
    }

    .reference-menu-button,
    .reference-icon-button {
        width: 30px !important;
        height: 30px !important;
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
    }

    .reference-menu-button {
        order: 0 !important;
        margin-left: auto !important;
    }

    .reference-actions {
        margin-left: auto !important;
        gap: 4px !important;
    }

    .reference-actions svg {
        width: 15px !important;
        height: 15px !important;
    }

    .reference-header+main,
    .reference-header+.dynamic-product,
    .product-listing-page {
        padding-top: 42px !important;
    }

    .product-category-strip {
        height: auto !important;
        margin: 0 !important;
        padding: 0 !important;
        background: #fff !important;
        border: 0 !important;
        box-shadow: none !important;
        overflow: hidden !important;
    }

    .product-category-strip .container {
        width: 100% !important;
        max-width: none !important;
        padding: 0 !important;
    }

    .product-category-panel {
        display: block !important;
        min-height: 0 !important;
        padding: 0 !important;
    }

    .product-category-intro,
    .product-category-nav,
    .product-category-prev,
    .product-category-next {
        display: none !important;
        visibility: hidden !important;
    }

    .product-category-row {
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
        height: 62px !important;
        min-height: 62px !important;
        max-height: 62px !important;
        margin: 0 !important;
        padding: 3px 8px 4px !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scroll-snap-type: x proximity !important;
        background: #fff !important;
    }

    .listing-category-card,
    .product-listing-page .listing-category-card {
        flex: 0 0 66px !important;
        width: 66px !important;
        min-width: 66px !important;
        height: auto !important;
        min-height: 0 !important;
        display: grid !important;
        justify-items: center !important;
        align-content: center !important;
        border: 0 !important;
        border-radius: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        overflow: visible !important;
        transform: none !important;
    }

    .listing-category-card img,
    .product-listing-page .listing-category-card img {
        display: block !important;
        width: 40px !important;
        height: 40px !important;
        min-width: 40px !important;
        min-height: 40px !important;
        max-width: 40px !important;
        max-height: 40px !important;
        margin: 0 0 3px !important;
        padding: 4px !important;
        border: 1px solid #e5eef3 !important;
        border-radius: 50% !important;
        background: #f7fafb !important;
        object-fit: contain !important;
        object-position: center !important;
        box-shadow: 0 7px 18px rgba(8, 47, 63, .1) !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .listing-category-card.active img,
    .listing-category-card:hover img {
        border-color: var(--brand-blue) !important;
    }

    .listing-category-card span,
    .product-listing-page .listing-category-card span {
        display: block !important;
        min-height: 0 !important;
        padding: 0 !important;
        color: #082f3f !important;
        font-size: 6.5px !important;
        font-weight: 800 !important;
        line-height: 1.08 !important;
        text-align: center !important;
        overflow-wrap: normal !important;
        word-break: normal !important;
    }

    .listing-category-card.active span,
    .listing-category-card:hover span {
        color: var(--brand-blue) !important;
    }

    .product-listing-page .listing-shell,
    .listing-shell {
        padding: 6px 0 calc(58px + env(safe-area-inset-bottom)) !important;
        background: #f4f8fa !important;
    }

    .listing-shell .container {
        padding: 0 8px !important;
    }

    .listing-heading {
        display: grid !important;
        grid-template-columns: 1fr !important;
        align-items: end !important;
        gap: 8px !important;
        margin: 0 0 10px !important;
    }

    .listing-heading>div {
        grid-column: 1 / -1 !important;
    }

    .listing-heading h1,
    .product-listing-page .listing-heading h1 {
        margin: 0 0 6px !important;
        font-size: 14px !important;
        line-height: 1.1 !important;
    }

    .listing-search {
        grid-column: 1 !important;
        width: calc(100% - 82px) !important;
        order: initial !important;
    }

    .listing-layout {
        position: relative !important;
    }

    .listing-filter-toggle {
        position: absolute !important;
        top: -40px !important;
        right: 0 !important;
        z-index: 5 !important;
        width: 74px !important;
        min-height: 30px !important;
        margin: 0 !important;
        padding: 0 7px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 4px !important;
        border: 1px solid #dfe8ed !important;
        border-radius: 5px !important;
        background: #fff !important;
        color: #082f3f !important;
        box-shadow: none !important;
        font-size: 8px !important;
        line-height: 1.05 !important;
    }

    .listing-results,
    .product-listing-page .listing-results {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 8px !important;
    }
}

/* Mobile bottom navigation polish: modern motion and side quick actions. */
@media (max-width: 768px) {
    :root {
        --app-bottom-nav: 58px;
    }

    .mobile-app-tabs {
        min-height: var(--app-bottom-nav) !important;
        padding: 5px max(7px, env(safe-area-inset-right)) calc(5px + env(safe-area-inset-bottom)) max(7px, env(safe-area-inset-left)) !important;
        border-top: 1px solid rgba(8, 47, 63, .08) !important;
        background: rgba(255, 255, 255, .9) !important;
        box-shadow: 0 -10px 28px rgba(8, 47, 63, .14) !important;
        backdrop-filter: blur(18px) saturate(1.25) !important;
        -webkit-backdrop-filter: blur(18px) saturate(1.25) !important;
    }

    .mobile-app-tab {
        position: relative !important;
        min-height: 46px !important;
        isolation: isolate !important;
        overflow: visible !important;
        border-radius: 14px !important;
        color: #496372 !important;
        font-size: 8px !important;
        transition: color .22s ease, transform .22s ease, background-color .22s ease !important;
    }

    .mobile-app-tab::before {
        position: absolute;
        z-index: -1;
        top: 4px;
        left: 50%;
        width: 34px;
        height: 34px;
        border-radius: 14px;
        background: linear-gradient(135deg, rgba(21, 155, 215, .12), rgba(120, 190, 32, .13));
        content: "";
        opacity: 0;
        transform: translateX(-50%) scale(.72);
        transition: opacity .24s ease, transform .24s cubic-bezier(.2, .8, .2, 1);
    }

    .mobile-app-tab::after {
        position: absolute;
        top: 3px;
        left: 50%;
        width: 4px;
        height: 4px;
        border-radius: 50%;
        background: var(--brand-green);
        content: "";
        opacity: 0;
        transform: translateX(-50%) translateY(-5px);
        transition: opacity .22s ease, transform .22s ease;
    }

    .mobile-app-tab svg {
        width: 20px !important;
        height: 20px !important;
        stroke-width: 2.15 !important;
        filter: drop-shadow(0 4px 7px rgba(8, 47, 63, .08));
        transition: transform .24s cubic-bezier(.2, .8, .2, 1), stroke .22s ease, filter .22s ease !important;
    }

    .mobile-app-tab span {
        transition: transform .22s ease, opacity .22s ease;
    }

    .mobile-app-tab.active,
    .mobile-app-tab:hover {
        color: var(--brand-blue) !important;
        background: transparent !important;
        box-shadow: none !important;
        transform: translateY(-1px);
    }

    .mobile-app-tab.active::before {
        opacity: 1;
        transform: translateX(-50%) scale(1);
        animation: mobileTabGlow 2.8s ease-in-out infinite;
    }

    .mobile-app-tab.active::after {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    .mobile-app-tab.active svg {
        color: var(--brand-blue);
        transform: translateY(-3px) scale(1.08);
        filter: drop-shadow(0 8px 12px rgba(21, 155, 215, .18));
        animation: mobileTabIconFloat 2.4s ease-in-out infinite;
    }

    .mobile-app-tab:active {
        transform: translateY(1px) scale(.96);
    }

    .floating-actions {
        right: 12px !important;
        left: auto !important;
        bottom: calc(var(--app-bottom-nav) + 12px + env(safe-area-inset-bottom)) !important;
        z-index: 9997 !important;
        gap: 8px !important;
        align-items: center !important;
        transform: none !important;
    }

    .floating-btn {
        width: 38px !important;
        height: 38px !important;
        border: 1px solid rgba(255, 255, 255, .72) !important;
        background-color: #102b3a !important;
        box-shadow: 0 10px 22px rgba(8, 47, 63, .24) !important;
        transition: transform .22s ease, box-shadow .22s ease, background-color .22s ease !important;
    }

    .floating-btn::before {
        width: 18px !important;
        height: 18px !important;
    }

    .floating-btn-scroll {
        background-color: #102b3a !important;
    }

    .floating-btn-whatsapp {
        background-color: #22c55e !important;
        animation: quickActionPulse 2.6s ease-in-out infinite;
    }

    .floating-btn:hover,
    .floating-btn:active {
        transform: translateY(-2px) scale(1.05) !important;
        box-shadow: 0 14px 28px rgba(8, 47, 63, .28) !important;
    }
}

@keyframes mobileTabGlow {
    0%, 100% {
        box-shadow: 0 7px 18px rgba(21, 155, 215, .08);
    }

    50% {
        box-shadow: 0 8px 22px rgba(21, 155, 215, .2);
    }
}

@keyframes mobileTabIconFloat {
    0%, 100% {
        transform: translateY(-3px) scale(1.08);
    }

    50% {
        transform: translateY(-5px) scale(1.1);
    }
}

@keyframes quickActionPulse {
    0%, 100% {
        box-shadow: 0 10px 22px rgba(8, 47, 63, .24), 0 0 0 0 rgba(34, 197, 94, .22);
    }

    50% {
        box-shadow: 0 12px 26px rgba(8, 47, 63, .26), 0 0 0 8px rgba(34, 197, 94, 0);
    }
}

@media (max-width: 768px) and (prefers-reduced-motion: reduce) {
    .mobile-app-tab,
    .mobile-app-tab::before,
    .mobile-app-tab::after,
    .mobile-app-tab svg,
    .floating-btn,
    .floating-btn-whatsapp {
        animation: none !important;
        transition-duration: .01ms !important;
    }
}

/* Mobile bottom navigation: raised soft-pill style matching the provided sample. */
@media (max-width: 768px) {
    :root {
        --app-bottom-nav: 66px;
        --sample-nav-red: var(--brand-blue);
        --sample-nav-bg: #eef9fd;
        --sample-nav-muted: #4f7180;
    }

    body {
        padding-bottom: calc(var(--app-bottom-nav) + 10px + env(safe-area-inset-bottom)) !important;
    }

    .mobile-app-tabs {
        right: max(10px, env(safe-area-inset-right)) !important;
        bottom: max(6px, env(safe-area-inset-bottom)) !important;
        left: max(10px, env(safe-area-inset-left)) !important;
        width: auto !important;
        min-height: 56px !important;
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
        gap: 0 !important;
        padding: 7px 10px 6px !important;
        border: 1px solid rgba(233, 95, 95, .08) !important;
        border-radius: 22px !important;
        background: var(--sample-nav-bg) !important;
        box-shadow: 0 12px 34px rgba(8, 47, 63, .14) !important;
        overflow: visible !important;
        backdrop-filter: blur(14px) saturate(1.08) !important;
        -webkit-backdrop-filter: blur(14px) saturate(1.08) !important;
    }

    .mobile-app-tab {
        min-height: 43px !important;
        display: grid !important;
        grid-template-rows: 24px 12px !important;
        place-items: center !important;
        align-content: end !important;
        gap: 2px !important;
        border-radius: 18px !important;
        color: var(--sample-nav-muted) !important;
        font-size: 7px !important;
        font-weight: 800 !important;
        line-height: 1 !important;
        transform: none !important;
    }

    .mobile-app-tab::before,
    .mobile-app-tab::after {
        content: none !important;
    }

    .mobile-app-tab svg {
        width: 16px !important;
        height: 16px !important;
        padding: 0 !important;
        border-radius: 50% !important;
        color: currentColor !important;
        stroke-width: 2.25 !important;
        filter: none !important;
        transform: none !important;
        animation: none !important;
        transition: transform .22s ease, color .22s ease, background-color .22s ease, box-shadow .22s ease !important;
    }

    .mobile-app-tab span {
        color: currentColor !important;
        transform: none !important;
        opacity: 1 !important;
    }

    .mobile-app-tab.active {
        color: var(--sample-nav-red) !important;
        background: transparent !important;
        box-shadow: none !important;
        transform: none !important;
    }

    .mobile-app-tab.active svg {
        width: 38px !important;
        height: 38px !important;
        padding: 11px !important;
        color: #fff !important;
        background: linear-gradient(135deg, var(--brand-blue), var(--brand-green)) !important;
        box-shadow: 0 8px 18px rgba(21, 155, 215, .28) !important;
        transform: translateY(-13px) !important;
        animation: sampleActiveFloat 2.8s ease-in-out infinite !important;
    }

    .mobile-app-tab.active span {
        transform: translateY(-7px) !important;
    }

    .mobile-app-tab:active svg {
        transform: scale(.92) !important;
    }

    .mobile-app-tab.active:active svg {
        transform: translateY(-13px) scale(.92) !important;
    }

    .floating-actions {
        bottom: calc(var(--app-bottom-nav) + 14px + env(safe-area-inset-bottom)) !important;
    }
}

@keyframes sampleActiveFloat {
    0%, 100% {
        transform: translateY(-13px);
    }

    50% {
        transform: translateY(-16px);
    }
}

/* Mobile header final guard: clean app bar with uncropped Gratus logo. */
@media (max-width: 768px) {
    .reference-header,
    .reference-header.is-solid,
    .reference-header.is-open {
        height: 58px !important;
        min-height: 58px !important;
        background: rgba(255, 255, 255, .96) !important;
        color: #082f3f !important;
        border-bottom: 1px solid #e3eef3 !important;
        box-shadow: 0 8px 22px rgba(8, 47, 63, .08) !important;
        backdrop-filter: blur(16px) !important;
        -webkit-backdrop-filter: blur(16px) !important;
    }

    .reference-header-shell {
        width: 100% !important;
        height: 58px !important;
        display: grid !important;
        grid-template-columns: 44px minmax(118px, 1fr) auto !important;
        align-items: center !important;
        gap: 8px !important;
        padding: 0 12px !important;
    }

    .reference-logo {
        width: 126px !important;
        height: 48px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        overflow: visible !important;
        background: transparent !important;
    }

    .reference-logo img {
        width: 124px !important;
        height: auto !important;
        max-width: 124px !important;
        max-height: 48px !important;
        object-fit: contain !important;
        object-position: left center !important;
        transform: none !important;
        filter: none !important;
    }

    .reference-actions {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        gap: 6px !important;
        margin-left: 0 !important;
    }

    .reference-menu-button {
        grid-column: 1 !important;
        grid-row: 1 !important;
        order: -1 !important;
        margin: 0 !important;
    }

    .reference-logo {
        grid-column: 2 !important;
        grid-row: 1 !important;
    }

    .reference-actions {
        grid-column: 3 !important;
        grid-row: 1 !important;
    }

    .reference-icon-button,
    .reference-menu-button {
        width: 38px !important;
        height: 38px !important;
        display: grid !important;
        place-items: center !important;
        border: 1px solid #dbe8ee !important;
        border-radius: 50% !important;
        background: #f7fbfc !important;
        color: #082f3f !important;
        box-shadow: none !important;
    }

    .reference-icon-button:hover,
    .reference-menu-button:hover {
        color: var(--brand-blue) !important;
        border-color: rgba(21, 155, 215, .28) !important;
        background: #eef9fd !important;
    }

    .reference-actions svg,
    .reference-search svg,
    .reference-mobile svg {
        width: 18px !important;
        height: 18px !important;
        stroke-width: 2.15 !important;
    }

    .reference-contact,
    .reference-region {
        display: none !important;
    }

    .reference-search {
        top: 66px !important;
        right: 12px !important;
        left: 12px !important;
        border-radius: 14px !important;
    }

    .reference-mobile-head {
        height: 58px !important;
    }

    .reference-mobile-head img {
        width: 124px !important;
        height: auto !important;
        max-height: 48px !important;
        object-fit: contain !important;
        transform: none !important;
    }

    .reference-header+main,
    .reference-header+.dynamic-product,
    .product-listing-page {
        padding-top: 58px !important;
    }
}

/* Mobile home web-app experience: compact commerce-first app screen. */
.home-app-tools {
    display: none;
}

@media (max-width: 768px) {
    .home-page {
        --home-app-gutter: 10px;
        background: #f4f9fb !important;
        padding-bottom: calc(var(--app-bottom-nav) + 18px + env(safe-area-inset-bottom)) !important;
    }

    .home-page>.header {
        height: 58px !important;
        border-bottom: 1px solid #e3eef3 !important;
        background: rgba(255, 255, 255, .96) !important;
        box-shadow: 0 8px 22px rgba(8, 47, 63, .08) !important;
        backdrop-filter: blur(16px) !important;
        -webkit-backdrop-filter: blur(16px) !important;
    }

    .home-page>.header .container {
        width: 100% !important;
        height: 58px !important;
        display: grid !important;
        grid-template-columns: minmax(126px, 1fr) auto 40px !important;
        gap: 8px !important;
        align-items: center !important;
        padding: 0 12px !important;
    }

    .home-page>.header .logo {
        width: 126px !important;
        height: 48px !important;
        display: flex !important;
        align-items: center !important;
        overflow: visible !important;
        background: transparent !important;
    }

    .home-page>.header .logo img {
        width: 124px !important;
        height: auto !important;
        max-width: 124px !important;
        max-height: 48px !important;
        object-fit: contain !important;
        transform: none !important;
    }

    .home-page>.header .header-nav,
    .home-page>.header .region-selector,
    .home-page>.header .cart-btn,
    .home-page>.header .header-actions .btn {
        display: none !important;
    }

    .home-page>.header .header-actions {
        display: flex !important;
        justify-content: flex-end !important;
        margin: 0 !important;
    }

    .home-page>.header .header-search,
    .home-page>.header .mobile-menu-toggle {
        width: 38px !important;
        height: 38px !important;
        display: grid !important;
        place-items: center !important;
        border: 1px solid #dbe8ee !important;
        border-radius: 50% !important;
        background: #f7fbfc !important;
        color: #082f3f !important;
    }

    .home-page>.header .mobile-menu-toggle {
        grid-column: 3 !important;
        padding: 0 !important;
    }

    .home-page>.header .mobile-menu-toggle span {
        width: 16px !important;
        height: 2px !important;
        border-radius: 999px !important;
        background: currentColor !important;
    }

    .home-page main {
        padding-top: 58px !important;
        background: #f4f9fb !important;
    }

    body.home-page>main>.hero.home-hero:first-child,
    body.home-page>main>.hero.home-hero[style]:first-child {
        width: calc(100% - 20px) !important;
        height: 230px !important;
        min-height: 230px !important;
        max-height: 230px !important;
        margin: 10px auto 0 !important;
        overflow: hidden !important;
        border-radius: 12px !important;
        background: #0b2a3b !important;
        box-shadow: 0 12px 28px rgba(8, 47, 63, .16) !important;
    }

    .home-hero .hero-slider,
    .home-hero .hero-slide,
    .home-hero .hero-image {
        width: 100% !important;
        height: 100% !important;
        min-height: 0 !important;
    }

    .home-hero .hero-slide>.container {
        position: absolute !important;
        inset: 0 !important;
        z-index: 2 !important;
        width: 100% !important;
        height: 100% !important;
        min-height: 0 !important;
        display: flex !important;
        align-items: flex-end !important;
        padding: 0 14px 22px !important;
    }

    .home-hero .hero-slide .hero-image img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center !important;
        transform: none !important;
    }

    .home-hero .hero-slide .hero-image::after {
        display: block !important;
        background: linear-gradient(90deg, rgba(5, 29, 40, .82) 0%, rgba(5, 29, 40, .46) 44%, rgba(5, 29, 40, .08) 100%) !important;
    }

    .home-hero .hero-content {
        display: block !important;
        width: min(68%, 250px) !important;
        max-width: 250px !important;
        padding: 0 !important;
        color: #fff !important;
        animation: none !important;
    }

    .home-hero .hero-badge {
        display: none !important;
    }

    .home-hero .hero-content h1 {
        margin: 0 0 8px !important;
        color: #fff !important;
        font-size: clamp(22px, 7.4vw, 31px) !important;
        line-height: 1.06 !important;
        letter-spacing: 0 !important;
    }

    .home-hero .hero-content .hero-subtitle {
        display: block !important;
        max-width: 210px !important;
        margin: 0 0 12px !important;
        color: rgba(255, 255, 255, .88) !important;
        font-size: 11px !important;
        line-height: 1.35 !important;
    }

    .home-hero .hero-content .hero-actions {
        display: flex !important;
        width: auto !important;
        gap: 0 !important;
    }

    .home-hero .hero-actions .btn {
        flex: 0 0 auto !important;
        min-height: 32px !important;
        width: auto !important;
        padding: 0 12px !important;
        border: 0 !important;
        border-radius: 7px !important;
        background: linear-gradient(135deg, var(--brand-blue), var(--brand-green)) !important;
        color: #fff !important;
        font-size: 10px !important;
        font-weight: 800 !important;
        box-shadow: 0 8px 18px rgba(21, 155, 215, .24) !important;
    }

    .home-hero .hero-actions .btn-secondary {
        display: none !important;
    }

    .home-hero .hero-slider-nav {
        display: none !important;
    }

    .home-hero .hero-slider-dots {
        bottom: 8px !important;
        gap: 5px !important;
        z-index: 5 !important;
    }

    .home-hero .hero-dot {
        width: 6px !important;
        height: 6px !important;
        background: rgba(255, 255, 255, .6) !important;
    }

    .home-hero .hero-dot.active {
        width: 18px !important;
        background: #fff !important;
    }

    .home-page main>section:not(.hero) {
        padding-top: 18px !important;
        padding-bottom: 18px !important;
    }

    .home-page .categories {
        background: #fff !important;
    }

    .home-page .categories .container,
    .home-page .featured .container {
        padding-right: 10px !important;
        padding-left: 10px !important;
    }

    .home-page .categories .section-title {
        margin: 0 0 10px !important;
        color: #082f3f !important;
        font-size: 16px !important;
        line-height: 1.1 !important;
    }

    .home-page .categories .section-subtitle,
    .home-page .categories .section-description,
    .home-page .categories .section-link,
    .home-page .category-slider-controls {
        display: none !important;
    }

    .home-page .categories-grid.categories-slider {
        display: flex !important;
        gap: 10px !important;
        margin: 0 -10px !important;
        padding: 0 10px 4px !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scroll-snap-type: x proximity !important;
        scrollbar-width: none !important;
    }

    .home-page .categories-grid.categories-slider::-webkit-scrollbar {
        display: none !important;
    }

    .home-page .categories .categories-slider>.category-card {
        flex: 0 0 72px !important;
        width: 72px !important;
        min-width: 72px !important;
        display: grid !important;
        justify-items: center !important;
        gap: 6px !important;
        border: 0 !important;
        border-radius: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        scroll-snap-align: start !important;
    }

    .home-page .category-card::before,
    .home-page .category-card p {
        display: none !important;
    }

    .home-page .category-image {
        width: 60px !important;
        height: 60px !important;
        display: grid !important;
        place-items: center !important;
        overflow: hidden !important;
        border: 2px solid #d8edf6 !important;
        border-radius: 50% !important;
        background: linear-gradient(180deg, #fff, #f1f9fc) !important;
        box-shadow: 0 6px 14px rgba(8, 47, 63, .08) !important;
    }

    .home-page .category-image img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        transform: none !important;
    }

    .home-page .category-card h3 {
        width: 72px !important;
        min-height: 22px !important;
        margin: 0 !important;
        color: #123544 !important;
        font-size: 8px !important;
        font-weight: 800 !important;
        line-height: 1.18 !important;
        text-align: center !important;
    }

    .home-app-tools {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) 84px !important;
        gap: 8px !important;
        padding: 8px 10px 12px !important;
        background: #f4f9fb !important;
    }

    .home-app-search,
    .home-app-filter {
        min-height: 40px !important;
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
        border: 1px solid #dbe8ee !important;
        border-radius: 8px !important;
        background: #fff !important;
        color: #67808d !important;
        box-shadow: 0 6px 16px rgba(8, 47, 63, .05) !important;
    }

    .home-app-search {
        padding: 0 12px !important;
    }

    .home-app-search svg,
    .home-app-filter svg {
        width: 17px !important;
        height: 17px !important;
        fill: none !important;
        stroke: currentColor !important;
        stroke-width: 2 !important;
        stroke-linecap: round !important;
        stroke-linejoin: round !important;
    }

    .home-app-search input {
        width: 100% !important;
        min-width: 0 !important;
        border: 0 !important;
        outline: 0 !important;
        background: transparent !important;
        color: #123544 !important;
        font: 700 12px/1 var(--font-family) !important;
    }

    .home-app-search input::placeholder {
        color: #8fa3ac !important;
    }

    .home-app-filter {
        justify-content: center !important;
        color: #123544 !important;
        font-size: 11px !important;
        font-weight: 800 !important;
    }

    .home-page .featured {
        background: #f4f9fb !important;
    }

    .home-page .featured .section-title {
        margin: 0 !important;
        color: #082f3f !important;
        font-size: 18px !important;
        line-height: 1.1 !important;
    }

    .home-page .featured .section-subtitle,
    .home-page .featured-slider-controls {
        display: none !important;
    }

    .home-page .featured .container {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }

    .home-page .featured-grid.featured-slider {
        grid-column: 1 / -1 !important;
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 8px !important;
        overflow: visible !important;
        padding: 0 0 8px !important;
    }

    .home-page .featured-slider>.product-card {
        width: 100% !important;
        min-width: 0 !important;
        flex: none !important;
        border: 1px solid #dfe8ed !important;
        border-radius: 8px !important;
        background: #fff !important;
        box-shadow: 0 8px 20px rgba(8, 47, 63, .06) !important;
    }

    .home-page .product-image {
        height: 118px !important;
        border-bottom: 0 !important;
        background: #fff !important;
    }

    .home-page .product-image img {
        width: 100% !important;
        height: 100% !important;
        padding: 10px !important;
        object-fit: contain !important;
    }

    .home-page .product-content {
        padding: 8px 10px 10px !important;
    }

    .home-page .product-category {
        display: inline-flex !important;
        width: fit-content !important;
        margin: 0 0 5px !important;
        padding: 3px 6px !important;
        border-radius: 4px !important;
        background: var(--brand-green) !important;
        color: #fff !important;
        font-size: 6.5px !important;
        letter-spacing: .04em !important;
        line-height: 1 !important;
    }

    .home-page .product-content h3 {
        min-height: 30px !important;
        margin: 0 0 5px !important;
        color: #082f3f !important;
        font-size: 10px !important;
        line-height: 1.28 !important;
        -webkit-line-clamp: 2 !important;
    }

    .home-page .product-content p {
        min-height: 26px !important;
        margin: 0 0 8px !important;
        color: #6b7f89 !important;
        font-size: 8px !important;
        line-height: 1.35 !important;
        -webkit-line-clamp: 2 !important;
    }

    .home-page .featured-product-actions {
        display: block !important;
        margin: auto 10px 10px !important;
        padding-top: 10px !important;
        border-top: 1px solid #e7edef !important;
    }

    .home-page .featured-product-actions .featured-product-cta {
        display: flex !important;
        min-height: 24px !important;
        align-items: center !important;
        justify-content: space-between !important;
        margin: 0 0 8px !important;
        padding: 0 !important;
        border: 0 !important;
        color: #173c52 !important;
        font-size: 9px !important;
        font-weight: 800 !important;
        letter-spacing: .04em !important;
        line-height: 1.1 !important;
        text-transform: uppercase !important;
    }

    .home-page .featured-product-actions .featured-product-cta svg {
        width: 14px !important;
        height: 14px !important;
        flex: 0 0 14px !important;
    }

    .home-page .featured-enquiry-btn {
        display: flex !important;
        width: 100% !important;
        min-height: 34px !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 !important;
        padding: 9px 6px !important;
        font-size: 9px !important;
        letter-spacing: .04em !important;
        line-height: 1 !important;
        white-space: nowrap !important;
    }

    .home-page .product-actions {
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 4px !important;
    }

    .home-page .product-actions .btn-link {
        min-height: 24px !important;
        flex: 1 1 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border: 1px solid #dbe8ee !important;
        border-radius: 5px !important;
        color: #123544 !important;
        background: #f7fbfc !important;
        font-size: 6.5px !important;
        font-weight: 800 !important;
        letter-spacing: 0 !important;
        text-transform: none !important;
    }

    .home-page .product-actions .btn-link:first-child {
        background: var(--brand-blue) !important;
        color: #fff !important;
        border-color: var(--brand-blue) !important;
    }

    .home-page .why-video,
    .home-page .pillars,
    .home-page .home-testimonials,
    .home-page .customer-journey {
        margin-top: 0 !important;
        padding: 26px 0 !important;
        background: #fff !important;
    }

    .home-page .why-video {
        min-height: 240px !important;
        border-radius: 18px 18px 0 0 !important;
    }

    .home-page .pillars-grid,
    .home-page .home-testimonials .testimonials-grid,
    .home-page .customer-journey-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    .home-page .footer {
        padding-bottom: calc(92px + env(safe-area-inset-bottom)) !important;
    }
}

/* Tablet restore: keep the earlier website layout on tablets; app chrome is phone-only. */
@media (min-width: 601px) and (max-width: 768px) {
    body,
    .home-page {
        padding-bottom: 0 !important;
        background: #ffffff !important;
    }

    .mobile-app-tabs,
    .home-app-tools {
        display: none !important;
    }

    .floating-actions {
        right: 18px !important;
        bottom: 18px !important;
        left: auto !important;
    }

    .home-page>.header,
    .home-page>.header .container {
        height: 64px !important;
    }

    .home-page>.header .container {
        display: flex !important;
        padding: 0 18px !important;
    }

    .home-page>.header .logo {
        width: 128px !important;
        height: 36px !important;
        overflow: hidden !important;
        background: var(--color-white) !important;
    }

    .home-page>.header .logo img {
        width: 128px !important;
        max-width: none !important;
        transform: translateY(-12px) !important;
    }

    .home-page>.header .header-actions {
        margin-left: auto !important;
        margin-right: 14px !important;
    }

    .home-page>.header .header-search,
    .home-page>.header .cart-btn {
        display: none !important;
    }

    .home-page>.header .mobile-menu-toggle {
        width: auto !important;
        height: auto !important;
        display: flex !important;
        border: 0 !important;
        border-radius: 0 !important;
        background: transparent !important;
    }

    .home-page main {
        padding-top: 0 !important;
        background: #ffffff !important;
    }

    body.home-page>main>.hero.home-hero:first-child,
    body.home-page>main>.hero.home-hero[style]:first-child {
        width: 100% !important;
        height: clamp(320px, 58vw, 560px) !important;
        min-height: 320px !important;
        max-height: none !important;
        margin: 68px 0 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        background: transparent !important;
    }

    .home-hero .hero-slide>.container {
        position: relative !important;
        display: block !important;
        padding: 0 18px !important;
    }

    .home-hero .hero-content,
    .home-hero .hero-actions {
        display: none !important;
    }

    .home-hero .hero-slide .hero-image::after {
        background: none !important;
    }

    .home-page main>section:not(.hero) {
        padding-top: 36px !important;
        padding-bottom: 36px !important;
    }

    .home-page .categories,
    .home-page .featured {
        background: var(--color-bg-light) !important;
    }

    .home-page .categories .container,
    .home-page .featured .container {
        display: block !important;
        padding-right: 18px !important;
        padding-left: 18px !important;
    }

    .home-page .categories .section-title,
    .home-page .featured .section-title {
        font-size: 26px !important;
    }

    .home-page .categories .section-subtitle,
    .home-page .categories .section-description,
    .home-page .categories .section-link {
        display: block !important;
    }

    .home-page .category-slider-controls,
    .home-page .featured-slider-controls {
        display: flex !important;
    }

    .home-page .categories-grid.categories-slider,
    .home-page .featured-grid.featured-slider {
        display: flex !important;
        grid-template-columns: none !important;
        gap: 16px !important;
        overflow-x: auto !important;
        padding: 4px 2px 22px !important;
    }

    .home-page .categories .categories-slider>.category-card,
    .home-page .featured-slider>.product-card {
        flex: 0 0 min(82vw, 340px) !important;
        width: min(82vw, 340px) !important;
        border: 1px solid rgba(21, 155, 215, 0.08) !important;
        border-radius: 12px !important;
        background: #fff !important;
        box-shadow: var(--shadow) !important;
    }

    .home-page .category-card::before {
        display: block !important;
    }

    .home-page .category-image {
        width: 100% !important;
        height: 200px !important;
        border: 0 !important;
        border-radius: 42px 10px 0 0 !important;
        background: transparent !important;
        box-shadow: none !important;
    }

    .home-page .category-image img {
        object-fit: cover !important;
    }

    .home-page .category-card h3 {
        width: auto !important;
        min-height: 0 !important;
        margin: 16px 20px 8px !important;
        font-size: 18px !important;
        text-align: left !important;
    }

    .home-page .category-card p {
        display: block !important;
    }

    .home-page .featured-grid.featured-slider {
        grid-column: auto !important;
    }

    .home-page .product-image {
        height: 250px !important;
        border-bottom: 1px solid #edf1f2 !important;
    }

    .home-page .product-content {
        padding: 21px !important;
    }

    .home-page .product-category {
        padding: 0 !important;
        border-radius: 0 !important;
        background: transparent !important;
        color: var(--brand-blue) !important;
        font-size: 10px !important;
    }

    .home-page .product-content h3 {
        min-height: 52px !important;
        font-size: 19px !important;
    }

    .home-page .product-content p {
        min-height: 48px !important;
        font-size: 13px !important;
    }

    .home-page .product-actions {
        flex-wrap: wrap !important;
        gap: 16px !important;
    }

    .home-page .product-actions .btn-link {
        flex: 0 0 auto !important;
        min-height: auto !important;
        padding: 0 !important;
        border: 0 !important;
        background: transparent !important;
        color: var(--brand-blue) !important;
        font-size: 13px !important;
    }
}

/* Phone products category rail final fit: remove top/bottom dead space. */
@media (max-width: 600px) {
    body:not(.home-page) .product-listing-page {
        padding-top: 58px !important;
        background: #f4f8fa !important;
    }

    body:not(.home-page) .product-category-strip {
        height: 88px !important;
        min-height: 88px !important;
        max-height: 88px !important;
        margin: 0 !important;
        padding: 7px 0 5px !important;
        border: 0 !important;
        background: #fff !important;
        box-shadow: 0 1px 0 #e7eff3 !important;
        overflow: hidden !important;
    }

    body:not(.home-page) .product-category-strip .container,
    body:not(.home-page) .product-category-panel {
        width: 100% !important;
        height: 76px !important;
        min-height: 76px !important;
        max-height: 76px !important;
        margin: 0 !important;
        padding: 0 !important;
        display: block !important;
        overflow: hidden !important;
    }

    body:not(.home-page) .product-category-intro,
    body:not(.home-page) .product-category-nav,
    body:not(.home-page) .product-category-prev,
    body:not(.home-page) .product-category-next {
        display: none !important;
    }

    body:not(.home-page) .product-category-row {
        width: 100% !important;
        height: 76px !important;
        min-height: 76px !important;
        max-height: 76px !important;
        display: flex !important;
        align-items: center !important;
        gap: 11px !important;
        margin: 0 !important;
        padding: 0 10px !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scroll-snap-type: x proximity !important;
        scrollbar-width: none !important;
        background: #fff !important;
    }

    body:not(.home-page) .product-category-row::-webkit-scrollbar {
        display: none !important;
    }

    body:not(.home-page) .listing-category-card,
    body:not(.home-page) .product-listing-page .listing-category-card {
        flex: 0 0 66px !important;
        width: 66px !important;
        min-width: 66px !important;
        height: 70px !important;
        min-height: 70px !important;
        max-height: 70px !important;
        display: grid !important;
        grid-template-rows: 48px 18px !important;
        justify-items: center !important;
        align-items: start !important;
        align-content: center !important;
        gap: 3px !important;
        padding: 0 !important;
        border: 0 !important;
        border-radius: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        overflow: visible !important;
    }

    body:not(.home-page) .listing-category-card img,
    body:not(.home-page) .product-listing-page .listing-category-card img {
        width: 47px !important;
        height: 47px !important;
        min-width: 47px !important;
        min-height: 47px !important;
        max-width: 47px !important;
        max-height: 47px !important;
        margin: 0 !important;
        padding: 3px !important;
        border: 1px solid #dcecf3 !important;
        border-radius: 50% !important;
        background: #f8fbfc !important;
        object-fit: cover !important;
        object-position: center !important;
        box-shadow: 0 4px 12px rgba(8, 47, 63, .09) !important;
    }

    body:not(.home-page) .listing-category-card.active img,
    body:not(.home-page) .listing-category-card:hover img {
        border-color: var(--brand-blue) !important;
        box-shadow: 0 0 0 2px rgba(21, 155, 215, .1), 0 5px 14px rgba(8, 47, 63, .1) !important;
    }

    body:not(.home-page) .listing-category-card span,
    body:not(.home-page) .product-listing-page .listing-category-card span {
        width: 66px !important;
        min-height: 0 !important;
        padding: 0 !important;
        color: #082f3f !important;
        font-size: 6.6px !important;
        font-weight: 800 !important;
        line-height: 1.08 !important;
        text-align: center !important;
        overflow: hidden !important;
        display: -webkit-box !important;
        -webkit-box-orient: vertical !important;
        -webkit-line-clamp: 2 !important;
    }

    body:not(.home-page) .product-listing-page .listing-shell,
    body:not(.home-page) .listing-shell {
        padding-top: 7px !important;
    }

    body:not(.home-page) .listing-learn,
    body:not(.home-page) .product-listing-page .listing-learn {
        position: relative !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0 !important;
        overflow: hidden !important;
        text-align: center !important;
    }

    body:not(.home-page) .listing-learn::after,
    body:not(.home-page) .product-listing-page .listing-learn::after {
        content: none !important;
        display: none !important;
    }

    body:not(.home-page) .listing-product-badge,
    body:not(.home-page) .product-listing-page .listing-product-badge,
    .home-page .featured-product-badge {
        display: none !important;
    }
}

/* Keep the product-card action text clean; the legacy pseudo-element rendered as a broken icon on some browsers. */
.product-listing-page .listing-learn::after,
.product-listing-page .listing-product-card:hover .listing-learn::after {
    content: none !important;
    display: none !important;
}

/* A category with no common product attributes has no filter sidebar. */
.product-listing-page .listing-layout.listing-layout-no-filters {
    grid-template-columns: minmax(0, 1fr) !important;
}

/* Phone navigation: no header menu, use bottom Other sheet for secondary pages. */
@media (max-width: 600px) {
    .reference-header-shell {
        grid-template-columns: minmax(126px, 1fr) auto !important;
    }

    .reference-menu-button,
    .home-page>.header .mobile-menu-toggle {
        display: none !important;
    }

    .reference-logo {
        grid-column: 1 !important;
    }

    .reference-actions {
        grid-column: 2 !important;
    }

    .home-page>.header .container {
        grid-template-columns: minmax(126px, 1fr) auto !important;
    }

    .home-page>.header .header-actions {
        grid-column: 2 !important;
    }

    .mobile-app-tab {
        border: 0 !important;
        font-family: var(--font-family) !important;
        appearance: none !important;
        -webkit-appearance: none !important;
        cursor: pointer !important;
    }

    .mobile-more-menu {
        position: fixed;
        right: 14px;
        bottom: calc(var(--app-bottom-nav) + 22px + env(safe-area-inset-bottom));
        z-index: 9999;
        width: min(236px, calc(100vw - 28px));
        padding: 8px;
        border: 1px solid rgba(21, 155, 215, .16);
        border-radius: 16px;
        background: rgba(255, 255, 255, .98);
        box-shadow: 0 18px 42px rgba(8, 47, 63, .2);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        transform-origin: bottom right;
    }

    .mobile-more-menu[hidden] {
        display: none !important;
    }

    .mobile-more-menu.is-open {
        display: grid;
        gap: 6px;
        animation: mobileMoreIn .18s ease-out both;
    }

    .mobile-more-menu a {
        min-height: 42px;
        display: flex;
        align-items: center;
        padding: 0 12px;
        border-radius: 10px;
        color: #082f3f;
        background: #f4f9fb;
        font-size: 13px;
        font-weight: 800;
    }

    .mobile-more-menu a:hover,
    .mobile-more-menu a:focus-visible {
        color: #fff;
        background: linear-gradient(135deg, var(--brand-blue), var(--brand-green));
        outline: 0;
    }
}

/* Phone home banner: show the full uploaded banner image without cropping. */
@media (max-width: 600px) {
    body.home-page>main>.hero.home-hero:first-child,
    body.home-page>main>.hero.home-hero[style]:first-child {
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        aspect-ratio: 16 / 9 !important;
        background: #061d2a !important;
    }

    .home-hero .hero-slider,
    .home-hero .hero-slide,
    .home-hero .hero-image {
        height: 100% !important;
        min-height: 0 !important;
    }

    .home-hero .hero-slide .hero-image img,
    .home-hero .hero-slide .hero-image video {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
        object-position: center center !important;
        padding: 0 !important;
        transform: none !important;
    }

    .home-hero .hero-slide .hero-image::after {
        background: none !important;
    }

    .home-hero .hero-content {
        display: none !important;
    }
}

@keyframes mobileMoreIn {
    from {
        opacity: 0;
        transform: translateY(8px) scale(.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Premium product-detail page: gallery-first layout with clear enquiry and specification hierarchy. */
.dynamic-product.product-detail-page.pdp-premium {
    padding: 106px 0 92px !important;
    background: #fff !important;
    color: #132d45;
}

.pdp-premium > .container {
    width: min(100% - 64px, 1320px) !important;
    max-width: 1320px !important;
}

.pdp-premium .product-breadcrumb {
    margin: 0 0 28px !important;
    color: #6d7d8b !important;
    font-size: 12px !important;
    font-weight: 600 !important;
}

.pdp-premium .product-breadcrumb a {
    color: #526879 !important;
}

.pdp-premium .product-detail-hero {
    display: grid !important;
    grid-template-columns: minmax(0, 1.06fr) minmax(390px, .94fr) !important;
    align-items: start !important;
    gap: clamp(42px, 6vw, 96px) !important;
    padding: 0 0 58px !important;
    border: 0 !important;
}

.pdp-premium .product-detail-media {
    position: sticky !important;
    top: 92px !important;
    min-height: 610px !important;
    padding: 24px 32px 24px 108px !important;
    border: 1px solid #e4ebf0 !important;
    border-radius: 12px !important;
    background: #fff !important;
    box-shadow: none !important;
}

.pdp-premium .product-main-image-wrap {
    min-height: 560px !important;
    border-radius: 8px !important;
    background: #fff !important;
}

.pdp-premium .product-main-image-wrap img {
    width: 100% !important;
    height: 560px !important;
    object-fit: contain !important;
    mix-blend-mode: multiply;
}

.pdp-premium .product-thumb-row {
    top: 24px !important;
    bottom: 24px !important;
    left: 23px !important;
    width: 64px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    gap: 10px !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
}

.pdp-premium .product-thumb-row button {
    flex: 0 0 64px !important;
    width: 64px !important;
    height: 64px !important;
    padding: 5px !important;
    border: 1px solid #e2e9ee !important;
    border-radius: 7px !important;
    background: #fff !important;
    box-shadow: none !important;
}

.pdp-premium .product-thumb-row button.active {
    border-color: #159bd7 !important;
    box-shadow: 0 0 0 2px rgba(21, 155, 215, .12) !important;
}

.pdp-premium .product-thumb-row img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    mix-blend-mode: multiply;
}

.pdp-premium .product-media-rail,
.pdp-premium .listing-product-category,
.pdp-premium .product-status-row,
.pdp-premium .product-enquiry-kicker {
    display: none !important;
}

.pdp-premium .product-detail-copy {
    position: static !important;
    display: block !important;
    padding: 8px 0 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.pdp-premium .product-detail-copy h1 {
    max-width: 15ch !important;
    margin: 0 !important;
    color: #0d2a45 !important;
    font-size: clamp(37px, 3.65vw, 56px) !important;
    font-weight: 700 !important;
    letter-spacing: -.055em !important;
    line-height: 1.04 !important;
}

.pdp-premium .product-detail-copy .model {
    margin: 14px 0 22px !important;
    color: #5e7180 !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: .02em !important;
}

.pdp-premium .product-detail-lead {
    max-width: 58ch !important;
    margin: 0 0 24px !important;
    color: #526879 !important;
    font-size: 15px !important;
    line-height: 1.7 !important;
}

.pdp-premium .product-spec-chips {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    margin: 0 0 26px !important;
    padding: 7px 0 !important;
    border-top: 1px solid #e6edf1 !important;
    border-bottom: 1px solid #e6edf1 !important;
}

.pdp-premium .product-spec-chips li {
    min-height: 36px !important;
    padding: 5px 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: #284256 !important;
    font-size: 13px !important;
    font-weight: 650 !important;
}

.pdp-premium .product-spec-chips svg {
    width: 17px !important;
    height: 17px !important;
    color: #159bd7 !important;
}

.pdp-premium .product-enquiry-panel {
    display: grid !important;
    gap: 18px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.pdp-premium .product-price {
    display: block !important;
    color: #0d2a45 !important;
    font-size: 21px !important;
    font-weight: 700 !important;
    letter-spacing: -.025em !important;
}

.pdp-premium .product-enquiry-panel p {
    margin: 7px 0 0 !important;
    color: #687b8a !important;
    font-size: 13px !important;
    line-height: 1.55 !important;
}

.pdp-premium .product-actions {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 52px !important;
    gap: 10px !important;
    align-items: stretch !important;
}

.pdp-premium .product-actions .btn-primary {
    grid-column: 1 / -1 !important;
    min-height: 54px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid #159bd7 !important;
    border-radius: 7px !important;
    background: #159bd7 !important;
    color: #fff !important;
    box-shadow: none !important;
    font-size: 14px !important;
    font-weight: 750 !important;
}

.pdp-premium .product-actions .btn-primary:hover {
    border-color: #087db5 !important;
    background: #087db5 !important;
    transform: none !important;
}

.pdp-premium .product-store-link {
    min-height: 48px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 16px !important;
    border: 1px solid #cbdbe4 !important;
    border-radius: 7px !important;
    color: #147caf !important;
    background: #fff !important;
    font-size: 13px !important;
    font-weight: 750 !important;
}

.pdp-premium .product-share-button {
    min-width: 52px !important;
    height: 48px !important;
    padding: 0 !important;
    border: 1px solid #cbdbe4 !important;
    border-radius: 7px !important;
    color: #147caf !important;
    background: #fff !important;
    box-shadow: none !important;
}

.pdp-premium .product-share-button span {
    display: none !important;
}

.pdp-premium .product-share-button svg {
    width: 19px !important;
    height: 19px !important;
}

.pdp-premium .product-service-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 0 !important;
    margin: 0 0 34px !important;
    border-top: 1px solid #e3ebf0 !important;
    border-bottom: 1px solid #e3ebf0 !important;
    border-radius: 0 !important;
    background: #fff !important;
}

.pdp-premium .product-service-grid > div {
    min-height: 112px !important;
    display: flex !important;
    align-items: center !important;
    gap: 13px !important;
    padding: 22px 20px !important;
    border: 0 !important;
    border-right: 1px solid #e3ebf0 !important;
    background: transparent !important;
}

.pdp-premium .product-service-grid > div:last-child {
    border-right: 0 !important;
}

.pdp-premium .product-service-grid svg {
    flex: 0 0 auto !important;
    color: #159bd7 !important;
}

.pdp-premium .product-service-grid strong {
    color: #16324b !important;
    font-size: 13px !important;
}

.pdp-premium .product-service-grid small {
    margin-top: 4px !important;
    color: #70818e !important;
    font-size: 11px !important;
    line-height: 1.35 !important;
}

.pdp-premium .product-quick-specs {
    display: grid !important;
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    gap: 0 !important;
    margin: 0 0 70px !important;
    padding: 0 !important;
    border: 1px solid #e3ebf0 !important;
    border-radius: 10px !important;
    background: #f8fbfc !important;
    box-shadow: none !important;
}

.pdp-premium .product-quick-specs div {
    min-height: 94px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    gap: 7px !important;
    padding: 18px 21px !important;
    border: 0 !important;
    border-right: 1px solid #e3ebf0 !important;
    background: transparent !important;
}

.pdp-premium .product-quick-specs div:last-child {
    border-right: 0 !important;
}

.pdp-premium .product-quick-specs span {
    color: #70818e !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: .04em !important;
    text-transform: uppercase !important;
}

.pdp-premium .product-quick-specs strong {
    color: #17334c !important;
    font-size: 14px !important;
    line-height: 1.35 !important;
}

.pdp-premium .pdp-section {
    margin: 0 0 82px !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
}

.pdp-premium .pdp-section h2,
.pdp-premium .pdp-lifestyle h2,
.pdp-premium .related-products-heading h2 {
    color: #0d2a45 !important;
    font-size: clamp(28px, 3vw, 41px) !important;
    font-weight: 700 !important;
    letter-spacing: -.045em !important;
    line-height: 1.1 !important;
}

.pdp-premium .pdp-rich-section {
    max-width: 980px !important;
}

.pdp-premium .product-rich-content {
    margin-top: 27px !important;
    padding: clamp(22px, 3vw, 36px) !important;
    border: 1px solid #e0e9ee !important;
    border-radius: 10px !important;
    background: #fff !important;
    color: #294257 !important;
    font-size: 16px !important;
    line-height: 1.75 !important;
}

.pdp-premium .product-rich-content > :first-child {
    margin-top: 0 !important;
}

.pdp-premium .product-rich-content > :last-child {
    margin-bottom: 0 !important;
}

.pdp-premium .product-rich-content p,
.pdp-premium .product-rich-content div,
.pdp-premium .product-rich-content blockquote {
    margin: 0 0 14px;
}

.pdp-premium .product-rich-content h2,
.pdp-premium .product-rich-content h3,
.pdp-premium .product-rich-content h4 {
    margin: 22px 0 10px !important;
    color: #0d2a45 !important;
    font-weight: 700 !important;
    letter-spacing: -.025em !important;
}

.pdp-premium .product-rich-content h2 { font-size: 28px !important; }
.pdp-premium .product-rich-content h3 { font-size: 22px !important; }
.pdp-premium .product-rich-content h4 { font-size: 18px !important; }

.pdp-premium .product-rich-content ul,
.pdp-premium .product-rich-content ol {
    margin: 0 0 14px;
    padding-left: 24px;
}

.pdp-premium .product-rich-content li {
    margin: 5px 0;
}

.pdp-premium .product-rich-content a {
    color: #147caf;
    font-weight: 700;
    text-decoration: underline;
}

.pdp-premium .product-rich-content blockquote {
    padding: 4px 0 4px 18px;
    border-left: 3px solid #159bd7;
    color: #466276;
}

.pdp-premium .pdp-feature-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 0 !important;
    margin-top: 28px !important;
    border-top: 1px solid #e3ebf0 !important;
    border-bottom: 1px solid #e3ebf0 !important;
}

.pdp-premium .pdp-feature-grid article {
    min-height: 174px !important;
    padding: 26px 30px !important;
    border: 0 !important;
    border-right: 1px solid #e3ebf0 !important;
    border-radius: 0 !important;
    background: #fff !important;
    box-shadow: none !important;
}

.pdp-premium .pdp-feature-grid article:nth-child(3n) {
    border-right: 0 !important;
}

.pdp-premium .pdp-feature-grid .feature-index {
    color: #159bd7 !important;
    font-size: 11px !important;
}

.pdp-premium .pdp-feature-grid h3 {
    margin: 18px 0 0 !important;
    color: #17334c !important;
    font-size: 17px !important;
    line-height: 1.3 !important;
}

.pdp-premium .pdp-lifestyle {
    display: grid !important;
    grid-template-columns: minmax(0, 1.08fr) minmax(290px, .92fr) !important;
    gap: clamp(30px, 5vw, 72px) !important;
    align-items: center !important;
    margin: 0 0 82px !important;
    padding: 0 !important;
    border: 0 !important;
    background: #f5f9fb !important;
}

.pdp-premium .pdp-lifestyle-image {
    min-height: 390px !important;
    background: #fff !important;
}

.pdp-premium .pdp-lifestyle-image img {
    width: 100% !important;
    height: 100% !important;
    min-height: 390px !important;
    object-fit: contain !important;
    mix-blend-mode: multiply;
}

.pdp-premium .pdp-lifestyle > div:last-child {
    padding: 34px 42px 34px 0 !important;
}

.pdp-premium .pdp-lifestyle p,
.pdp-premium .pdp-section-heading > p {
    color: #5c6f7e !important;
    font-size: 15px !important;
    line-height: 1.75 !important;
}

.pdp-premium .pdp-lifestyle a {
    color: #147caf !important;
    font-weight: 750 !important;
}

.pdp-premium .pdp-section-heading {
    display: grid !important;
    grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr) !important;
    align-items: end !important;
    gap: 32px !important;
    margin-bottom: 30px !important;
}

.pdp-premium .spec-accordions {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
}

.pdp-premium .spec-accordions details {
    border: 1px solid #e0e9ee !important;
    border-radius: 8px !important;
    background: #fff !important;
    box-shadow: none !important;
}

.pdp-premium .spec-accordions summary {
    min-height: 58px !important;
    padding: 0 19px !important;
    color: #17334c !important;
    font-size: 14px !important;
    font-weight: 750 !important;
}

.pdp-premium .spec-accordions dl {
    margin: 0 19px 16px !important;
    border-top: 1px solid #e6edf1 !important;
}

.pdp-premium .spec-accordions dl > div {
    padding: 11px 0 !important;
    border-bottom: 1px solid #edf2f5 !important;
}

.pdp-premium .spec-accordions dt {
    color: #71818d !important;
    font-size: 12px !important;
}

.pdp-premium .spec-accordions dd {
    color: #18344d !important;
    font-size: 13px !important;
    font-weight: 700 !important;
}

.pdp-premium .related-products-section {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 58px 0 0 !important;
    border-top: 1px solid #e3ebf0 !important;
}

.pdp-premium .related-products-heading {
    display: flex !important;
    align-items: end !important;
    justify-content: space-between !important;
    gap: 24px !important;
    margin: 0 0 26px !important;
}

.pdp-premium .related-products-heading .section-kicker {
    display: block !important;
    margin: 0 0 8px !important;
    color: #159bd7 !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    letter-spacing: .12em !important;
}

.pdp-premium .related-products-heading h2 {
    margin: 0 !important;
    font-size: clamp(28px, 3vw, 40px) !important;
}

.pdp-premium .related-products-heading > a {
    flex: 0 0 auto !important;
    color: #159bd7 !important;
    font-size: 14px !important;
    font-weight: 800 !important;
}

.pdp-premium .related-products-slider {
    display: grid !important;
    grid-auto-flow: column !important;
    grid-auto-columns: calc((100% - 60px) / 4) !important;
    grid-template-rows: 1fr !important;
    align-items: stretch !important;
    gap: 20px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    padding: 2px 2px 16px !important;
    scroll-snap-type: x mandatory !important;
    scrollbar-width: thin !important;
}

.pdp-premium .related-product-card {
    width: auto !important;
    min-width: 0 !important;
    min-height: 354px !important;
    height: auto !important;
    border: 1px solid #dfe8ee !important;
    border-radius: 10px !important;
    box-shadow: none !important;
    scroll-snap-align: start !important;
}

.pdp-premium .related-product-card a {
    min-height: 352px !important;
    overflow: hidden !important;
}

.pdp-premium .related-product-image {
    min-height: 232px !important;
    height: 232px !important;
    padding: 18px !important;
    background: #f4f8fa !important;
}

.pdp-premium .related-product-image img {
    width: 100% !important;
    height: 100% !important;
    padding: 0 !important;
    object-fit: contain !important;
    mix-blend-mode: multiply;
}

.pdp-premium .related-product-body {
    min-height: 120px !important;
    display: flex !important;
    flex: 1 1 auto !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 7px !important;
    padding: 17px 18px 19px !important;
}

.pdp-premium .related-product-body span {
    display: block !important;
    margin: 0 !important;
    color: #159bd7 !important;
    font-size: 10px !important;
    font-weight: 800 !important;
    letter-spacing: .1em !important;
    line-height: 1.2 !important;
    text-transform: uppercase !important;
}

.pdp-premium .related-product-body h3 {
    width: 100% !important;
    margin: 0 !important;
    display: -webkit-box !important;
    overflow: hidden !important;
    color: #102d47 !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
    text-overflow: clip !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    -webkit-box-orient: vertical !important;
    -webkit-line-clamp: 2 !important;
}

@media (max-width: 1050px) {
    .pdp-premium .related-products-slider {
        grid-auto-columns: calc((100% - 40px) / 3) !important;
    }
}

@media (max-width: 720px) {
    .pdp-premium .related-products-section {
        padding-top: 48px !important;
    }

    .pdp-premium .related-products-heading {
        align-items: flex-start !important;
        margin-bottom: 20px !important;
    }

    .pdp-premium .related-products-heading h2 {
        font-size: 27px !important;
    }

    .pdp-premium .related-products-slider {
        grid-auto-columns: min(78vw, 280px) !important;
        gap: 14px !important;
    }
}

/* Product detail final layout: this comes after legacy PDP styles so the
   data-driven compact product screen cannot be overridden by older designs. */
.pdp-premium.pdp-reference.pdp-compact {
    background: #f6fbfc !important;
    padding: 30px 0 54px !important;
}

.pdp-premium.pdp-reference.pdp-compact > .container {
    display: grid !important;
    grid-template-columns: minmax(0, 1.38fr) minmax(360px, .92fr) !important;
    gap: 28px !important;
    width: calc(100% - 72px) !important;
    max-width: none !important;
    margin: 0 auto !important;
}

.pdp-premium.pdp-reference.pdp-compact .product-detail-hero {
    display: contents !important;
    padding: 0 !important;
}

.pdp-premium.pdp-reference.pdp-compact .product-detail-media {
    grid-column: 1 !important;
    grid-row: 1 !important;
    position: static !important;
    min-height: 0 !important;
    padding: 15px !important;
    border: 1px solid #79dce3 !important;
    border-radius: 5px !important;
    background: #fff !important;
    box-shadow: 0 8px 20px rgba(7, 46, 61, .1) !important;
}

.pdp-premium.pdp-reference.pdp-compact .product-main-image-wrap {
    min-height: 345px !important;
    height: 345px !important;
    border: 0 !important;
    border-radius: 3px !important;
    background: #fcfeff !important;
}

.pdp-premium.pdp-reference.pdp-compact .product-main-image-wrap img {
    min-height: 0 !important;
    height: 100% !important;
    padding: 15px !important;
    object-fit: contain !important;
}

.pdp-premium.pdp-reference.pdp-compact .product-thumb-row {
    position: static !important;
    display: flex !important;
    flex-direction: row !important;
    width: 100% !important;
    max-height: none !important;
    margin: 10px 0 0 !important;
    padding: 0 !important;
    gap: 7px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
}

.pdp-premium.pdp-reference.pdp-compact .product-thumb-row button {
    flex: 0 0 52px !important;
    width: 52px !important;
    height: 52px !important;
    padding: 4px !important;
    border: 1px solid #d7e4e8 !important;
    border-radius: 3px !important;
    background: #fff !important;
}

.pdp-premium.pdp-reference.pdp-compact .product-detail-copy {
    grid-column: 2 !important;
    grid-row: 1 !important;
    min-height: 0 !important;
    padding: 16px !important;
    border: 1px solid #79dce3 !important;
    border-radius: 5px !important;
    background: #fff !important;
    box-shadow: 0 8px 20px rgba(7, 46, 61, .1) !important;
}

.pdp-premium.pdp-reference.pdp-compact .product-detail-copy .model {
    display: inline-block !important;
    margin: 0 0 7px !important;
    padding: 3px 7px !important;
    border: 1px solid #79dce3 !important;
    border-radius: 999px !important;
    color: #10797c !important;
    font-size: 9px !important;
}

.pdp-premium.pdp-reference.pdp-compact .product-detail-copy h1 {
    margin: 0 0 7px !important;
    color: #102536 !important;
    font-size: clamp(18px, 2vw, 27px) !important;
    line-height: 1.04 !important;
}

.pdp-premium.pdp-reference.pdp-compact .product-detail-lead {
    display: -webkit-box !important;
    max-width: none !important;
    margin: 0 0 9px !important;
    overflow: hidden !important;
    color: #657784 !important;
    font-size: 10px !important;
    line-height: 1.38 !important;
    -webkit-box-orient: vertical !important;
    -webkit-line-clamp: 5 !important;
}

.pdp-premium.pdp-reference.pdp-compact .product-spec-chips { display: none !important; }
.pdp-premium.pdp-reference.pdp-compact .product-actions { display: flex !important; gap: 7px !important; margin-bottom: 10px !important; }
.pdp-premium.pdp-reference.pdp-compact .product-actions .btn-primary { min-width: 0 !important; min-height: 28px !important; height: 28px !important; padding: 0 10px !important; border-radius: 3px !important; background: #16c7b1 !important; font-size: 9px !important; }
.pdp-premium.pdp-reference.pdp-compact .product-share-button { width: auto !important; min-height: 28px !important; height: 28px !important; padding: 0 10px !important; border: 1px solid #213b4a !important; border-radius: 3px !important; color: #213b4a !important; font-size: 9px !important; }

.pdp-premium.pdp-reference.pdp-compact .related-products-section {
    grid-column: 1 !important;
    grid-row: 2 !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 15px !important;
    border: 1px solid #79dce3 !important;
    border-radius: 5px !important;
    background: #fff !important;
    box-shadow: 0 8px 20px rgba(7, 46, 61, .1) !important;
}

.pdp-premium.pdp-reference.pdp-compact .related-products-slider { align-items: flex-start !important; gap: 7px !important; padding: 0 !important; }
.pdp-premium.pdp-reference.pdp-compact .related-product-card { flex: 0 0 calc(25% - 6px) !important; min-width: 0 !important; overflow: hidden !important; border: 1px solid #79dce3 !important; border-radius: 0 !important; box-shadow: none !important; }
.pdp-premium.pdp-reference.pdp-compact .related-product-image { height: 104px !important; padding: 4px !important; }
.pdp-premium.pdp-reference.pdp-compact .related-product-image img { width: 100% !important; height: 100% !important; min-height: 0 !important; object-fit: contain !important; }
.pdp-premium.pdp-reference.pdp-compact .related-product-body { min-height: 0 !important; padding: 5px !important; }
.pdp-premium.pdp-reference.pdp-compact .related-product-body span { display: none !important; }
.pdp-premium.pdp-reference.pdp-compact .related-product-body h3 { overflow: hidden !important; margin: 0 !important; color: #233e4e !important; font-size: 8px !important; line-height: 1.25 !important; text-overflow: ellipsis !important; white-space: nowrap !important; }

.pdp-premium.pdp-reference.pdp-compact .pdp-enquiry-card {
    grid-column: 2 !important;
    grid-row: 2 !important;
    align-self: start !important;
    padding: 16px !important;
    border: 1px solid #79dce3 !important;
    border-radius: 5px !important;
    background: #fff !important;
    box-shadow: 0 8px 20px rgba(7, 46, 61, .1) !important;
}

@media (max-width: 760px) {
    .pdp-premium.pdp-reference.pdp-compact > .container { display: block !important; width: min(calc(100% - 28px), 560px) !important; }
    .pdp-premium.pdp-reference.pdp-compact .product-detail-media,
    .pdp-premium.pdp-reference.pdp-compact .product-detail-copy,
    .pdp-premium.pdp-reference.pdp-compact .related-products-section,
    .pdp-premium.pdp-reference.pdp-compact .pdp-enquiry-card { margin-bottom: 16px !important; }
    .pdp-premium.pdp-reference.pdp-compact .product-main-image-wrap { min-height: 300px !important; height: 300px !important; }
}

.pdp-premium.pdp-reference .pdp-description-only {
    display: block !important;
    max-width: 900px;
}

/* Screenshot-matched product detail page: all text and media remain CMS driven. */
.pdp-reference {
    --pdp-navy: #102b58;
    --pdp-blue: #0072ce;
    --pdp-text: #31415f;
    --pdp-border: #e4e9ef;
    background: #fff !important;
    color: var(--pdp-text);
    padding: 76px 0 54px !important;
    font-family: Inter, Arial, sans-serif !important;
}

.pdp-reference > .container {
    width: min(calc(100% - 84px), 1450px) !important;
    max-width: none !important;
}

.pdp-reference .product-breadcrumb {
    display: flex !important;
    align-items: center;
    gap: 10px;
    margin: 16px 0 25px !important;
    color: #587090;
    font-size: 12px !important;
    font-weight: 500;
}

.pdp-reference .product-breadcrumb a {
    color: #0672cc;
    text-decoration: none;
}

.pdp-reference .product-detail-hero {
    display: grid !important;
    grid-template-columns: minmax(0, 1.47fr) minmax(395px, 1fr) !important;
    align-items: stretch !important;
    gap: 38px !important;
    padding: 0 0 22px !important;
}

.pdp-reference .product-detail-media {
    position: relative !important;
    min-height: 472px !important;
    padding: 0 0 0 123px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.pdp-reference .product-media-rail {
    display: none !important;
}

.pdp-reference .product-main-image-wrap {
    min-height: 472px !important;
    height: 472px !important;
    overflow: hidden;
    border: 1px solid var(--pdp-border) !important;
    border-radius: 7px !important;
    background: #fcfdff !important;
    box-shadow: none !important;
}

.pdp-reference .product-main-image-wrap img {
    width: 100% !important;
    height: 100% !important;
    padding: 22px !important;
    object-fit: contain !important;
    mix-blend-mode: normal !important;
}

.pdp-reference .product-zoom {
    top: 11px !important;
    right: 11px !important;
    z-index: 2;
    display: grid !important;
    width: 37px !important;
    height: 37px !important;
    place-items: center;
    border: 1px solid var(--pdp-border) !important;
    border-radius: 7px !important;
    background: #fff !important;
    box-shadow: none !important;
    color: transparent !important;
    font-size: 0 !important;
}

.pdp-reference .product-zoom::before {
    content: "↗";
    color: #55708e;
    font-size: 19px;
    line-height: 1;
}

.pdp-reference .product-thumb-row {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    width: 107px !important;
    max-height: 472px;
    margin: 0 !important;
    padding: 0 !important;
    gap: 9px !important;
    overflow-y: auto;
}

.pdp-reference .product-thumb-row button {
    flex: 0 0 88px !important;
    width: 107px !important;
    height: 88px !important;
    padding: 7px !important;
    overflow: hidden;
    border: 1px solid var(--pdp-border) !important;
    border-radius: 6px !important;
    background: #fff !important;
}

.pdp-reference .product-thumb-row button.active {
    border: 2px solid var(--pdp-blue) !important;
}

.pdp-reference .product-thumb-row button img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pdp-reference .product-detail-copy {
    min-height: 472px !important;
    padding: 0 0 0 42px !important;
    border: 0 !important;
    border-left: 1px solid var(--pdp-border) !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.pdp-reference .product-category-pill,
.pdp-reference .product-status-row,
.pdp-reference .product-enquiry-panel > div:first-child {
    display: none !important;
}

.pdp-reference .product-detail-copy .model {
    margin: 0 0 10px !important;
    color: var(--pdp-blue) !important;
    font-size: 12px !important;
    font-weight: 750 !important;
    line-height: 1.15;
}

.pdp-reference .product-detail-copy h1 {
    max-width: 570px !important;
    margin: 0 0 15px !important;
    color: var(--pdp-navy) !important;
    font-size: clamp(25px, 2.05vw, 30px) !important;
    font-weight: 700 !important;
    letter-spacing: -.028em !important;
    line-height: 1.08 !important;
}

.pdp-reference .product-detail-lead {
    max-width: 570px !important;
    margin: 0 0 27px !important;
    color: #40516d !important;
    font-size: 14px !important;
    font-weight: 400;
    line-height: 1.5 !important;
}

.pdp-reference .product-spec-chips {
    position: relative;
    margin: 0 0 21px !important;
    padding: 30px 0 0 !important;
    border: 0 !important;
}

.pdp-reference .product-spec-chips::before {
    content: "KEY FEATURES";
    position: absolute;
    top: 0;
    left: 0;
    color: var(--pdp-navy);
    font-size: 12px;
    font-weight: 750;
    letter-spacing: .045em;
    line-height: 1;
}

.pdp-reference .product-spec-chips li {
    min-height: 0 !important;
    margin: 0 0 11px !important;
    padding: 0 !important;
    color: #263957 !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
}

.pdp-reference .product-spec-chips li svg {
    flex: 0 0 18px;
    margin-top: 1px;
    color: var(--pdp-blue) !important;
}

.pdp-reference .product-enquiry-panel {
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
}

.pdp-reference .product-actions {
    display: flex !important;
    align-items: center;
    gap: 29px !important;
}

.pdp-reference .product-actions .btn-primary {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-width: 164px;
    min-height: 42px !important;
    height: 42px !important;
    padding: 0 20px !important;
    border-radius: 4px !important;
    background: #0874cb !important;
    color: #fff !important;
    box-shadow: none !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: .01em;
    text-transform: uppercase;
}

.pdp-reference .product-actions .btn-primary::before {
    content: "✉";
    margin-right: 9px;
    font-size: 15px;
    font-weight: 400;
}

.pdp-reference .product-share-button {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    color: var(--pdp-blue) !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: .01em;
    text-transform: uppercase;
}

.pdp-reference .product-share-button svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
}

.pdp-reference .product-share-button span {
    display: inline !important;
}

.pdp-reference .product-store-link,
.pdp-reference .product-service-grid {
    display: none !important;
}

.pdp-reference .product-quick-specs {
    margin: 0 !important;
    padding: 27px 0 31px !important;
    border-top: 1px solid #dfe5eb !important;
    border-bottom: 1px solid #dfe5eb !important;
    border-right: 0 !important;
    border-left: 0 !important;
    border-radius: 0 !important;
    background: #fff !important;
    box-shadow: none !important;
}

.pdp-reference .product-quick-specs-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.pdp-reference .product-quick-specs-heading h2,
.pdp-reference .related-products-heading h2 {
    margin: 0 !important;
    color: var(--pdp-navy) !important;
    font-size: 14px !important;
    font-weight: 750 !important;
    letter-spacing: .04em !important;
    line-height: 1.2 !important;
    text-transform: uppercase;
}

.pdp-reference .product-quick-specs-heading a {
    color: var(--pdp-blue) !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: .01em;
    text-decoration: none;
    text-transform: uppercase;
}

.pdp-reference .product-quick-specs-heading a span {
    margin-left: 10px;
    font-size: 19px;
    vertical-align: -1px;
}

.pdp-reference .product-quick-specs-grid {
    display: grid !important;
    grid-auto-flow: column;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: repeat(3, auto);
    gap: 0 !important;
}

.pdp-reference .product-quick-specs-grid > div {
    display: flex !important;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    min-height: 42px;
    padding: 10px 27px !important;
    border-top: 1px solid #e7ebf0 !important;
}

.pdp-reference .product-quick-specs-grid > div:nth-child(3n + 1) {
    border-left: 1px solid #e7ebf0;
}

.pdp-reference .product-quick-specs-grid > div:nth-child(-n + 3) {
    border-top: 0 !important;
}

.pdp-reference .product-quick-specs-grid > div:first-child {
    border-left: 0;
}

.pdp-reference .product-quick-specs-grid span,
.pdp-reference .product-quick-specs-grid strong {
    color: #31415f !important;
    font-size: 12px !important;
    font-weight: 400 !important;
    line-height: 1.35;
}

.pdp-reference .product-quick-specs-grid strong {
    text-align: right;
    white-space: normal;
}

.pdp-reference .related-products-section {
    margin-top: 27px !important;
    padding-top: 0 !important;
    border: 0 !important;
}

.pdp-reference .related-products-heading {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px !important;
}

.pdp-reference .related-products-heading > a {
    display: none !important;
}

.pdp-reference .related-products-slider {
    gap: 31px !important;
    padding: 0 2px 5px !important;
}

.pdp-reference .related-product-card {
    flex-basis: calc((100% - 93px) / 4) !important;
    border: 1px solid var(--pdp-border) !important;
    border-radius: 7px !important;
    background: #fff !important;
    box-shadow: none !important;
}

.pdp-reference .related-product-image {
    height: 205px !important;
    padding: 14px !important;
    background: #fff !important;
}

.pdp-reference .related-product-image img {
    object-fit: contain !important;
}

@media (max-width: 1000px) {
    .pdp-reference > .container { width: min(calc(100% - 40px), 920px) !important; }
    .pdp-reference .product-detail-hero { grid-template-columns: 1fr !important; gap: 25px !important; }
    .pdp-reference .product-detail-copy { min-height: 0 !important; padding: 0 !important; border-left: 0 !important; }
    .pdp-reference .product-main-image-wrap { max-width: none; }
}

@media (max-width: 640px) {
    .pdp-reference { padding-top: 58px !important; }
    .pdp-reference > .container { width: min(calc(100% - 28px), 620px) !important; }
    .pdp-reference .product-breadcrumb { margin: 10px 0 16px !important; overflow: hidden; white-space: nowrap; }
    .pdp-reference .product-detail-media { min-height: 332px !important; padding: 0 0 0 75px !important; }
    .pdp-reference .product-main-image-wrap { min-height: 332px !important; height: 332px !important; }
    .pdp-reference .product-thumb-row { width: 64px !important; max-height: 332px; gap: 6px !important; }
    .pdp-reference .product-thumb-row button { flex-basis: 62px !important; width: 64px !important; height: 62px !important; padding: 4px !important; }
    .pdp-reference .product-detail-copy h1 { font-size: 26px !important; }
    .pdp-reference .product-spec-chips li { font-size: 13px !important; }
    .pdp-reference .product-actions { gap: 19px !important; flex-wrap: wrap; }
    .pdp-reference .product-quick-specs { padding: 22px 0 !important; }
    .pdp-reference .product-quick-specs-heading { align-items: flex-start; gap: 14px; }
    .pdp-reference .product-quick-specs-heading a { font-size: 10px !important; text-align: right; }
    .pdp-reference .product-quick-specs-grid { grid-auto-flow: row; grid-template-columns: 1fr !important; grid-template-rows: none; }
    .pdp-reference .product-quick-specs-grid > div,
    .pdp-reference .product-quick-specs-grid > div:nth-child(3n + 1) { padding: 10px 0 !important; border-left: 0 !important; border-top: 1px solid #e7ebf0 !important; }
    .pdp-reference .product-quick-specs-grid > div:first-child { border-top: 0 !important; }
    .pdp-reference .related-product-card { flex-basis: 78% !important; }
}

/* Water-cooler reference layout applied to every data-driven product page. */
.pdp-premium .product-detail-hero {
    grid-template-columns: minmax(0, 1.32fr) minmax(360px, .88fr) !important;
    gap: clamp(34px, 4vw, 58px) !important;
    padding-bottom: 42px !important;
}

.pdp-premium .product-detail-media {
    min-height: 540px !important;
    padding: 0 0 0 94px !important;
    border: 0 !important;
    border-radius: 0 !important;
}

.pdp-premium .product-main-image-wrap {
    min-height: 540px !important;
    border: 1px solid #e3eaf0 !important;
    border-radius: 7px !important;
    background: #fff !important;
}

.pdp-premium .product-main-image-wrap img {
    height: 540px !important;
}

.pdp-premium .product-thumb-row {
    top: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 74px !important;
    gap: 10px !important;
}

.pdp-premium .product-thumb-row button {
    flex-basis: 74px !important;
    width: 74px !important;
    height: 74px !important;
    border-radius: 5px !important;
}

.pdp-premium .product-detail-copy {
    min-height: 540px !important;
    padding: 0 0 0 clamp(26px, 3vw, 42px) !important;
    border-left: 1px solid #e4ebf0 !important;
}

.pdp-premium .product-detail-copy .model {
    color: #087eb5 !important;
    text-transform: uppercase !important;
    letter-spacing: .055em !important;
}

.pdp-premium .product-detail-copy h1 {
    max-width: 19ch !important;
    font-size: clamp(28px, 2.35vw, 38px) !important;
    font-weight: 700 !important;
}

.pdp-premium .product-status-row {
    gap: 7px !important;
    margin-bottom: 17px !important;
}

.pdp-premium .product-status-row span {
    padding: 4px 8px !important;
    border: 1px solid #dce7ee !important;
    border-radius: 3px !important;
    color: #476376 !important;
}

.pdp-premium .product-spec-chips {
    margin-bottom: 20px !important;
    padding: 12px 0 !important;
}

.pdp-premium .product-spec-chips::before {
    content: 'Key features';
    display: block;
    margin: 0 0 7px;
    color: #16324b;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.pdp-premium .product-enquiry-panel {
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
}

.pdp-premium .product-enquiry-panel > div:first-child {
    display: none !important;
}

.pdp-premium .product-actions {
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: 12px !important;
}

.pdp-premium .product-actions .btn-primary {
    grid-column: auto !important;
    min-height: 48px !important;
}

.pdp-premium .product-store-link {
    grid-column: 1 / 2 !important;
    grid-row: 2 !important;
    justify-content: flex-start !important;
    min-height: 34px !important;
    padding: 0 !important;
    border: 0 !important;
    font-size: 12px !important;
    color: #087eb5 !important;
}

.pdp-premium .product-share-button {
    grid-column: 2 !important;
    grid-row: 1 !important;
}

.pdp-premium .product-service-grid {
    display: none !important;
}

.pdp-premium .product-quick-specs {
    display: block !important;
    margin: 0 0 64px !important;
    padding: 26px 0 28px !important;
    border-top: 1px solid #dce5eb !important;
    border-bottom: 1px solid #dce5eb !important;
}

.pdp-premium .product-quick-specs-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.pdp-premium .product-quick-specs-heading h2 {
    margin: 0;
    color: #102d49;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .045em;
    text-transform: uppercase;
}

.pdp-premium .product-quick-specs-heading a {
    color: #087eb5;
    font-size: 12px;
    font-weight: 750;
    text-decoration: none;
}

.pdp-premium .product-quick-specs-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pdp-premium .product-quick-specs-grid > div {
    min-height: 64px !important;
    padding: 3px 24px !important;
    border-right: 1px solid #e2e9ee !important;
}

.pdp-premium .product-quick-specs-grid > div:nth-child(4n) {
    border-right: 0 !important;
}

.pdp-premium .product-quick-specs-grid span {
    display: block;
    margin-bottom: 8px;
    color: #617486;
    font-size: 11px !important;
}

.pdp-premium .product-quick-specs-grid strong {
    display: block;
    color: #18334c;
    font-size: 13px !important;
    line-height: 1.38;
}

@media (max-width: 960px) {
    .pdp-premium .product-detail-hero {
        grid-template-columns: minmax(0, 1fr) minmax(310px, .82fr) !important;
    }

    .pdp-premium .product-quick-specs-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pdp-premium .product-quick-specs-grid > div:nth-child(2n) {
        border-right: 0 !important;
    }
}

@media (max-width: 720px) {
    .pdp-premium .product-detail-hero {
        grid-template-columns: 1fr !important;
    }

    .pdp-premium .product-detail-media {
        min-height: 340px !important;
        padding: 0 !important;
    }

    .pdp-premium .product-main-image-wrap,
    .pdp-premium .product-main-image-wrap img {
        min-height: 340px !important;
        height: 340px !important;
    }

    .pdp-premium .product-detail-copy {
        min-height: 0 !important;
        padding: 0 !important;
        border-left: 0 !important;
    }

    .pdp-premium .product-detail-copy h1 {
        max-width: 100% !important;
        font-size: clamp(27px, 7vw, 33px) !important;
    }

    .pdp-premium .product-quick-specs-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .pdp-premium .product-quick-specs-grid {
        grid-template-columns: 1fr;
    }

    .pdp-premium .product-quick-specs-grid > div,
    .pdp-premium .product-quick-specs-grid > div:nth-child(2n) {
        padding: 12px 0 !important;
        border-right: 0 !important;
        border-bottom: 1px solid #e8eef2;
    }
}

/* Compact product layout from the supplied reference. */
.pdp-premium.pdp-compact {
    --compact-ink: #102536;
    --compact-muted: #657784;
    --compact-accent: #1bc7b5;
    --compact-line: #79dce3;
    background: #f6fbfc !important;
    padding: 30px 0 54px !important;
}
.pdp-premium.pdp-compact > .container { display: grid !important; grid-template-columns: minmax(0, 1.38fr) minmax(360px, .92fr); gap: 28px !important; width: calc(100% - 72px) !important; max-width: none !important; margin: 0 auto !important; }
.pdp-premium.pdp-compact .product-breadcrumb, .pdp-premium.pdp-compact .product-service-grid, .pdp-premium.pdp-compact .product-quick-specs, .pdp-premium.pdp-compact > .container > .pdp-section, .pdp-premium.pdp-compact > .container > .pdp-lifestyle { display: none !important; }
.pdp-premium.pdp-compact .product-detail-hero { display: contents !important; }
.pdp-premium.pdp-compact .product-detail-media { grid-column: 1; grid-row: 1; min-height: 0 !important; padding: 15px !important; border: 1px solid var(--compact-line) !important; border-radius: 5px !important; background: #fff !important; box-shadow: 0 8px 20px rgba(7, 46, 61, .10) !important; }
.pdp-premium.pdp-compact .product-main-image-wrap { min-height: 345px !important; height: 345px !important; border: 0 !important; border-radius: 3px !important; background: #fcfeff !important; }
.pdp-premium.pdp-compact .product-main-image-wrap img { padding: 15px !important; }
.pdp-premium.pdp-compact .product-zoom { width: 26px !important; height: 26px !important; top: 10px !important; right: 10px !important; border: 0 !important; border-radius: 50% !important; box-shadow: 0 3px 9px rgba(17,42,57,.15) !important; }
.pdp-premium.pdp-compact .product-thumb-row { position: static !important; display: flex !important; flex-direction: row !important; width: 100% !important; max-height: none !important; margin: 10px 0 0 !important; padding: 0 !important; gap: 7px !important; overflow-x: auto; overflow-y: hidden; }
.pdp-premium.pdp-compact .product-thumb-row button { flex: 0 0 52px !important; width: 52px !important; height: 52px !important; padding: 4px !important; border: 1px solid #d7e4e8 !important; border-radius: 3px !important; background: #fff !important; }
.pdp-premium.pdp-compact .product-thumb-row button.active { border: 2px solid var(--compact-accent) !important; }
.pdp-premium.pdp-compact .product-thumb-row button img { width: 100% !important; height: 100% !important; object-fit: contain !important; }
.pdp-premium.pdp-compact .product-detail-copy { grid-column: 2; grid-row: 1; min-height: 0 !important; padding: 16px !important; border: 1px solid var(--compact-line) !important; border-radius: 5px !important; background: #fff !important; box-shadow: 0 8px 20px rgba(7, 46, 61, .10) !important; }
.pdp-premium.pdp-compact .product-detail-copy .model { display: inline-block; margin: 0 0 7px !important; padding: 3px 7px; border: 1px solid var(--compact-line); border-radius: 999px; color: #10797c !important; font-size: 9px !important; font-weight: 700 !important; }
.pdp-premium.pdp-compact .product-detail-copy h1 { margin: 0 0 7px !important; color: var(--compact-ink) !important; font-size: clamp(18px, 2vw, 27px) !important; letter-spacing: -.025em !important; line-height: 1.04 !important; }
.pdp-premium.pdp-compact .product-detail-lead { display: -webkit-box; max-width: none !important; margin: 0 0 9px !important; overflow: hidden; color: var(--compact-muted) !important; font-size: 10px !important; line-height: 1.38 !important; -webkit-box-orient: vertical; -webkit-line-clamp: 5; }
.pdp-premium.pdp-compact .product-spec-chips { display: none !important; }
.pdp-premium.pdp-compact .product-enquiry-panel { margin: 0 !important; padding: 0 !important; border: 0 !important; background: transparent !important; }
.pdp-premium.pdp-compact .product-actions { display: flex !important; gap: 7px !important; margin-bottom: 10px; }
.pdp-premium.pdp-compact .product-actions .btn-primary { min-width: 0 !important; min-height: 28px !important; height: 28px !important; padding: 0 10px !important; border-radius: 3px !important; background: #16c7b1 !important; font-size: 9px !important; text-transform: none; }
.pdp-premium.pdp-compact .product-actions .btn-primary::before { display: none !important; }
.pdp-premium.pdp-compact .product-share-button { height: 28px !important; padding: 0 10px !important; border: 1px solid #213b4a !important; border-radius: 3px !important; color: #213b4a !important; font-size: 9px !important; }
.pdp-premium.pdp-compact .pdp-compact-details { display: grid; gap: 7px; }
.pdp-premium.pdp-compact .pdp-compact-details details { border: 1px solid #d8e1e5; border-radius: 3px; background: #fff; }
.pdp-premium.pdp-compact .pdp-compact-details summary { display: flex; align-items: center; justify-content: space-between; min-height: 29px; padding: 0 10px; color: #254052; cursor: pointer; font-size: 9px; font-weight: 700; list-style: none; }
.pdp-premium.pdp-compact .pdp-compact-details summary::-webkit-details-marker { display: none; }
.pdp-premium.pdp-compact .pdp-compact-details summary span { color: #627783; font-size: 14px; font-weight: 400; }
.pdp-premium.pdp-compact .pdp-compact-details details > div { padding: 0 10px 10px; color: #526777; font-size: 10px; line-height: 1.45; }
.pdp-premium.pdp-compact .pdp-compact-details dl { margin: 0; }.pdp-premium.pdp-compact .pdp-compact-details dl div { display: flex; justify-content: space-between; gap: 10px; padding: 3px 0; border-top: 1px solid #edf1f3; }.pdp-premium.pdp-compact .pdp-compact-details dt,.pdp-premium.pdp-compact .pdp-compact-details dd { margin: 0; }.pdp-premium.pdp-compact .pdp-compact-details ul { margin: 0; padding-left: 16px; }
.pdp-premium.pdp-compact .related-products-section { grid-column: 1; grid-row: 2; min-width: 0; margin: 0 !important; padding: 15px !important; border: 1px solid var(--compact-line) !important; border-radius: 5px !important; background: #fff !important; box-shadow: 0 8px 20px rgba(7,46,61,.10) !important; }
.pdp-premium.pdp-compact .related-products-heading { margin-bottom: 10px !important; }.pdp-premium.pdp-compact .related-products-heading h2 { color: var(--compact-ink) !important; font-size: 21px !important; letter-spacing: -.025em !important; text-transform: none; }.pdp-premium.pdp-compact .related-products-heading > a { display: block !important; color: #0087ce !important; font-size: 9px !important; }
.pdp-premium.pdp-compact .related-products-slider { align-items: flex-start !important; gap: 7px !important; padding: 0 !important; }.pdp-premium.pdp-compact .related-product-card { flex: 0 0 calc(25% - 6px) !important; min-width: 0; overflow: hidden; border: 1px solid var(--compact-line) !important; border-radius: 0 !important; }.pdp-premium.pdp-compact .related-product-image { height: 104px !important; padding: 4px !important; }.pdp-premium.pdp-compact .related-product-image img { width: 100% !important; height: 100% !important; object-fit: contain !important; }.pdp-premium.pdp-compact .related-product-body { min-height: 0 !important; padding: 5px !important; }.pdp-premium.pdp-compact .related-product-body span { display: none; }.pdp-premium.pdp-compact .related-product-body h3 { overflow: hidden; margin: 0 !important; color: #233e4e; font-size: 8px !important; line-height: 1.25 !important; text-overflow: ellipsis; white-space: nowrap; }
.pdp-premium.pdp-compact .pdp-enquiry-card { grid-column: 2; grid-row: 2; align-self: start; padding: 16px; border: 1px solid var(--compact-line); border-radius: 5px; background: #fff; box-shadow: 0 8px 20px rgba(7,46,61,.10); }.pdp-premium.pdp-compact .pdp-enquiry-card h2 { margin: 0 0 3px; color: var(--compact-ink); font-size: 17px; line-height: 1.15; }.pdp-premium.pdp-compact .pdp-enquiry-card p { margin: 0 0 11px; color: #69808b; font-size: 9px; }.pdp-premium.pdp-compact .pdp-enquiry-card form { display: grid; gap: 7px; }.pdp-premium.pdp-compact .pdp-enquiry-card input,.pdp-premium.pdp-compact .pdp-enquiry-card textarea { width: 100%; min-height: 28px; padding: 7px 9px; border: 1px solid #ccd9de; border-radius: 3px; color: #233e4e; font: inherit; font-size: 9px; }.pdp-premium.pdp-compact .pdp-enquiry-card textarea { min-height: 62px; resize: vertical; }.pdp-premium.pdp-compact .pdp-enquiry-card button { min-height: 29px; border: 0; border-radius: 3px; background: linear-gradient(90deg,#16c5b2,#53d876); color:#fff; font-size: 9px; font-weight:700; cursor:pointer; }
@media (max-width: 760px) { .pdp-premium.pdp-compact > .container { display: block !important; width: min(calc(100% - 28px), 560px) !important; }.pdp-premium.pdp-compact .product-detail-media,.pdp-premium.pdp-compact .product-detail-copy,.pdp-premium.pdp-compact .related-products-section,.pdp-premium.pdp-compact .pdp-enquiry-card { margin-bottom: 16px !important; }.pdp-premium.pdp-compact .product-main-image-wrap { min-height: 300px !important; height: 300px !important; } }

/* Final cascade: keep the screenshot layout above legacy PDP visual treatments. */
.pdp-premium.pdp-reference { background: #fff !important; padding: 76px 0 54px !important; }
.pdp-premium.pdp-reference > .container { width: min(calc(100% - 84px), 1450px) !important; max-width: none !important; }
.pdp-premium.pdp-reference .product-detail-hero { grid-template-columns: minmax(0, 1.47fr) minmax(395px, 1fr) !important; align-items: stretch !important; gap: 38px !important; padding: 0 0 22px !important; }
.pdp-premium.pdp-reference .product-detail-media { position: relative !important; min-height: 472px !important; padding: 0 0 0 123px !important; border: 0 !important; border-radius: 0 !important; background: transparent !important; box-shadow: none !important; }
.pdp-premium.pdp-reference .product-main-image-wrap { min-height: 472px !important; height: 472px !important; border: 1px solid #e4e9ef !important; border-radius: 7px !important; background: #fcfdff !important; }
.pdp-premium.pdp-reference .product-main-image-wrap img { width: 100% !important; height: 100% !important; padding: 22px !important; object-fit: contain !important; }
.pdp-premium.pdp-reference .product-thumb-row { position: absolute !important; top: 0 !important; left: 0 !important; flex-direction: column !important; width: 107px !important; max-height: 472px; margin: 0 !important; padding: 0 !important; gap: 9px !important; overflow-y: auto; }
.pdp-premium.pdp-reference .product-thumb-row button { flex: 0 0 88px !important; width: 107px !important; height: 88px !important; padding: 7px !important; border: 1px solid #e4e9ef !important; border-radius: 6px !important; background: #fff !important; }
.pdp-premium.pdp-reference .product-thumb-row button.active { border: 2px solid #0072ce !important; }
.pdp-premium.pdp-reference .product-detail-copy { min-height: 472px !important; padding: 0 0 0 42px !important; border: 0 !important; border-left: 1px solid #e4e9ef !important; border-radius: 0 !important; background: transparent !important; box-shadow: none !important; }
.pdp-premium.pdp-reference .product-detail-copy .model { margin: 0 0 10px !important; color: #0072ce !important; font-size: 12px !important; font-weight: 750 !important; }
.pdp-premium.pdp-reference .product-detail-copy h1 { max-width: 570px !important; margin: 0 0 15px !important; color: #102b58 !important; font-size: clamp(25px, 2.05vw, 30px) !important; font-weight: 700 !important; line-height: 1.08 !important; }
.pdp-premium.pdp-reference .product-detail-lead { max-width: 570px !important; margin: 0 0 27px !important; color: #40516d !important; font-size: 14px !important; line-height: 1.5 !important; }
.pdp-premium.pdp-reference .product-spec-chips { margin: 0 0 21px !important; padding: 30px 0 0 !important; border: 0 !important; }
.pdp-premium.pdp-reference .product-spec-chips li { min-height: 0 !important; margin: 0 0 11px !important; padding: 0 !important; color: #263957 !important; font-size: 14px !important; font-weight: 400 !important; line-height: 1.5 !important; }
.pdp-premium.pdp-reference .product-enquiry-panel { margin: 0 !important; padding: 0 !important; border: 0 !important; background: transparent !important; }
.pdp-premium.pdp-reference .product-actions { display: flex !important; align-items: center; gap: 29px !important; }
.pdp-premium.pdp-reference .product-actions .btn-primary { min-width: 164px; min-height: 42px !important; height: 42px !important; padding: 0 20px !important; border-radius: 4px !important; background: #0874cb !important; font-size: 12px !important; }
.pdp-premium.pdp-reference .product-share-button { width: auto !important; height: auto !important; padding: 0 !important; border: 0 !important; background: transparent !important; color: #0072ce !important; font-size: 12px !important; }
.pdp-premium.pdp-reference .product-quick-specs { margin: 0 !important; padding: 27px 0 31px !important; border-top: 1px solid #dfe5eb !important; border-bottom: 1px solid #dfe5eb !important; border-right: 0 !important; border-left: 0 !important; border-radius: 0 !important; background: #fff !important; box-shadow: none !important; }
.pdp-premium.pdp-reference .product-quick-specs-grid { display: grid !important; grid-auto-flow: column; grid-template-columns: repeat(4, minmax(0, 1fr)); grid-template-rows: repeat(3, auto); gap: 0 !important; }
.pdp-premium.pdp-reference .product-quick-specs-grid > div { display: flex !important; align-items: baseline; justify-content: space-between; gap: 16px; min-height: 42px; padding: 10px 27px !important; border-top: 1px solid #e7ebf0 !important; }
.pdp-premium.pdp-reference .product-quick-specs-grid > div:nth-child(3n + 1) { border-left: 1px solid #e7ebf0; }
.pdp-premium.pdp-reference .product-quick-specs-grid > div:nth-child(-n + 3) { border-top: 0 !important; }
.pdp-premium.pdp-reference .product-quick-specs-grid > div:first-child { border-left: 0; }
.pdp-premium.pdp-reference .related-products-section { margin-top: 27px !important; padding-top: 0 !important; border: 0 !important; }
.pdp-premium.pdp-reference .related-product-card { flex-basis: calc((100% - 93px) / 4) !important; border: 1px solid #e4e9ef !important; border-radius: 7px !important; background: #fff !important; box-shadow: none !important; }
.pdp-premium.pdp-reference .related-product-image { height: 205px !important; padding: 14px !important; background: #fff !important; }
@media (max-width: 1000px) { .pdp-premium.pdp-reference > .container { width: min(calc(100% - 40px), 920px) !important; } .pdp-premium.pdp-reference .product-detail-hero { grid-template-columns: 1fr !important; gap: 25px !important; } .pdp-premium.pdp-reference .product-detail-copy { min-height: 0 !important; padding: 0 !important; border-left: 0 !important; } }
@media (max-width: 640px) { .pdp-premium.pdp-reference { padding-top: 58px !important; } .pdp-premium.pdp-reference > .container { width: min(calc(100% - 28px), 620px) !important; } .pdp-premium.pdp-reference .product-detail-media { min-height: 332px !important; padding-left: 75px !important; } .pdp-premium.pdp-reference .product-main-image-wrap { min-height: 332px !important; height: 332px !important; } .pdp-premium.pdp-reference .product-thumb-row { width: 64px !important; max-height: 332px; gap: 6px !important; } .pdp-premium.pdp-reference .product-thumb-row button { flex-basis: 62px !important; width: 64px !important; height: 62px !important; padding: 4px !important; } .pdp-premium.pdp-reference .product-quick-specs-grid { grid-auto-flow: row; grid-template-columns: 1fr !important; grid-template-rows: none; } .pdp-premium.pdp-reference .product-quick-specs-grid > div, .pdp-premium.pdp-reference .product-quick-specs-grid > div:nth-child(3n + 1) { padding: 10px 0 !important; border-left: 0 !important; border-top: 1px solid #e7ebf0 !important; } .pdp-premium.pdp-reference .product-quick-specs-grid > div:first-child { border-top: 0 !important; } .pdp-premium.pdp-reference .related-product-card { flex-basis: 78% !important; } }

@media (max-width: 960px) {
    .pdp-premium .product-detail-hero {
        grid-template-columns: minmax(0, 1fr) minmax(330px, .85fr) !important;
        gap: 34px !important;
    }

    .pdp-premium .product-detail-media {
        min-height: 500px !important;
    }

    .pdp-premium .product-main-image-wrap,
    .pdp-premium .product-main-image-wrap img {
        min-height: 450px !important;
        height: 450px !important;
    }

    .pdp-premium .product-service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .pdp-premium .product-service-grid > div:nth-child(2) {
        border-right: 0 !important;
    }

    .pdp-premium .product-service-grid > div:nth-child(-n+2) {
        border-bottom: 1px solid #e3ebf0 !important;
    }

    .pdp-premium .product-quick-specs {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }

    .pdp-premium .product-quick-specs div:nth-child(3) {
        border-right: 0 !important;
    }
}

@media (max-width: 720px) {
    .dynamic-product.product-detail-page.pdp-premium {
        padding: 74px 0 48px !important;
    }

    .pdp-premium > .container {
        width: min(100% - 30px, 1320px) !important;
    }

    .pdp-premium .product-breadcrumb {
        margin-bottom: 18px !important;
        overflow: hidden !important;
        white-space: nowrap !important;
        text-overflow: ellipsis !important;
    }

    .pdp-premium .product-detail-hero {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        padding-bottom: 36px !important;
    }

    .pdp-premium .product-detail-media {
        position: relative !important;
        top: auto !important;
        min-height: 365px !important;
        padding: 12px !important;
    }

    .pdp-premium .product-main-image-wrap,
    .pdp-premium .product-main-image-wrap img {
        min-height: 320px !important;
        height: 320px !important;
    }

    .pdp-premium .product-thumb-row {
        position: static !important;
        width: 100% !important;
        flex-direction: row !important;
        gap: 8px !important;
        margin-top: 10px !important;
        padding: 0 !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
    }

    .pdp-premium .product-thumb-row button {
        flex: 0 0 54px !important;
        width: 54px !important;
        height: 54px !important;
    }

    .pdp-premium .product-detail-copy {
        padding-top: 0 !important;
    }

    .pdp-premium .product-detail-copy h1 {
        max-width: none !important;
        font-size: clamp(31px, 9vw, 42px) !important;
    }

    .pdp-premium .product-detail-copy .model {
        margin-bottom: 18px !important;
    }

    .pdp-premium .product-detail-lead {
        font-size: 14px !important;
    }

    .pdp-premium .product-spec-chips {
        margin-bottom: 21px !important;
    }

    .pdp-premium .product-service-grid {
        margin-bottom: 26px !important;
    }

    .pdp-premium .product-service-grid > div {
        min-height: 94px !important;
        padding: 16px 13px !important;
    }

    .pdp-premium .product-service-grid small {
        font-size: 10px !important;
    }

    .pdp-premium .product-quick-specs {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        margin-bottom: 52px !important;
    }

    .pdp-premium .product-quick-specs div,
    .pdp-premium .product-quick-specs div:nth-child(3) {
        min-height: 82px !important;
        padding: 15px !important;
        border-bottom: 1px solid #e3ebf0 !important;
        border-right: 1px solid #e3ebf0 !important;
    }

    .pdp-premium .product-quick-specs div:nth-child(even),
    .pdp-premium .product-quick-specs div:last-child {
        border-right: 0 !important;
    }

    .pdp-premium .pdp-section,
    .pdp-premium .pdp-lifestyle {
        margin-bottom: 56px !important;
    }

    .pdp-premium .pdp-feature-grid,
    .pdp-premium .spec-accordions,
    .pdp-premium .pdp-section-heading,
    .pdp-premium .pdp-lifestyle {
        grid-template-columns: 1fr !important;
    }

    .pdp-premium .pdp-feature-grid article,
    .pdp-premium .pdp-feature-grid article:nth-child(3n) {
        min-height: 116px !important;
        padding: 20px 0 !important;
        border-right: 0 !important;
        border-bottom: 1px solid #e3ebf0 !important;
    }

    .pdp-premium .pdp-feature-grid article:last-child {
        border-bottom: 0 !important;
    }

    .pdp-premium .pdp-feature-grid h3 {
        margin-top: 9px !important;
    }

    .pdp-premium .pdp-lifestyle-image,
    .pdp-premium .pdp-lifestyle-image img {
        min-height: 260px !important;
    }

    .pdp-premium .pdp-lifestyle > div:last-child {
        padding: 8px 24px 30px !important;
    }

    .pdp-premium .pdp-section-heading {
        gap: 12px !important;
    }
}

/* Final PDP typography override: compact type keeps backend product data easy to scan. */
.pdp-premium {
    font-family: Inter, Arial, sans-serif !important;
}

.pdp-premium .product-detail-hero {
    gap: clamp(32px, 4.5vw, 68px) !important;
}

.pdp-premium .product-detail-copy h1 {
    max-width: 22ch !important;
    font-size: clamp(31px, 2.7vw, 43px) !important;
    letter-spacing: -.038em !important;
    line-height: 1.12 !important;
}

.pdp-premium .product-detail-copy .model {
    margin: 11px 0 15px !important;
    font-size: 12px !important;
    font-weight: 650 !important;
}

.pdp-premium .product-status-row {
    display: flex !important;
    margin: 0 0 18px !important;
}

.pdp-premium .product-status-row span {
    font-size: 11px !important;
    font-weight: 650 !important;
}

.pdp-premium .product-detail-lead {
    max-width: 64ch !important;
    font-size: 14px !important;
    line-height: 1.65 !important;
}

.pdp-premium .pdp-section h2,
.pdp-premium .pdp-lifestyle h2,
.pdp-premium .related-products-heading h2 {
    font-size: clamp(25px, 2.25vw, 34px) !important;
    letter-spacing: -.028em !important;
}

.pdp-premium .pdp-lifestyle p,
.pdp-premium .pdp-section-heading > p,
.pdp-premium .product-rich-content {
    font-size: 14px !important;
    line-height: 1.68 !important;
}

@media (max-width: 720px) {
    .pdp-premium .product-detail-copy h1 {
        font-size: clamp(28px, 7.8vw, 34px) !important;
        line-height: 1.13 !important;
    }
}

/* Final reference match: the supplied page uses two soft glass cards, not a split editorial layout. */
.pdp-premium .product-detail-hero {
    grid-template-columns: minmax(0, 1.32fr) minmax(320px, .88fr) !important;
    align-items: stretch !important;
    gap: 24px !important;
    padding-bottom: 34px !important;
}

.pdp-premium .product-detail-media {
    position: static !important;
    min-height: 0 !important;
    padding: 28px !important;
    border: 1px solid rgba(21, 155, 215, .16) !important;
    border-radius: 18px !important;
    background: rgba(255, 255, 255, .94) !important;
    box-shadow: 0 16px 40px rgba(18, 51, 73, .08) !important;
}

.pdp-premium .product-main-image-wrap {
    min-height: 465px !important;
    border: 0 !important;
    border-radius: 14px !important;
    background: #f8fbfc !important;
}

.pdp-premium .product-main-image-wrap img {
    height: 465px !important;
    mix-blend-mode: normal !important;
}

.pdp-premium .product-thumb-row {
    position: static !important;
    flex-direction: row !important;
    width: 100% !important;
    margin-top: 15px !important;
    padding: 0 !important;
    overflow-x: auto !important;
}

.pdp-premium .product-thumb-row button {
    flex: 0 0 58px !important;
    width: 58px !important;
    height: 58px !important;
    border-radius: 8px !important;
}

.pdp-premium .product-detail-copy {
    min-height: 0 !important;
    padding: 30px !important;
    border: 1px solid rgba(21, 155, 215, .16) !important;
    border-radius: 18px !important;
    background: rgba(255, 255, 255, .94) !important;
    box-shadow: 0 16px 40px rgba(18, 51, 73, .08) !important;
}

.pdp-premium .product-category-pill {
    display: inline-flex;
    margin: 0 0 13px;
    padding: 6px 11px;
    border-radius: 999px;
    background: #e8f7f7;
    color: #087b80;
    font-size: 11px;
    font-weight: 750;
    line-height: 1;
}

.pdp-premium .product-detail-copy h1 {
    max-width: none !important;
    margin-bottom: 14px !important;
    font-size: clamp(25px, 2.05vw, 34px) !important;
    letter-spacing: -.03em !important;
    line-height: 1.17 !important;
}

.pdp-premium .product-detail-copy .model {
    margin: 0 0 14px !important;
    color: #087b80 !important;
}

.pdp-premium .product-status-row {
    display: none !important;
}

.pdp-premium .product-detail-lead {
    max-width: none !important;
    margin-bottom: 18px !important;
    color: #526879 !important;
    font-size: 14px !important;
}

.pdp-premium .product-spec-chips {
    margin: 0 0 20px !important;
    padding: 14px 0 !important;
}

.pdp-premium .product-spec-chips li {
    min-height: 30px !important;
    padding: 3px 0 !important;
    font-size: 12px !important;
}

.pdp-premium .product-actions {
    grid-template-columns: auto auto !important;
    justify-content: start !important;
    gap: 10px !important;
}

.pdp-premium .product-actions .btn-primary,
.pdp-premium .product-share-button {
    min-height: 42px !important;
    height: 42px !important;
    padding: 0 16px !important;
    border-radius: 999px !important;
}

.pdp-premium .product-actions .btn-primary {
    grid-column: auto !important;
}

.pdp-premium .product-share-button {
    grid-column: auto !important;
    grid-row: auto !important;
    width: auto !important;
}

.pdp-premium .product-share-button span {
    display: inline !important;
}

.pdp-premium .product-store-link {
    display: none !important;
}

.pdp-premium .product-quick-specs {
    margin-top: 10px !important;
    border-radius: 18px !important;
    border: 1px solid rgba(21, 155, 215, .16) !important;
    background: #fff !important;
    box-shadow: 0 12px 34px rgba(18, 51, 73, .05) !important;
}

@media (max-width: 720px) {
    .pdp-premium .product-detail-hero {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .pdp-premium .product-detail-media,
    .pdp-premium .product-detail-copy {
        padding: 18px !important;
        border-radius: 14px !important;
    }

    .pdp-premium .product-main-image-wrap,
    .pdp-premium .product-main-image-wrap img {
        min-height: 310px !important;
        height: 310px !important;
    }
}

/* Absolute final compact PDP precedence (must remain last in this stylesheet). */
.pdp-premium.pdp-reference.pdp-compact { background: #f6fbfc !important; padding: 30px 0 54px !important; }
.pdp-premium.pdp-reference.pdp-compact > .container { display: grid !important; grid-template-columns: minmax(0, 1.38fr) minmax(360px, .92fr) !important; gap: 28px !important; width: calc(100% - 72px) !important; max-width: none !important; margin: 0 auto !important; }
.pdp-premium.pdp-reference.pdp-compact .product-detail-hero { display: contents !important; padding: 0 !important; }
.pdp-premium.pdp-reference.pdp-compact .product-detail-media { grid-column: 1 !important; grid-row: 1 !important; position: static !important; min-height: 0 !important; padding: 15px !important; border: 1px solid #79dce3 !important; border-radius: 5px !important; background: #fff !important; box-shadow: 0 8px 20px rgba(7,46,61,.1) !important; }
.pdp-premium.pdp-reference.pdp-compact .product-main-image-wrap { min-height: 345px !important; height: 345px !important; border: 0 !important; border-radius: 3px !important; background: #fcfeff !important; }
.pdp-premium.pdp-reference.pdp-compact .product-main-image-wrap img { min-height: 0 !important; height: 100% !important; padding: 15px !important; object-fit: contain !important; }
.pdp-premium.pdp-reference.pdp-compact .product-thumb-row { position: static !important; display: flex !important; flex-direction: row !important; width: 100% !important; max-height: none !important; margin: 10px 0 0 !important; padding: 0 !important; gap: 7px !important; overflow-x: auto !important; overflow-y: hidden !important; }
.pdp-premium.pdp-reference.pdp-compact .product-thumb-row button { flex: 0 0 52px !important; width: 52px !important; height: 52px !important; padding: 4px !important; border: 1px solid #d7e4e8 !important; border-radius: 3px !important; background: #fff !important; }
.pdp-premium.pdp-reference.pdp-compact .product-detail-copy { grid-column: 2 !important; grid-row: 1 !important; min-height: 0 !important; padding: 16px !important; border: 1px solid #79dce3 !important; border-radius: 5px !important; background: #fff !important; box-shadow: 0 8px 20px rgba(7,46,61,.1) !important; }
.pdp-premium.pdp-reference.pdp-compact .product-detail-copy .model { display: inline-block !important; margin: 0 0 7px !important; padding: 3px 7px !important; border: 1px solid #79dce3 !important; border-radius: 999px !important; color: #10797c !important; font-size: 9px !important; }
.pdp-premium.pdp-reference.pdp-compact .product-detail-copy h1 { margin: 0 0 7px !important; color: #102536 !important; font-size: clamp(18px,2vw,27px) !important; line-height: 1.04 !important; }
.pdp-premium.pdp-reference.pdp-compact .product-detail-lead { display: -webkit-box !important; max-width: none !important; margin: 0 0 9px !important; overflow: hidden !important; color: #657784 !important; font-size: 10px !important; line-height: 1.38 !important; -webkit-box-orient: vertical !important; -webkit-line-clamp: 5 !important; }
.pdp-premium.pdp-reference.pdp-compact .product-spec-chips { display: none !important; }
.pdp-premium.pdp-reference.pdp-compact .product-actions { display: flex !important; gap: 7px !important; margin-bottom: 10px !important; }
.pdp-premium.pdp-reference.pdp-compact .product-actions .btn-primary { min-width: 0 !important; min-height: 28px !important; height: 28px !important; padding: 0 10px !important; border-radius: 3px !important; background: #16c7b1 !important; font-size: 9px !important; }
.pdp-premium.pdp-reference.pdp-compact .product-share-button { width: auto !important; min-height: 28px !important; height: 28px !important; padding: 0 10px !important; border: 1px solid #213b4a !important; border-radius: 3px !important; color: #213b4a !important; font-size: 9px !important; }
.pdp-premium.pdp-reference.pdp-compact .related-products-section { grid-column: 1 !important; grid-row: 2 !important; min-width: 0 !important; margin: 0 !important; padding: 15px !important; border: 1px solid #79dce3 !important; border-radius: 5px !important; background: #fff !important; box-shadow: 0 8px 20px rgba(7,46,61,.1) !important; }
.pdp-premium.pdp-reference.pdp-compact .related-products-heading { margin-bottom: 10px !important; }.pdp-premium.pdp-reference.pdp-compact .related-products-heading h2 { margin: 0 !important; color: #102536 !important; font-size: 21px !important; }.pdp-premium.pdp-reference.pdp-compact .related-products-slider { align-items: flex-start !important; gap: 7px !important; padding: 0 !important; }.pdp-premium.pdp-reference.pdp-compact .related-product-card { flex: 0 0 calc(25% - 6px) !important; min-width: 0 !important; overflow: hidden !important; border: 1px solid #79dce3 !important; border-radius: 0 !important; box-shadow: none !important; }.pdp-premium.pdp-reference.pdp-compact .related-product-image { height: 104px !important; padding: 4px !important; }.pdp-premium.pdp-reference.pdp-compact .related-product-image img { width: 100% !important; height: 100% !important; min-height: 0 !important; object-fit: contain !important; }.pdp-premium.pdp-reference.pdp-compact .related-product-body { min-height: 0 !important; padding: 5px !important; }.pdp-premium.pdp-reference.pdp-compact .related-product-body span { display: none !important; }.pdp-premium.pdp-reference.pdp-compact .related-product-body h3 { overflow: hidden !important; margin: 0 !important; color: #233e4e !important; font-size: 8px !important; line-height: 1.25 !important; text-overflow: ellipsis !important; white-space: nowrap !important; }
.pdp-premium.pdp-reference.pdp-compact .pdp-enquiry-card { grid-column: 2 !important; grid-row: 2 !important; align-self: start !important; padding: 16px !important; border: 1px solid #79dce3 !important; border-radius: 5px !important; background: #fff !important; box-shadow: 0 8px 20px rgba(7,46,61,.1) !important; }
@media (max-width: 760px) { .pdp-premium.pdp-reference.pdp-compact > .container { display: block !important; width: min(calc(100% - 28px),560px) !important; }.pdp-premium.pdp-reference.pdp-compact .product-detail-media,.pdp-premium.pdp-reference.pdp-compact .product-detail-copy,.pdp-premium.pdp-reference.pdp-compact .related-products-section,.pdp-premium.pdp-reference.pdp-compact .pdp-enquiry-card { margin-bottom: 16px !important; }.pdp-premium.pdp-reference.pdp-compact .product-main-image-wrap { min-height: 300px !important; height: 300px !important; } }

/* Keep the global site chrome visible and prevent the related title from
   being covered by the product-card image layer. */
.pdp-premium.pdp-reference.pdp-compact { padding-top: 112px !important; }
.pdp-premium.pdp-reference.pdp-compact .related-products-section { position: relative !important; overflow: visible !important; }
.pdp-premium.pdp-reference.pdp-compact .related-products-heading { position: relative !important; z-index: 2 !important; display: flex !important; align-items: center !important; justify-content: space-between !important; min-height: 30px !important; margin: 0 0 12px !important; padding: 0 !important; background: #fff !important; }
.pdp-premium.pdp-reference.pdp-compact .related-products-slider { position: relative !important; z-index: 1 !important; clear: both !important; margin: 0 !important; }
@media (max-width: 760px) { .pdp-premium.pdp-reference.pdp-compact { padding-top: 78px !important; } }

/* Small, scan-friendly related product cards. */
.pdp-premium.pdp-reference.pdp-compact .related-product-card {
    flex: 0 0 150px !important;
    width: 150px !important;
    min-width: 150px !important;
    min-height: 0 !important;
    height: 146px !important;
}
.pdp-premium.pdp-reference.pdp-compact .related-product-card a {
    display: block !important;
    min-height: 0 !important;
    height: 100% !important;
}
.pdp-premium.pdp-reference.pdp-compact .related-product-image {
    min-height: 0 !important;
    height: 104px !important;
    padding: 5px !important;
}
.pdp-premium.pdp-reference.pdp-compact .related-product-body {
    display: block !important;
    min-height: 0 !important;
    height: 40px !important;
    padding: 6px !important;
}
.pdp-premium.pdp-reference.pdp-compact .related-product-body h3 {
    display: block !important;
    font-size: 9px !important;
}
@media (max-width: 760px) {
    .pdp-premium.pdp-reference.pdp-compact .related-product-card { flex-basis: 132px !important; width: 132px !important; min-width: 132px !important; }
}

/* Do not stretch the related-products card to the enquiry card's grid height. */
.pdp-premium.pdp-reference.pdp-compact .related-products-section {
    align-self: start !important;
    height: fit-content !important;
    min-height: 0 !important;
}

/* Product listing category rail: wider blue intro and image-forward cards. */
@media (min-width: 769px) {
    .product-listing-page .product-category-panel {
        grid-template-columns: minmax(460px, 31vw) 48px minmax(0, 1fr) 48px !important;
        gap: 20px !important;
        min-height: 270px !important;
    }

    .product-listing-page .product-category-intro {
        min-height: 270px !important;
        padding: 34px 74px 34px 0 !important;
    }

    .product-listing-page .product-category-intro .category-icon {
        position: absolute !important;
        top: 58px !important;
        left: 0 !important;
        margin: 0 !important;
    }

    .product-listing-page .product-category-intro h2 {
        width: 100% !important;
        max-width: 360px !important;
        text-align: left !important;
    }

    .product-listing-page .product-category-row {
        align-items: center !important;
        padding: 20px 2px 20px !important;
    }

    .product-listing-page .listing-category-card {
        min-height: 186px !important;
    }

    .product-listing-page .listing-category-card img {
        height: 136px !important;
        min-height: 136px !important;
        object-fit: cover !important;
    }

    .product-listing-page .listing-category-card span {
        min-height: 50px !important;
        padding: 0 10px !important;
    }
}

/* Product page actions use the primary Gratus theme blue. */
.pdp-premium.pdp-reference.pdp-compact .product-actions .btn-primary,
.pdp-premium.pdp-reference.pdp-compact .pdp-enquiry-card button {
    background: var(--brand-blue) !important;
    border-color: var(--brand-blue) !important;
    color: #fff !important;
}

.pdp-premium.pdp-reference.pdp-compact .product-share-button {
    border-color: var(--brand-blue) !important;
    background: #fff !important;
    color: var(--brand-blue) !important;
}

.pdp-premium.pdp-reference.pdp-compact .product-actions .btn-primary:hover,
.pdp-premium.pdp-reference.pdp-compact .pdp-enquiry-card button:hover {
    background: #087eb5 !important;
    border-color: #087eb5 !important;
}

/* Country-wise dealer directory on Where To Buy. */
.where-dealer-section {
    padding: 80px 0;
    background: #f7fbfd;
}

.where-dealer-grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
    gap: 34px;
    align-items: start;
}

.where-dealer-panel {
    padding: 24px;
    border: 1px solid rgba(21, 155, 215, .18);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 18px 46px rgba(18, 51, 73, .08);
}

.where-dealer-panel label {
    display: grid;
    gap: 9px;
    color: #23405a;
    font-size: 13px;
    font-weight: 700;
}

.where-dealer-panel select {
    width: 100%;
    min-height: 48px;
    padding: 0 14px;
    border: 1px solid #d8e5ec;
    border-radius: 8px;
    background: #fff;
    color: #102536;
}

.where-dealer-results {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.where-dealer-card {
    padding: 18px;
    border: 1px solid #dcebf1;
    border-radius: 10px;
    background: linear-gradient(180deg, #fff, #f9fdff);
}

.where-dealer-card span {
    color: var(--brand-green);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.where-dealer-card h3 {
    margin: 6px 0 8px;
    color: #102536;
    font-size: 20px;
}

.where-dealer-card p {
    margin: 0 0 10px;
    color: #607283;
}

.where-dealer-card a,
.where-dealer-card strong {
    color: var(--brand-blue);
    font-weight: 800;
}

.where-dealer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.where-dealer-map-link {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border: 1px solid rgba(21, 155, 215, .24);
    border-radius: 999px;
    background: #eef9ff;
    font-size: 13px;
}

.where-dealer-empty {
    margin: 18px 0 0;
    color: #66788a;
    font-size: 14px;
}

@media (max-width: 760px) {
    .where-dealer-section {
        padding: 48px 0;
    }

    .where-dealer-grid {
        grid-template-columns: 1fr;
    }
}

/* Keep product share beside the enquiry CTA, not on a separate line. */
.pdp-premium.pdp-reference.pdp-compact .product-actions {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    align-items: center !important;
    gap: 8px !important;
    width: 100% !important;
}

.pdp-premium.pdp-reference.pdp-compact .product-actions .btn-primary {
    width: 100% !important;
}

.pdp-premium.pdp-reference.pdp-compact .product-share-button {
    flex: 0 0 auto !important;
    white-space: nowrap !important;
}

@media (max-width: 420px) {
    .pdp-premium.pdp-reference.pdp-compact .product-actions {
        grid-template-columns: minmax(0, 1fr) auto !important;
        gap: 6px !important;
    }

    .pdp-premium.pdp-reference.pdp-compact .product-actions .btn-primary,
    .pdp-premium.pdp-reference.pdp-compact .product-share-button {
        padding-inline: 8px !important;
    }
}

/* Product listing: keep the category title visually centered inside the blue panel. */
@media (min-width: 769px) {
    .product-listing-page .product-category-intro {
        justify-content: center !important;
        align-items: center !important;
        padding: 0 110px 0 64px !important;
    }

    .product-listing-page .product-category-intro .category-icon {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        z-index: 1 !important;
        margin: 0 10px 0 0 !important;
    }

    .product-listing-page .product-category-intro h2 {
        display: inline-flex !important;
        align-items: center !important;
        width: auto !important;
        margin: 0 !important;
    }

    .product-listing-page .product-category-intro h2::before {
        content: '' !important;
        width: 24px !important;
        height: 24px !important;
        margin-right: 10px !important;
        background: currentColor !important;
        -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 9.5 12 5l8 4.5v8.25a1.75 1.75 0 0 1-1.75 1.75H5.75A1.75 1.75 0 0 1 4 17.75V9.5Z' fill='none' stroke='black' stroke-width='1.7' stroke-linejoin='round'/%3E%3Cpath d='M9 19.5v-6h6v6M8 10h.01M12 10h.01M16 10h.01' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat !important;
        mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 9.5 12 5l8 4.5v8.25a1.75 1.75 0 0 1-1.75 1.75H5.75A1.75 1.75 0 0 1 4 17.75V9.5Z' fill='none' stroke='black' stroke-width='1.7' stroke-linejoin='round'/%3E%3Cpath d='M9 19.5v-6h6v6M8 10h.01M12 10h.01M16 10h.01' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat !important;
    }

    .product-listing-page .product-category-intro > .category-icon {
        display: none !important;
    }
}

/* Mobile home: keep customer journey readable with the desktop dark brand background. */
@media (max-width: 600px) {
    .home-page .customer-journey {
        background: linear-gradient(135deg, #071d2b 0%, #0b3147 58%, #0d3a4c 100%) !important;
        color: #ffffff !important;
    }

    .home-page .customer-journey-kicker {
        color: #73c8ec !important;
    }

    .home-page .customer-journey h2,
    .home-page .journey-step h3 {
        color: #ffffff !important;
    }

    .home-page .journey-step p {
        color: #b9cbd3 !important;
    }

    .home-page .journey-number {
        color: var(--brand-green) !important;
    }

    .home-page .journey-icon {
        border-color: rgba(115, 200, 236, .42) !important;
        background: rgba(255, 255, 255, .035) !important;
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .025) !important;
    }

    .home-page .journey-icon svg {
        stroke: #ffffff !important;
    }

    .home-page .journey-track i {
        background: rgba(255, 255, 255, .2) !important;
    }

    .home-page .journey-track i::after {
        background: linear-gradient(90deg, var(--brand-blue), var(--brand-green)) !important;
    }
}

/* Desktop home featured cards: compact vertical product cards. */
@media (min-width: 901px) {
    .home-page .featured-grid.featured-slider {
        gap: 22px !important;
        padding: 12px 4px 30px !important;
    }

    .home-page .featured-slider > .product-card {
        flex: 0 0 274px !important;
        width: 274px !important;
        max-width: 274px !important;
        overflow: hidden !important;
        border: 1px solid #d8e2e7 !important;
        border-radius: 8px !important;
        background: #fff !important;
        box-shadow: none !important;
    }

    .home-page .featured-slider > .product-card:hover {
        border-color: #bfd0d8 !important;
        box-shadow: 0 14px 34px rgba(15, 37, 48, .08) !important;
        transform: translateY(-3px) !important;
    }

    .home-page .featured .product-link {
        flex: 0 0 auto !important;
    }

    .home-page .featured .product-image {
        height: 315px !important;
        border-bottom: 1px solid #e5edf1 !important;
        background: #fff !important;
    }

    .home-page .featured .product-image img {
        padding: 30px 22px 12px !important;
        object-fit: contain !important;
    }

    .home-page .featured .featured-product-badge {
        top: 16px !important;
        left: 16px !important;
        padding: 8px 12px !important;
        background: var(--brand-green) !important;
        color: #fff !important;
        font-size: 10px !important;
        letter-spacing: .04em !important;
        box-shadow: none !important;
    }

    .home-page .featured .product-content {
        padding: 26px 26px 0 !important;
    }

    .home-page .featured .featured-product-meta {
        display: block !important;
        margin: 12px 0 0 !important;
    }

    .home-page .featured .product-category {
        display: none !important;
    }

    .home-page .featured .featured-product-model {
        display: block !important;
        color: #8a999f !important;
        font-size: 11px !important;
        font-weight: 700 !important;
        letter-spacing: 0 !important;
        white-space: nowrap !important;
    }

    .home-page .featured .featured-product-model::before {
        content: 'Model: ';
    }

    .home-page .featured .product-content h3 {
        min-height: 78px !important;
        margin: 0 !important;
        color: #142d3b !important;
        font-size: 21px !important;
        font-weight: 600 !important;
        line-height: 1.25 !important;
        letter-spacing: -.025em !important;
        -webkit-line-clamp: 3 !important;
    }

    .home-page .featured .featured-product-actions {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
        gap: 8px !important;
        margin: 26px 26px 24px !important;
        padding-top: 20px !important;
        border-top: 1px solid #e1e9ed !important;
    }

    .home-page .featured .featured-product-actions .featured-product-cta {
        display: flex !important;
        min-height: 36px !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 9px 7px !important;
        border: 1px solid #d7e4e9 !important;
        border-radius: 4px !important;
        color: #06364d !important;
        font-size: 10px !important;
        font-weight: 800 !important;
        letter-spacing: .04em !important;
        line-height: 1 !important;
        text-align: center !important;
        text-transform: uppercase !important;
    }

    .home-page .featured .featured-product-actions .featured-product-cta svg,
    .home-page .featured .featured-cta-mobile {
        display: none !important;
    }

    .home-page .featured .featured-enquiry-btn {
        display: flex !important;
        min-height: 36px !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 !important;
        padding: 9px 7px !important;
        border-radius: 4px !important;
        font-size: 10px !important;
        letter-spacing: .04em !important;
        line-height: 1 !important;
        white-space: nowrap !important;
    }

    .home-page .featured .featured-cta-desktop {
        display: inline !important;
    }
}

/* Desktop product listing cards: match the Featured vertical card design. */
@media (min-width: 901px) {
    .product-listing-page .listing-results {
        display: grid !important;
        grid-template-columns: repeat(auto-fill, 274px) !important;
        align-items: start !important;
        justify-content: start !important;
        gap: 24px 18px !important;
    }

    .product-listing-page .listing-product-card {
        display: flex !important;
        width: 274px !important;
        max-width: 274px !important;
        min-height: 0 !important;
        flex-direction: column !important;
        overflow: hidden !important;
        border: 1px solid #d8e2e7 !important;
        border-radius: 8px !important;
        background: #fff !important;
        box-shadow: none !important;
    }

    .product-listing-page .listing-product-card:hover {
        border-color: #bfd0d8 !important;
        box-shadow: 0 14px 34px rgba(15, 37, 48, .08) !important;
        transform: translateY(-3px) !important;
    }

    .product-listing-page .listing-product-link {
        flex: 0 0 auto !important;
        min-height: 0 !important;
    }

    .product-listing-page .listing-product-image {
        height: 292px !important;
        aspect-ratio: auto !important;
        border-bottom: 1px solid #e5edf1 !important;
        background: #fff !important;
    }

    .product-listing-page .listing-product-image img {
        width: 100% !important;
        height: 100% !important;
        padding: 30px 22px 12px !important;
        object-fit: contain !important;
    }

    .product-listing-page .listing-product-badge {
        top: 16px !important;
        left: 16px !important;
        min-height: 30px !important;
        padding: 0 12px !important;
        background: var(--brand-green) !important;
        color: #fff !important;
        font-size: 10px !important;
        letter-spacing: .04em !important;
        box-shadow: none !important;
    }

    .product-listing-page .listing-product-body {
        flex: 0 0 auto !important;
        padding: 40px 26px 0 !important;
    }

    .product-listing-page .listing-product-category {
        display: none !important;
    }

    .product-listing-page .listing-product-body h2 {
        display: -webkit-box !important;
        min-height: 68px !important;
        margin: 0 !important;
        overflow: hidden !important;
        color: #142d3b !important;
        font-size: 21px !important;
        font-weight: 600 !important;
        line-height: 1.25 !important;
        letter-spacing: -.025em !important;
        -webkit-box-orient: vertical !important;
        -webkit-line-clamp: 3 !important;
    }

    .product-listing-page .listing-product-model {
        display: block !important;
        margin: 0 0 7px !important;
        color: #8a999f !important;
        font-size: 11px !important;
        font-weight: 700 !important;
        letter-spacing: 0 !important;
        white-space: nowrap !important;
    }

    .product-listing-page .listing-product-actions {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
        margin: 24px 26px 26px !important;
        padding-top: 18px !important;
        border-top: 1px solid #e1e9ed !important;
    }

    .product-listing-page .listing-learn,
    .product-listing-page .listing-enquiry-btn {
        display: flex !important;
        min-height: 36px !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 !important;
        padding: 0 10px !important;
        border-radius: 4px !important;
        font-size: 9px !important;
        font-weight: 800 !important;
        letter-spacing: .02em !important;
        line-height: 1 !important;
        text-align: center !important;
        text-transform: uppercase !important;
        white-space: nowrap !important;
    }

    .product-listing-page .listing-learn {
        border: 1px solid #d7e4e9 !important;
        color: #06364d !important;
    }

    .product-listing-page .listing-learn::after {
        display: none !important;
    }

    .product-listing-page .listing-enquiry-btn {
        border: 1px solid #159bd7 !important;
        background: #159bd7 !important;
        color: #fff !important;
    }

    .product-listing-page .listing-enquiry-btn:hover {
        border-color: #173c52 !important;
        background: #173c52 !important;
        color: #fff !important;
    }
}

/* Product detail page: keep the compact PDP centered instead of full-bleed. */
@media (min-width: 1001px) {
    .pdp-premium.pdp-reference.pdp-compact > .container {
        grid-template-columns: minmax(0, 1.04fr) minmax(360px, .76fr) !important;
        gap: 22px !important;
        width: min(calc(100% - 56px), 1380px) !important;
        max-width: 1380px !important;
        margin-inline: auto !important;
    }

    .pdp-premium.pdp-reference.pdp-compact .product-detail-media,
    .pdp-premium.pdp-reference.pdp-compact .product-detail-copy,
    .pdp-premium.pdp-reference.pdp-compact .related-products-section,
    .pdp-premium.pdp-reference.pdp-compact .pdp-enquiry-card {
        border-color: #6fd8e1 !important;
        border-radius: 6px !important;
        box-shadow: 0 10px 22px rgba(7, 46, 61, .08) !important;
    }

    .pdp-premium.pdp-reference.pdp-compact .product-detail-media {
        padding: 14px !important;
    }

    .pdp-premium.pdp-reference.pdp-compact .product-main-image-wrap {
        height: 326px !important;
        min-height: 326px !important;
    }

    .pdp-premium.pdp-reference.pdp-compact .product-detail-copy {
        padding: 17px 18px !important;
    }

    .pdp-premium.pdp-reference.pdp-compact .product-detail-copy h1 {
        max-width: 620px !important;
        font-size: clamp(21px, 1.55vw, 27px) !important;
        line-height: 1.08 !important;
    }

    .pdp-premium.pdp-reference.pdp-compact .product-detail-lead {
        max-width: 640px !important;
        -webkit-line-clamp: 4 !important;
    }

    .pdp-premium.pdp-reference.pdp-compact .related-products-section,
    .pdp-premium.pdp-reference.pdp-compact .pdp-enquiry-card {
        padding: 14px !important;
    }

    .pdp-premium.pdp-reference.pdp-compact .related-products-slider {
        gap: 8px !important;
        padding-bottom: 6px !important;
    }

    .pdp-premium.pdp-reference.pdp-compact .related-product-card {
        flex: 0 0 118px !important;
        width: 118px !important;
        min-width: 118px !important;
        height: 132px !important;
    }

    .pdp-premium.pdp-reference.pdp-compact .related-product-image {
        height: 88px !important;
        padding: 4px !important;
    }

    .pdp-premium.pdp-reference.pdp-compact .related-product-body {
        height: 42px !important;
        padding: 5px !important;
    }

    .pdp-premium.pdp-reference.pdp-compact .related-product-body h3 {
        font-size: 8px !important;
        line-height: 1.25 !important;
    }

    .pdp-premium.pdp-reference.pdp-compact .pdp-compact-details {
        gap: 10px !important;
    }

    .pdp-premium.pdp-reference.pdp-compact .pdp-compact-details details {
        border-color: #cfdde4 !important;
        border-radius: 5px !important;
        overflow: hidden !important;
    }

    .pdp-premium.pdp-reference.pdp-compact .pdp-compact-details summary {
        min-height: 42px !important;
        padding: 0 16px !important;
        color: #17384b !important;
        font-size: 12px !important;
        font-weight: 800 !important;
    }

    .pdp-premium.pdp-reference.pdp-compact .pdp-compact-details summary span {
        font-size: 16px !important;
    }

    .pdp-premium.pdp-reference.pdp-compact .pdp-compact-details details > div {
        padding: 0 16px 14px !important;
        font-size: 12px !important;
        line-height: 1.55 !important;
    }
}

/* Final PDP polish: balanced product media, readable details and compact page width. */
@media (min-width: 1001px) {
    .pdp-premium.pdp-reference.pdp-compact {
        background: #f4fafb !important;
        padding: 104px 0 58px !important;
    }

    .pdp-premium.pdp-reference.pdp-compact > .container {
        grid-template-columns: minmax(0, 1.02fr) minmax(390px, .78fr) !important;
        gap: 24px !important;
        width: min(calc(100% - 64px), 1320px) !important;
        max-width: 1320px !important;
    }

    .pdp-premium.pdp-reference.pdp-compact .product-detail-media,
    .pdp-premium.pdp-reference.pdp-compact .product-detail-copy,
    .pdp-premium.pdp-reference.pdp-compact .related-products-section,
    .pdp-premium.pdp-reference.pdp-compact .pdp-enquiry-card {
        border: 1px solid #6fd8e1 !important;
        border-radius: 7px !important;
        background: #fff !important;
        box-shadow: 0 14px 34px rgba(7, 46, 61, .075) !important;
    }

    .pdp-premium.pdp-reference.pdp-compact .product-detail-media {
        padding: 20px !important;
    }

    .pdp-premium.pdp-reference.pdp-compact .product-main-image-wrap {
        height: 410px !important;
        min-height: 410px !important;
        background: linear-gradient(180deg, #ffffff 0%, #f8fbfc 100%) !important;
    }

    .pdp-premium.pdp-reference.pdp-compact .product-main-image-wrap img {
        width: 100% !important;
        height: 100% !important;
        padding: 22px !important;
        object-fit: contain !important;
    }

    .pdp-premium.pdp-reference.pdp-compact .product-thumb-row {
        gap: 10px !important;
        margin-top: 14px !important;
    }

    .pdp-premium.pdp-reference.pdp-compact .product-thumb-row button {
        flex-basis: 62px !important;
        width: 62px !important;
        height: 58px !important;
        border-radius: 5px !important;
    }

    .pdp-premium.pdp-reference.pdp-compact .product-detail-copy {
        padding: 24px !important;
    }

    .pdp-premium.pdp-reference.pdp-compact .product-detail-copy .model {
        margin-bottom: 10px !important;
        padding: 5px 10px !important;
        font-size: 11px !important;
        font-weight: 800 !important;
    }

    .pdp-premium.pdp-reference.pdp-compact .product-detail-copy h1 {
        max-width: 700px !important;
        margin-bottom: 12px !important;
        color: #142d3b !important;
        font-size: clamp(26px, 2.05vw, 36px) !important;
        line-height: 1.12 !important;
    }

    .pdp-premium.pdp-reference.pdp-compact .product-detail-lead {
        display: block !important;
        max-width: 720px !important;
        margin-bottom: 16px !important;
        color: #617785 !important;
        font-size: 13px !important;
        line-height: 1.55 !important;
    }

    .pdp-premium.pdp-reference.pdp-compact .product-actions {
        gap: 10px !important;
        margin-bottom: 14px !important;
    }

    .pdp-premium.pdp-reference.pdp-compact .product-actions .btn-primary,
    .pdp-premium.pdp-reference.pdp-compact .product-share-button {
        min-height: 38px !important;
        height: 38px !important;
        border-radius: 5px !important;
        font-size: 11px !important;
    }

    .pdp-premium.pdp-reference.pdp-compact .pdp-compact-details {
        gap: 12px !important;
    }

    .pdp-premium.pdp-reference.pdp-compact .pdp-compact-details summary {
        min-height: 48px !important;
        padding: 0 18px !important;
        font-size: 14px !important;
    }

    .pdp-premium.pdp-reference.pdp-compact .pdp-compact-details details > div {
        padding: 0 18px 18px !important;
        font-size: 13px !important;
        line-height: 1.6 !important;
    }

    .pdp-premium.pdp-reference.pdp-compact .related-products-section,
    .pdp-premium.pdp-reference.pdp-compact .pdp-enquiry-card {
        padding: 20px !important;
    }

    .pdp-premium.pdp-reference.pdp-compact .related-products-section {
        overflow: hidden !important;
    }

    .pdp-premium.pdp-reference.pdp-compact .related-products-heading h2,
    .pdp-premium.pdp-reference.pdp-compact .pdp-enquiry-card h2 {
        font-size: 22px !important;
        line-height: 1.2 !important;
    }

    .pdp-premium.pdp-reference.pdp-compact .related-products-slider {
        display: grid !important;
        grid-auto-flow: column !important;
        grid-auto-columns: 118px !important;
        justify-content: start !important;
        gap: 12px !important;
        overflow-x: auto !important;
        padding: 0 0 10px !important;
    }

    .pdp-premium.pdp-reference.pdp-compact .related-product-card {
        flex: none !important;
        width: 118px !important;
        min-width: 118px !important;
        height: 136px !important;
        border-color: #6fd8e1 !important;
        border-radius: 4px !important;
    }

    .pdp-premium.pdp-reference.pdp-compact .related-product-image {
        height: 90px !important;
    }

    .pdp-premium.pdp-reference.pdp-compact .related-product-body {
        height: 44px !important;
        padding: 5px !important;
    }

    .pdp-premium.pdp-reference.pdp-compact .pdp-enquiry-card input,
    .pdp-premium.pdp-reference.pdp-compact .pdp-enquiry-card textarea {
        min-height: 36px !important;
        font-size: 12px !important;
    }

    .pdp-premium.pdp-reference.pdp-compact .pdp-enquiry-card textarea {
        min-height: 86px !important;
    }

    .pdp-premium.pdp-reference.pdp-compact .pdp-enquiry-card button {
        min-height: 40px !important;
        font-size: 11px !important;
    }
}

/* Mobile PDP related products: keep cards close in the horizontal slider. */
@media (max-width: 760px) {
    .pdp-premium.pdp-reference.pdp-compact .related-products-section {
        overflow: hidden !important;
        padding: 14px !important;
    }

    .pdp-premium.pdp-reference.pdp-compact .related-products-heading {
        display: grid !important;
        justify-items: center !important;
        gap: 8px !important;
        min-height: 0 !important;
        margin-bottom: 12px !important;
        text-align: center !important;
    }

    .pdp-premium.pdp-reference.pdp-compact .related-products-slider {
        display: grid !important;
        grid-auto-flow: column !important;
        grid-auto-columns: 132px !important;
        justify-content: start !important;
        gap: 8px !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        padding: 0 0 8px !important;
        scroll-snap-type: x proximity;
    }

    .pdp-premium.pdp-reference.pdp-compact .related-product-card {
        flex: none !important;
        width: 132px !important;
        min-width: 132px !important;
        height: 146px !important;
        scroll-snap-align: start;
    }

    .pdp-premium.pdp-reference.pdp-compact .related-product-image {
        height: 98px !important;
        padding: 5px !important;
    }

    .pdp-premium.pdp-reference.pdp-compact .related-product-body {
        height: 46px !important;
        padding: 5px !important;
    }

    .pdp-premium.pdp-reference.pdp-compact .related-product-body h3 {
        font-size: 8px !important;
        line-height: 1.25 !important;
    }
}

/* PDP top action row after removing the enquiry shortcut button. */
.pdp-premium.pdp-reference.pdp-compact .product-actions.product-actions-share-only {
    justify-content: flex-end !important;
}

.pdp-premium.pdp-reference.pdp-compact .product-actions.product-actions-share-only .product-share-button {
    min-width: 96px !important;
}

@media (max-width: 760px) {
    .pdp-premium.pdp-reference.pdp-compact .product-actions.product-actions-share-only {
        justify-content: flex-start !important;
    }
}

/* Mobile product listing actions: always show Learn More and Enquire Now. */
@media (max-width: 760px) {
    body:not(.home-page) .product-listing-page .listing-product-card,
    body:not(.home-page) .listing-product-card {
        display: flex !important;
        flex-direction: column !important;
        height: auto !important;
        min-height: 288px !important;
        overflow: hidden !important;
        border: 1px solid #d8e5ec !important;
        border-radius: 7px !important;
        background: #fff !important;
        box-shadow: none !important;
    }

    body:not(.home-page) .product-listing-page .listing-product-link,
    body:not(.home-page) .listing-product-link {
        display: flex !important;
        flex-direction: column !important;
        flex: 1 1 auto !important;
        min-height: 0 !important;
    }

    body:not(.home-page) .product-listing-page .listing-product-image,
    body:not(.home-page) .listing-product-image {
        height: 132px !important;
        min-height: 132px !important;
        padding: 10px 10px 4px !important;
        flex: 0 0 auto !important;
        background: #fff !important;
    }

    body:not(.home-page) .product-listing-page .listing-product-image img,
    body:not(.home-page) .listing-product-image img {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
        transform: none !important;
    }

    body:not(.home-page) .product-listing-page .listing-product-badge,
    body:not(.home-page) .listing-product-badge {
        display: inline-flex !important;
        top: auto !important;
        bottom: -18px !important;
        left: 10px !important;
        height: 18px !important;
        padding: 0 6px !important;
        border-radius: 3px !important;
        background: #6cc51d !important;
        color: #fff !important;
        font-size: 6px !important;
        line-height: 18px !important;
        letter-spacing: .02em !important;
        box-shadow: none !important;
    }

    body:not(.home-page) .product-listing-page .listing-product-body,
    body:not(.home-page) .listing-product-body {
        flex: 1 1 auto !important;
        min-height: 82px !important;
        padding: 20px 10px 8px !important;
    }

    body:not(.home-page) .product-listing-page .listing-product-category,
    body:not(.home-page) .listing-product-category {
        display: none !important;
    }

    body:not(.home-page) .product-listing-page .listing-product-model,
    body:not(.home-page) .listing-product-model {
        display: block !important;
        margin: -16px 0 13px auto !important;
        color: #7e93a0 !important;
        font-size: 8px !important;
        font-weight: 700 !important;
        letter-spacing: .02em !important;
        line-height: 1 !important;
        text-align: right !important;
    }

    body:not(.home-page) .product-listing-page .listing-product-model::before,
    body:not(.home-page) .listing-product-model::before {
        content: "" !important;
    }

    body:not(.home-page) .product-listing-page .listing-product-body h2,
    body:not(.home-page) .listing-product-body h2 {
        display: -webkit-box !important;
        overflow: hidden !important;
        min-height: 34px !important;
        margin: 0 !important;
        -webkit-box-orient: vertical !important;
        -webkit-line-clamp: 3 !important;
        color: #0b2b3d !important;
        font-size: 9px !important;
        font-weight: 700 !important;
        line-height: 1.25 !important;
        letter-spacing: 0 !important;
    }

    body:not(.home-page) .product-listing-page .listing-product-actions,
    body:not(.home-page) .listing-product-actions {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 9px !important;
        flex: 0 0 auto !important;
        width: auto !important;
        margin: 0 10px 10px !important;
        padding: 11px 0 0 !important;
        border-top: 1px solid #dfe8ee !important;
        visibility: visible !important;
        opacity: 1 !important;
        transform: none !important;
    }

    body:not(.home-page) .product-listing-page .listing-learn,
    body:not(.home-page) .listing-learn {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
        height: 18px !important;
        min-height: 18px !important;
        padding: 0 !important;
        border: 0 !important;
        background: transparent !important;
        color: #0b2b3d !important;
        font-size: 8px !important;
        font-weight: 800 !important;
        line-height: 1 !important;
        letter-spacing: .06em !important;
        text-transform: uppercase !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    body:not(.home-page) .product-listing-page .listing-learn::after,
    body:not(.home-page) .listing-learn::after {
        content: "" !important;
        display: inline-block !important;
        width: 8px !important;
        height: 8px !important;
        border-top: 2px solid #0b2b3d !important;
        border-right: 2px solid #0b2b3d !important;
        transform: none !important;
        rotate: 45deg !important;
        margin-right: 1px !important;
    }

    body:not(.home-page) .product-listing-page .listing-enquiry-btn,
    body:not(.home-page) .listing-enquiry-btn {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        min-width: 0 !important;
        min-height: 34px !important;
        height: 34px !important;
        padding: 0 7px !important;
        border: 1px solid #159bd7 !important;
        border-radius: 4px !important;
        background: #159bd7 !important;
        color: #fff !important;
        font-size: 8px !important;
        font-weight: 800 !important;
        line-height: 1 !important;
        letter-spacing: .04em !important;
        text-transform: uppercase !important;
        white-space: nowrap !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}
