:root {
    color-scheme: light;
    --bg: #ffffff;
    --surface: #ffffff;
    --text: #171717;
    --muted: #666666;
    --line: #e6e6e6;
    --soft: #f6f6f6;
    --accent: #f04b16;
    --accent-dark: #d93f10;
    --warn: #a63b32;
    --shadow: 0 10px 30px rgba(0, 0, 0, .07);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.5;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    width: min(1500px, calc(100% - 64px));
    margin: 0 auto;
}

.site-header {
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 30;
}

.header-inner,
.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 68px;
}

.brand {
    font-weight: 700;
    font-size: 20px;
}

.landing-brand {
    color: var(--text);
    font-size: 34px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1;
    white-space: nowrap;
}

.landing-brand span {
    color: var(--accent);
}

.mobile-header-bar {
    display: contents;
}

.mobile-menu-toggle {
    display: none;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    color: #2b2b2b;
    font-size: 15px;
    font-weight: 700;
}

.main-nav-item {
    position: relative;
    min-width: 0;
    flex: 0 0 auto;
}

.main-nav-parent {
    display: flex;
    align-items: center;
    gap: 4px;
}

.main-nav-link {
    position: relative;
}

.main-nav-link.is-active {
    color: #000;
}

.main-nav-link.is-active::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -23px;
    left: 0;
    height: 3px;
    border-radius: 999px;
    background: var(--accent);
}

.main-nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    padding: 0;
    border: 0;
    border-radius: 4px;
    background: transparent;
    color: currentColor;
    cursor: pointer;
    font: inherit;
    font-size: 17px;
    line-height: 1;
}

.main-nav-toggle:hover,
.main-nav-toggle:focus-visible {
    background: #fff1eb;
    color: var(--accent-dark);
}

.main-nav-dropdown {
    position: absolute;
    top: calc(100% + 14px);
    left: -14px;
    display: grid;
    visibility: hidden;
    width: max-content;
    min-width: 220px;
    max-width: 280px;
    padding: 8px;
    border: 1px solid #e1e1e1;
    border-radius: 7px;
    background: #fff;
    box-shadow: 0 14px 32px rgba(0, 0, 0, .12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-5px);
    transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
    z-index: 80;
}

.main-nav-dropdown::before {
    position: absolute;
    right: 0;
    bottom: 100%;
    left: 0;
    height: 14px;
    content: "";
}

.main-nav-dropdown a {
    padding: 9px 11px;
    border-radius: 5px;
    white-space: nowrap;
}

.main-nav-dropdown a:hover,
.main-nav-dropdown a:focus-visible,
.main-nav-dropdown a.is-active {
    background: #fff1eb;
    color: var(--accent-dark);
}

.main-nav-item.is-open .main-nav-dropdown,
.main-nav-item:focus-within .main-nav-dropdown {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

@media (min-width: 821px) {
    .main-nav-item.has-children:hover .main-nav-dropdown {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }
}

.main-nav a:hover,
.cart-link:hover {
    color: var(--accent-dark);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    white-space: nowrap;
}

.header-search {
    position: relative;
}

.search-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    background: #fff;
    color: var(--text);
    cursor: pointer;
    font: inherit;
    font-size: 15px;
    font-weight: 850;
}

.search-toggle:hover {
    border-color: #aaa;
    background: #fafafa;
}

.header-search-panel {
    position: absolute;
    top: 52px;
    right: 0;
    width: min(380px, calc(100vw - 32px));
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #fff;
    box-shadow: var(--shadow);
    z-index: 60;
}

.header-search-panel input {
    min-height: 42px;
    margin-bottom: 8px;
    border-radius: 7px;
    font-size: 14px;
}

.header-search-panel p {
    margin: 0 0 8px;
    color: #777;
    font-size: 12px;
}

.header-search-results {
    display: grid;
    max-height: 330px;
    overflow: auto;
    gap: 7px;
}

.header-search-result {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    padding: 8px;
    border: 1px solid #eee;
    border-radius: 8px;
    background: #fff;
}

.header-search-result:hover {
    border-color: #ddd;
    background: #fafafa;
}

.header-search-result img {
    width: 48px;
    height: 42px;
    object-fit: contain;
    border-radius: 6px;
    background: #f6f6f6;
}

.header-search-result strong,
.header-search-result small {
    display: block;
}

.header-search-result strong {
    font-size: 14px;
}

.header-search-result small {
    color: var(--muted);
    font-size: 12px;
}

.header-search-empty {
    padding: 10px;
    border: 1px dashed #ddd;
    border-radius: 8px;
    color: #777;
    text-align: center;
    font-size: 13px;
}

.header-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 800;
}

.header-inquiry {
    gap: 7px;
    min-height: 42px;
}

.header-inquiry .cart-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .22);
    font-size: 13px;
    font-weight: 950;
}

.cart-link {
    font-weight: 700;
}

.cart-link span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    margin-left: 4px;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    font-size: 13px;
}

.catalog-hero {
    background: #e9efe9;
    border-bottom: 1px solid var(--line);
}

.catalog-hero-inner {
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.catalog-hero h1,
.page-title h1,
.product-info h1 {
    margin: 0 0 12px;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.05;
}

.catalog-hero p,
.page-title p,
.lead {
    color: var(--muted);
    max-width: 640px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.home-search {
    position: relative;
    max-width: 620px;
    margin-top: 22px;
}

.home-search label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
}

.home-search-box {
    position: relative;
}

.home-search input {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    color: var(--text);
    font: inherit;
}

.home-search-results {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 20;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: 0 18px 40px rgba(25, 31, 24, 0.14);
}

.home-search-result {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 12px;
    padding: 10px;
    border-bottom: 1px solid var(--line);
}

.home-search-result:last-child {
    border-bottom: 0;
}

.home-search-result:hover {
    background: #f1f5ef;
}

.home-search-result img {
    width: 56px;
    height: 56px;
    border-radius: 6px;
    object-fit: cover;
    background: #f3f3ee;
}

.home-search-result strong,
.home-search-result small {
    display: block;
}

.home-search-result small,
.home-search-empty {
    color: var(--muted);
}

.home-search-empty {
    padding: 14px;
}

.home-landing {
    background: #fff;
}

.home-hero {
    border-bottom: 1px solid var(--line);
    background: linear-gradient(180deg, #fff 0%, #f9f9f9 100%);
}

.home-hero-grid {
    display: grid;
    grid-template-columns: 42% 58%;
    align-items: center;
    min-height: 360px;
    gap: 20px;
}

.home-hero h1 {
    max-width: 720px;
    margin: 0 0 24px;
    font-size: clamp(40px, 4vw, 58px);
    line-height: 1.06;
    font-weight: 950;
}

.home-hero p {
    max-width: 680px;
    margin: 0 0 30px;
    color: #555;
    font-size: 21px;
    line-height: 1.4;
}

.home-shirts-hero {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 330px;
    overflow: hidden;
}

.home-photo-hero {
    display: block;
    width: 100%;
    height: 330px;
    overflow: hidden;
    border-radius: 8px;
    background: #f7f7f7;
}

.home-photo-hero img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.home-shirt {
    position: relative;
    width: 185px;
    height: 245px;
    margin-left: -18px;
    filter: drop-shadow(0 16px 18px rgba(0, 0, 0, .12));
}

.home-shirt::before {
    content: "";
    position: absolute;
    top: 36px;
    right: 32px;
    bottom: 0;
    left: 32px;
    border-radius: 18px 18px 12px 12px;
    background: var(--shirt);
}

.home-shirt::after {
    content: "";
    position: absolute;
    top: 26px;
    right: 62px;
    left: 62px;
    height: 38px;
    border-radius: 0 0 35px 35px;
    background: #fff;
    opacity: .85;
}

.home-shirt i,
.home-shirt b {
    position: absolute;
    top: 42px;
    width: 58px;
    height: 88px;
    border-radius: 16px;
    background: var(--shirt);
}

.home-shirt i {
    left: 0;
    transform: rotate(12deg);
}

.home-shirt b {
    right: 0;
    transform: rotate(-12deg);
}

.home-shirt span {
    position: absolute;
    right: 36px;
    bottom: 0;
    left: 36px;
    height: 6px;
    border-radius: 5px;
    background: rgba(0, 0, 0, .08);
}

.home-shirt.is-polo::after {
    height: 54px;
    border-radius: 0 0 16px 16px;
    background: #f7f7f7;
    box-shadow: 0 20px 0 rgba(0, 0, 0, .04) inset;
}

.home-notebooks-hero {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 18px;
    height: 330px;
    padding: 30px 34px 0;
    overflow: hidden;
    background: linear-gradient(135deg, #ece5d8 0%, #f7f4ed 100%);
    border-radius: 8px;
}

.home-notebooks-hero::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 20px;
    left: 0;
    height: 26px;
    background: rgba(49, 45, 38, .12);
    filter: blur(12px);
}

.home-notebook {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 154px;
    height: 228px;
    padding: 18px;
    border-radius: 8px 14px 14px 8px;
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: .08em;
    box-shadow: -8px 0 0 rgba(0, 0, 0, .1) inset, 0 18px 30px rgba(33, 30, 25, .22);
    transform: rotate(-7deg);
}

.home-notebook::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 18px;
    width: 3px;
    background: rgba(255, 255, 255, .45);
}

.home-notebook span {
    position: relative;
    z-index: 1;
    text-align: center;
}

.home-notebook i {
    position: absolute;
    right: 24px;
    bottom: 26px;
    left: 42px;
    height: 1px;
    background: rgba(255, 255, 255, .55);
    box-shadow: 0 12px 0 rgba(255, 255, 255, .55), 0 24px 0 rgba(255, 255, 255, .55);
}

.home-notebook.is-navy {
    height: 244px;
    background: #152b4f;
}

.home-notebook.is-orange {
    height: 212px;
    background: #d95925;
    transform: rotate(4deg);
}

.home-notebook.is-sand {
    height: 232px;
    color: #3e352a;
    background: #b59a78;
    transform: rotate(8deg);
}

.home-notebook.is-sand::before,
.home-notebook.is-sand i {
    background: rgba(62, 53, 42, .45);
}

.home-notebook.is-sand i {
    box-shadow: 0 12px 0 rgba(62, 53, 42, .45), 0 24px 0 rgba(62, 53, 42, .45);
}

.home-trust {
    border-bottom: 1px solid var(--line);
    background: #f2f2f2;
}

.home-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr)) 1.4fr;
    align-items: center;
    gap: 24px;
    min-height: 78px;
}

.home-benefit {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 850;
    line-height: 1.2;
}

.home-benefit span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 2px solid var(--accent);
    border-radius: 999px;
    color: var(--accent);
    font-weight: 900;
}

.home-benefit-copy {
    display: grid;
    gap: 3px;
}

.home-benefit-copy small {
    display: none;
    color: var(--muted);
    font-size: 13px;
    font-weight: 650;
    line-height: 1.35;
}

.home-trust p {
    margin: 0;
    color: var(--muted);
    font-weight: 700;
}

.home-main {
    display: grid;
    grid-template-columns: minmax(0, 60%) minmax(360px, 40%);
    border-bottom: 1px solid var(--line);
}

.home-catalog {
    padding: 28px 28px 32px max(32px, calc((100vw - 1500px) / 2 + 32px));
    border-right: 1px solid var(--line);
}

.home-side {
    display: grid;
    align-content: start;
    gap: 18px;
    padding: 28px max(32px, calc((100vw - 1500px) / 2 + 32px)) 32px 40px;
    background: #fff;
}

.home-section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 16px;
}

.home-section-head h2,
.home-steps h2,
.home-service-box h2,
.home-quick-inquiry h2 {
    margin: 0 0 8px;
    font-size: 30px;
    line-height: 1.15;
    font-weight: 950;
}

.home-section-head p,
.home-service-box p,
.home-quick-inquiry p {
    margin: 0;
    color: var(--muted);
}

.home-tabs {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    margin-bottom: 16px;
}

.home-tab {
    flex: 1 1 0;
    min-height: 38px;
    min-width: 0;
    padding: 0 10px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #fff;
    color: #222;
    cursor: pointer;
    font: inherit;
    font-size: 14px;
    font-weight: 850;
    white-space: nowrap;
}

.home-tab:hover {
    border-color: #bbb;
    background: #fafafa;
}

.home-tab.is-active {
    border-color: var(--accent);
    background: var(--accent);
    color: #fff;
}

.home-category-note {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 14px;
    padding: 12px 14px;
    border: 1px solid #ececec;
    border-radius: 10px;
    background: #fafafa;
    color: #555;
    font-size: 14px;
}

.home-category-note strong {
    color: var(--text);
}

.home-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(150px, 1fr));
    gap: 14px;
}

.home-product-card {
    display: flex;
    min-height: 320px;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #dedede;
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .035);
}

.home-product-media {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 178px;
    border-bottom: 1px solid #ededed;
    background: #fafafa;
}

.home-product-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

.home-product-body {
    display: grid;
    gap: 7px;
    padding: 12px;
}

.home-product-body p,
.home-product-desc {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.home-product-body h3 {
    margin: 0;
    font-size: 16px;
    line-height: 1.18;
}

.home-product-body h3 a {
    color: #111;
}

.home-product-desc {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.home-product-swatches {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 6px;
    min-height: 48px;
    padding-top: 2px;
}

.home-product-swatch {
    display: inline-flex;
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    border: 1px solid #cfcfcf;
    border-radius: 5px;
    background: var(--swatch);
    cursor: pointer;
}

.home-product-swatches img.home-product-swatch {
    display: block;
    object-fit: cover;
    background: #fff;
}

.home-product-swatch.is-selected {
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(255, 66, 24, .18);
}

.home-product-swatch:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.home-product-swatches .home-product-swatch.is-extra {
    display: none;
}

.home-product-card.is-expanded .home-product-swatches .home-product-swatch.is-extra {
    display: inline-flex;
}

.home-product-card.is-expanded .home-product-swatches img.home-product-swatch.is-extra {
    display: block;
}

.home-product-swatch-toggle {
    min-width: 34px;
    height: 24px;
    padding: 0 7px;
    border: 1px solid #d6d6d6;
    border-radius: 5px;
    background: #fff;
    color: #222;
    cursor: pointer;
    font: inherit;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
}

.home-product-swatch-toggle:hover,
.home-product-swatch-toggle:focus-visible {
    border-color: var(--accent);
    color: var(--accent);
}

.home-product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding-top: 2px;
    font-size: 13px;
}

.home-product-meta strong {
    color: #111;
}

.home-product-stock {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #16833a;
    font-size: 12px;
    font-weight: 850;
    white-space: nowrap;
}

.home-product-stock::after {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: currentColor;
    content: "";
}

.home-product-stock.is-inquiry {
    color: #a76700;
}

.home-product-stock.is-unavailable {
    color: #8a8a8a;
}

.home-see-more {
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(420px, 100%);
    min-height: 44px;
    margin: 18px auto 0;
    padding: 10px 16px;
    border: 1px solid #bcbcbc;
    border-radius: 7px;
    background: #fff;
    font-weight: 850;
}

.home-empty {
    grid-column: 1 / -1;
    padding: 18px;
    border: 1px dashed #ddd;
    border-radius: 8px;
    color: var(--muted);
}

.home-empty p {
    margin: 4px 0 0;
}

.home-steps,
.home-service-box,
.home-quick-inquiry {
    border: 1px solid #ddd;
    border-radius: 9px;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .03);
}

.home-steps {
    padding: 18px;
}

.home-steps-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.home-steps-row div {
    display: grid;
    justify-items: center;
    gap: 8px;
    text-align: center;
}

.home-steps-row span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    font-weight: 950;
}

.home-steps-row strong {
    font-size: 15px;
}

.home-steps-row p {
    max-width: 180px;
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.28;
}

.home-service-box,
.home-quick-inquiry {
    display: grid;
    gap: 12px;
    padding: 18px 20px;
}

.home-quick-inquiry form {
    display: grid;
    gap: 12px;
}

.home-quick-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.quick-message-field {
    grid-column: 1 / -1;
}

.home-quick-grid textarea {
    min-height: 76px;
}

.quick-inquiry-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.field-error {
    color: var(--warn);
    font-size: 12px;
    font-weight: 800;
}

.turnstile-field {
    display: grid;
    min-width: 0;
    max-width: 100%;
    gap: 7px;
}

.turnstile-field .cf-turnstile {
    width: 100%;
    max-width: 100%;
}

.turnstile-note {
    color: var(--muted);
    font-size: 12px;
}

.home-upload-note {
    padding: 12px;
    border: 1px dashed #aaa;
    border-radius: 6px;
    background: #fafafa;
    font-size: 14px;
    text-align: center;
}

.home-quick-submit {
    width: 100%;
}

.home-privacy {
    text-align: center;
    font-size: 12px;
}

.home-faq {
    padding: 36px 0 42px;
    background: #fff;
}

.home-faq-inner {
    max-width: 1180px;
}

.home-faq h2 {
    margin: 0 0 16px;
    text-align: left;
    font-size: 28px;
    line-height: 1.15;
    font-weight: 950;
}

.home-faq-list {
    display: grid;
    gap: 0;
}

.home-faq-item {
    overflow: hidden;
    border: 0;
    border-bottom: 1px solid #ececec;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
}

.home-faq-item:first-child {
    border-top: 1px solid #ececec;
}

.home-faq-item h3 {
    margin: 0;
    font-size: inherit;
}

.home-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 38px;
    gap: 16px;
    padding: 7px 2px;
    border: 0;
    background: #fff;
    color: var(--text);
    cursor: pointer;
    font: inherit;
    font-size: 16px;
    font-weight: 850;
    text-align: left;
}

.home-faq-question > span:first-child {
    min-width: 0;
    overflow-wrap: anywhere;
}

.home-faq-question:hover,
.home-faq-question:focus-visible,
.home-faq-item.is-open .home-faq-question {
    background: #fff;
    color: var(--accent-dark);
}

.home-faq-question:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: -2px;
}

.home-faq-icon {
    position: relative;
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    border: 0;
    border-radius: 0;
    color: var(--accent);
}

.home-faq-icon::before,
.home-faq-icon::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    content: "";
    transform: translate(-50%, -50%);
    transition: transform .18s ease, opacity .18s ease;
}

.home-faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.home-faq-item.is-open .home-faq-icon {
    background: transparent;
    color: var(--accent-dark);
}

.home-faq-item.is-open .home-faq-icon::after {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(0);
}

.home-faq-panel {
    overflow: hidden;
    max-height: 0;
    transition: max-height .22s ease;
}

.home-faq-answer {
    margin: 2px 0 12px 0;
    padding: 0 18px;
    border-left: 2px solid var(--accent);
    color: #555;
    font-size: 16px;
    line-height: 1.55;
}

.home-faq-answer p,
.home-faq-answer br {
    margin: 0;
}

@media (max-width: 820px) {
    .home-faq {
        padding: 34px 0 38px;
    }

    .home-faq h2 {
        margin-bottom: 14px;
        font-size: 25px;
    }

    .home-faq-question {
        min-height: 40px;
        padding: 8px 0;
    }

    .home-faq-answer {
        margin-bottom: 12px;
        padding: 0 14px;
    }
}

@media (max-width: 560px) {
    .home-faq {
        padding: 32px 0 36px;
    }

    .home-faq h2 {
        font-size: 23px;
    }

    .home-faq-question {
        gap: 12px;
        font-size: 15px;
    }

    .home-faq-answer {
        font-size: 15px;
    }
}

.eyebrow {
    margin: 0 0 8px;
    color: var(--accent-dark);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.section {
    padding: 48px 0;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 20px;
}

.section-heading h2 {
    margin: 0;
    font-size: 28px;
}

.category-grid,
.product-grid {
    display: grid;
    gap: 16px;
}

.category-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.content-grid {
    display: grid;
    gap: 16px;
}

.three-columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.content-grid > div,
.content-block,
.category-tile,
.catalog-cta,
.link-list-grid span {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
}

.content-grid > div {
    padding: 18px;
}

.content-grid strong {
    display: block;
    margin-bottom: 8px;
}

.content-grid p,
.catalog-cta p {
    margin: 0;
    color: var(--muted);
}

.link-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}

.link-list-grid span {
    padding: 14px 16px;
    font-weight: 700;
}

.inline-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.inline-links a,
.back-link {
    color: var(--accent-dark);
    font-weight: 700;
}

.content-block {
    padding: 24px;
    color: var(--muted);
}

.category-bottom-text {
    margin-top: 28px;
}

.catalog-cta {
    margin-bottom: 48px;
    padding: 28px;
}

.catalog-cta h2 {
    margin: 0 0 8px;
}

.cms-page-hero {
    border-bottom: 1px solid var(--line);
    background: #f6f6f6;
}

.cms-page-hero-inner {
    padding: 34px 0 38px;
}

.cms-page-breadcrumbs {
    margin: 0 0 18px;
}

.cms-page-hero h1 {
    max-width: 960px;
    margin: 0;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.05;
}

.cms-page-shell {
    display: grid;
    grid-template-columns: minmax(0, 900px) minmax(280px, 360px);
    align-items: start;
    gap: 28px;
    padding-top: 34px;
    padding-bottom: 54px;
}

.cms-page-content,
.cms-page-cta,
.cms-page-contact {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
}

.cms-page-content {
    min-width: 0;
    padding: 34px;
    color: #222;
    font-size: 18px;
    line-height: 1.78;
}

.cms-page-content > :first-child {
    margin-top: 0;
}

.cms-page-content > :last-child {
    margin-bottom: 0;
}

.cms-page-content p {
    margin: 0 0 20px;
}

.cms-page-content h2,
.cms-page-content h3 {
    margin: 32px 0 12px;
    color: #111;
    line-height: 1.18;
}

.cms-page-content h2 {
    font-size: 30px;
}

.cms-page-content h3 {
    font-size: 23px;
}

.cms-page-content ul,
.cms-page-content ol {
    display: grid;
    gap: 10px;
    margin: 0 0 22px;
    padding-left: 26px;
}

.cms-page-content li::marker {
    color: var(--accent);
}

.cms-page-content a {
    color: var(--accent-dark);
    font-weight: 800;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.cms-page-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.cms-page-content blockquote {
    margin: 28px 0;
    padding: 18px 22px;
    border-left: 4px solid var(--accent);
    background: #fff6f1;
    color: #333;
}

.cms-page-empty {
    color: var(--muted);
    font-weight: 800;
}

.cms-page-sidebar {
    position: sticky;
    top: 88px;
    display: grid;
    gap: 16px;
}

.cms-page-cta,
.cms-page-contact {
    padding: 22px;
}

.cms-page-cta span {
    display: inline-flex;
    margin-bottom: 12px;
    color: var(--accent-dark);
    font-size: 13px;
    font-weight: 950;
    text-transform: uppercase;
}

.cms-page-cta h2,
.cms-page-contact h2 {
    margin: 0 0 10px;
    font-size: 24px;
    line-height: 1.18;
}

.cms-page-cta p {
    margin: 0 0 18px;
    color: var(--muted);
    line-height: 1.55;
}

.cms-page-contact dl {
    display: grid;
    gap: 14px;
    margin: 0;
}

.cms-page-contact dl div {
    display: grid;
    gap: 3px;
}

.cms-page-contact dt {
    color: var(--muted);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.cms-page-contact dd {
    margin: 0;
    color: #111;
    font-weight: 800;
}

.cms-page-contact a,
.cms-page-contact-link {
    color: var(--accent-dark);
    font-weight: 900;
}

.cms-page-contact-link {
    display: inline-flex;
    margin-top: 18px;
}

.catalog-filter-panel {
    margin-bottom: 18px;
}

.catalog-filter-panel summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    cursor: pointer;
    font-weight: 700;
}

.catalog-filter-panel summary strong {
    color: var(--accent-dark);
    font-size: 14px;
}

.catalog-filter-panel[open] summary {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.catalog-filters {
    display: grid;
    gap: 18px;
    padding: 18px;
    border: 1px solid var(--line);
    border-top: 0;
    border-radius: 8px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    background: var(--surface);
}

.catalog-filters-top {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) minmax(180px, 240px) auto;
    gap: 16px;
    align-items: end;
}

.catalog-stock-filter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 42px;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #eef0ec;
    font-weight: 700;
}

.catalog-stock-filter input {
    width: auto;
    margin: 0;
}

.catalog-filter-groups {
    display: grid;
    gap: 16px;
}

.catalog-filter-group {
    min-width: 0;
    border: 0;
    padding: 0;
}

.catalog-filter-group legend {
    margin-bottom: 8px;
    font-weight: 700;
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 7px 10px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #fff;
    color: var(--text);
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
}

.filter-chip input {
    width: auto;
    margin: 0;
}

.filter-chip:has(input:checked) {
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(31, 122, 82, .14);
}

.filter-chip-swatch,
.filter-chip-image {
    width: 24px;
    height: 24px;
    flex: 0 0 auto;
}

.filter-chip-swatch {
    border: 1px solid rgba(0, 0, 0, .18);
    border-radius: 999px;
    background: var(--swatch);
}

.filter-chip-image {
    object-fit: contain;
}

.size-chip {
    min-width: 46px;
    justify-content: center;
}

.catalog-filter-actions,
.catalog-results-bar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.catalog-results-bar {
    justify-content: space-between;
    margin-bottom: 16px;
    color: var(--muted);
    font-weight: 700;
}

.catalog-results-bar a {
    color: var(--accent-dark);
}

.active-filters {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
}

.active-filter-tag,
.active-filter-reset {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 32px;
    padding: 6px 10px;
    border-radius: 999px;
}

.active-filter-tag {
    border: 1px solid rgba(31, 122, 82, .24);
    background: #e8f3ed;
    color: var(--accent-dark);
}

.active-filter-reset {
    color: var(--warn);
}

.catalog-empty {
    grid-column: 1 / -1;
    display: grid;
    justify-items: start;
    gap: 12px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
}

.catalog-empty p {
    margin: 0;
}

.category-page {
    padding: 34px 0 48px;
}

.category-layout {
    display: grid;
    grid-template-columns: minmax(260px, 300px) minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.category-sidebar {
    min-width: 0;
}

.category-sidebar-panel {
    position: sticky;
    top: 88px;
}

.category-sidebar-panel > summary {
    display: none;
}

.category-sidebar-content {
    display: grid;
    gap: 14px;
}

.category-nav-card,
.category-sidebar .catalog-filters,
.catalog-toolbar {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.category-nav-card {
    padding: 18px 16px;
}

.category-nav-card h2,
.catalog-filter-section h2 {
    margin: 0 0 14px;
    font-size: 15px;
    font-weight: 950;
    letter-spacing: 0;
    text-transform: uppercase;
}

.category-tree,
.category-tree ul {
    display: grid;
    gap: 4px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.category-tree > li + li {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
}

.category-tree a {
    display: flex;
    align-items: center;
    min-height: 36px;
    padding: 8px 10px;
    border-radius: 6px;
    color: #242424;
    font-weight: 750;
}

.category-tree a:hover {
    color: var(--accent-dark);
    background: #fff6f2;
}

.category-tree a.is-active {
    color: var(--accent-dark);
    background: #fff0eb;
    font-weight: 950;
}

.category-tree-root {
    color: #111;
    font-weight: 950;
}

.category-tree-root::before {
    margin-right: 8px;
    color: var(--accent);
    content: "›";
    font-size: 18px;
    line-height: 1;
}

.category-tree ul {
    padding-left: 18px;
}

.category-sidebar .catalog-filters {
    padding: 18px 14px;
    border-top: 1px solid var(--line);
}

.category-sidebar .catalog-filter-section {
    display: grid;
    gap: 12px;
}

.category-sidebar .catalog-filter-group {
    margin: 0;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

.category-sidebar .catalog-filter-group legend {
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 950;
    text-transform: uppercase;
}

.category-sidebar .filter-options {
    gap: 8px;
}

.category-sidebar .color-filter-options {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(48px, 1fr));
}

.category-sidebar .color-filter-chip {
    position: relative;
    justify-content: center;
    min-width: 0;
    min-height: 52px;
    padding: 6px;
    border: 1px solid #dedede;
    border-radius: 8px;
    background: #fff;
}

.category-sidebar .filter-chip input {
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
    accent-color: var(--accent);
}

.category-sidebar .color-filter-chip input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.category-sidebar .filter-chip:has(input:checked) {
    box-shadow: none;
}

.category-sidebar .filter-chip:has(input:checked) span:last-child {
    color: var(--accent-dark);
}

.category-sidebar .color-filter-chip:hover,
.category-sidebar .color-filter-chip:focus-within {
    border-color: var(--accent);
    background: #fff8f5;
}

.category-sidebar .color-filter-chip:has(input:checked) {
    border-color: var(--accent);
    background: #fff1eb;
    box-shadow: 0 0 0 2px rgba(240, 75, 22, .18);
}

.category-sidebar .color-filter-chip .filter-chip-name {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.category-sidebar .filter-chip-swatch,
.category-sidebar .filter-chip-image {
    width: 36px;
    height: 36px;
}

.category-sidebar .filter-chip-swatch {
    border-radius: 7px;
}

.category-sidebar .size-filter-options {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.category-sidebar .size-chip {
    min-height: 36px;
    padding: 6px;
    justify-content: center;
    border-color: #dedede;
    background: #fff;
}

.category-sidebar .catalog-stock-filter {
    justify-content: flex-start;
    min-height: 36px;
    padding: 0;
    border: 0;
    background: transparent;
}

.category-sidebar .catalog-filter-actions {
    display: grid;
    grid-template-columns: 1fr;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

.category-sidebar .catalog-filter-actions .button {
    width: 100%;
}

.category-main {
    min-width: 0;
}

.category-heading {
    margin-bottom: 24px;
}

.category-heading h1 {
    margin: 0 0 12px;
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.08;
}

.category-heading p {
    max-width: 880px;
    margin: 0;
    color: var(--muted);
}

.category-breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
    color: var(--muted);
    font-size: 14px;
}

.category-breadcrumbs a {
    color: #333;
}

.category-breadcrumbs a:hover,
.category-breadcrumbs strong {
    color: var(--accent-dark);
}

.category-subcategory-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.category-subcategory-links a {
    min-height: 36px;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fff;
    font-size: 14px;
    font-weight: 800;
}

.category-subcategory-links a:hover {
    border-color: var(--accent);
    color: var(--accent-dark);
}

.catalog-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 64px;
    margin-bottom: 14px;
    padding: 12px 16px;
}

.catalog-toolbar strong {
    color: #111;
}

.category-sort-form label {
    display: flex;
    grid-template-columns: none;
    align-items: center;
    gap: 12px;
    color: #222;
    font-weight: 850;
}

.category-sort-form select {
    width: min(230px, 52vw);
}

.category-active-filters {
    margin-bottom: 16px;
}

.sidebar-active-filters {
    display: grid;
    align-items: start;
    margin: 0;
    padding-top: 14px;
    border-top: 1px solid #f0f0f0;
}

.active-filter-tag {
    border-color: #ffd4c4;
    background: #fff3ee;
    color: var(--accent-dark);
}

.category-product-grid {
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 18px;
}

.category-product-grid .product-card {
    box-shadow: 0 2px 12px rgba(0, 0, 0, .035);
}

.category-product-grid .product-card-media {
    height: 250px;
    background: #fff;
}

.category-product-grid .product-card h2 {
    font-size: 18px;
    text-transform: uppercase;
}

.category-product-grid .product-card-meta span:first-child {
    color: var(--accent);
    font-size: 22px;
    font-weight: 950;
}

.category-product-grid .product-card-meta span:last-child {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #16833a;
    font-size: 14px;
    font-weight: 900;
    white-space: nowrap;
}

.category-product-grid .product-card-meta span:last-child::after {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: currentColor;
    content: "";
}

.category-product-grid .product-card-action {
    display: none;
}

.product-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    align-items: start;
}

.product-grid.category-product-grid {
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
}

.category-tile,
.product-card,
.inquiry-form,
.inquiry-item,
.inquiry-box {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.category-tile {
    padding: 22px;
    font-weight: 700;
}

.product-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow: hidden;
}

.product-card-media {
    display: block;
    height: 236px;
    background: #eef0ec;
    overflow: hidden;
}

.product-card-media img,
.product-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 12px;
    background: #fff;
}

.product-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 14px;
}

.product-card h2 {
    margin: 0 0 6px;
    font-size: 20px;
    line-height: 1.2;
}

.product-card-code,
.product-code,
.muted {
    color: var(--muted);
}

.product-card-code {
    margin: 0 0 4px;
    font-size: 13px;
    font-weight: 700;
}

.product-card p {
    margin: 0 0 8px;
    color: var(--muted);
}

.product-card-description {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.product-card-colors {
    display: grid;
    grid-template-columns: repeat(5, 38px);
    align-items: start;
    gap: 6px;
    margin: 2px 0 10px;
}

.product-card-color {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #f8f9f6;
    cursor: pointer;
    padding: 3px;
}

.product-card-color:hover {
    border-color: var(--accent);
}

.product-card-color.is-selected {
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(31, 122, 82, .16);
}

.product-card-color img,
.color-thumb {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-card-color span {
    width: 100%;
    height: 100%;
    border-radius: 999px;
    background: var(--swatch);
    border: 1px solid rgba(0, 0, 0, .18);
}

.product-card-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #eef0ec;
    color: var(--muted);
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
}

.product-card-colors:not(.is-expanded) .product-card-color.is-extra {
    display: none;
}

.product-card-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    font-size: 14px;
    font-weight: 700;
}

.product-card-action {
    width: 100%;
    margin-top: 14px;
}

.product-page {
    display: grid;
    gap: 14px;
    padding: 18px 0 44px;
}

.product-detail {
    display: grid;
    grid-template-columns: minmax(300px, .95fr) minmax(380px, 1.05fr) minmax(380px, 1.35fr);
    gap: 14px;
}

.product-gallery-card,
.product-choice-card,
.product-story-card,
.product-variant-card {
    border: 1px solid #d9d9d9;
    border-radius: 8px;
    background: #fff;
}

.product-gallery-card,
.product-choice-card,
.product-story-card {
    min-height: 470px;
    padding: 22px;
}

.product-gallery-card {
    display: grid;
    align-content: space-between;
    gap: 18px;
}

.product-media {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 310px;
    background: #fff;
    overflow: hidden;
}

.product-media img {
    width: 100%;
    max-height: 400px;
    object-fit: contain;
    padding: 0;
    background: #fff;
}

.product-thumbnails {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
    gap: 8px;
}

.product-thumbnail {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
    padding: 6px;
    border: 1px solid #dcdcdc;
    border-radius: 6px;
    background: #fff;
    cursor: pointer;
}

.product-thumbnail:hover,
.product-thumbnail.is-selected {
    border-color: var(--accent);
}

.product-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-choice-card,
.product-story-card {
    display: grid;
    align-content: start;
}

.product-choice-card {
    gap: 18px;
}

.product-display-title {
    display: grid;
    gap: 0;
    margin: 0;
    color: #050505;
    font-size: clamp(36px, 3vw, 42px);
    font-weight: 950;
    letter-spacing: 0;
    line-height: 1;
    text-transform: uppercase;
}

.product-code {
    margin: 0;
    font-size: 20px;
}

.product-code strong {
    color: #090909;
    font-size: 28px;
}

.product-color-picker {
    display: grid;
    gap: 10px;
}

.variant-label {
    font-weight: 850;
    text-transform: uppercase;
}

.variant-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.color-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(58px, 1fr));
    align-items: stretch;
    gap: 10px;
}

.variant-option {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    min-height: 48px;
    min-width: 0;
    padding: 8px 12px;
    border: 1px solid #dcdcdc;
    border-radius: 7px;
    background: #fff;
    color: var(--text);
    cursor: pointer;
    font: inherit;
    font-size: 14px;
    font-weight: 800;
}

.variant-option span {
    min-width: 0;
    line-height: 1.15;
    overflow-wrap: normal;
}

.variant-option:hover,
.variant-option.is-selected {
    border-color: var(--accent);
}

.variant-option.is-selected {
    background: #fff8f5;
    box-shadow: 0 0 0 2px rgba(240, 75, 22, .16);
}

.variant-option:disabled {
    opacity: .45;
    cursor: not-allowed;
}

.color-option {
    position: relative;
    justify-content: center;
    min-height: 58px;
    aspect-ratio: 1 / 1;
    padding: 6px;
    border-radius: 12px;
}

.color-option::after {
    content: attr(data-color-name);
    position: absolute;
    right: 50%;
    bottom: calc(100% + 8px);
    z-index: 3;
    width: max-content;
    max-width: 180px;
    padding: 6px 8px;
    border-radius: 6px;
    background: #111;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
    opacity: 0;
    pointer-events: none;
    transform: translateX(50%) translateY(4px);
    transition: opacity .15s ease, transform .15s ease;
}

.color-option:hover::after,
.color-option:focus-visible::after {
    opacity: 1;
    transform: translateX(50%) translateY(0);
}

.color-option.is-selected {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(240, 75, 22, .16);
}

.color-swatch {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border: 1px solid rgba(0, 0, 0, .18);
    border-radius: 9px;
    background: var(--swatch);
}

.color-thumb {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    border-radius: 8px;
    object-fit: contain;
}

.product-story-card {
    gap: 20px;
}

.product-feature-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    color: #222;
    font-size: 14px;
    font-weight: 800;
}

.product-feature-badges span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.product-feature-badges span::before {
    color: var(--accent);
    content: "◇";
    font-size: 20px;
    line-height: 1;
}

.product-story-card h2 {
    margin: 0;
    font-size: clamp(28px, 2.8vw, 40px);
    line-height: 1.15;
}

.product-story-card p {
    max-width: 720px;
    margin: 0;
    color: #444;
    font-size: 18px;
    line-height: 1.55;
}

.product-description-copy {
    display: grid;
    gap: 10px;
}

.product-description-copy [hidden] {
    display: none;
}

.product-description-copy .copy {
    color: #444;
    font-size: 18px;
    line-height: 1.55;
}

.product-description-excerpt--mobile {
    display: none;
}

.product-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-weight: 800;
}

.product-facts span {
    padding: 8px 10px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--surface);
}

.product-note,
.form-help {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.product-description-link {
    justify-self: start;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--accent);
    cursor: pointer;
    font-size: 18px;
    font-weight: 900;
    font-family: inherit;
    text-align: left;
}

.product-description-link.is-mobile-only {
    display: none;
}

.copy {
    color: var(--muted);
}

.inquiry-box,
.inquiry-form {
    display: grid;
    gap: 16px;
    padding: 20px;
}

.product-variant-card {
    gap: 0;
    padding: 10px clamp(12px, 6vw, 100px) 6px;
}

.b2b-product {
    padding-bottom: 0;
}

.product-order-section {
    padding-top: 0;
}

.b2b-order-box {
    gap: 0;
}

.variant-tables {
    display: grid;
}

.variant-table-panel {
    display: none;
}

.variant-table-panel.is-active {
    display: block;
}

.table-wrap {
    width: 100%;
    overflow-x: auto;
    border: 0;
    border-radius: 6px;
    background: #fff;
}

.variant-table {
    width: 100%;
    min-width: 860px;
    border-collapse: collapse;
    font-size: 18px;
}

.variant-table th,
.variant-table td {
    padding: 12px 16px;
    border-bottom: 1px solid #ececec;
    text-align: center;
    vertical-align: middle;
}

.variant-table th {
    border-bottom: 4px solid var(--accent);
    background: #101010;
    color: #fff;
    font-size: 18px;
    font-weight: 850;
    text-transform: none;
}

.variant-table th:first-child {
    border-top-left-radius: 4px;
}

.variant-table th:last-child {
    border-top-right-radius: 4px;
}

.variant-table td:first-child,
.variant-table th:first-child {
    text-align: left;
}

.variant-table tr:last-child td {
    border-bottom: 0;
}

.variant-table tr.is-unavailable {
    color: var(--muted);
    background: #faf7f6;
}

.product-quantity-control {
    display: inline-grid;
    grid-template-columns: 44px 76px 44px;
    justify-content: end;
}

.product-quantity-control button,
.product-quantity-control input {
    min-height: 38px;
    border: 1px solid #dcdcdc;
    background: #fff;
    color: #111;
    font: inherit;
    text-align: center;
}

.product-quantity-control button {
    cursor: pointer;
    font-size: 22px;
    line-height: 1;
}

.product-quantity-control button:first-child {
    border-radius: 6px 0 0 6px;
}

.product-quantity-control button:last-child {
    border-radius: 0 6px 6px 0;
}

.product-quantity-control button:disabled,
.product-quantity-control input:disabled {
    color: #aaa;
    cursor: not-allowed;
    opacity: .6;
}

.quantity-field {
    max-width: none;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
}

.product-table-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 270px);
    gap: 18px;
    align-items: center;
    padding: 8px 0 0;
}

.product-submit-button {
    min-height: 52px;
    border-radius: 6px;
    font-size: 20px;
    font-weight: 950;
}

.product-support-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.order-help {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 20px;
    align-items: center;
    padding: 22px 32px;
    border: 1px solid #d9d9d9;
    border-radius: 8px;
    background: #fff;
}

.order-help-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 76px;
    height: 76px;
    border: 2px solid var(--accent);
    border-radius: 999px;
    color: var(--accent);
    font-size: 34px;
}

.order-help h2 {
    margin: 0 0 4px;
    font-size: 20px;
}

.order-help p {
    margin: 0;
    color: #444;
}

.inquiry-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 24px;
    padding-bottom: 56px;
}

.inquiry-items {
    display: grid;
    gap: 12px;
}

.inquiry-item {
    display: grid;
    grid-template-columns: 84px minmax(0, 1fr) 150px 150px 150px auto;
    gap: 16px;
    align-items: center;
    padding: 16px;
}

.inquiry-item.is-unavailable {
    background: #f8f1ef;
}

.inquiry-item-image {
    width: 84px;
    aspect-ratio: 1;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #eef0ec;
    object-fit: cover;
}

.inquiry-item-main {
    display: grid;
    gap: 4px;
}

.inquiry-item-main p,
.inquiry-price span,
.inquiry-total span,
.inquiry-total p {
    margin: 0;
    color: var(--muted);
}

.inquiry-price {
    display: grid;
    gap: 4px;
    font-size: 14px;
}

.inquiry-total {
    display: grid;
    gap: 6px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
}

.empty-inquiry {
    max-width: 640px;
}

label {
    display: grid;
    gap: 6px;
    font-weight: 700;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 10px 12px;
    background: #fff;
    color: var(--text);
}

.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 400;
}

.checkbox input {
    width: auto;
    margin-top: 5px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 16px;
    border: 1px solid transparent;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 700;
}

.button.primary {
    background: var(--accent);
    color: #fff;
}

.button.primary:hover {
    background: var(--accent-dark);
}

.button.secondary {
    background: #eef0ec;
    color: var(--text);
}

.button.ghost {
    background: transparent;
    color: var(--warn);
}

.button:disabled {
    opacity: .55;
    cursor: not-allowed;
}

.notice {
    margin-top: 16px;
    padding: 14px 16px;
    border-radius: 8px;
}

.notice.success {
    background: #e6f3ec;
    border: 1px solid #bddfcf;
}

.notice.error {
    background: #f8e8e6;
    border: 1px solid #e4bab5;
}

.site-footer {
    background: #171717;
    color: #fff;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.1fr;
    gap: 44px;
    padding: 44px 0 34px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.footer-logo {
    display: inline-block;
    margin-bottom: 14px;
    color: #fff;
    font-size: 32px;
}

.landing-footer p {
    max-width: 430px;
    margin: 0 0 18px;
    color: #cfcfcf;
    line-height: 1.55;
}

.landing-footer h3 {
    margin: 0 0 16px;
    color: #fff;
    font-size: 17px;
    font-weight: 950;
}

.landing-footer ul,
.footer-contact {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.landing-footer a,
.footer-contact span {
    color: #d8d8d8;
    font-weight: 650;
}

.landing-footer a:hover {
    color: #fff;
    text-decoration: underline;
    text-decoration-color: var(--accent);
    text-underline-offset: 4px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 58px;
    color: #aaa;
    font-size: 13px;
}

.footer-bottom div {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
}

@media (max-width: 1200px) {
    .container {
        width: min(100% - 32px, 1120px);
    }

    .header-inner {
        flex-wrap: wrap;
        padding: 12px 0;
    }

    .main-nav {
        gap: 18px;
    }

    .main-nav-link.is-active::after {
        display: none;
    }

    .header-actions {
        flex-wrap: wrap;
    }

    .home-hero-grid,
    .home-main {
        grid-template-columns: 1fr;
    }

    .home-catalog,
    .home-side {
        padding: 28px 32px;
    }

    .home-catalog {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .home-trust-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 18px 0;
    }

    .home-product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .category-layout {
        grid-template-columns: minmax(230px, 260px) minmax(0, 1fr);
        gap: 20px;
    }

    .category-sidebar .color-filter-options {
        grid-template-columns: repeat(auto-fill, minmax(46px, 1fr));
    }

    .category-sidebar .size-filter-options {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .product-detail {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }

    .product-story-card {
        grid-column: 1 / -1;
        min-height: 0;
    }

    .color-grid {
        grid-template-columns: repeat(auto-fill, minmax(58px, 1fr));
    }

    .footer-top {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    body:has(.floating-call-button:not([hidden])) {
        padding-bottom: 74px;
    }

    .header-inner,
    .catalog-hero-inner,
    .footer-inner {
        align-items: flex-start;
        flex-direction: column;
        padding: 16px 0;
    }

    .landing-brand {
        font-size: 28px;
    }

    .main-nav {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
        gap: 10px 16px;
    }

    .main-nav-item {
        width: 100%;
    }

    .main-nav-item.has-children {
        grid-column: 1 / -1;
    }

    .main-nav-parent {
        justify-content: space-between;
        width: 100%;
        min-height: 38px;
        padding: 0 8px;
        border: 1px solid #ececec;
        border-radius: 6px;
    }

    .main-nav-link {
        min-width: 0;
        padding: 8px 0;
        overflow-wrap: anywhere;
    }

    .main-nav-dropdown {
        position: static;
        display: none;
        visibility: visible;
        width: 100%;
        min-width: 0;
        max-width: none;
        margin-top: 6px;
        padding: 5px;
        box-shadow: none;
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }

    .main-nav-item.is-open .main-nav-dropdown {
        display: grid;
    }

    .main-nav-dropdown::before {
        display: none;
    }

    .main-nav-dropdown a {
        white-space: normal;
    }

    .header-actions {
        width: 100%;
    }

    .header-search,
    .header-inquiry {
        width: 100%;
    }

    .search-toggle,
    .header-inquiry {
        justify-content: center;
        width: 100%;
    }

    .header-search-panel {
        right: auto;
        left: 0;
        width: 100%;
    }

    .header-phone {
        display: none;
    }

    .home-hero-grid {
        min-height: 0;
        padding: 32px 0;
    }

    .home-hero h1 {
        font-size: 36px;
    }

    .home-hero p {
        font-size: 18px;
    }

    .home-shirts-hero {
        height: 220px;
    }

    .home-notebooks-hero {
        height: 220px;
        gap: 10px;
        padding: 18px 20px 0;
    }

    .home-notebook {
        width: 110px;
        height: 160px;
        font-size: 14px;
    }

    .home-notebook.is-navy {
        height: 172px;
    }

    .home-notebook.is-orange {
        height: 150px;
    }

    .home-notebook.is-sand {
        height: 164px;
    }

    .home-photo-hero {
        height: 240px;
    }

    .home-shirt {
        width: 132px;
        height: 174px;
    }

    .home-trust-grid,
    .home-product-grid,
    .home-steps-row,
    .home-quick-grid,
    .footer-top {
        grid-template-columns: 1fr;
    }

    .home-category-note,
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .home-tabs {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-tab {
        width: 100%;
    }

    .category-page {
        padding: 20px 0 36px;
    }

    .category-layout {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .cms-page-hero-inner {
        padding: 26px 0 30px;
    }

    .cms-page-shell {
        grid-template-columns: 1fr;
        padding-top: 22px;
        padding-bottom: 36px;
    }

    .cms-page-content {
        padding: 24px 20px;
        font-size: 16px;
        line-height: 1.7;
    }

    .cms-page-content h2 {
        font-size: 26px;
    }

    .cms-page-sidebar {
        position: static;
    }

    .category-sidebar-panel {
        position: static;
    }

    .category-sidebar-panel > summary {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 14px 16px;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: #fff;
        cursor: pointer;
        font-weight: 900;
    }

    .category-sidebar-panel > summary strong {
        color: var(--accent-dark);
        font-size: 14px;
    }

    .category-sidebar-panel[open] > summary {
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
    }

    .category-sidebar-content {
        gap: 0;
    }

    .category-nav-card,
    .category-sidebar .catalog-filters {
        border-radius: 0;
    }

    .category-nav-card {
        border-top: 0;
    }

    .category-sidebar .catalog-filters {
        border-top: 0;
        border-bottom-right-radius: 8px;
        border-bottom-left-radius: 8px;
    }

    .category-sidebar .color-filter-options {
        grid-template-columns: repeat(auto-fill, minmax(48px, 1fr));
    }

    .category-sidebar .size-filter-options {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .category-heading h1 {
        font-size: 34px;
    }

    .catalog-toolbar,
    .category-sort-form label {
        align-items: stretch;
        flex-direction: column;
    }

    .category-sort-form,
    .category-sort-form select {
        width: 100%;
    }

    .product-grid.category-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .category-product-grid .product-card-media {
        height: 210px;
    }

    .category-product-grid .product-card-meta {
        align-items: flex-start;
        flex-direction: column;
    }

    .product-detail,
    .inquiry-layout,
    .inquiry-item {
        grid-template-columns: 1fr;
    }

    .product-gallery-card,
    .product-choice-card,
    .product-story-card {
        min-height: 0;
    }

    .product-media {
        min-height: 240px;
    }

    .product-display-title {
        font-size: 36px;
    }

    .product-table-actions,
    .product-support-grid,
    .order-help {
        grid-template-columns: 1fr;
    }

    .product-variant-card {
        padding: 10px;
    }

    .order-help {
        justify-items: start;
    }

    .catalog-filters-top {
        grid-template-columns: 1fr;
    }

    .catalog-filter-panel summary {
        position: sticky;
        top: 73px;
        z-index: 2;
    }

    .catalog-filter-actions .button,
    .catalog-filter-actions a {
        width: 100%;
    }

    .active-filter-tag,
    .active-filter-reset {
        max-width: 100%;
    }

    .three-columns {
        grid-template-columns: 1fr;
    }

    .order-help-grid {
        grid-template-columns: 1fr;
    }

    .inquiry-item-image {
        width: 100%;
        max-width: 160px;
    }
}

@media (max-width: 560px) {
    .category-sidebar .color-filter-options {
        grid-template-columns: repeat(auto-fill, minmax(48px, 1fr));
    }

    .product-grid.category-product-grid {
        grid-template-columns: 1fr;
    }
}

/* Sprint 19: focused mobile usability refinements. */
@media (max-width: 820px) {
    .header-inner {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        min-height: 0;
        padding: 10px 0;
    }

    .mobile-header-bar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        gap: 14px;
    }

    .mobile-menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 7px;
        min-width: 88px;
        min-height: 44px;
        padding: 8px 12px;
        border: 1px solid #d8d8d8;
        border-radius: 6px;
        background: #fff;
        color: var(--text);
        cursor: pointer;
        font: inherit;
    }

    .mobile-menu-toggle span {
        font-size: 20px;
        line-height: 1;
    }

    .mobile-menu-toggle[aria-expanded="true"] {
        border-color: var(--accent);
        color: var(--accent-dark);
    }

    .main-nav {
        display: none;
        padding-top: 4px;
    }

    .site-header.is-menu-open .main-nav {
        display: grid;
    }

    .main-nav-parent,
    .main-nav-link,
    .main-nav-dropdown a {
        min-height: 44px;
    }

    .main-nav-link,
    .main-nav-dropdown a {
        display: flex;
        align-items: center;
    }

    .main-nav-toggle {
        width: 44px;
        height: 44px;
        flex: 0 0 44px;
        margin-right: -8px;
    }

    .header-actions {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        width: 100%;
        gap: 10px;
    }

    .search-toggle,
    .header-inquiry {
        min-height: 44px;
        padding-right: 10px;
        padding-left: 10px;
    }

    .home-trust-grid {
        gap: 16px;
        padding: 22px 0;
    }

    .home-benefit-copy small {
        display: block;
    }

    .home-trust-grid > p {
        display: none;
    }

    .home-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-catalog {
        min-width: 0;
        overflow: hidden;
    }

    .home-tabs {
        display: flex;
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        padding-bottom: 8px;
        scroll-snap-type: x proximity;
    }

    .home-tab {
        width: auto;
        min-height: 44px;
        flex: 0 0 auto;
        padding: 0 16px;
        scroll-snap-align: start;
    }

    .home-product-swatch,
    .home-product-swatch-toggle {
        width: 44px;
        min-width: 44px;
        height: 44px;
        flex-basis: 44px;
    }

    .category-sidebar .size-chip,
    .category-subcategory-links a {
        min-height: 44px;
    }

    .back-link,
    .product-description-link {
        display: inline-flex;
        align-items: center;
        min-height: 44px;
    }

    .product-card-colors {
        grid-template-columns: repeat(5, 44px);
    }

    .product-card-color,
    .product-card-more {
        width: 44px;
        height: 44px;
    }

    .product-page,
    .product-detail,
    .product-order-section,
    .product-variant-card,
    .variant-tables,
    .variant-table-panel,
    .product-table-wrap {
        min-width: 0;
        max-width: 100%;
    }

    .product-gallery-card,
    .product-choice-card,
    .product-story-card {
        padding: 18px;
    }

    .product-media {
        min-height: 0;
        aspect-ratio: 4 / 5;
    }

    .product-media img {
        max-height: none;
    }

    .product-variant-card {
        padding: 12px;
        overflow: hidden;
    }

    .table-wrap {
        overflow: visible;
    }

    .variant-table,
    .variant-table tbody,
    .variant-table tr,
    .variant-table td {
        display: block;
        width: 100%;
    }

    .variant-table {
        min-width: 0;
        font-size: 15px;
    }

    .variant-table thead {
        display: none;
    }

    .variant-table tbody {
        display: grid;
        gap: 12px;
    }

    .variant-table tr {
        padding: 10px 12px;
        border: 1px solid var(--line);
        border-radius: 7px;
        background: #fff;
    }

    .variant-table tr.is-unavailable {
        background: #faf7f6;
    }

    .variant-table td,
    .variant-table td:first-child {
        display: grid;
        grid-template-columns: minmax(104px, 42%) minmax(0, 1fr);
        align-items: center;
        gap: 12px;
        padding: 8px 0;
        border-bottom: 1px solid #ededed;
        text-align: right;
    }

    .variant-table td::before {
        color: var(--muted);
        content: attr(data-label);
        font-size: 13px;
        font-weight: 850;
        text-align: left;
    }

    .variant-table td:last-child {
        grid-template-columns: 1fr;
        border-bottom: 0;
        text-align: left;
    }

    .variant-table td:last-child::before {
        margin-bottom: 2px;
    }

    .product-quantity-control {
        grid-template-columns: 44px minmax(64px, 1fr) 44px;
        width: 100%;
        justify-content: stretch;
    }

    .product-quantity-control button,
    .product-quantity-control input {
        min-height: 44px;
    }

    .inquiry-item-image {
        max-width: 128px;
    }

    .inquiry-update-form {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: end;
        gap: 10px;
    }

    .inquiry-remove-form .button,
    .inquiry-form > .button {
        width: 100%;
    }

    input,
    select,
    textarea {
        min-height: 44px;
        font-size: 16px;
    }

    .footer-nav-column a,
    .footer-contact a {
        display: flex;
        align-items: center;
        min-height: 42px;
    }
}

@media (max-width: 560px) {
    .container {
        width: calc(100% - 32px);
    }

    .landing-brand {
        font-size: 25px;
    }

    .mobile-menu-toggle {
        min-width: 82px;
    }

    .header-actions {
        gap: 8px;
    }

    .search-toggle,
    .header-inquiry {
        font-size: 14px;
    }

    .home-hero-grid {
        padding: 26px 0 30px;
    }

    .home-hero h1 {
        margin-bottom: 18px;
        font-size: 32px;
    }

    .home-hero p {
        margin-bottom: 22px;
        font-size: 17px;
    }

    .home-shirts-hero {
        display: none;
    }

    .home-notebooks-hero {
        display: none;
    }

    .home-photo-hero {
        height: 210px;
    }

    .home-photo-hero.is-hidden-on-mobile {
        display: none;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-actions .button {
        width: 100%;
        min-height: 48px;
    }

    .home-catalog,
    .home-side {
        padding: 24px 16px;
    }

    .home-product-grid {
        grid-template-columns: 1fr;
    }

    .home-product-media {
        height: 230px;
    }

    .home-product-swatch,
    .home-product-swatch-toggle {
        width: 44px;
        min-width: 44px;
        height: 44px;
        flex-basis: 44px;
    }

    .home-steps,
    .home-service-box,
    .home-quick-inquiry {
        padding: 18px 16px;
    }

    .home-steps-row {
        gap: 18px;
    }

    .home-steps-row div {
        grid-template-columns: 34px minmax(0, 1fr);
        justify-items: start;
        text-align: left;
    }

    .home-steps-row span {
        grid-row: 1 / span 2;
    }

    .home-steps-row p {
        max-width: none;
    }

    .product-display-title {
        font-size: 32px;
    }

    .product-feature-badges {
        gap: 9px 12px;
    }

    .product-story-card h2 {
        font-size: 27px;
    }

    .product-story-card p,
    .product-description-copy .copy {
        font-size: 16px;
    }

    .product-description-excerpt--desktop {
        display: none;
    }

    .product-description-excerpt--mobile,
    .product-description-link.is-mobile-only {
        display: block;
    }

    .product-thumbnails {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .order-help {
        padding: 18px;
    }

    .order-help-icon {
        width: 58px;
        height: 58px;
        font-size: 27px;
    }

    .inquiry-update-form {
        grid-template-columns: 1fr;
    }

    .inquiry-update-form .button {
        width: 100%;
    }

    .cms-page-content,
    .cms-page-cta,
    .cms-page-contact {
        padding: 20px 16px;
    }

    .footer-top {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 26px 18px;
        padding: 32px 0 24px;
    }

    .footer-about,
    .footer-contact-column {
        grid-column: 1 / -1;
    }

    .footer-nav-column h3 {
        margin-bottom: 8px;
    }

    .footer-bottom {
        gap: 12px;
        padding: 18px 0;
    }
}

.catalog-pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin: 28px 0 8px;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.catalog-pagination-summary {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.catalog-pagination-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 6px;
}

.catalog-pagination-link,
.catalog-pagination-ellipsis {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 800;
}

.catalog-pagination-link {
    border: 1px solid #d8d8d8;
    background: #fff;
}

a.catalog-pagination-link:hover,
a.catalog-pagination-link:focus-visible {
    border-color: var(--accent);
    color: var(--accent-dark);
}

.catalog-pagination-link.is-current {
    border-color: var(--accent);
    background: var(--accent);
    color: #fff;
}

.catalog-pagination-link.is-disabled {
    border-color: #ececec;
    background: #f7f7f7;
    color: #999;
}

.catalog-pagination-ellipsis {
    min-width: 28px;
    padding-right: 4px;
    padding-left: 4px;
    color: var(--muted);
}

.floating-call-button {
    display: none;
}

.floating-call-button[hidden] {
    display: none;
}

@media (max-width: 820px) {
    .catalog-pagination {
        align-items: stretch;
        flex-direction: column;
        gap: 12px;
    }

    .catalog-pagination-summary {
        text-align: center;
    }

    .catalog-pagination-links {
        justify-content: center;
    }

    .floating-call-button:not([hidden]) {
        position: fixed;
        right: 18px;
        bottom: max(18px, env(safe-area-inset-bottom));
        z-index: 24;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 56px;
        height: 56px;
        border: 2px solid rgba(255, 255, 255, .9);
        border-radius: 999px;
        background: var(--accent);
        color: #fff;
        box-shadow: 0 8px 22px rgba(0, 0, 0, .24);
        font-size: 27px;
        line-height: 1;
        transition: opacity .15s ease, transform .15s ease, background-color .15s ease;
    }

    .floating-call-button:hover,
    .floating-call-button:focus-visible {
        background: var(--accent-dark);
    }

    body:has(input:focus, select:focus, textarea:focus) .floating-call-button {
        opacity: 0;
        pointer-events: none;
        transform: translateY(8px);
    }
}

@media (max-width: 430px) {
    .catalog-pagination-link {
        flex: 1 1 auto;
    }

    .catalog-pagination-link.is-current,
    .catalog-pagination-ellipsis {
        flex: 0 0 44px;
    }
}
