@font-face {
    font-family: "Manrope SGCE";
    src: url("../fonts/manrope-vf-bde96f234a33.woff2") format("woff2");
    font-style: normal;
    font-weight: 200 800;
    font-display: swap;
}

:root {
    --sgce-font: "Manrope SGCE", "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --sgce-black: #050505;
    --sgce-white: #ffffff;
    --sgce-ink: #151515;
    --sgce-muted: #686868;
    --sgce-line: rgba(21, 21, 21, 0.18);
    --sgce-beige: #f2eee8;
    --sgce-content-max: 1400px;
    --sgce-stage-max: 3840px;
    --sgce-stage-ratio: 12 / 5;
    --sgce-gutter: clamp(20px, 3vw, 40px);
    --sgce-content-gutter: 20px;
    --sgce-major-gap: 60px;
    --sgce-card-gap: 32px;
    --sgce-card-width: 445.333333px;
    --sgce-section-internal: 32px;
    --sgce-section-between: 64px;
    --sgce-card-background: #f2efe8;
    --sgce-section-gap: clamp(56px, 7vw, 112px);
    --sgce-radius: 0px;
    --sgce-ease: cubic-bezier(.22, 1, .36, 1);
    --sgce-motion: 260ms;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--sgce-ink);
    background: var(--sgce-white);
    font-family: var(--sgce-font);
    font-size: 16px;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.sgce-shell {
    width: min(calc(100% - (2 * var(--sgce-content-gutter))), var(--sgce-content-max));
    margin-inline: auto;
}
.sgce-shell--wide {
    width: min(calc(100% - (2 * var(--sgce-content-gutter))), var(--sgce-content-max));
    max-width: var(--sgce-content-max);
    padding-inline: 0;
}

.sgce-skip-link {
    position: fixed;
    z-index: 99999;
    top: 8px;
    left: 8px;
    padding: 10px 14px;
    color: var(--sgce-black);
    background: var(--sgce-white);
    transform: translateY(-160%);
}
.sgce-skip-link:focus { transform: translateY(0); }

.sgce-header {
    position: relative;
    z-index: 1000;
    color: var(--sgce-white);
    background: var(--sgce-black);
    transition: background-color 160ms var(--sgce-ease);
}
.sgce-header.is-mega-open { background: var(--sgce-black); }
.sgce-header__inner {
    min-height: 96px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 36px;
}
.sgce-logo { font-size: 30px; font-weight: 600; letter-spacing: .16em; }
.sgce-primary-nav__list,
.sgce-mobile-menu__list,
.sgce-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.sgce-primary-nav__list { display: flex; justify-content: center; gap: 26px; }
.sgce-primary-nav__item { position: static; }
.sgce-primary-nav a,
.sgce-footer a {
    position: relative;
    display: inline-block;
}
.sgce-primary-nav a { white-space: nowrap; }
.sgce-primary-nav a::after,
.sgce-footer a::after {
    content: "";
    position: absolute;
    right: 50%;
    bottom: -4px;
    left: 50%;
    height: 1px;
    background: currentColor;
    transition: left var(--sgce-motion) var(--sgce-ease), right var(--sgce-motion) var(--sgce-ease);
}
.sgce-primary-nav a:hover::after,
.sgce-primary-nav a:focus-visible::after,
.sgce-primary-nav__item.is-open > a::after,
.sgce-footer a:hover::after,
.sgce-footer a:focus-visible::after { right: 0; left: 0; }

.sgce-mega-menu {
    position: absolute;
    z-index: 1050;
    top: 100%;
    right: 0;
    left: 0;
    width: 100%;
    color: var(--sgce-white);
    background: var(--sgce-black);
    border-top: 1px solid rgba(255,255,255,.15);
    animation: sgce-mega-in 180ms var(--sgce-ease) both;
}
.sgce-mega-menu.is-switching { animation: none; }
.sgce-mega-menu__inner { position: relative; width: min(1400px, calc(100% - 40px)); margin-inline: auto; padding: 32px 0 34px; }
.sgce-mega-menu__close { position: absolute; top: 9px; right: clamp(20px, 3.33vw, 64px); padding: 0; border: 0; color: rgba(255,255,255,.62); background: transparent; font-size: 24px; line-height: 1; cursor: pointer; }
.sgce-mega-menu__close:hover,
.sgce-mega-menu__close:focus-visible { color: var(--sgce-white); }
.sgce-mega-menu__rows { display: grid; }
.sgce-mega-menu__row {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}
.sgce-mega-menu__row + .sgce-mega-menu__row { margin-top: 28px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.12); }
.sgce-mega-menu__column {
    min-width: 0;
    padding: 0 clamp(18px, 2vw, 32px);
    border-left: 1px solid rgba(255,255,255,.12);
}
.sgce-mega-menu__column:first-child { padding-left: 0; border-left: 0; }
.sgce-mega-menu__column:last-child { padding-right: 0; }
.sgce-mega-menu__column > ul { list-style: none; margin: 12px 0 0; padding: 0; display: grid; gap: 7px; }
.sgce-mega-menu__column a {
    position: relative;
    display: inline-block;
    color: rgba(255,255,255,.74);
    font-size: 13px;
    font-weight: 430;
    line-height: 1.45;
    transition: color var(--sgce-motion) var(--sgce-ease), opacity var(--sgce-motion) var(--sgce-ease);
}
.sgce-mega-menu__column .sgce-mega-menu__heading {
    color: var(--sgce-white);
    font-size: 14px;
    font-weight: 620;
    letter-spacing: .01em;
}
.sgce-mega-menu__column a::after {
    content: "";
    position: absolute;
    right: 50%;
    bottom: -4px;
    left: 50%;
    height: 1px;
    background: currentColor;
    transition: right var(--sgce-motion) var(--sgce-ease), left var(--sgce-motion) var(--sgce-ease);
}
.sgce-mega-menu__column a:hover,
.sgce-mega-menu__column a:focus-visible { color: var(--sgce-white); }
.sgce-mega-menu__column a:hover::after,
.sgce-mega-menu__column a:focus-visible::after { right: 0; left: 0; }
@keyframes sgce-mega-in {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}

.sgce-header-actions { display: flex; align-items: center; gap: 12px; }
.sgce-header-actions .sgce-icon-button { position: relative; }
.sgce-cart-count { position: absolute; top: 0; right: 0; display: grid; place-items: center; min-width: 17px; height: 17px; padding: 0 4px; border-radius: 999px; color: #000; background: #fff; box-shadow: 0 0 0 1px rgba(0,0,0,.35); font-size: 10px; font-weight: 700; line-height: 1; }
.sgce-cart-count.is-empty { display: none; }
.woocommerce-cart-form.is-updating { opacity: .58; pointer-events: none; }
.sgce-icon-button,
.sgce-menu-button {
    width: 38px;
    height: 38px;
    display: inline-grid;
    place-items: center;
    border: 0;
    color: inherit;
    background: transparent;
    cursor: pointer;
}
.sgce-menu-button { display: none; gap: 5px; }
.sgce-menu-button i { width: 22px; height: 1px; background: currentColor; }

.sgce-search-shell {
    position: relative;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 20px;
}
.sgce-search-panel {
    position: absolute;
    z-index: 50;
    top: 50%;
    right: 0;
    width: 340px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-50%) scaleX(0);
    transform-origin: right center;
    transition: transform 300ms var(--sgce-ease), opacity 300ms var(--sgce-ease);
}
.sgce-search-shell.is-open .sgce-search-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(-50%) scaleX(1);
}
.sgce-search-shell.is-open .sgce-icon-button { opacity: 0; pointer-events: none; }
.sgce-search-form { width: 100%; }
.sgce-search-form--fallback { margin: 0; display: flex; overflow: hidden; border: 1px solid rgba(5,5,5,.78); border-radius: 23px; color: var(--sgce-black); background: rgba(255,255,255,.72); backdrop-filter: blur(14px); }
.sgce-search-form--fibo .dgwt-wcas-search-wrapp { width: 100%; max-width: none; margin: 0; }
.sgce-search-form--fibo .dgwt-wcas-search-form { margin: 0; }
.sgce-search-panel input[type="search"] { width: 100%; min-width: 0; height: 42px; appearance: none; -webkit-appearance: none; border: 0 !important; border-radius: 0; outline: 0 !important; padding: 0 14px 0 4px; color: var(--sgce-black); background: transparent; box-shadow: none !important; }
.sgce-search-panel input[type="search"]:focus,
.sgce-search-panel input[type="search"]:focus-visible { border: 0 !important; outline: 0 !important; box-shadow: none !important; }
.sgce-search-panel input[type="search"]::placeholder { color: rgba(5,5,5,.62); }
.sgce-search-form--fallback button,
.sgce-search-form--fallback input[type="submit"] { order: -1; min-width: 46px; height: 42px; padding: 0 10px 0 14px; border: 0; color: var(--sgce-black); background: transparent; cursor: pointer; }
.sgce-search-form--fallback button img { width: 18px; height: 18px; margin: auto; filter: invert(1); }

.sgce-mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 1100;
    padding: 88px 24px 40px;
    color: var(--sgce-white);
    background: var(--sgce-black);
}
.sgce-mobile-menu__close { position: absolute; top: 20px; right: 20px; border: 0; color: inherit; background: transparent; font-size: 32px; }
.sgce-mobile-menu__list { display: grid; gap: 18px; font-size: 24px; }
.sgce-mobile-menu__row { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.sgce-mobile-menu__row > a { flex: 1; }
.sgce-mobile-menu__row button { width: 36px; height: 36px; padding: 0; display: grid; place-items: center; border: 0; color: inherit; background: transparent; cursor: pointer; }
.sgce-mobile-menu__row button i { position: relative; width: 14px; height: 14px; }
.sgce-mobile-menu__row button i::before,
.sgce-mobile-menu__row button i::after { content: ""; position: absolute; top: 7px; left: 1px; width: 12px; height: 1px; background: currentColor; transition: transform var(--sgce-motion) var(--sgce-ease); }
.sgce-mobile-menu__row button i::after { transform: rotate(90deg); }
.sgce-mobile-menu__row button[aria-expanded="true"] i::after { transform: rotate(0); }
.sgce-mobile-menu__submenu { list-style: none; margin: 10px 0 0; padding: 4px 0 2px 16px; display: grid; gap: 10px; border-left: 1px solid rgba(255,255,255,.2); }
.sgce-mobile-menu__submenu a { color: rgba(255,255,255,.72); font-size: 15px; line-height: 1.45; }
.sgce-mobile-menu__group + .sgce-mobile-menu__group { margin-top: 18px; }
.sgce-mobile-menu__group-title { color: var(--sgce-white) !important; font-weight: 650; }
.sgce-mobile-menu__group > ul { list-style: none; margin: 9px 0 0; padding: 0; display: grid; gap: 8px; }

.sgce-entry { padding-block: var(--sgce-section-gap); }
.sgce-entry__title { max-width: 18ch; font-size: clamp(38px, 6vw, 76px); line-height: 1.05; }

.sgce-footer { width: min(100%, var(--sgce-stage-max)); margin: 0 auto; color: var(--sgce-white); background: var(--sgce-black); }
.sgce-footer__letter { padding-top: 56px; padding-bottom: 58px; border-bottom: 1px solid rgba(255,255,255,.2); }
.sgce-footer .sgce-footer__letter p { margin: 0; color: rgba(255,255,255,.74); font-size: 15px; line-height: 1.7; }
.sgce-footer__grid { display: grid; grid-template-columns: 2.3fr repeat(3, 1.35fr) 1.55fr; gap: 44px; padding-top: 38px; padding-bottom: 48px; }
.sgce-footer__column { min-width: 0; }
.sgce-footer h2 { margin: 0 0 16px; font-size: 14px; font-weight: 600; }
.sgce-footer__toggle { width: 100%; margin: 0 0 16px; padding: 0; border: 0; color: inherit; background: transparent; font-size: 14px; font-weight: 600; text-align: left; pointer-events: none; }
.sgce-footer__toggle i { display: none; }
.sgce-footer li + li { margin-top: 9px; }
.sgce-footer li,
.sgce-footer p { font-size: 13px; color: rgba(255,255,255,.72); }
.sgce-footer__company p { margin: 0; line-height: 1.65; }
.sgce-footer__payment-icons { width: 100%; display: flex; align-items: center; justify-content: flex-start; gap: 8px; }
.sgce-footer__payment-icons img { width: auto; height: 28px; max-width: 74px; object-fit: contain; background: transparent; }
/* Final visible payment-logo proportions: Visa 80%, Mastercard 100%, JCB 115%. */
.sgce-footer .sgce-footer__payment-icons img[alt="Visa"] { width: 59.2px; height: auto; max-width: none; }
.sgce-footer .sgce-footer__payment-icons img[alt="Mastercard"] { width: 39.2px; height: auto; max-width: none; }
.sgce-footer .sgce-footer__payment-icons img[alt="JCB"] { width: 32.2px; height: auto; max-width: none; }
.sgce-footer__commerce { margin-top: 14px; }
.sgce-footer__commerce > a { display: inline-block; line-height: 0; }
.sgce-footer__commerce img { display: block; width: 165px; height: auto; max-width: 100%; object-fit: contain; image-rendering: auto; }
.sgce-footer__legal { padding-block: 18px; border-top: 1px solid rgba(255,255,255,.22); text-align: center; color: rgba(255,255,255,.55); }

[hidden] { display: none !important; }

@media (max-width: 1023px) {
    :root { --sgce-gutter: 20px; --sgce-section-gap: 20px; }
    .sgce-header,
    .home .sgce-header,
    .sgce-header.is-scrolled,
    .sgce-header.is-mega-open {
        color: var(--sgce-white);
        background: var(--sgce-black);
    }
    .sgce-header a,
    .sgce-header button,
    .sgce-mobile-menu,
    .sgce-mobile-menu a,
    .sgce-mobile-menu button { color: var(--sgce-white); }
    .sgce-mobile-menu,
    .sgce-mobile-menu__submenu { background: var(--sgce-black); }
    .home .sgce-header {
        right: 0;
        left: 0;
        width: 100%;
        transform: none;
    }
    .sgce-mobile-menu {
        position: fixed;
        z-index: 1;
        top: var(--sgce-mobile-menu-top, 70px);
        right: 0;
        bottom: 0;
        left: 0;
        width: 100vw;
        height: auto;
        min-height: 0;
        padding: 12px 20px 32px;
        overflow-x: hidden;
        overflow-y: auto;
        opacity: 1;
    }
    .sgce-header { z-index: 1200; }
    .sgce-header__inner { position: relative; z-index: 2; }
    .sgce-mobile-menu__close { display: none; }
    .sgce-menu-button {
        position: relative;
        display: none;
        gap: 0;
    }
    .sgce-menu-button i {
        position: absolute;
        left: 50%;
        width: 22px;
        transform: translateX(-50%);
    }
    .sgce-menu-button i:first-of-type { top: 15px; }
    .sgce-menu-button i:last-of-type { top: 21px; }
    .sgce-menu-button i { transition: top 180ms var(--sgce-ease), transform 180ms var(--sgce-ease); }
    .sgce-menu-button[aria-expanded="true"] i:first-of-type {
        top: 18px;
        transform: translateX(-50%) rotate(45deg);
    }
    .sgce-menu-button[aria-expanded="true"] i:last-of-type {
        top: 18px;
        transform: translateX(-50%) rotate(-45deg);
    }
    .sgce-header__inner { min-height: 72px; grid-template-columns: 1fr auto; gap: 12px; }
    .sgce-primary-nav { display: none; }
    .sgce-mega-menu { display: none !important; }
    .sgce-menu-button { display: inline-block; }
    .sgce-mobile-menu__list { gap: 0; font-size: 18px; }
    .sgce-mobile-menu__item { border-bottom: 1px solid rgba(255,255,255,.14); }
    .sgce-mobile-menu__item:last-child { border-bottom: 0; }
    .sgce-mobile-menu__row { min-height: 56px; }
    .sgce-mobile-menu__row > a { font-size: 18px; font-weight: 520; line-height: 1.35; }
    .sgce-mobile-menu__submenu { margin: 0; padding: 8px 0 18px 8px; border-left: 0; gap: 18px; }
    .sgce-mobile-menu__group-title { font-size: 15px; font-weight: 620; line-height: 1.4; }
    .sgce-mobile-menu__group > ul { margin-top: 8px; gap: 7px; }
    .sgce-mobile-menu__group > ul a { display: block; padding-left: 8px; color: rgba(255,255,255,.72); font-size: 13px; font-weight: 400; line-height: 1.45; }
    .sgce-footer__letter { padding-top: 20px; padding-bottom: 20px; }
    .sgce-footer .sgce-footer__letter p { font-size: 12px; line-height: 1.6; }
    .sgce-footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 20px; padding-block: 20px; }
    .sgce-footer__column { grid-column: 1 / -1; padding: 14px 0; border-left: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
    .sgce-footer__payments { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 20px; border-bottom: 0; }
    .sgce-footer__payments h2 { grid-column: 1 / -1; }
    .sgce-footer__commerce { margin-top: 0; align-self: center; }
    .sgce-footer__commerce img { width: 132px; }
    .sgce-footer__toggle { margin: 0; display: flex; align-items: center; justify-content: space-between; pointer-events: auto; cursor: pointer; }
    .sgce-footer__toggle i { position: relative; display: block; width: 14px; height: 14px; }
    .sgce-footer__toggle i::before,
    .sgce-footer__toggle i::after { content: ""; position: absolute; top: 7px; left: 1px; width: 12px; height: 1px; background: currentColor; transition: transform var(--sgce-motion) var(--sgce-ease); }
    .sgce-footer__toggle i::after { transform: rotate(90deg); }
    .sgce-footer__toggle[aria-expanded="true"] i::after { transform: rotate(0); }
    .sgce-footer__content { display: none; padding-top: 12px; }
    .sgce-footer__column.is-open .sgce-footer__content { display: block; }
}

@media (min-width: 1024px) and (max-width: 1279px) {
    .home .sgce-header,
    .home .sgce-header.is-scrolled,
    .home .sgce-header.is-mega-open {
        color: var(--sgce-white);
        background: var(--sgce-black);
    }
    .home .sgce-header a,
    .home .sgce-header button { color: var(--sgce-white); }
}

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

/* Homepage batch 0.2 — direct translation of Figma frame 13:2. */
.home .sgce-header {
    position: absolute;
    top: 0;
    right: auto;
    left: 50%;
    width: min(100%, var(--sgce-stage-max));
    height: 87px;
    color: var(--sgce-white);
    background: transparent;
    transform: translateX(-50%);
}
.home .sgce-header.is-mega-open { background: var(--sgce-black); }
.home .sgce-header__inner {
    width: 100%;
    max-width: none;
    padding-inline: clamp(20px, 3.33vw, 64px);
    min-height: 87px;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: 34px 24px;
    align-content: center;
    row-gap: 2px;
}
.sgce-header__top {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 0;
}
.sgce-logo { display: block; width: 87px; height: 34px; }
.sgce-logo img { width: 100%; height: 100%; object-fit: contain; }
.sgce-brand-name { font-size: 12px; font-weight: 500; white-space: nowrap; }
.home .sgce-primary-nav { grid-column: 1; grid-row: 2; align-self: center; }
.home .sgce-primary-nav__list { justify-content: flex-start; gap: 16px; }
.home .sgce-primary-nav__item > a { font-size: 15px; font-weight: 500; opacity: .78; }
.home .sgce-primary-nav__item > a:hover,
.home .sgce-primary-nav__item > a:focus-visible,
.home .sgce-primary-nav__item.is-open > a { opacity: 1; }
.home .sgce-header-actions {
    grid-column: 2;
    grid-row: 2;
    gap: 16px;
    align-self: center;
}
.home .sgce-icon-button { width: 20px; height: 20px; }
.home .sgce-icon-button img { width: 20px; height: 20px; object-fit: contain; }
.home .sgce-search-shell > .sgce-icon-button img { width: 22px; height: 22px; max-width: none; }
.sgce-header.is-scrolled {
    position: fixed;
    height: 56px;
    color: var(--sgce-white);
    background: var(--sgce-black);
}
.sgce-header.is-scrolled .sgce-header__inner {
    min-height: 56px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: 56px;
    gap: 14px;
}
.sgce-header.is-scrolled .sgce-header__top { grid-column: 1; grid-row: 1; }
.sgce-header.is-scrolled .sgce-logo { width: 74px; height: 28px; padding-right: 14px; border-right: 2px solid currentColor; }
.sgce-header.is-scrolled .sgce-brand-name { display: none; }
.sgce-header.is-scrolled .sgce-primary-nav { display: block; grid-column: 2; grid-row: 1; }
.sgce-header.is-scrolled .sgce-primary-nav__item > a { font-size: 13px; }
.sgce-header.is-scrolled .sgce-header-actions { grid-column: 3; grid-row: 1; }

/* Desktop product archives always use the locked compact, scrolling header state. */
@media (min-width: 1024px) {
    .post-type-archive-product .sgce-header,
    .tax-product_cat .sgce-header,
    .tax-product_tag .sgce-header,
    .tax-product_brand .sgce-header {
        position: sticky;
        top: 0;
        height: 56px;
        color: var(--sgce-white);
        background: var(--sgce-black);
    }
    .post-type-archive-product .sgce-header__inner,
    .tax-product_cat .sgce-header__inner,
    .tax-product_tag .sgce-header__inner,
    .tax-product_brand .sgce-header__inner {
        width: min(1400px, calc(100% - 40px));
        min-height: 56px;
        display: grid;
        grid-template-columns: auto 1fr auto;
        grid-template-rows: 56px;
        gap: 14px;
    }
    .post-type-archive-product .sgce-header__top,
    .tax-product_cat .sgce-header__top,
    .tax-product_tag .sgce-header__top,
    .tax-product_brand .sgce-header__top { grid-column: 1; grid-row: 1; }
    .post-type-archive-product .sgce-logo,
    .tax-product_cat .sgce-logo,
    .tax-product_tag .sgce-logo,
    .tax-product_brand .sgce-logo { width: 74px; height: 28px; padding-right: 14px; border-right: 2px solid currentColor; }
    .post-type-archive-product .sgce-brand-name,
    .tax-product_cat .sgce-brand-name,
    .tax-product_tag .sgce-brand-name,
    .tax-product_brand .sgce-brand-name { display: none; }
    .post-type-archive-product .sgce-primary-nav,
    .tax-product_cat .sgce-primary-nav,
    .tax-product_tag .sgce-primary-nav,
    .tax-product_brand .sgce-primary-nav { display: block; grid-column: 2; grid-row: 1; }
    .post-type-archive-product .sgce-primary-nav__item > a,
    .tax-product_cat .sgce-primary-nav__item > a,
    .tax-product_tag .sgce-primary-nav__item > a,
    .tax-product_brand .sgce-primary-nav__item > a { font-size: 13px; }
    .post-type-archive-product .sgce-header-actions,
    .tax-product_cat .sgce-header-actions,
    .tax-product_tag .sgce-header-actions,
    .tax-product_brand .sgce-header-actions { grid-column: 3; grid-row: 1; }
    .post-type-archive-product .sgce-search-shell,
    .tax-product_cat .sgce-search-shell,
    .tax-product_tag .sgce-search-shell,
    .tax-product_brand .sgce-search-shell {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
    }
    .post-type-archive-product .sgce-primary-nav__list,
    .tax-product_cat .sgce-primary-nav__list,
    .tax-product_tag .sgce-primary-nav__list,
    .tax-product_brand .sgce-primary-nav__list {
        justify-content: flex-start;
        padding-left: clamp(0px, calc((100vw - 1393.464788px) / 2), 23.267606px);
    }
    .admin-bar.post-type-archive-product .sgce-header,
    .admin-bar.tax-product_cat .sgce-header,
    .admin-bar.tax-product_tag .sgce-header,
    .admin-bar.tax-product_brand .sgce-header { top: 32px; }
}

.sgce-hero {
    position: relative;
    width: min(100%, var(--sgce-stage-max));
    height: clamp(900px, 41.6667vw, 1600px);
    margin-inline: auto;
    overflow: hidden;
    color: var(--sgce-white);
    background-image: linear-gradient(180deg, rgba(0,0,0,.46), rgba(0,0,0,.18) 12%, transparent 27%), var(--sgce-hero-image);
    background-position: center;
    background-size: cover;
}
.sgce-hero__inner { position: relative; height: 100%; }
.sgce-hero__content {
    position: absolute;
    z-index: 2;
    bottom: 88px;
    left: 0;
    width: 820px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}
.sgce-hero__paint {
    position: absolute;
    z-index: 1;
    bottom: 99px;
    left: 42px;
    width: 820px;
    height: 286px;
    opacity: .56;
    backdrop-filter: blur(7px);
    background: linear-gradient(90deg, rgba(4,4,4,.5), rgba(4,4,4,.28) 74%, rgba(4,4,4,.04));
    clip-path: polygon(2% 7%, 34% 2%, 68% 6%, 95% 2%, 91% 12%, 98% 18%, 92% 25%, 97% 33%, 93% 41%, 98% 48%, 92% 56%, 96% 64%, 91% 72%, 97% 81%, 90% 88%, 94% 96%, 62% 93%, 31% 98%, 3% 93%, 7% 85%, 1% 77%, 6% 68%, 1% 59%, 5% 50%, 0 41%, 6% 33%, 1% 24%, 7% 16%);
}
.sgce-eyebrow {
    margin: 0;
    color: #595959;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1.68px;
    line-height: normal;
}
.sgce-eyebrow--inverse { color: var(--sgce-white); }
.sgce-hero h1 {
    margin: 0;
    color: var(--sgce-white);
    font-size: 60px;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -1.2px;
}
.sgce-hero h1 span,
.sgce-workspace h2 span { display: block; }
.sgce-hero__description {
    width: 650px;
    margin: 0;
    color: #f0f0f0;
    font-size: 17px;
    line-height: 1.55;
}
.sgce-cta,
.sgce-text-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 500;
    line-height: 20px;
}
.sgce-cta--solid { padding: 14px 24px; color: var(--sgce-black); background: var(--sgce-white); }
.sgce-cta::after,
.sgce-text-link::after,
.sgce-card__label::after {
    content: "";
    position: absolute;
    right: 50%;
    bottom: -3px;
    left: 50%;
    height: 1px;
    background: currentColor;
    transition: left var(--sgce-motion) var(--sgce-ease), right var(--sgce-motion) var(--sgce-ease);
}
.sgce-cta:hover::after,
.sgce-cta:focus-visible::after,
.sgce-text-link:hover::after,
.sgce-text-link:focus-visible::after,
.sgce-card:hover .sgce-card__label::after,
.sgce-card:focus-visible .sgce-card__label::after { right: 0; left: 0; }
.sgce-cta b,
.sgce-text-link b { font-weight: 400; transition: transform var(--sgce-motion) var(--sgce-ease); }
.sgce-cta:hover b,
.sgce-text-link:hover b { transform: translateX(5px); }

.sgce-home-section { width: 100%; margin-inline: auto; }
.sgce-workspace { padding-block: var(--sgce-section-between) var(--sgce-section-internal); background: var(--sgce-white); }
.sgce-workspace__intro { width: 100%; max-width: var(--sgce-content-max); display: flex; flex-direction: column; align-items: flex-start; }
.sgce-workspace h2 { margin: 0; color: #0a0a0a; font-size: 44px; font-weight: 300; line-height: 1.15; }
.sgce-workspace__description { width: 100%; max-width: var(--sgce-content-max); margin: var(--sgce-section-internal) 0 0; color: #404040; font-size: 16px; line-height: 1.65; }

.sgce-carousel { position: relative; margin-top: var(--sgce-section-internal); }
.sgce-carousel__viewport { overflow: hidden; scroll-behavior: smooth; scrollbar-width: none; }
.sgce-carousel__viewport::-webkit-scrollbar { display: none; }
.sgce-carousel__track { display: flex; align-items: stretch; gap: var(--sgce-card-gap); width: max-content; }
.sgce-card {
    width: var(--sgce-card-width);
    flex: 0 0 var(--sgce-card-width);
    display: flex;
    flex-direction: column;
    align-self: stretch;
    padding: 32px;
    color: var(--sgce-card-foreground, var(--sgce-black));
    background: var(--sgce-card-background);
    border-radius: 4px;
    overflow: hidden;
}
.sgce-card__image { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 4px; }
.sgce-card__image--placeholder { display: block; background: linear-gradient(135deg, #e8e3da, #d9d2c7); }
.sgce-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 24px;
}
.sgce-card__title {
    display: block;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
}
.sgce-card__label { position: relative; display: inline-block; }
.sgce-card__description {
    display: -webkit-box;
    margin-top: 10px;
    overflow: hidden;
    color: var(--sgce-card-muted, #4c4a46);
    font-size: 14px;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}
.sgce-carousel__controls { min-height: 28px; margin-top: 20px; display: flex; align-items: center; justify-content: flex-end; }
.sgce-carousel:not(.has-overflow) .sgce-carousel__controls { display: none; }
.sgce-carousel__progress { display: none; }
.sgce-carousel__arrows { display: flex; gap: 24px; }
.sgce-carousel__arrows button { width: 42px; height: 28px; padding: 0; border: 0; color: inherit; background: transparent; font-size: 28px; cursor: pointer; }

.sgce-entertainment { padding-block: var(--sgce-section-internal); background: var(--sgce-white); }
.sgce-entertainment .sgce-carousel__track {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    gap: var(--sgce-card-gap);
    width: 100%;
}
.sgce-entertainment .sgce-card { width: auto; min-width: 0; height: 100%; }
.sgce-entertainment .sgce-carousel__controls { display: none; }

.sgce-kitchen { padding-block: var(--sgce-section-internal); background: var(--sgce-white); }
.sgce-kitchen__banner {
    width: 100%;
    max-width: var(--sgce-content-max);
    margin: var(--sgce-section-internal) auto 0;
    overflow: hidden;
    border-radius: 4px;
}
.sgce-kitchen__banner picture { display: block; }
.sgce-kitchen__banner img { width: 100%; aspect-ratio: 14 / 5; object-fit: cover; }
.sgce-kitchen__group { margin-top: var(--sgce-section-internal); }
.sgce-kitchen__group-title {
    margin-block: 0;
    color: #0a0a0a;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.3;
}
.sgce-kitchen__group .sgce-carousel { margin-top: 16px; }
.sgce-kitchen__group .sgce-carousel__track {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    gap: var(--sgce-card-gap);
    width: 100%;
}
.sgce-kitchen__group .sgce-card { width: auto; min-width: 0; height: 100%; }
.sgce-kitchen__group .sgce-carousel__controls { display: none; }
.sgce-laundry { padding-block: var(--sgce-section-internal); background: var(--sgce-white); }
.sgce-air { padding-block: var(--sgce-section-internal); background: var(--sgce-white); }
.sgce-cleaning { padding-block: var(--sgce-section-internal); background: var(--sgce-white); }

@media (max-width: 1023px) {
    :root { --sgce-content-gutter: 10px; --sgce-section-internal: 10px; --sgce-section-between: 20px; --sgce-card-width: min(310px, calc(100vw - 64px)); }
    .home .sgce-header__inner { padding-inline: 10px; }
    .home .sgce-header { height: 70px; background: var(--sgce-black); }
    .home .sgce-header__inner,
    .sgce-header.is-scrolled .sgce-header__inner { min-height: 70px; display: flex; }
    .sgce-header__top { margin-right: auto; }
    .sgce-logo { width: 62px; height: 25px; }
    .sgce-brand-name { display: none; }
    .sgce-search-panel { width: min(280px, calc(100vw - 40px)); }
    .sgce-header.is-scrolled .sgce-logo { width: 52px; height: 20px; padding: 0; border: 0; }
    .sgce-header.is-scrolled .sgce-primary-nav { display: none; }
    .home .sgce-header-actions { display: flex; }
    .sgce-hero { height: 844px; }
    .sgce-hero__content { right: 20px; bottom: 54px; left: 20px; width: auto; gap: 10px; }
    .sgce-hero__paint { right: 12px; bottom: 45px; left: 12px; width: auto; height: 238px; opacity: .52; }
    .sgce-hero h1 { font-size: 38px; line-height: 1.08; }
    .sgce-eyebrow { font-size: 10px; letter-spacing: 1.2px; }
    .sgce-hero__description { width: auto; font-size: 13px; line-height: 1.5; }
    .sgce-cta--solid { padding: 9px 15px; font-size: 12px; }
    .sgce-workspace { padding-block: var(--sgce-section-between) var(--sgce-section-internal); }
    .sgce-workspace h2 { font-size: 32px; line-height: 1.25; }
    .sgce-workspace__description { margin-top: var(--sgce-section-internal); font-size: 13px; line-height: 1.55; }
    .sgce-text-link { font-size: 12px; }
    .sgce-carousel { margin-top: var(--sgce-section-internal); }
    .sgce-carousel__viewport { overflow-x: auto; scroll-snap-type: x mandatory; }
    .sgce-carousel__track { gap: 16px; width: max-content; }
    .sgce-card { width: var(--sgce-card-width); flex-basis: var(--sgce-card-width); padding: 10px; scroll-snap-align: start; }
    .sgce-card__body { padding-top: 10px; }
    .sgce-card__title { font-size: 12px; }
    .sgce-card__description { margin-top: 10px; font-size: 12px; line-height: 1.5; }
    .sgce-carousel__controls,
    .sgce-carousel:not(.has-overflow) .sgce-carousel__controls { display: flex; justify-content: space-between; margin-top: 10px; }
    .sgce-carousel__progress { display: block; width: 65%; height: 2px; background: #bbb; }
    .sgce-carousel__progress i { display: block; width: 0; height: 2px; background: var(--sgce-black); }
    .sgce-carousel__arrows button { width: 30px; height: 20px; font-size: 22px; }
    .sgce-entertainment { padding-block: var(--sgce-section-internal); }
    .sgce-entertainment .sgce-carousel__track {
        display: flex;
        flex-wrap: nowrap;
        gap: 16px;
        width: max-content;
    }
    .sgce-entertainment .sgce-card { width: var(--sgce-card-width); min-width: 0; height: auto; }
    .sgce-entertainment .sgce-carousel__controls { display: flex; }
    .sgce-kitchen { padding-block: var(--sgce-section-internal); }
    .sgce-kitchen__banner { display: none; }
    .sgce-kitchen__group { margin-top: var(--sgce-section-between); }
    .sgce-kitchen__group-title { font-size: 18px; line-height: 1.35; }
    .sgce-kitchen__group .sgce-carousel { margin-top: var(--sgce-section-internal); }
    .sgce-kitchen__group .sgce-carousel__track {
        display: flex;
        flex-wrap: nowrap;
        gap: 16px;
        width: max-content;
    }
    .sgce-kitchen__group .sgce-card { width: var(--sgce-card-width); min-width: 0; height: auto; }
    .sgce-kitchen__group .sgce-carousel__controls { display: flex; }
    .sgce-laundry { padding-block: var(--sgce-section-internal); }
    .sgce-air { padding-block: var(--sgce-section-internal); }
    .sgce-cleaning { padding-block: var(--sgce-section-internal); }
}

/* Product archives reuse one immutable tablet header on tablet and mobile. */
@media (max-width: 1023px) {
    .post-type-archive-product .sgce-header,
    .tax-product_cat .sgce-header,
    .tax-product_tag .sgce-header,
    .tax-product_brand .sgce-header {
        position: sticky;
        top: 0;
        right: 0;
        left: 0;
        width: 100%;
        height: 70px;
        color: var(--sgce-white);
        background: var(--sgce-black);
        transform: none;
    }
    .post-type-archive-product .sgce-header.is-scrolled,
    .tax-product_cat .sgce-header.is-scrolled,
    .tax-product_tag .sgce-header.is-scrolled,
    .tax-product_brand .sgce-header.is-scrolled { height: 70px; }
    .post-type-archive-product .sgce-header__inner,
    .tax-product_cat .sgce-header__inner,
    .tax-product_tag .sgce-header__inner,
    .tax-product_brand .sgce-header__inner {
        width: 100%;
        max-width: none;
        min-height: 70px;
        display: flex;
        padding-inline: 10px;
    }
    .post-type-archive-product .sgce-header.is-scrolled .sgce-header__inner,
    .tax-product_cat .sgce-header.is-scrolled .sgce-header__inner,
    .tax-product_tag .sgce-header.is-scrolled .sgce-header__inner,
    .tax-product_brand .sgce-header.is-scrolled .sgce-header__inner {
        min-height: 70px;
        display: flex;
    }
    .post-type-archive-product .sgce-header.is-scrolled .sgce-logo,
    .tax-product_cat .sgce-header.is-scrolled .sgce-logo,
    .tax-product_tag .sgce-header.is-scrolled .sgce-logo,
    .tax-product_brand .sgce-header.is-scrolled .sgce-logo {
        width: 62px;
        height: 25px;
        padding: 0;
        border: 0;
    }
    .post-type-archive-product .sgce-search-shell > .sgce-icon-button img,
    .tax-product_cat .sgce-search-shell > .sgce-icon-button img,
    .tax-product_tag .sgce-search-shell > .sgce-icon-button img,
    .tax-product_brand .sgce-search-shell > .sgce-icon-button img {
        width: 22px;
        height: 22px;
        max-width: none;
        object-fit: contain;
    }
    .admin-bar.post-type-archive-product .sgce-header,
    .admin-bar.tax-product_cat .sgce-header,
    .admin-bar.tax-product_tag .sgce-header,
    .admin-bar.tax-product_brand .sgce-header { top: 32px; }
}

@media (max-width: 782px) {
    .admin-bar.post-type-archive-product .sgce-header,
    .admin-bar.tax-product_cat .sgce-header,
    .admin-bar.tax-product_tag .sgce-header,
    .admin-bar.tax-product_brand .sgce-header { top: 46px; }
}

/* Responsive navigation colour lock: keep these rules last in the cascade. */
@media (max-width: 1023px) {
    .sgce-header,
    .home .sgce-header,
    .sgce-header.is-scrolled,
    .sgce-header.is-mega-open,
    .sgce-mobile-menu,
    .sgce-mobile-menu__submenu {
        color: var(--sgce-white);
        background-color: var(--sgce-black);
        background-image: none;
    }
    .sgce-header a,
    .sgce-header button,
    .sgce-mobile-menu a,
    .sgce-mobile-menu button { color: var(--sgce-white); }
}

@media (max-width: 767px) {
    .sgce-workspace__intro h2 {
        font-size: 22.4px;
        line-height: 1.22;
    }
    .sgce-home-section .sgce-workspace__description {
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }
    .sgce-home-section .sgce-workspace__description:not(.is-expanded) {
        display: -webkit-box;
        overflow: hidden;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }
    .sgce-home-section .sgce-workspace__description:focus-visible {
        outline: 1px solid currentColor;
        outline-offset: 4px;
    }
}

@media (min-width: 1024px) and (max-width: 1279px) {
    .home .sgce-header,
    .home .sgce-header.is-scrolled,
    .home .sgce-header.is-mega-open {
        color: var(--sgce-white);
        background: var(--sgce-black);
    }
    .home .sgce-header a,
    .home .sgce-header button { color: var(--sgce-white); }
}

/* SGCE 0.12.51: viewport-owned mobile menu drawer. */
@media (max-width: 1023px) {
    .home .sgce-header,
    .home .sgce-header.is-scrolled,
    .home .sgce-header.is-mega-open,
    .home .sgce-header.is-mobile-menu-open {
        right: 0;
        left: 0;
        width: 100%;
        transform: none;
    }

    .sgce-header.is-mobile-menu-open {
        position: fixed;
        z-index: 2147483000;
        top: 0;
        right: 0;
        left: 0;
        width: 100%;
        transform: none;
    }

    .admin-bar .sgce-header.is-mobile-menu-open {
        top: 32px;
    }

    .sgce-header.is-mobile-menu-open .sgce-mobile-menu {
        position: fixed;
        z-index: 2147482999;
        top: var(--sgce-mobile-menu-top, 70px);
        right: 0;
        bottom: 0;
        left: 0;
        width: 100vw;
        height: auto;
        max-height: none;
        padding: 12px 20px 32px;
        overflow-x: hidden;
        overflow-y: auto;
        overscroll-behavior: contain;
        color: var(--sgce-white);
        background: var(--sgce-black);
        opacity: 1;
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 782px) {
    .admin-bar .sgce-header.is-mobile-menu-open {
        top: 46px;
    }
}

/* SGCE_HERO_GRADIENT_012512_START
 * Remove the clipped paint/backdrop-filter layer. Use lightweight image
 * scrims so white copy remains legible without hiding the hero artwork.
 */
.sgce-hero {
    background-image:
        linear-gradient(180deg, rgba(0, 0, 0, .46), rgba(0, 0, 0, .18) 12%, transparent 27%),
        linear-gradient(90deg, rgba(0, 0, 0, .43) 0%, rgba(0, 0, 0, .27) 34%, rgba(0, 0, 0, .07) 58%, transparent 76%),
        linear-gradient(0deg, rgba(0, 0, 0, .34) 0%, rgba(0, 0, 0, .11) 36%, transparent 59%),
        var(--sgce-hero-image);
}

.sgce-hero__paint {
    display: none;
}

.sgce-hero h1,
.sgce-hero__description,
.sgce-hero .sgce-eyebrow--inverse {
    text-shadow: 0 2px 14px rgba(0, 0, 0, .28);
}

@media (max-width: 1023px) {
    .sgce-hero {
        background-image:
            linear-gradient(180deg, rgba(0, 0, 0, .48), rgba(0, 0, 0, .16) 16%, transparent 31%),
            linear-gradient(0deg, rgba(0, 0, 0, .58) 0%, rgba(0, 0, 0, .28) 31%, rgba(0, 0, 0, .07) 57%, transparent 74%),
            var(--sgce-hero-image);
    }

    .sgce-hero h1,
    .sgce-hero__description,
    .sgce-hero .sgce-eyebrow--inverse {
        text-shadow: 0 2px 12px rgba(0, 0, 0, .32);
    }
}
/* SGCE_HERO_GRADIENT_012512_END */

