.fh-product-center-v2 {
    --fh-list-navy: #071f33;
    --fh-list-ink: #18242e;
    --fh-list-copper: #c35f22;
    --fh-list-copper-dark: #984416;
    --fh-list-mist: #f3f5f6;
    --fh-list-line: #e1e6e9;
    color: var(--fh-list-ink);
}

.fh-product-center-v2 .fh-product-shell {
    width: min(calc(100% - 96px), 1600px);
}

.fh-product-center-v2 .fh-product-center__hero {
    padding: 82px 0 76px;
    background: linear-gradient(115deg, #071f33, #0d3856);
}

.fh-product-center-v2 .fh-product-center__hero h1 {
    max-width: 940px;
    font-size: clamp(42px, 4.2vw, 60px);
}

.fh-product-center-v2 .fh-product-center__body {
    padding: 82px 0 112px;
    background: var(--fh-list-mist);
}

.fh-product-center-v2 .fh-product-center-layout {
    grid-template-columns: minmax(280px, 310px) minmax(0, 1fr);
    gap: 30px;
}

.fh-product-center-v2 .fh-product-sidebar {
    top: 98px;
}

.fh-product-sidebar-toggle {
    display: none;
}

.fh-product-center-v2 .fh-product-category-tree,
.fh-product-center-v2 .fh-product-contact-panel {
    border-color: var(--fh-list-line);
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(7, 31, 51, .055);
}

.fh-product-center-v2 .fh-product-category-tree h2 {
    padding: 30px 26px 23px;
    font-size: 28px;
}

.fh-product-center-v2 .fh-product-category-tree__all,
.fh-product-center-v2 .fh-product-category-tree__row > a {
    position: relative;
}

.fh-product-center-v2 .fh-product-category-tree__all::before,
.fh-product-center-v2 .fh-product-category-tree__row > a::before {
    position: absolute;
    top: 50%;
    left: 13px;
    width: 7px;
    height: 7px;
    border: 1px solid #99a4ac;
    border-radius: 50%;
    content: "";
    transform: translateY(-50%);
    transition: border-color .25s ease, background-color .25s ease, box-shadow .25s ease;
}

.fh-product-center-v2 .fh-product-category-tree__all,
.fh-product-center-v2 .fh-product-category-tree__row > a {
    padding-left: 31px;
}

.fh-product-center-v2 .fh-product-category-tree__all:hover::before,
.fh-product-center-v2 .fh-product-category-tree__all:focus-visible::before,
.fh-product-center-v2 .fh-product-category-tree__all.is-active::before,
.fh-product-center-v2 .fh-product-category-tree__row > a:hover::before,
.fh-product-center-v2 .fh-product-category-tree__row > a:focus-visible::before,
.fh-product-center-v2 .fh-product-category-tree__row > a.is-active::before {
    border-color: var(--fh-list-copper);
    background: var(--fh-list-copper);
    box-shadow: 0 0 0 3px rgba(195, 95, 34, .13);
}

.fh-product-center-v2 .fh-product-category-tree a:focus-visible,
.fh-product-center-v2 .fh-product-category-tree button:focus-visible,
.fh-product-center-v2 .fh-product-grid-card__target:focus-visible,
.fh-product-center-v2 .fh-product-pagination a:focus-visible {
    outline: 3px solid #ef9a64;
    outline-offset: 2px;
}

.fh-product-center-v2 .fh-product-category-tree__row button:hover span::before,
.fh-product-center-v2 .fh-product-category-tree__row button:hover span::after {
    background: var(--fh-list-copper);
}

.fh-product-center-v2 .fh-product-category-tree__group.is-open > .fh-product-category-tree__row button span::after {
    transform: rotate(0);
}

.fh-product-center-v2 .fh-product-category-tree__group:not(.is-open) > .fh-product-category-tree__row button span::after {
    transform: rotate(90deg);
}

.fh-product-center-v2 .fh-product-category-tree__group > ul .fh-product-category-tree__row > a {
    padding-left: 36px;
    font-size: 13px;
}

.fh-product-center-v2 .fh-product-category-tree__group > ul .fh-product-category-tree__group > ul .fh-product-category-tree__row > a {
    padding-left: 46px;
}

.fh-product-center-v2 .fh-product-results__heading {
    margin-bottom: 30px;
}

.fh-product-center-v2 .fh-product-results__heading h2 {
    max-width: 790px;
    color: var(--fh-list-navy);
    font-size: clamp(30px, 2.8vw, 44px);
}

.fh-product-center-v2 .fh-product-grid-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.fh-product-center-v2 .fh-product-grid-card {
    overflow: hidden;
    border: 1px solid var(--fh-list-line);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 7px 22px rgba(7, 31, 51, .045);
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.fh-product-center-v2 .fh-product-grid-card:hover,
.fh-product-center-v2 .fh-product-grid-card:focus-within {
    border-color: rgba(195, 95, 34, .35);
    box-shadow: 0 18px 38px rgba(7, 31, 51, .13);
    transform: translateY(-4px);
}

.fh-product-center-v2 .fh-product-grid-card__target {
    display: flex;
    min-height: 100%;
    flex-direction: column;
}

.fh-product-center-v2 .fh-product-grid-card__image {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-bottom: 1px solid #edf0f2;
    background: linear-gradient(145deg, #fff, #fafbfb);
    isolation: isolate;
}

.fh-product-center-v2 .fh-product-grid-card__image::before {
    position: absolute;
    z-index: 0;
    inset: 0;
    content: "";
    background-image: var(--fh-card-watermark);
    background-repeat: repeat;
    background-position: 18px 16px;
    background-size: 128px auto;
    opacity: var(--fh-product-watermark-opacity, .03);
    filter: grayscale(1);
    pointer-events: none;
}

.fh-product-center-v2 .fh-product-grid-card__logo {
    position: absolute;
    z-index: 3;
    top: 20px;
    left: 20px;
    width: clamp(105px, 9vw, 138px);
    height: 43px;
    object-fit: contain;
    object-position: left center;
}

.fh-product-center-v2 .fh-product-grid-card__model {
    position: absolute;
    z-index: 3;
    top: 22px;
    right: 20px;
    max-width: 42%;
    overflow-wrap: anywhere;
    color: var(--fh-list-copper);
    font-family: Manrope, Inter, sans-serif;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.25;
    text-align: right;
}

.fh-product-center-v2 .fh-product-grid-card__product {
    position: absolute;
    z-index: 1;
    top: 72px;
    right: 6%;
    bottom: 3%;
    left: 6%;
    width: 88%;
    height: calc(100% - 78px);
    object-fit: contain;
    object-position: var(--fh-listing-position, center) center;
    transform: scale(var(--fh-listing-scale, 1));
    transform-origin: var(--fh-listing-position, center) bottom;
    transition: transform .3s ease;
}

.fh-product-center-v2 .fh-product-grid-card:hover .fh-product-grid-card__product,
.fh-product-center-v2 .fh-product-grid-card:focus-within .fh-product-grid-card__product {
    transform: scale(calc(var(--fh-listing-scale, 1) * 1.03));
}

.fh-product-center-v2 .fh-product-grid-card__body {
    display: flex;
    min-height: 210px;
    padding: 24px 24px 22px;
    flex: 1;
    flex-direction: column;
}

.fh-product-center-v2 .fh-product-grid-card h3 {
    display: -webkit-box;
    min-height: 50px;
    margin: 0;
    overflow: hidden;
    color: var(--fh-list-navy);
    font-size: 18px;
    line-height: 1.4;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    transition: color .25s ease;
}

.fh-product-center-v2 .fh-product-grid-card:hover h3,
.fh-product-center-v2 .fh-product-grid-card:focus-within h3 {
    color: var(--fh-list-copper);
}

.fh-product-center-v2 .fh-product-grid-card__summary {
    display: -webkit-box;
    margin: 13px 0 18px;
    overflow: hidden;
    color: #64727c;
    font-size: 14px;
    line-height: 1.65;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.fh-product-center-v2 .fh-product-grid-card__link {
    position: relative;
    display: flex;
    margin-top: auto;
    padding-top: 16px;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #efd8ca;
    color: var(--fh-list-copper);
}

.fh-product-center-v2 .fh-product-grid-card__link::before {
    position: absolute;
    top: -1px;
    right: 50%;
    left: 50%;
    height: 2px;
    content: "";
    background: var(--fh-list-copper);
    transition: right .28s ease, left .28s ease;
}

.fh-product-center-v2 .fh-product-grid-card:hover .fh-product-grid-card__link::before,
.fh-product-center-v2 .fh-product-grid-card:focus-within .fh-product-grid-card__link::before {
    right: 0;
    left: 0;
}

.fh-product-center-v2 .fh-product-grid-card__link span {
    transition: transform .25s ease;
}

.fh-product-center-v2 .fh-product-grid-card:hover .fh-product-grid-card__link span,
.fh-product-center-v2 .fh-product-grid-card:focus-within .fh-product-grid-card__link span {
    transform: translateX(3px);
}

.fh-product-center-v2 .fh-product-grid-card__target:active {
    transform: scale(.995);
}

.fh-product-center-v2 .fh-product-pagination a:hover {
    color: #fff;
    border-color: var(--fh-list-copper-dark);
    background: var(--fh-list-copper-dark);
}

/* This stylesheet only loads on product listing archives. Keep the shared footer CTA readable here. */
.fh-site-footer .fh-shell-button--light {
    min-width: 172px;
    color: #071f33;
    border-color: #fff;
    background: #fff;
}

.fh-site-footer .fh-shell-button--light:hover,
.fh-site-footer .fh-shell-button--light:focus-visible {
    color: #fff;
    border-color: #c35f22;
    background: #c35f22;
}

.fh-site-footer .fh-shell-button--light:active {
    color: #fff;
    border-color: #984416;
    background: #984416;
    transform: translateY(0) scale(.98);
}

@media (max-width: 1280px) {
    .fh-product-center-v2 .fh-product-shell { width: min(calc(100% - 48px), 1600px); }
    .fh-product-center-v2 .fh-product-center-layout { grid-template-columns: 260px minmax(0, 1fr); gap: 24px; }
    .fh-product-center-v2 .fh-product-grid-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
    .fh-product-center-v2 .fh-product-shell { width: calc(100% - 40px); }
    .fh-product-center-v2 .fh-product-center__hero { padding: 64px 0 58px; }
    .fh-product-center-v2 .fh-product-center__hero h1 { font-size: clamp(35px, 10vw, 44px); }
    .fh-product-center-v2 .fh-product-center__hero > .fh-product-shell > p:last-child { font-size: 16px; }
    .fh-product-center-v2 .fh-product-center__body { padding: 48px 0 76px; }
    .fh-product-center-v2 .fh-product-center-layout { grid-template-columns: 1fr; gap: 38px; }
    .fh-product-sidebar-toggle {
        display: flex;
        width: 100%;
        min-height: 56px;
        padding: 0 20px;
        align-items: center;
        justify-content: space-between;
        border: 1px solid var(--fh-list-line);
        border-radius: 10px;
        color: var(--fh-list-navy);
        background: #fff;
        font-weight: 750;
    }
    .fh-product-sidebar-toggle i { position: relative; width: 14px; height: 14px; }
    .fh-product-sidebar-toggle i::before,
    .fh-product-sidebar-toggle i::after { position: absolute; top: 6px; left: 1px; width: 12px; height: 2px; content: ""; background: currentColor; transition: transform .22s ease; }
    .fh-product-sidebar-toggle i::after { transform: rotate(90deg); }
    .fh-product-sidebar-toggle[aria-expanded="true"] i::after { transform: rotate(0); }
    .fh-product-sidebar-toggle:focus-visible { outline: 3px solid #ef9a64; outline-offset: 2px; }
    .fh-product-category-panel { display: none; margin-top: 10px; }
    .fh-product-category-panel.is-open { display: block; }
    .fh-product-center-v2 .fh-product-contact-panel { display: none; }
    .fh-product-center-v2 .fh-product-results__heading { margin-top: 0; }
    .fh-product-center-v2 .fh-product-grid-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .fh-product-center-v2 .fh-product-grid-card__body { min-height: 190px; }
    .fh-product-center-v2 .fh-product-grid-card__link { font-size: 14px; }
}

@media (max-width: 640px) {
    .fh-product-center-v2 .fh-product-grid-list { grid-template-columns: 1fr; }
}

@media (max-width: 390px) {
    .fh-product-center-v2 .fh-product-shell { width: calc(100% - 32px); }
    .fh-product-center-v2 .fh-product-results__heading { display: block; }
    .fh-product-center-v2 .fh-product-results__heading > span { display: block; margin-top: 10px; }
    .fh-product-center-v2 .fh-product-grid-card__logo { top: 16px; left: 16px; width: 102px; height: 37px; }
    .fh-product-center-v2 .fh-product-grid-card__model { top: 17px; right: 16px; max-width: 44%; font-size: 11px; }
    .fh-product-center-v2 .fh-product-grid-card__product { top: 62px; height: calc(100% - 68px); }
    .fh-product-center-v2 .fh-product-grid-card__body { padding: 21px 20px; }
}

@media (hover: none) {
    .fh-product-center-v2 .fh-product-grid-card:hover { border-color: var(--fh-list-line); box-shadow: 0 7px 22px rgba(7, 31, 51, .045); transform: none; }
    .fh-product-center-v2 .fh-product-grid-card:hover .fh-product-grid-card__product { transform: scale(var(--fh-listing-scale, 1)); }
}

@media (prefers-reduced-motion: reduce) {
    .fh-product-center-v2 *,
    .fh-product-center-v2 *::before,
    .fh-product-center-v2 *::after { scroll-behavior: auto !important; animation: none !important; transition-duration: .01ms !important; }
    .fh-product-center-v2 .fh-product-grid-card:hover,
    .fh-product-center-v2 .fh-product-grid-card:focus-within,
    .fh-product-center-v2 .fh-product-grid-card:hover .fh-product-grid-card__product,
    .fh-product-center-v2 .fh-product-grid-card:focus-within .fh-product-grid-card__product { transform: none !important; }
}
