:root {
    /* Main editable brand tokens. Keep business-specific colors here. */
    --brand-primary: #9b1687;
    --brand-primary-dark: color-mix(in srgb, var(--brand-primary) 72%, #000);
    --brand-primary-soft: color-mix(in srgb, var(--brand-primary) 10%, #fff);
    --brand-secondary: #f4c542;
    --brand-secondary-strong: color-mix(in srgb, var(--brand-secondary) 70%, var(--brand-ink));
    --brand-secondary-soft: color-mix(in srgb, var(--brand-secondary) 18%, #fff);
    --brand-ink: #171017;
    --brand-accent: var(--brand-primary);
    --brand-accent-dark: var(--brand-primary-dark);
    --brand-accent-soft: var(--brand-primary-soft);
    --cta-primary-bg: var(--brand-accent);
    --cta-primary-fg: #ffffff;
    --cta-primary-hover-bg: var(--brand-accent-dark);
    --cta-primary-hover-fg: #ffffff;
    --cta-outline-hover-border: var(--brand-accent);
    --cta-outline-hover-fg: var(--brand-accent);
    --color-surface: #ffffff;
    --surface-soft: #f8f7f8;
    --surface-muted: #f8f8f8;
    --surface-warm: var(--brand-secondary-soft);
    --surface-card: #ffffff;
    --surface-card-muted: #f8fafc;
    --surface-card-hover: #f4f6f8;
    --border-soft: #e9e9e6;
    --border-muted: #e8e8e8;
    --text-strong: #050505;
    --text-body: #222222;
    --text-soft: #555555;
    --text-faint: #777777;
    --accent-success: #176b36;
    --accent-danger: var(--brand-primary);
    --product-flag-bg: var(--brand-primary);
    --wishlist-action-bg: var(--brand-primary);
    --wishlist-action-fg: #ffffff;
    --product-card-accent: var(--brand-accent);
    --product-card-accent-dark: var(--brand-accent-dark);
    --product-card-accent-soft: color-mix(in srgb, var(--product-card-accent) 9%, #ffffff);
    --product-card-accent-border: color-mix(in srgb, var(--product-card-accent) 24%, #dbe5f2);
    --product-card-accent-shadow: color-mix(in srgb, var(--product-card-accent) 16%, transparent);
    --product-cta-bg: var(--product-card-accent);
    --product-cta-fg: var(--cta-primary-fg);
    --product-cta-hover-bg: var(--product-card-accent-dark);
    --product-cta-hover-fg: var(--cta-primary-hover-fg);
    --filter-ink: var(--text-strong);
    --filter-muted: var(--text-soft);
    --filter-faint: var(--text-faint);
    --filter-border: var(--border-soft);
    --header-icon-bg: var(--surface-soft);
    --header-icon-fg: var(--brand-ink);
    --header-icon-hover-bg: var(--brand-primary-soft);
    --header-icon-hover-fg: var(--brand-primary);
    --header-search-bg: var(--surface-soft);
    --header-search-placeholder: var(--text-faint);
    --header-search-focus-bg: var(--surface-card);
    --header-nav-fg: var(--text-body);
    --header-nav-hover-fg: var(--brand-primary);
    --header-dropdown-bg: var(--surface-card);
    --header-dropdown-hover-bg: var(--brand-primary-soft);
    --header-dropdown-border-hover: color-mix(in srgb, var(--brand-primary) 24%, transparent);
    --header-dropdown-icon-bg: color-mix(in srgb, var(--brand-primary) 10%, var(--surface-card));
    --color-swatch-all: linear-gradient(135deg, var(--brand-primary) 0 25%, var(--brand-ink) 25% 50%, var(--brand-secondary) 50% 75%, var(--accent-success) 75%);
    --primary-red: var(--brand-primary);
    --brand-aqua: var(--brand-primary);
    --brand-aqua-dark: var(--brand-primary-dark);
    --brand-aqua-soft: var(--brand-primary-soft);
    --brand-red: var(--brand-secondary);
    --dark-teal: var(--brand-ink);
    --dark-bg: #0d0c10;
    --light-gray: #f6f5f7;
    --border-color: #e6dde8;
    --text-dark: #111111;
    --text-muted: #68728a;
    --white: #ffffff;
    --container-width: 1360px;
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Inter', sans-serif;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 18px 42px rgba(0,0,0,0.12);
    --radius-sm: 6px;
    --radius-xs: 4px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body { font-family: var(--font-main); color: var(--text-dark); background: var(--white); -webkit-font-smoothing: antialiased; overflow-x: clip; }
@supports not (overflow: clip) {
    html,
    body {
        overflow-x: hidden;
    }
}
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); }
a { text-decoration: none; color: inherit; transition: color 0.25s, background 0.25s, transform 0.25s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button, input, select { font: inherit; }
button { cursor: pointer; }
.container { max-width: var(--container-width); margin: 0 auto; padding: 0 18px; }

.header {
    position: fixed;
    top: 32px;
    left: 50%;
    transform: translateX(-50%);
    width: min(95%, var(--container-width));
    max-width: var(--container-width);
    background: var(--white);
    display: flex;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(6,28,29,0.12);
    border-radius: var(--radius-sm);
    overflow: visible;
    transition: top 0.22s ease, box-shadow 0.22s ease, border-radius 0.22s ease;
    will-change: top, box-shadow;
}
.header.sticky {
    top: 12px;
    border-radius: var(--radius-sm);
    overflow: visible;
    box-shadow: 0 14px 38px rgba(6,28,29,0.16);
}
.logo {
    background: var(--white);
    color: var(--dark-teal);
    min-width: 226px;
    min-height: 78px;
    padding: 13px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-right: 1px solid var(--border-color);
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}
.logo img { width: 174px; max-height: 58px; object-fit: contain; }
.logo-main { font-size: 24px; font-weight: 800; letter-spacing: 1px; display: flex; align-items: center; gap: 8px; }
.logo-main::before { content: '\f100'; font-family: 'Font Awesome 6 Free'; font-weight: 900; }
.logo-main::after { content: '\f101'; font-family: 'Font Awesome 6 Free'; font-weight: 900; }
.logo-sub { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; }
.main-nav { flex: 1; padding-left: 22px; }
.main-nav ul { display: flex; gap: 10px; align-items: center; }
.main-nav li { position: relative; }
.main-nav a { font-family: var(--font-heading); font-weight: 700; font-size: 12px; text-transform: uppercase; color: var(--header-nav-fg); }
.main-nav a:hover, .main-nav a.active { color: var(--primary-red); }
.nav-has-dropdown { display: inline-flex; align-items: center; gap: 7px; }
.nav-dropdown-toggle {
    border: 0;
    background: transparent;
    color: var(--header-nav-fg);
    font-size: 10px;
    line-height: 1;
    transition: color 0.22s ease, transform 0.22s ease;
}
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus-visible { color: var(--header-nav-hover-fg); }
.nav-dropdown {
    position: absolute;
    top: calc(100% + 28px);
    left: -24px;
    width: 560px;
    background: var(--header-dropdown-bg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    padding: 18px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    z-index: 1001;
    border-radius: var(--radius-sm);
}
.accessory-nav-dropdown {
    left: auto;
    right: -180px;
    width: min(860px, calc(100vw - 48px));
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.nav-dropdown-single {
    width: 330px;
    grid-template-columns: 1fr;
}
.nav-has-dropdown:hover .nav-dropdown,
.nav-has-dropdown:focus-within .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.nav-has-dropdown:hover .nav-dropdown-toggle,
.nav-has-dropdown:focus-within .nav-dropdown-toggle { transform: rotate(180deg); }
.nav-dropdown a {
    display: grid;
    grid-template-columns: 42px 1fr;
    grid-template-rows: auto;
    column-gap: 12px;
    align-items: center;
    padding: 14px;
    text-transform: none;
    border: 1px solid transparent;
    background: var(--header-dropdown-bg);
    border-radius: var(--radius-xs);
}
.nav-dropdown a:hover { border-color: var(--header-dropdown-border-hover); background: var(--header-dropdown-hover-bg); color: var(--dark-teal); }
.nav-dropdown i {
    grid-row: 1;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--header-dropdown-icon-bg);
    color: var(--primary-red);
    font-size: 16px;
}
.nav-dropdown span { color: var(--dark-teal); font-size: 14px; font-weight: 800; }
.nav-dropdown small { display: none; }
.header-actions { display: flex; align-items: center; gap: 10px; padding-right: 22px; }
.icon-btn {
    position: relative;
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    color: var(--dark-teal);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
}
.icon-btn:hover { color: var(--brand-aqua-dark); background: var(--brand-aqua-soft); }
.badge {
    position: absolute;
    top: 2px;
    right: 0;
    background: var(--primary-red);
    color: #fff;
    font-size: 10px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}
.badge.bump { animation: bump 0.25s ease; }
.menu-toggle { display: none; }
.mobile-nav-head,
.mobile-account-link { display: none; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 13px 28px;
    border: 0;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    border-radius: var(--radius-sm);
    transition: 0.25s;
    gap: 9px;
}
.btn-primary { background: var(--cta-primary-bg); color: var(--cta-primary-fg); }
.btn-primary:hover { background: var(--cta-primary-hover-bg); color: var(--cta-primary-hover-fg); transform: translateY(-2px); }
.btn-light { background: var(--white); color: var(--dark-teal); }
.btn-light:hover { background: #edf2f2; }
.btn-outline { background: #fff; color: var(--dark-teal); border: 1px solid var(--border-color); }
.btn-outline:hover { border-color: var(--cta-outline-hover-border); color: var(--cta-outline-hover-fg); }

.search-panel,
.search-box input,
.search-result,
.trust-bar,
.product-card,
.product-img-wrapper,
.flag,
.cat-item,
.blog-card,
.newsletter-form,
.newsletter-form input,
.editorial-hero,
.featured-post,
.post-hero img,
.post-callout,
.about-split img,
.value-grid article,
.value-grid i,
.page-heading,
.catalog-hero,
.plp-sidebar,
.filter-field input,
.filter-field select,
.listing-toolbar select,
.filter-list button,
.size-box,
.pdp-main-img,
.pdp-thumbs button,
.qty-input,
.qty-btn,
.business-hero,
.business-catalog,
.business-highlight-row article,
.business-split > img,
.business-process-grid article,
.info-cta-band,
.info-page-content article,
.info-support-panel,
.faq-group details,
.faq-group summary::after,
.policy-aside,
.policy-section,
.policy-note,
.contact-info-panel,
.contact-form-panel,
.contact-form-panel input,
.contact-form-panel select,
.contact-form-panel textarea,
.cart-head button,
.cart-line,
.cart-line img,
.cart-line-actions button,
.cart-page-line,
.cart-page-line img,
.cart-page-qty,
.cart-page-qty button,
.remove-line,
.order-summary,
.checkout-form section,
.checkout-form input,
.checkout-form select,
.checkout-form textarea,
.checkout-success,
.checkout-intro,
.checkout-steps,
.checkout-benefits div,
.checkout-section-title span,
.payment-options label,
.fake-stripe-box,
.checkout-summary .summary-product img,
.account-form,
.account-form-head i,
.account-form input,
.search-page-form input,
.footer-newsletter,
.mobile-nav-search label,
.mobile-nav-search button,
.price-input-grid input {
    border-radius: var(--radius-sm);
}

.trust-bar,
.product-card,
.cat-item,
.blog-card,
.editorial-hero,
.featured-post,
.catalog-hero,
.business-hero,
.business-catalog,
.info-cta-band,
.checkout-steps {
    overflow: hidden;
}

.search-panel {
    position: fixed;
    top: 106px;
    left: 50%;
    width: min(95%, var(--container-width));
    max-width: var(--container-width);
    transform: translate(-50%, -12px);
    background: #fff;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    z-index: 990;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, top 0.2s ease;
}
.header.sticky + .search-panel { top: 86px; }
.search-panel.open { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.mobile-nav-search { display: none; }
.search-box { display: grid; grid-template-columns: 52px 1fr 52px; align-items: center; border-bottom: 1px solid var(--border-color); }
.search-box i { color: var(--primary-red); justify-self: center; }
.search-box input { height: 58px; border: 0; outline: 0; font-size: 18px; color: var(--dark-teal); }
.search-box button { border: 0; background: transparent; height: 58px; color: #667070; }
.search-results { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0; max-height: 430px; overflow: auto; }
.search-result { display: grid; grid-template-columns: 70px 1fr auto; gap: 14px; align-items: center; padding: 14px 18px; border-bottom: 1px solid #eef1f1; }
.search-result:nth-child(odd) { border-right: 1px solid #eef1f1; }
.search-result:hover { background: var(--brand-aqua-soft); }
.search-result img { width: 70px; height: 70px; object-fit: contain; background: #f8fafa; }
.search-result strong { display: block; color: var(--dark-teal); }
.search-result small { color: var(--text-muted); }
.search-result b { color: var(--primary-red); }
.search-empty { padding: 22px; color: var(--text-muted); }

.hero {
    min-height: 860px;
    background: linear-gradient(90deg, rgba(13,12,16,0.94), rgba(13,12,16,0.62), rgba(13,12,16,0.06)), var(--home-hero-image, none) center/cover;
    color: #fff;
    display: flex;
    align-items: center;
}
.hero-content { width: min(680px, 100%); margin-left: max(18px, calc((100vw - var(--container-width)) / 2)); padding: 130px 18px 70px; animation: rise 0.7s ease both; }
.hero-title { font-size: 86px; font-weight: 900; line-height: 0.95; letter-spacing: 0; margin: 18px 0 22px; }
.hero-subtitle, .eyebrow { display: inline-block; font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; color: var(--primary-red); }
.hero-content p { max-width: 560px; color: rgba(255,255,255,0.86); line-height: 1.7; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.trust-wrap { margin-top: -92px; position: relative; z-index: 2; }
.trust-bar { display: grid; grid-template-columns: repeat(3, 1fr); box-shadow: var(--shadow-md); }
.trust-item { padding: 42px 34px; color: #fff; }
.trust-item i { font-size: 34px; margin-bottom: 18px; }
.trust-item h3 { font-size: 18px; margin-bottom: 8px; }
.trust-item p { color: rgba(255,255,255,0.78); line-height: 1.6; font-size: 14px; }
.trust-item.teal { background: var(--brand-aqua-dark); }
.trust-item.red { background: var(--brand-red); color: #171017; }
.trust-item.red p { color: rgba(23,16,23,0.74); }
.trust-item.gray { background: #eef1f1; color: #263030; }
.trust-item.gray p { color: #667070; }

.section-block { padding: 92px 18px; }
.section-block.compact { padding-top: 20px; }
.section-title { text-align: center; margin-bottom: 42px; }
.section-title h2 { font-size: 34px; color: var(--dark-teal); margin-bottom: 8px; }
.section-title p { color: var(--text-muted); }

.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 26px; }
.product-card { background: #fff; border: 1px solid var(--border-color); transition: 0.25s; overflow: hidden; }
.product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.product-img-wrapper { height: 290px; position: relative; border-bottom: 1px solid #f2f4f4; background: #fff; }
.product-img-wrapper a { display: block; width: 100%; height: 100%; position: relative; }
.product-img-wrapper img { width: 100%; height: 100%; object-fit: contain; position: absolute; inset: 0; padding: 24px; transition: 0.35s ease; }
.img-hover { opacity: 0; }
.product-card:hover .img-main { opacity: 0; }
.product-card:hover .img-hover { opacity: 1; }
.flag {
    position: absolute;
    left: 14px;
    top: 14px;
    z-index: 2;
    background: var(--dark-teal);
    color: #fff;
    padding: 6px 10px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}
.flag.sale { left: auto; right: 14px; background: var(--primary-red); }
.product-info-box { padding: 20px; }
.meta-row { display: flex; justify-content: space-between; gap: 10px; color: #8a9494; font-size: 12px; font-weight: 700; text-transform: uppercase; margin-bottom: 10px; }
.product-card h3 { font-size: 17px; line-height: 1.35; min-height: 46px; color: var(--dark-teal); margin-bottom: 14px; }
.product-card h3 a:hover { color: var(--primary-red); }
.product-price { display: flex; gap: 10px; align-items: baseline; margin-bottom: 15px; }
.product-price span, .pdp-price span { font-size: 21px; font-weight: 900; color: var(--dark-teal); }
.product-price del, .pdp-price del { color: #9aa2a2; font-size: 14px; }
.btn-cart { width: 100%; }

.cat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 18px; }
.cat-item { position: relative; min-height: 240px; overflow: hidden; background: #eef1f1; color: #fff; }
.cat-item img { width: 112%; max-width: none; height: 100%; object-fit: cover; object-position: center; position: absolute; inset: 0 auto 0 -8%; transition: transform 0.45s; }
.cat-item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.72)); }
.cat-item:hover img { transform: scale(1.08); }
.cat-title { position: absolute; left: 18px; right: 18px; bottom: 18px; z-index: 1; font-weight: 800; line-height: 1.22; }

.home-why-section {
    padding: 102px 0 92px;
    background:
        linear-gradient(135deg, rgba(155, 22, 135, 0.035), rgba(255,255,255,0) 34%),
        #f5f5f3;
    color: #171017;
    overflow: hidden;
}

.home-why-inner {
    width: min(calc(100% - 96px), 1540px);
    margin: 0 auto;
}

.home-why-hero {
    min-height: 390px;
    display: grid;
    grid-template-columns: minmax(420px, 0.92fr) minmax(420px, 1.08fr);
    gap: 64px;
    align-items: start;
}

.home-why-copy {
    max-width: 720px;
    padding-top: 16px;
}

.home-why-copy h2 {
    margin: 22px 0 22px;
    color: #171017;
    font-size: clamp(48px, 5vw, 82px);
    font-weight: 850;
    letter-spacing: 0;
    line-height: 1.02;
}

.home-why-rule,
.home-why-mini-rule {
    display: block;
    width: 46px;
    height: 2px;
    background: var(--brand-accent);
}

.home-why-copy p {
    max-width: 540px;
    margin: 24px 0 0;
    color: #3d3740;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.72;
}

.home-why-image {
    width: 100%;
    height: clamp(280px, 32vw, 480px);
    object-fit: cover;
    object-position: center;
    border-radius: 0 0 0 56px;
    filter: saturate(0.95);
}

.home-why-trust {
    margin-top: 34px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid rgba(23,16,23,0.16);
    border-bottom: 1px solid rgba(23,16,23,0.12);
}

.home-why-item {
    min-height: 230px;
    padding: 34px 42px 28px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-left: 1px solid rgba(23,16,23,0.16);
}

.home-why-item:first-child {
    border-left: 0;
}

.home-why-icon {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    color: #171017;
}

.home-why-icon .ui-icon {
    width: 44px;
    height: 44px;
    stroke-width: 1.35;
}

.home-why-item h3 {
    margin: 24px 0 14px;
    color: #171017;
    font-size: 20px;
    font-weight: 750;
    line-height: 1.25;
}

.home-why-mini-rule {
    width: 34px;
    margin-bottom: 20px;
}

.home-why-item p {
    max-width: 250px;
    margin: 0;
    color: #4d4650;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.7;
}

.home-why-cta {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.home-why-link {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    color: #171017;
    border-bottom: 1px solid currentColor;
    padding-bottom: 8px;
    font-size: 13px;
    font-weight: 850;
    letter-spacing: 2.4px;
    line-height: 1.1;
    text-transform: uppercase;
}

.home-why-link:hover {
    color: var(--brand-accent);
}

.home-why-link i {
    color: var(--brand-accent);
}

@media (max-width: 1180px) {
    .home-why-hero {
        grid-template-columns: minmax(0, 1fr);
        gap: 34px;
    }

    .home-why-image {
        height: 360px;
        border-radius: 0 0 0 36px;
    }

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

    .home-why-item:nth-child(odd) {
        border-left: 0;
    }

    .home-why-item:nth-child(n + 3) {
        border-top: 1px solid rgba(23,16,23,0.16);
    }
}

@media (max-width: 640px) {
    .home-why-section {
        padding: 64px 0 58px;
    }

    .home-why-inner {
        width: calc(100% - 32px);
    }

    .home-why-copy h2 {
        font-size: clamp(34px, 10vw, 44px);
    }

    .home-why-copy p {
        font-size: 16px;
    }

    .home-why-image {
        height: 260px;
        border-radius: 0 0 0 24px;
    }

    .home-why-trust {
        grid-template-columns: 1fr;
        margin-top: 26px;
    }

    .home-why-item,
    .home-why-item:nth-child(n) {
        min-height: 0;
        padding: 26px 0;
        border-left: 0;
        border-top: 1px solid rgba(23,16,23,0.16);
    }

    .home-why-item:first-child {
        border-top: 0;
    }

    .home-why-item p {
        max-width: none;
    }

    .home-why-cta {
        justify-content: flex-start;
    }
}

.home-reviews-section {
    padding: 94px 0 104px;
    background:
        radial-gradient(circle at 92% 0%, rgba(155, 22, 135, 0.08), transparent 28%),
        linear-gradient(135deg, #f4f1ec, #fbfaf7);
    color: #171017;
    overflow: hidden;
}

.home-reviews-inner {
    width: min(calc(100% - 96px), 1540px);
    margin: 0 auto;
}

.home-reviews-head {
    max-width: 980px;
}

.home-reviews-head h2 {
    margin: 22px 0 20px;
    color: #171017;
    font-size: clamp(46px, 5.4vw, 84px);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: 0;
}

.home-reviews-summary {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    color: #2e2a31;
    font-size: 17px;
    font-weight: 700;
}

.home-reviews-stars,
.home-review-stars {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--brand-accent);
}

.home-reviews-grid {
    margin-top: 46px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.home-review-card {
    min-height: 360px;
    padding: 38px 38px 32px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(23, 16, 23, 0.08);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.58);
    box-shadow: 0 22px 46px rgba(23, 16, 23, 0.06);
    backdrop-filter: blur(4px);
}

.home-review-quote {
    height: 44px;
    color: var(--brand-accent);
    font-family: Georgia, serif;
    font-size: 58px;
    font-weight: 700;
    line-height: 0.9;
}

.home-review-card p {
    margin: 22px 0 28px;
    color: #3d3740;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.7;
}

.home-review-stars {
    margin-top: auto;
    padding-bottom: 26px;
    border-bottom: 1px solid rgba(23, 16, 23, 0.14);
}

.home-review-author {
    margin-top: 24px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.home-review-author > span {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--brand-accent);
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
}

.home-review-author strong,
.home-review-author small {
    display: block;
}

.home-review-author strong {
    color: #171017;
    font-size: 15px;
    font-weight: 800;
}

.home-review-author small {
    margin-top: 4px;
    color: #5e5661;
    font-size: 13px;
    font-weight: 600;
}

@media (max-width: 980px) {
    .home-reviews-grid {
        grid-template-columns: 1fr;
    }

    .home-review-card {
        min-height: 0;
    }
}

@media (max-width: 640px) {
    .home-reviews-section {
        padding: 64px 0 72px;
    }

    .home-reviews-inner {
        width: calc(100% - 32px);
    }

    .home-reviews-head h2 {
        font-size: clamp(34px, 10vw, 44px);
    }

    .home-reviews-summary {
        gap: 12px;
        font-size: 15px;
    }

    .home-review-card {
        padding: 28px 24px 26px;
        border-radius: 16px;
    }

    .home-review-card p {
        font-size: 15px;
    }
}
.home-education-section {
    padding: 100px 0 160px;
    background: #ffffff;
    position: relative;
}
.education-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 48px;
    width: min(100%, var(--container-width));
    margin: 0 auto;
    align-items: start;
}
/* Stagger columns on desktop */
.education-item:nth-child(2) {
    margin-top: 40px;
}
.education-item:nth-child(3) {
    margin-top: 80px;
}

.education-item {
    display: flex;
    flex-direction: column;
    position: relative;
    padding-bottom: 20px;
}
.education-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 12px;
    border-bottom: 1px solid var(--border-soft);
    padding-bottom: 8px;
}
.education-num {
    font-family: var(--font-heading);
    font-size: 72px;
    font-weight: 900;
    line-height: 0.8;
    color: transparent;
    -webkit-text-stroke: 1.5px color-mix(in srgb, var(--brand-primary) 25%, var(--border-color));
    transition: color 0.3s ease, -webkit-text-stroke 0.3s ease;
}
.education-item:hover .education-num {
    color: var(--brand-primary-soft);
    -webkit-text-stroke-color: var(--brand-primary);
}
.education-badge {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--brand-primary);
    background: var(--brand-primary-soft);
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 4px;
}
.education-body {
    padding-top: 16px;
}
.illust-box {
    position: relative;
    height: 190px;
    margin: 0 0 24px;
    overflow: hidden;
    border: 1px solid var(--border-soft);
    border-radius: 16px;
    background:
        radial-gradient(circle at 18% 18%, color-mix(in srgb, var(--brand-primary) 12%, transparent), transparent 34%),
        linear-gradient(135deg, #fbfcfd 0%, #f3f6f8 100%);
}
.illust-ip {
    display: grid;
    place-items: center;
}
.ip-shield-dome {
    position: absolute;
    top: 34px;
    left: 50%;
    width: 128px;
    height: 78px;
    border: 8px solid color-mix(in srgb, var(--brand-primary) 82%, #fff);
    border-bottom: 0;
    border-radius: 80px 80px 0 0;
    transform: translateX(-50%);
    box-shadow: 0 16px 30px rgba(167, 19, 132, 0.12);
    z-index: 2;
}
.ip-device-core {
    position: relative;
    z-index: 1;
    width: 76px;
    height: 86px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border-soft);
    border-radius: 18px;
    background: #fff;
    color: var(--brand-ink);
    font-size: 34px;
    box-shadow: 0 20px 36px rgba(17, 16, 23, 0.08);
    transition: color 0.25s ease, box-shadow 0.25s ease;
}
.education-item:hover .ip-device-core {
    color: var(--brand-primary);
    box-shadow: 0 20px 46px rgba(167, 19, 132, 0.18);
}
.ip-drops .drop {
    position: absolute;
    top: 24px;
    width: 8px;
    height: 14px;
    border-radius: 999px 999px 999px 0;
    background: #41b5ff;
    opacity: 0;
    transform: rotate(45deg) translateY(-14px);
}
.ip-drops .d1 { left: 23%; animation-delay: 0s; }
.ip-drops .d2 { left: 38%; animation-delay: .2s; }
.ip-drops .d3 { right: 36%; animation-delay: .36s; }
.ip-drops .d4 { right: 22%; animation-delay: .54s; }
.education-item:hover .ip-drops .drop {
    animation: ipRain 1.1s ease-in-out infinite;
}
.ip-status-badge {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    padding: 7px 11px;
    border-radius: 999px;
    background: var(--brand-ink);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
}
.illust-cable {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
}
.cable-cross {
    display: grid;
    gap: 12px;
    justify-items: center;
}
.cable-sheath {
    position: relative;
    width: 82px;
    height: 82px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #f5f7f8;
    border: 9px solid #d8dde2;
    box-shadow: inset 0 0 0 1px #bfc7ce, 0 16px 30px rgba(17, 16, 23, 0.08);
}
.c25 .cable-sheath {
    width: 104px;
    height: 104px;
}
.cable-copper {
    position: relative;
    width: 42px;
    height: 42px;
    overflow: hidden;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #ffd39a, #c8731f 70%);
}
.c25 .cable-copper {
    width: 58px;
    height: 58px;
}
.electron-flow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle, rgba(255,255,255,.95) 0 2px, transparent 3px) 0 50% / 18px 18px,
        radial-gradient(circle, rgba(255,255,255,.75) 0 1px, transparent 3px) 9px 30% / 18px 18px;
    opacity: 0;
}
.education-item:hover .electron-flow {
    opacity: 1;
    animation: electronFlow .55s linear infinite;
}
.cable-label,
.side-tag {
    color: var(--text-soft);
    font-size: 12px;
    font-weight: 800;
}
.illust-relay {
    display: grid;
    grid-template-columns: 1fr 12px 1fr;
    gap: 16px;
    align-items: stretch;
    padding: 20px;
}
.relay-circuit {
    position: relative;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 18px;
    border: 1px dashed color-mix(in srgb, var(--brand-primary) 26%, var(--border-soft));
    border-radius: 14px;
    background: rgba(255,255,255,0.72);
}
.isolation-barrier {
    align-self: stretch;
    border-radius: 999px;
    background: repeating-linear-gradient(180deg, var(--brand-primary) 0 8px, transparent 8px 15px);
    opacity: .34;
}
.coil-symbol {
    width: 74px;
    height: 30px;
    border-radius: 999px;
    background: repeating-linear-gradient(90deg, transparent 0 8px, var(--brand-primary) 8px 11px);
}
.relay-contact {
    position: relative;
    width: 82px;
    height: 48px;
}
.terminal {
    position: absolute;
    bottom: 9px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--brand-ink);
}
.terminal.t1 { left: 8px; }
.terminal.t2 { right: 8px; }
.contact-arm {
    position: absolute;
    left: 17px;
    bottom: 15px;
    width: 54px;
    height: 4px;
    border-radius: 999px;
    background: var(--brand-primary);
    transform-origin: 0 50%;
    transform: rotate(-24deg);
    transition: transform 0.25s ease;
}
.education-item:hover .contact-arm {
    transform: rotate(0deg);
}
.load-lamp {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    color: #8a8f8e;
    box-shadow: inset 0 0 0 1px var(--border-soft);
    transition: color 0.25s ease, box-shadow 0.25s ease;
}
.education-item:hover .load-lamp {
    color: var(--brand-secondary-strong);
    box-shadow: 0 0 28px rgba(244,197,66,.62), inset 0 0 0 1px rgba(244,197,66,.72);
}
.education-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}
.education-icon {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--surface-soft);
    color: var(--brand-ink);
    font-size: 18px;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
    border: 1px solid var(--border-soft);
}
.education-item:hover .education-icon {
    background: var(--brand-primary);
    color: #ffffff;
    border-color: var(--brand-primary);
    transform: rotate(10deg) scale(1.05);
}
.education-item h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--brand-ink);
    line-height: 1.25;
    flex: 1;
}
.education-item p {
    color: var(--text-soft);
    line-height: 1.8;
    font-size: 14.5px;
    margin-bottom: 24px;
}
.education-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    color: var(--brand-ink);
    position: relative;
    padding-bottom: 4px;
}
.education-action span {
    position: relative;
}
.education-action span::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand-primary);
    transition: width 0.3s ease;
}
.education-item:hover .education-action span::after {
    width: 100%;
}
.education-action i {
    font-size: 11px;
    transition: transform 0.25s ease;
}
.education-item:hover .education-action i {
    transform: translateX(6px);
    color: var(--brand-primary);
}

@media (max-width: 860px) {
    .home-education-section {
        padding: 80px 0;
    }
    .education-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 18px;
    }
    .education-item:nth-child(2),
    .education-item:nth-child(3) {
        margin-top: 0;
    }
    .education-num {
        font-size: 58px;
    }
    .illust-box {
        height: 170px;
    }
    .illust-cable {
        gap: 18px;
    }
    .illust-relay {
        gap: 10px;
        padding: 14px;
    }
}

@keyframes ipRain {
    0% { opacity: 0; transform: rotate(45deg) translateY(-14px); }
    28% { opacity: 1; }
    68% { opacity: 1; transform: rotate(45deg) translateY(58px); }
    100% { opacity: 0; transform: rotate(45deg) translateY(76px) scaleX(1.6); }
}

@keyframes electronFlow {
    from { background-position: 0 50%, 9px 30%; }
    to { background-position: 18px 50%, 27px 30%; }
}

/* Calmer, technical homepage education cards */
.education-grid {
    align-items: stretch;
    gap: 28px;
}
.education-item,
.education-item:nth-child(2),
.education-item:nth-child(3) {
    margin-top: 0;
}
.education-item {
    height: 100%;
    padding: 0;
    border: 1px solid var(--filter-border);
    border-radius: var(--radius-sm);
    background: #fff;
    overflow: hidden;
}
.education-meta {
    margin: 0;
    padding: 18px 20px 0;
    border-bottom: 0;
    justify-content: flex-start;
}
.education-num {
    display: none;
}
.education-badge {
    margin: 0;
    border-radius: 0;
    background: var(--surface-soft);
    color: var(--filter-muted);
    font-family: var(--font-main);
    font-size: 11px;
    letter-spacing: .08em;
}
.education-body {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    padding: 16px 20px 22px;
}
.illust-box {
    height: 172px;
    margin-bottom: 22px;
    border-radius: var(--radius-sm);
    background: linear-gradient(180deg, #f8fafc 0%, #f1f4f6 100%);
}
.education-header {
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}
.education-icon {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    color: var(--brand-primary);
    background: #fff;
}
.education-item:hover .education-icon {
    transform: none;
}
.education-item h3 {
    font-size: 18px;
}
.education-item p {
    margin-bottom: 22px;
    color: var(--filter-muted);
}
.education-action {
    margin-top: auto;
}

@media (max-width: 860px) {
    .education-grid {
        gap: 22px;
    }
    .education-body {
        padding: 14px 18px 20px;
    }
    .illust-box {
        height: 158px;
    }
}

.news-section { background: #f8fafa; padding: 92px 0; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.blog-card { background: #fff; border: 1px solid var(--border-color); transition: 0.25s; display: flex; flex-direction: column; min-height: 100%; }
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.blog-card img { height: 240px; width: 100%; object-fit: cover; }
.blog-card div { padding: 26px; display: flex; flex: 1; flex-direction: column; }
.blog-card span { color: var(--primary-red); font-weight: 800; font-size: 12px; text-transform: uppercase; }
.blog-card h3 { margin: 12px 0; color: var(--dark-teal); }
.blog-card p { color: var(--text-muted); line-height: 1.7; font-size: 14px; margin-bottom: 18px; }
.blog-card a { color: var(--dark-teal); font-weight: 800; font-size: 13px; text-transform: uppercase; margin-top: auto; }
.blog-card a:hover { color: var(--primary-red); }
.section-cta { display: flex; justify-content: center; margin-top: 34px; }
.home-faq-section {
    padding: 104px 0;
    scroll-margin-top: 120px;
    background: linear-gradient(180deg, #f8f7f8 0%, #fff 100%);
}
.home-faq-layout {
    display: grid;
    grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
    gap: clamp(36px, 5vw, 78px);
    align-items: start;
}
.home-faq-intro {
    position: sticky;
    top: 120px;
    display: grid;
    gap: 32px;
}
.home-faq-copy h2 {
    max-width: 560px;
    color: var(--dark-teal);
    font-size: clamp(36px, 3.45vw, 52px);
    line-height: 1.04;
    margin: 0 0 18px;
}
.home-faq-copy p {
    max-width: 520px;
    color: var(--text-muted);
    line-height: 1.72;
    margin: 18px 0 0;
    font-size: 16px;
}
.home-faq-copy .section-title-rule {
    display: block;
    width: 48px;
    height: 3px;
    background: var(--brand-primary);
    border-radius: 999px;
}
.home-faq-media {
    width: min(100%, 420px);
    height: clamp(220px, 22vw, 320px);
    justify-self: start;
    min-height: 0;
    margin: 0;
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--border-color) 80%, transparent);
    border-radius: var(--radius-sm);
    background: var(--surface-soft);
    box-shadow: 0 24px 60px rgba(14, 10, 18, 0.09);
}
.home-faq-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
}
.home-faq-panel {
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--border-color) 85%, transparent);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 24px 70px rgba(17, 12, 20, 0.08);
}
.faq-list {
    display: grid;
}
.faq-list details {
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--border-color);
    transition: background 0.2s;
}
.faq-list details[open] {
    background: rgba(255, 255, 255, 0.72);
}
.faq-list summary {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    list-style: none;
    min-height: 78px;
    cursor: pointer;
    color: var(--dark-teal);
    font-weight: 850;
    padding: 22px 64px 22px 28px;
    position: relative;
}
.faq-list summary span {
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 850;
    letter-spacing: 0;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
    content: '+';
    position: absolute;
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--brand-primary);
    font-size: 24px;
    font-weight: 400;
    line-height: 1;
}
.faq-list details[open] summary::after { content: '-'; }
.faq-list p {
    color: var(--text-muted);
    line-height: 1.75;
    padding: 0 64px 28px 90px;
    font-size: 15px;
}
.home-faq-support {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    padding: 26px 28px;
    background: color-mix(in srgb, var(--brand-primary) 8%, #fff);
}
.home-faq-support-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    color: var(--brand-primary);
    border-radius: 999px;
    background: #fff;
}
.home-faq-support strong {
    display: block;
    color: var(--dark-teal);
    font-size: 18px;
    margin-bottom: 5px;
}
.home-faq-support p {
    max-width: 520px;
    margin: 0;
    color: var(--text-muted);
    line-height: 1.55;
    font-size: 14px;
}
.home-faq-support .btn {
    min-height: 50px;
    white-space: nowrap;
}
.newsletter-section {
    padding: 72px 0 104px;
    scroll-margin-top: 120px;
    background: #fff;
}
.newsletter-panel {
    min-height: 520px;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
    align-items: stretch;
    gap: clamp(24px, 4vw, 62px);
    overflow: hidden;
    padding: clamp(36px, 5vw, 72px);
    position: relative;
    border: 1px solid color-mix(in srgb, var(--border-color) 88%, transparent);
    border-radius: var(--radius-sm);
    background:
        linear-gradient(115deg, rgba(255,255,255,0.96) 0 47%, color-mix(in srgb, var(--brand-primary) 4%, #f7f9fc) 47% 100%);
    box-shadow: 0 28px 78px rgba(11, 14, 28, 0.08);
}
.newsletter-panel::before,
.newsletter-panel::after {
    content: '';
    position: absolute;
    pointer-events: none;
}
.newsletter-panel::before {
    width: min(42vw, 620px);
    height: min(42vw, 620px);
    right: 6%;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    border: 1px solid color-mix(in srgb, var(--brand-primary) 12%, transparent);
    background: color-mix(in srgb, var(--brand-primary) 5%, transparent);
}
.newsletter-panel::after {
    width: 210px;
    height: 100%;
    right: -40px;
    top: 0;
    transform: skewX(-18deg);
    background: color-mix(in srgb, var(--brand-primary) 6%, transparent);
}
.newsletter-copy,
.newsletter-media {
    position: relative;
    z-index: 1;
}
.newsletter-copy {
    align-self: center;
    max-width: 620px;
}
.newsletter-copy h2 {
    color: var(--dark-teal);
    font-size: clamp(42px, 4.8vw, 72px);
    line-height: 1.04;
    margin: 0 0 18px;
}
.newsletter-copy h2 span {
    color: var(--brand-primary);
}
.newsletter-copy > p {
    max-width: 560px;
    color: var(--text-muted);
    line-height: 1.68;
    font-size: 18px;
    margin: 0 0 28px;
}
.newsletter-form {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) auto;
    gap: 12px;
    max-width: 660px;
    margin-bottom: 34px;
}
.newsletter-field {
    min-width: 0;
    min-height: 62px;
    display: grid;
    grid-template-columns: 26px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    padding: 0 22px;
    border: 1px solid color-mix(in srgb, var(--border-color) 85%, var(--brand-primary));
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.82);
    color: var(--brand-primary);
}
.newsletter-field input {
    width: 100%;
    min-width: 0;
    min-height: 58px;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--dark-teal);
    font-size: 16px;
}
.newsletter-field input::placeholder {
    color: #7e8799;
}
.newsletter-form .btn {
    min-height: 62px;
    min-width: 170px;
    gap: 12px;
    border-radius: var(--radius-sm);
}
.newsletter-form p {
    grid-column: 1 / -1;
    color: var(--accent-success);
    font-weight: 850;
    font-size: 13px;
    margin: 0;
}
.newsletter-benefits {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    max-width: 760px;
}
.newsletter-benefits article {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    padding: 0 24px;
    border-right: 1px solid var(--border-color);
}
.newsletter-benefits article:first-child {
    padding-left: 0;
}
.newsletter-benefits article:last-child {
    padding-right: 0;
    border-right: 0;
}
.newsletter-benefits i {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-primary);
    font-size: 24px;
}
.newsletter-benefits strong {
    display: block;
    color: var(--dark-teal);
    font-size: 15px;
    line-height: 1.25;
    margin-bottom: 6px;
}
.newsletter-benefits span {
    display: block;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.45;
}
.newsletter-media {
    min-height: 390px;
    align-self: stretch;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.newsletter-media img {
    width: min(100%, 720px);
    height: 100%;
    object-fit: cover;
    object-position: center right;
    mix-blend-mode: multiply;
}
.editorial-hero {
    background: #071315;
    color: #fff;
    display: grid;
    grid-template-columns: minmax(360px, 0.88fr) minmax(0, 1.12fr);
    min-height: 430px;
    height: 430px;
    margin-bottom: 42px;
    overflow: hidden;
    position: relative;
    isolation: isolate;
}
.editorial-hero > div {
    position: relative;
    z-index: 2;
    padding: 58px 54px;
    align-self: stretch;
    background: #071315;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.editorial-hero > div::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: -44vw;
    width: 44vw;
    min-width: 520px;
    background: linear-gradient(90deg, #071315 0%, rgba(7,19,21,0.98) 20%, rgba(7,19,21,0.76) 48%, rgba(7,19,21,0.34) 74%, rgba(7,19,21,0) 100%);
    pointer-events: none;
}
.editorial-hero h1 { font-size: 54px; line-height: 1.05; max-width: 680px; margin: 14px 0 20px; }
.editorial-hero p { color: #d4dfdf; line-height: 1.75; max-width: 560px; }
.editorial-hero img { width: 100%; height: 100%; object-fit: cover; object-position: center right; }
.featured-post {
    display: grid;
    grid-template-columns: 0.95fr 1fr;
    gap: 34px;
    align-items: center;
    background: #f8fafa;
    border: 1px solid var(--border-color);
    margin-bottom: 34px;
}
.featured-post img { width: 100%; height: 430px; object-fit: cover; }
.featured-post div { padding: 34px 42px 34px 0; }
.featured-post span { color: var(--primary-red); font-weight: 800; font-size: 12px; text-transform: uppercase; }
.featured-post h2 { color: var(--dark-teal); font-size: 38px; line-height: 1.15; margin: 12px 0 16px; }
.featured-post p { color: var(--text-muted); line-height: 1.75; margin-bottom: 24px; }
.news-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px; }
.post-layout { max-width: 980px; margin: 0 auto; }
.post-hero { text-align: center; }
.post-hero h1 { color: var(--dark-teal); font-size: 58px; line-height: 1.05; margin: 14px auto 18px; max-width: 850px; }
.post-hero p { color: var(--text-muted); line-height: 1.75; font-size: 18px; max-width: 780px; margin: 0 auto 34px; }
.post-hero img { width: 100%; height: 520px; object-fit: cover; }
.post-body { max-width: 760px; margin: 44px auto 0; color: #344; }
.post-body p { color: var(--text-muted); line-height: 1.9; margin-bottom: 22px; font-size: 16px; }
.post-body h2 { color: var(--dark-teal); font-size: 30px; margin: 36px 0 14px; }
.post-callout { border-left: 5px solid var(--primary-red); background: var(--brand-aqua-soft); padding: 24px 28px; color: var(--dark-teal); font-weight: 800; line-height: 1.65; margin: 34px 0; }
.post-footer-nav { display: flex; justify-content: center; gap: 14px; margin-top: 40px; flex-wrap: wrap; }
.about-shell { margin-top: 132px; }
.about-shell > .editorial-hero { max-width: var(--container-width); margin-left: auto; margin-right: auto; }
.about-hero {
    height: 520px;
    min-height: 520px;
    padding: 0;
}
.about-hero h1 { font-size: 54px; line-height: 1.04; max-width: 780px; margin: 16px 0 22px; }
.about-hero p { color: #d7e1e1; max-width: 680px; line-height: 1.8; font-size: 18px; }
.about-intro {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 72px;
    padding: 84px 18px;
    align-items: start;
}
.about-intro h2, .about-split h2, .about-cta h2 { color: var(--dark-teal); font-size: 42px; line-height: 1.12; margin-top: 12px; }
.about-intro p, .about-split p { color: var(--text-muted); line-height: 1.9; font-size: 16px; }
.about-split { display: grid; grid-template-columns: 1fr 0.9fr; gap: 54px; align-items: center; padding-bottom: 84px; }
.about-split img { width: 100%; min-height: 480px; object-fit: cover; }
.about-split p { margin-top: 18px; }
.about-values { background: #f8fafa; padding: 84px 0; }
.value-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.value-grid article { background: #fff; border: 1px solid var(--border-color); padding: 30px; min-height: 250px; }
.value-grid i { width: 48px; height: 48px; display: grid; place-items: center; background: color-mix(in srgb, var(--brand-primary) 10%, transparent); color: var(--primary-red); margin-bottom: 22px; }
.value-grid h3 { color: var(--dark-teal); margin-bottom: 12px; font-size: 22px; }
.value-grid p { color: var(--text-muted); line-height: 1.75; }
.about-cta { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: 78px 18px; }
.about-cta h2 { max-width: 680px; }

.page-shell {
    width: min(95%, var(--container-width));
    max-width: var(--container-width);
    margin: 132px auto 90px;
    padding-left: 0;
    padding-right: 0;
}
.page-heading { background: #f5f7f7; padding: 46px; margin-bottom: 34px; border-left: 5px solid var(--primary-red); }
.page-heading h1 { font-size: 44px; color: var(--dark-teal); margin: 8px 0; }
.page-heading p { color: var(--text-muted); max-width: 680px; line-height: 1.7; }
.catalog-hero {
    background: #071315;
    color: #fff;
    min-height: 380px;
    height: 380px;
    padding: 0;
    margin-bottom: 42px;
    border-left: 0;
    display: grid;
    grid-template-columns: minmax(360px, 0.88fr) minmax(0, 1.12fr);
    overflow: hidden;
    position: relative;
    isolation: isolate;
}
.category-hero-copy {
    position: relative;
    z-index: 2;
    align-self: stretch;
    padding: 58px 54px;
    background: #071315;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.category-hero-copy::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: -44vw;
    width: 44vw;
    min-width: 520px;
    background: linear-gradient(90deg, #071315 0%, rgba(7,19,21,0.98) 20%, rgba(7,19,21,0.76) 48%, rgba(7,19,21,0.34) 74%, rgba(7,19,21,0) 100%);
    pointer-events: none;
}
.catalog-hero h1 { font-size: 52px; color: #fff; line-height: 1.06; margin: 10px 0 18px; }
.catalog-hero p { color: #d4dfdf; line-height: 1.75; max-width: 610px; }
.category-hero-media { position: relative; min-height: 0; height: 100%; background: #071315; }
.category-hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center right; display: block; }
.plp-container { display: grid; grid-template-columns: 290px 1fr; gap: 34px; align-items: start; }
.plp-sidebar { position: static; border: 1px solid var(--border-color); padding: 24px; background: #fff; }
.sidebar-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.sidebar-head h2 { font-size: 20px; color: var(--dark-teal); }
.sidebar-head button { border: 0; background: transparent; color: var(--primary-red); font-weight: 800; }
.filter-field { display: grid; gap: 8px; margin-bottom: 18px; font-size: 13px; font-weight: 800; color: #344; text-transform: uppercase; }
.filter-field span { color: var(--primary-red); float: right; }
.filter-field input, .filter-field select, .listing-toolbar select {
    width: 100%;
    border: 1px solid var(--border-color);
    min-height: 44px;
    padding: 0 12px;
    color: #263030;
    background: #fff;
}
.filter-field input[type="range"] { padding: 0; accent-color: var(--primary-red); }
.check-field { display: flex; align-items: center; gap: 10px; font-weight: 700; color: #344; }
.check-field input { accent-color: var(--primary-red); }
.listing-toolbar { display: flex; justify-content: space-between; align-items: end; gap: 20px; margin-bottom: 24px; border-bottom: 1px solid var(--border-color); padding-bottom: 18px; }
.listing-toolbar h2 { color: var(--dark-teal); font-size: 28px; }
.listing-toolbar p { color: var(--text-muted); }
.listing-toolbar label { min-width: 220px; display: grid; gap: 7px; color: #344; font-weight: 800; font-size: 12px; text-transform: uppercase; }
.filter-drawer-toggle { display: none; }
.catalog-grid { grid-template-columns: repeat(auto-fill, minmax(235px, 1fr)); }
.empty-state { padding: 36px; background: #f8fafa; color: var(--text-muted); margin-bottom: 20px; text-align: center; }

.breadcrumb { color: var(--text-muted); margin-bottom: 28px; font-size: 14px; }
.breadcrumb a { color: var(--dark-teal); font-weight: 700; }
.pdp-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(380px, 0.82fr); gap: 58px; align-items: start; }
.pdp-main-img { position: relative; border: 1px solid var(--border-color); background: #fff; min-height: 560px; display: grid; place-items: center; overflow: hidden; }
.pdp-main-img img { width: 100%; height: 100%; max-height: 560px; object-fit: contain; padding: 40px; }
.pdp-gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: 1px solid var(--border-color);
    background: rgba(255,255,255,0.92);
    color: var(--dark-teal);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease, background 0.22s ease;
    box-shadow: var(--shadow-sm);
}
.pdp-gallery-arrow.prev { left: 18px; }
.pdp-gallery-arrow.next { right: 18px; }
.pdp-main-img:hover .pdp-gallery-arrow,
.pdp-main-img:focus-within .pdp-gallery-arrow {
    opacity: 1;
    pointer-events: auto;
}
.pdp-gallery-arrow:hover { background: var(--dark-teal); color: #fff; }
.pdp-thumbs { display: flex; gap: 14px; margin-top: 16px; }
.pdp-thumbs button { width: 104px; height: 104px; border: 1px solid var(--border-color); background: #fff; padding: 10px; }
.pdp-thumbs button.active { border-color: var(--primary-red); box-shadow: 0 0 0 2px color-mix(in srgb, var(--brand-primary) 18%, transparent); }
.pdp-thumbs img { width: 100%; height: 100%; object-fit: contain; }
.pdp-info h1 { font-size: 38px; line-height: 1.15; color: var(--dark-teal); margin: 0 0 10px; }
.pdp-sku-line {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.pdp-sku-line b { color: var(--dark-teal); }
.pdp-copy { color: var(--text-muted); line-height: 1.75; margin: 0 0 14px; max-width: 620px; }
.pdp-stock {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-success);
    font-weight: 800;
    font-size: 13px;
    margin-bottom: 18px;
}
.pdp-stock span {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: var(--accent-success);
    box-shadow: 0 0 0 4px rgba(23,107,54,0.12);
}
.pdp-attributes {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin: 18px 0 22px;
}
.pdp-attribute {
    display: grid;
    grid-template-columns: minmax(96px, 0.45fr) minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    padding: 10px 0;
    background: var(--surface-soft);
    border-bottom: 1px solid var(--border-soft);
    background: transparent;
}
.pdp-attribute small {
    color: var(--text-faint);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}
.pdp-attribute strong {
    color: var(--dark-teal);
    font-size: 13px;
    line-height: 1.35;
    font-weight: 800;
}
.option-group { margin-bottom: 22px; }
.option-label { display: block; font-weight: 800; margin-bottom: 10px; color: #344; }
.swatches, .size-row { display: flex; flex-wrap: wrap; gap: 10px; }
.swatch { width: 32px; height: 32px; border-radius: 50%; border: 2px solid #fff; background: var(--swatch); box-shadow: 0 0 0 1px #ccd2d2; }
.swatch.active { box-shadow: 0 0 0 2px var(--primary-red); }
.size-box { min-width: 46px; height: 42px; border: 1px solid var(--border-color); background: #fff; font-weight: 800; }
.size-box:hover, .size-box.active { background: var(--dark-teal); color: #fff; border-color: var(--dark-teal); }
.pdp-price {
    display: grid;
    gap: 7px;
    margin: 0 0 22px;
}
.pdp-price-line {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: baseline;
}
.pdp-price .pdp-price-current {
    color: var(--dark-teal);
    font-size: 38px;
    font-weight: 900;
    line-height: 1;
}
.pdp-price-tax {
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
}
.pdp-lowest-price {
    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.45;
    font-weight: 650;
}
.stock-line { color: var(--text-muted); font-size: 14px; margin-bottom: 22px; }
.pdp-info .buy-row { display: grid; grid-template-columns: 128px minmax(150px, 1fr) minmax(118px, 0.7fr); gap: 14px; align-items: center; margin-bottom: 18px; }
.qty-input { display: flex; border: 1px solid var(--border-color); height: 48px; border-radius: var(--radius-sm); overflow: hidden; background: #fff; }
.qty-btn { border: 0; background: #fff; width: 42px; color: var(--brand-primary); font-size: 18px; font-weight: 900; }
.qty-input input { width: 44px; border: 0; text-align: center; font-weight: 700; color: var(--dark-teal); }
.pdp-cart-btn,
.pdp-buy-now {
    min-height: 48px;
    justify-content: center;
    border-radius: var(--radius-sm);
    font-size: 12px;
}

.pdp-cart-btn .header-icon-svg {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    stroke-width: 1.65;
}

.pdp-buy-now {
    border: 1px solid color-mix(in srgb, var(--cta-primary-bg) 28%, var(--border-soft));
    background: color-mix(in srgb, var(--cta-primary-bg) 10%, #ffffff);
    color: var(--cta-primary-bg);
}
.pdp-buy-now:hover {
    border-color: color-mix(in srgb, var(--cta-primary-bg) 46%, var(--border-soft));
    background: color-mix(in srgb, var(--cta-primary-bg) 16%, #ffffff);
    color: var(--cta-primary-hover-bg);
}
.mini-actions { display: flex; flex-wrap: wrap; gap: 24px; color: var(--text-muted); font-size: 13px; font-weight: 800; margin-bottom: 24px; }
.mini-actions a,
.mini-actions button {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    padding: 0;
    cursor: pointer;
}
.mini-actions i { font-size: 21px; color: var(--text-muted); }
.mini-actions .active,
.mini-actions .active i { color: var(--brand-primary); }
.product-taxonomy {
    border-top: 1px solid var(--border-color);
    padding-top: 18px;
    color: var(--text-muted);
    line-height: 1.9;
    font-size: 13px;
}
.pdp-trust-list { margin: 22px 0; display: grid; gap: 13px; color: var(--text-muted); font-size: 13px; }
.pdp-trust-list span { display: inline-flex; align-items: center; gap: 12px; }
.pdp-trust-list i { width: 21px; color: #7b8aa0; font-size: 19px; text-align: center; }
.payment-box {
    margin-top: 22px;
    background: var(--surface-muted);
    min-height: 94px;
    display: grid;
    place-items: center;
    gap: 14px;
    padding: 18px;
    color: var(--text-muted);
    font-weight: 900;
    font-size: 12px;
    text-transform: uppercase;
}
.payment-icons { display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; }
.payment-icons img {
    width: 48px;
    height: 28px;
    object-fit: contain;
    padding: 5px 7px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xs);
    background: #fff;
}
.payment-image { max-height: 34px; width: auto; }
.tabs-container { margin-top: 78px; border-top: 1px solid var(--border-color); }
.tabs-nav { display: flex; gap: 48px; border-bottom: 1px solid var(--border-color); }
.tab-link { padding: 22px 0; border: 0; background: transparent; font-weight: 800; color: #8a9494; text-transform: uppercase; position: relative; }
.tab-link.active { color: var(--dark-teal); }
.tab-link.active::after { content: ''; position: absolute; left: 0; right: 0; bottom: -1px; height: 3px; background: var(--primary-red); }
.tab-content { display: none; padding: 34px 0; color: var(--text-muted); line-height: 1.8; }
.tab-content.active { display: block; }
.pdp-description {
    display: grid;
    gap: 18px;
    max-width: 980px;
}
.spec-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 24px; }
.spec-list div { display: grid; grid-template-columns: 130px 1fr; gap: 14px; border-bottom: 1px solid #eef1f1; padding-bottom: 10px; }
.spec-list dt { color: var(--dark-teal); font-weight: 800; }
.related-section { margin-top: 72px; }

.plp-sidebar {
    padding-right: 20px;
}
.sidebar-block {
    margin-bottom: 28px;
}
.sidebar-block h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-teal);
    margin-bottom: 25px;
    border: none;
    padding: 0;
    text-transform: none;
}
.filter-section-toggle {
    width: 100%;
    min-height: 42px;
    border: 0;
    border-bottom: 1px solid var(--border-color);
    background: transparent;
    color: var(--dark-teal);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 0 0 14px;
    font-size: 20px;
    font-weight: 800;
    text-align: left;
}
.filter-section-toggle i {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    font-size: 12px;
    transition: transform 0.22s ease;
}
.filter-section.is-collapsed .filter-section-toggle i {
    transform: rotate(-90deg);
}
.filter-section-body {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.28s ease, opacity 0.2s ease;
    will-change: max-height;
}
.filter-section:not(.is-collapsed) .filter-section-body {
    opacity: 1;
}
.filter-section-body > *:first-child {
    margin-top: 18px;
}

/* Category List */
.filter-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.filter-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    color: #4a5568;
    cursor: pointer;
    transition: 0.2s;
}
.filter-list li:hover { color: var(--primary-red); }
.filter-list button {
    width: 100%;
    border: 0;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: inherit;
    font-weight: 600;
    line-height: 1.35;
    min-height: 40px;
    padding: 8px 10px;
    text-align: left;
}
.category-filter-group {
    display: block !important;
    color: #4a5568;
}
.category-filter-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 36px;
    align-items: center;
    gap: 4px;
}
.category-filter-row > [data-filter-button="category"] {
    min-width: 0;
}
.category-subtoggle {
    width: 36px !important;
    min-width: 36px;
    min-height: 36px !important;
    padding: 0 !important;
    justify-content: center !important;
    color: var(--primary-red) !important;
    border-radius: 999px !important;
}
.category-subtoggle i {
    font-size: 11px;
    transition: transform 0.2s ease;
}
.category-filter-group.is-open .category-subtoggle i {
    transform: rotate(180deg);
}
.category-sublist {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    gap: 4px;
    padding-left: 13px;
    margin-left: 12px;
    border-left: 2px solid color-mix(in srgb, var(--brand-primary) 14%, transparent);
    transition: max-height 0.24s ease, opacity 0.18s ease, margin-top 0.2s ease;
}
.category-filter-group.is-open .category-sublist {
    max-height: 320px;
    opacity: 1;
    margin-top: 4px;
    margin-bottom: 4px;
}
.category-sublist li {
    display: block;
    font-size: 14px;
}
.category-sublist button {
    min-height: 34px;
    padding: 7px 8px;
    font-weight: 600;
}
.accessory-filter {
    display: none;
    border-top: 1px solid var(--border-color);
    padding-top: 22px;
    margin-top: -10px;
}
.accessory-filter.is-active {
    display: block;
}
.accessory-filter[hidden] { display: none !important; }
.accessory-filter-list { gap: 6px; }
.accessory-filter-list button {
    min-height: 36px;
    padding-left: 14px;
}
.filter-list button.active {
    color: var(--primary-red);
    background: rgba(32,199,178,0.1);
}
.filter-count {
    min-width: 28px;
    height: 22px;
    padding: 0 7px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #eef2f2;
    color: #6f7777;
    font-size: 12px;
    font-weight: 800;
}
.filter-list button.active .filter-count {
    background: var(--primary-red);
    color: #fff;
}

/* Size Checkboxes */
.size-filter li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}
.size-filter label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 15px;
    color: #4a5568;
}
.size-filter input[type="checkbox"],
.size-filter input[type="radio"] {
    width: 18px;
    height: 18px;
    border: 1px solid #cbd5e0;
    cursor: pointer;
    accent-color: var(--primary-red);
}
.count { color: #2d3748; font-weight: 500; }

/* Color Filter */
.color-filter li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    cursor: pointer;
}
.color-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #4a5568;
    cursor: pointer;
}
.color-item input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.color-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid rgba(13,42,45,0.18);
}
.color-dot-all { background: var(--color-swatch-all); }

/* Price Slider */
.price-range-display {
    font-size: 15px;
    color: #4a5568;
    margin-bottom: 20px;
}
.price-input-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 14px;
}
.price-input-grid label {
    display: grid;
    gap: 7px;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}
.price-input-grid input {
    width: 100%;
    border: 1px solid var(--border-color);
    min-height: 40px;
    padding: 0 10px;
    color: var(--dark-teal);
}
.price-range-sliders {
    position: relative;
    min-height: 34px;
    margin-top: 10px;
}
.price-range-input {
    width: 100%;
    height: 34px;
    margin: 0;
    position: absolute;
    inset: 0;
    background: transparent;
    pointer-events: none;
    appearance: none;
    -webkit-appearance: none;
    z-index: 2;
}
.price-range-input::-webkit-slider-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 0;
    background: var(--primary-red);
    cursor: pointer;
    pointer-events: auto;
    appearance: none;
    -webkit-appearance: none;
}
.price-range-input::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 0;
    background: var(--primary-red);
    cursor: pointer;
    pointer-events: auto;
}
.price-range-input::-webkit-slider-runnable-track { background: transparent; }
.price-range-input::-moz-range-track { background: transparent; }
.price-slider-track {
    height: 4px;
    background: linear-gradient(to right, #edf2f7 0 var(--price-min, 0%), var(--primary-red) var(--price-min, 0%) var(--price-max, 100%), #edf2f7 var(--price-max, 100%) 100%);
    position: absolute;
    left: 9px;
    right: 9px;
    top: 15px;
    z-index: 1;
}
.price-slider-handle {
    display: none;
    width: 18px;
    height: 18px;
    background: var(--primary-red);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}
.handle-left { left: 0%; }
.handle-right { left: 100%; }
.clear-filter-btn { width: 100%; }

/* Global Header Consistency Fix (Redundant Check) */
.header-container { display: flex; align-items: center; width: 100%; }

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(480px, 100vw);
    height: 100vh;
    background: var(--surface-card);
    z-index: 2000;
    clip-path: inset(0 0 0 100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: none;
    transition: clip-path 0.28s ease, opacity 0.2s ease, visibility 0s linear 0.28s;
    box-shadow: -24px 0 60px rgba(7, 23, 51, 0.16);
    display: flex;
    flex-direction: column;
    border-left: 1px solid var(--border-color);
    overflow: hidden;
}
.cart-drawer.open {
    clip-path: inset(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: clip-path 0.28s ease, opacity 0.2s ease;
}
.cart-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 24px 28px 20px;
    background: var(--surface-card);
    color: var(--brand-ink);
    border-bottom: 1px solid var(--border-color);
}
.cart-head h2 {
    color: var(--brand-ink);
    font-size: 22px;
    font-weight: 850;
    line-height: 1.1;
}
.cart-head button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: var(--surface-card-muted);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: var(--brand-ink);
    font-size: 18px;
    transition: background 0.2s ease, color 0.2s ease;
}
.cart-head button:hover {
    background: var(--brand-primary);
    color: #fff;
}
.cart-items {
    padding: 18px 22px;
    overflow: auto;
    flex: 1;
    background: var(--surface-card);
}
.cart-line {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 16px;
    padding: 14px;
    margin-bottom: 12px;
    background: var(--surface-card);
    border: 1px solid color-mix(in srgb, var(--border-color) 76%, transparent);
    border-radius: var(--radius-sm);
    box-shadow: none;
}
.cart-line img {
    width: 86px;
    height: 86px;
    object-fit: contain;
    background: var(--surface-card-muted);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-sm);
}
.cart-line strong {
    display: block;
    color: var(--brand-ink);
    font-size: 14px;
    line-height: 1.35;
    margin-bottom: 5px;
}
.cart-line span {
    color: var(--text-muted);
    font-size: 13px;
}
.cart-variant {
    display: block;
    color: var(--brand-primary) !important;
    font-weight: 760;
    margin-bottom: 3px;
}
.cart-line-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}
.cart-line-actions button {
    border: 1px solid var(--border-color);
    background: #fff;
    min-width: 28px;
    height: 28px;
    border-radius: var(--radius-xs);
    padding: 4px 8px;
    color: var(--brand-ink);
    font-size: 12px;
    font-weight: 760;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.cart-line-actions button:hover {
    border-color: var(--brand-primary);
    color: var(--brand-primary);
    background: var(--brand-primary-soft);
}
.empty-cart {
    color: var(--text-muted);
    text-align: center;
    margin-top: 30px;
    padding: 26px 18px;
    background: var(--surface-card-muted);
    border-radius: var(--radius-sm);
}
.cart-drawer-footer {
    padding: 18px 28px 28px;
    background: var(--surface-card);
    border-top: 1px solid var(--border-color);
}
.cart-free-shipping {
    margin-bottom: 16px;
    padding: 14px;
    border: 1px solid color-mix(in srgb, var(--brand-primary) 18%, var(--border-color));
    border-radius: var(--radius-sm);
    background: color-mix(in srgb, var(--brand-primary) 5%, #fff);
}
.cart-free-shipping[hidden] { display: none; }
.cart-free-shipping-head {
    display: grid;
    gap: 5px;
}
.cart-free-shipping-head span {
    color: var(--brand-primary);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.cart-free-shipping-head strong {
    color: var(--brand-ink);
    font-size: 13px;
    line-height: 1.35;
    font-weight: 780;
}
.cart-progress-track {
    height: 7px;
    margin-top: 12px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--brand-primary) 14%, #fff);
    overflow: hidden;
}
.cart-progress-track span {
    display: block;
    width: var(--cart-progress, 0%);
    height: 100%;
    border-radius: inherit;
    background: var(--brand-primary);
    transition: width 0.28s ease;
}
.cart-summary {
    display: grid;
    gap: 10px;
    margin-bottom: 18px;
}
.cart-summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: var(--text-muted);
    font-size: 14px;
}
.cart-summary-row strong {
    color: var(--brand-ink);
    font-size: 14px;
    font-weight: 820;
    text-align: right;
}
.cart-summary-total {
    margin-top: 4px;
    padding-top: 14px;
    border-top: 1px solid var(--border-color);
    color: var(--brand-ink);
    font-size: 17px;
    font-weight: 850;
}
.cart-summary-total strong {
    color: var(--brand-ink);
    font-size: 22px;
    font-weight: 880;
}
.cart-drawer-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 0;
    background: var(--surface-card);
}
.cart-drawer-actions .btn {
    min-height: 48px;
    padding-left: 12px;
    padding-right: 12px;
}

.cart-page-layout, .checkout-layout { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 34px; align-items: start; }
.cart-page-items { display: grid; gap: 14px; }
.cart-page-line { display: grid; grid-template-columns: 110px 1fr auto auto auto; gap: 18px; align-items: center; padding: 18px; border: 1px solid var(--border-color); background: #fff; }
.cart-page-line img { width: 110px; height: 110px; object-fit: contain; background: #f8fafa; border: 1px solid #eef1f1; }
.cart-page-line h3 { color: var(--dark-teal); font-size: 18px; }
.cart-page-line p { color: var(--text-muted); margin: 4px 0; }
.cart-page-qty { display: flex; align-items: center; border: 1px solid var(--border-color); height: 42px; }
.cart-page-qty button { width: 38px; height: 40px; border: 0; background: #f7f9f9; font-weight: 800; }
.cart-page-qty span { width: 38px; text-align: center; font-weight: 800; }
.remove-line { border: 1px solid var(--border-color); background: #fff; padding: 10px 12px; color: var(--text-muted); font-weight: 700; }
.remove-line:hover { color: var(--primary-red); border-color: var(--primary-red); }
.order-summary { position: sticky; top: 110px; border: 1px solid var(--border-color); background: #fff; padding: 24px; display: grid; gap: 16px; box-shadow: var(--shadow-sm); }
.order-summary h2 { color: var(--dark-teal); }
.order-summary div { display: flex; justify-content: space-between; gap: 18px; color: var(--text-muted); }
.order-summary strong { color: var(--dark-teal); }
.order-summary .summary-total { padding-top: 16px; border-top: 1px solid var(--border-color); font-size: 20px; }
.checkout-form { display: grid; gap: 24px; }
.checkout-form section { border: 1px solid var(--border-color); background: #fff; padding: 24px; }
.checkout-form h2 { color: var(--dark-teal); margin-bottom: 18px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.checkout-form label { display: grid; gap: 8px; color: #344; font-weight: 700; font-size: 13px; }
.checkout-form input, .checkout-form select, .checkout-form textarea, .search-page-form input { width: 100%; border: 1px solid var(--border-color); min-height: 46px; padding: 0 12px; color: var(--dark-teal); background: #fff; }
.checkout-form textarea { padding: 12px; resize: vertical; }
.wide { grid-column: 1 / -1; }
.payment-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 18px; }
.payment-options label { border: 1px solid var(--border-color); padding: 14px; display: flex; align-items: center; gap: 10px; }
.checkout-success { background: #e9f8ef; color: #176b36; border: 1px solid #b9e6c8; padding: 14px; font-weight: 700; }
body.checkout-focus { background: #f4f7f7; }
.checkout-topbar {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 24px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.checkout-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--dark-teal);
}
.checkout-brand .logo-main { color: var(--primary-red); }
.checkout-brand small { color: var(--text-muted); font-weight: 800; text-transform: uppercase; letter-spacing: 1px; }
.checkout-support { display: flex; align-items: center; gap: 10px; color: var(--dark-teal); font-weight: 800; font-size: 13px; }
.checkout-support i { color: #176b36; }
.checkout-support span { color: var(--text-muted); font-weight: 700; }
.checkout-shell {
    max-width: var(--container-width);
    margin: 0 auto 64px;
    padding: 0 22px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 34px;
    align-items: start;
}
.checkout-main { display: grid; gap: 22px; }
.checkout-intro {
    background: #fff;
    border: 1px solid var(--border-color);
    padding: 34px;
    box-shadow: var(--shadow-sm);
}
.checkout-intro h1 { color: var(--dark-teal); font-size: 44px; line-height: 1.08; margin: 8px 0 12px; }
.checkout-intro p { color: var(--text-muted); line-height: 1.75; max-width: 650px; }
.checkout-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--border-color);
    background: #fff;
}
.checkout-steps span {
    padding: 15px 18px;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    border-right: 1px solid var(--border-color);
}
.checkout-steps span:last-child { border-right: 0; }
.checkout-steps .active { color: var(--dark-teal); background: #f9fbfb; }
.checkout-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.checkout-benefits div {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid var(--border-color);
    padding: 14px 16px;
    color: var(--dark-teal);
    font-weight: 800;
    font-size: 13px;
}
.checkout-benefits i { color: var(--primary-red); }
.checkout-full-form section { box-shadow: var(--shadow-sm); }
.checkout-section-title { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.checkout-section-title span {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    background: var(--dark-teal);
    color: #fff;
    font-weight: 900;
    font-size: 12px;
}
.checkout-section-title h2 { margin: 0; }
.woo-payment-options {
    grid-template-columns: 1fr;
    gap: 10px;
}
.payment-method {
    justify-content: flex-start;
    align-items: flex-start !important;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.payment-method.selected {
    border-color: var(--primary-red);
    background: #f0fffc;
    box-shadow: 0 0 0 2px color-mix(in srgb, var(--brand-primary) 10%, transparent);
}
.payment-method input { margin-top: 4px; accent-color: var(--primary-red); }
.payment-method span { display: grid; gap: 4px; }
.payment-method strong { color: var(--dark-teal); }
.payment-method small { color: var(--text-muted); font-weight: 600; line-height: 1.5; }
.fake-stripe-box {
    border: 1px solid var(--border-color);
    background: #fbfcfc;
    padding: 20px;
    display: grid;
    gap: 14px;
    margin-bottom: 16px;
}
.stripe-head { display: flex; justify-content: space-between; align-items: center; color: var(--dark-teal); }
.stripe-head span { color: #176b36; font-size: 12px; font-weight: 900; text-transform: uppercase; }
.checkout-terms { margin: 8px 0 18px; }
.checkout-submit { width: 100%; min-height: 56px; font-size: 15px; }
.checkout-summary {
    top: 24px;
    padding: 28px;
}
.checkout-summary .summary-reassurance {
    color: var(--text-muted);
    line-height: 1.55;
    font-size: 13px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 16px;
}
.checkout-summary .summary-reassurance i { color: #176b36; margin-right: 6px; }
.checkout-summary .summary-product {
    display: grid !important;
    grid-template-columns: 64px 1fr auto;
    align-items: center !important;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #eef1f1;
}
.checkout-summary .summary-product img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    background: #f8fafa;
    border: 1px solid #eef1f1;
}
.checkout-summary .summary-product span { color: var(--dark-teal); font-weight: 800; line-height: 1.35; }
.checkout-summary .summary-product small { color: var(--text-muted); font-weight: 600; font-size: 12px; margin-top: 4px; }
.checkout-summary .summary-product strong { white-space: nowrap; }
.summary-guarantees {
    display: grid !important;
    gap: 8px !important;
    justify-content: stretch !important;
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
}
.summary-guarantees span { color: var(--dark-teal); font-size: 13px; font-weight: 800; }
.summary-guarantees i { color: #176b36; margin-right: 6px; }
.account-layout { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px; align-items: start; }
.account-form { border: 1px solid var(--border-color); background: #fff; padding: 30px; display: grid; gap: 18px; box-shadow: var(--shadow-sm); }
.account-form-head { display: flex; align-items: center; gap: 16px; padding-bottom: 18px; border-bottom: 1px solid var(--border-color); }
.account-form-head i { width: 46px; height: 46px; display: grid; place-items: center; background: #f3f7f7; color: var(--primary-red); font-size: 18px; }
.account-form-head h2 { color: var(--dark-teal); font-size: 26px; }
.account-form-head p, .account-note { color: var(--text-muted); line-height: 1.6; }
.account-form label { display: grid; gap: 8px; color: #344; font-weight: 700; font-size: 13px; }
.account-form input { width: 100%; border: 1px solid var(--border-color); min-height: 48px; padding: 0 12px; color: var(--dark-teal); background: #fff; }
.account-row { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.account-row a { color: var(--primary-red); font-size: 13px; font-weight: 800; }
.account-form .check-field { display: flex; align-items: center; gap: 9px; }
.account-form .check-field input { width: auto; min-height: auto; }
.summary-product { align-items: start !important; }
.summary-product span { display: grid; color: var(--dark-teal); }
.summary-product small { color: var(--text-muted); font-size: 12px; margin-top: 3px; }
.search-page-form { display: grid; grid-template-columns: 1fr auto; gap: 12px; margin-bottom: 30px; }
.footer { background: var(--dark-teal); color: #d3daea; }
.footer-main {
    display: grid;
    grid-template-columns: 1.7fr 1fr 1fr 1fr 1.05fr;
    gap: 42px;
    padding-top: 72px;
    padding-bottom: 62px;
}
.footer-brand-panel p { color: #d3daea; line-height: 1.75; margin: 18px 0 22px; max-width: 390px; }
.footer-brand { color: #fff; display: inline-grid; gap: 3px; }
.footer-brand img { width: 180px; max-height: 58px; object-fit: contain; }
.footer-brand-mark { font-size: 30px; font-weight: 900; letter-spacing: 1px; line-height: 1; }
.footer-brand span:last-child { font-size: 10px; letter-spacing: 2px; font-weight: 800; }
.footer-newsletter {
    display: inline-flex;
    border: 1px solid rgba(255,255,255,0.18);
    color: #fff;
    padding: 12px 16px;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
}
.footer h3 { color: #fff; margin-bottom: 22px; font-size: 14px; letter-spacing: 1px; }
.footer-links li { margin-bottom: 12px; color: #d3daea; line-height: 1.35; }
.footer-links a { color: #d3daea; }
.footer-links a:hover { color: #fff; }
.footer-contact { display: grid; gap: 6px; }
.footer-contact span { color: #9fb0d3; font-size: 12px; text-transform: uppercase; font-weight: 800; margin-top: 10px; }
.footer-contact a { color: #fff; font-weight: 800; }
.footer-bottom { background: var(--dark-teal); padding: 22px 0; color: #d3daea; border-top: 1px solid rgba(255,255,255,0.08); }
.footer-bottom .container { display: grid; grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr); align-items: center; gap: 20px; }
.footer-bottom-payments { justify-self: center; min-height: 28px; display: flex; align-items: center; justify-content: center; }
.footer-bottom-payments .payment-icons { gap: 8px; }
.footer-bottom-payments .payment-icons img,
.footer-bottom-payments .payment-image { height: 26px; width: auto; max-width: 60px; padding: 4px 7px; border-radius: 4px; }
.footer-credit { justify-self: end; text-align: right; }
.footer-bottom a { color: #fff; font-weight: 800; }
.footer-bottom a:hover { color: var(--primary-red); }

.info-page-content {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}
.info-page-content article {
    border: 1px solid var(--border-color);
    background: #fff;
    padding: 26px;
}
.info-page-content h2 { color: var(--dark-teal); font-size: 20px; margin-bottom: 12px; }
.info-page-content p { color: var(--text-muted); line-height: 1.75; }

.info-hero {
    background: linear-gradient(135deg, #f4f8ff 0%, #ffffff 72%);
}
.info-two-column {
    display: grid;
    grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
    gap: 34px;
    align-items: start;
}
.info-support-panel {
    position: sticky;
    top: 120px;
    background: var(--dark-teal);
    color: #fff;
    padding: 34px;
    overflow: hidden;
    contain: paint;
    isolation: isolate;
}
.info-support-panel::after {
    content: '';
    position: absolute;
    right: -80px;
    bottom: -80px;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: rgba(244,197,66,0.16);
    z-index: -1;
}
.info-support-panel h2 {
    font-size: 30px;
    line-height: 1.16;
    margin: 12px 0 18px;
}
.info-support-panel p {
    color: #d3daea;
    line-height: 1.75;
    margin-bottom: 20px;
}
.faq-tip-list {
    display: grid;
    gap: 10px;
    margin: 0 0 26px;
    padding: 0;
    list-style: none;
}
.faq-tip-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #fff;
    font-weight: 700;
    line-height: 1.45;
}
.faq-tip-list i {
    width: 22px;
    height: 22px;
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    margin-top: 1px;
    background: rgba(244,197,66,0.22);
    color: var(--brand-red);
    font-size: 11px;
}
.faq-page-list {
    display: grid;
    gap: 30px;
}
.faq-group h2 {
    color: var(--dark-teal);
    font-size: 28px;
    margin-bottom: 16px;
}
.faq-group details {
    background: #fff;
    border: 1px solid var(--border-color);
    margin-bottom: 12px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.faq-group details:hover {
    border-color: color-mix(in srgb, var(--brand-primary) 22%, transparent);
}
.faq-group details[open] {
    border-color: color-mix(in srgb, var(--brand-primary) 34%, transparent);
    box-shadow: var(--shadow-sm);
    transform: translateY(-1px);
}
.faq-group summary {
    list-style: none;
    cursor: pointer;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 20px 24px;
    color: var(--dark-teal);
    font-weight: 900;
    line-height: 1.35;
}
.faq-group summary::-webkit-details-marker { display: none; }
.faq-group summary::after {
    content: '+';
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    background: var(--brand-aqua-soft);
    color: var(--primary-red);
    flex: 0 0 auto;
    font-size: 18px;
    border-radius: 999px;
}
.faq-group details[open] summary::after { content: '-'; }
.faq-group p {
    color: var(--text-muted);
    line-height: 1.85;
    padding: 0 24px 24px;
    max-width: 760px;
}
.policy-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.34fr) minmax(0, 0.66fr);
    gap: 34px;
    align-items: start;
}
.policy-aside {
    position: sticky;
    top: 120px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-left: 5px solid var(--primary-red);
    padding: 30px;
}
.policy-aside p {
    color: var(--text-muted);
    line-height: 1.8;
    margin: 14px 0 22px;
}
.policy-aside ul,
.policy-section ul {
    display: grid;
    gap: 10px;
}
.policy-aside li,
.policy-section li {
    color: var(--dark-teal);
    line-height: 1.55;
    font-weight: 700;
    padding-left: 20px;
    position: relative;
}
.policy-aside li::before,
.policy-section li::before {
    content: '';
    width: 7px;
    height: 7px;
    background: var(--primary-red);
    position: absolute;
    left: 0;
    top: 9px;
}
.policy-main {
    display: grid;
    gap: 18px;
}
.policy-section {
    background: #fff;
    border: 1px solid var(--border-color);
    padding: 32px;
}
.policy-section h2 {
    color: var(--dark-teal);
    font-size: 28px;
    margin-bottom: 14px;
}
.policy-section p {
    color: var(--text-muted);
    line-height: 1.82;
    margin-bottom: 20px;
}
.policy-note {
    background: var(--brand-aqua-soft);
    border-left: 5px solid var(--primary-red);
    color: var(--dark-teal);
    font-weight: 800;
    line-height: 1.7;
    padding: 22px 26px;
}
.business-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.48fr) minmax(0, 0.52fr);
    min-height: 560px;
    background: var(--dark-teal);
    color: #fff;
    margin-bottom: 34px;
}
.business-hero > div {
    padding: 58px 54px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.business-hero h1 {
    font-size: 58px;
    line-height: 1.04;
    margin: 14px 0 20px;
}
.business-hero p {
    color: #d3daea;
    line-height: 1.78;
    font-size: 18px;
    max-width: 560px;
}
.business-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.business-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 30px;
}
.business-catalog {
    margin: 54px 0;
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    align-items: stretch;
    background: var(--dark-teal);
    color: #fff;
    overflow: hidden;
}
.business-catalog-copy {
    padding: 54px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.business-catalog h2 {
    font-size: 42px;
    line-height: 1.08;
    margin: 12px 0 16px;
    color: #fff;
}
.business-catalog p {
    color: #d7e2e2;
    line-height: 1.75;
    margin: 0 0 24px;
    max-width: 430px;
}
.business-catalog-preview {
    display: block;
    min-height: 360px;
    background: #081115;
    overflow: hidden;
}
.business-catalog-preview img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.45s ease;
}
.business-catalog-preview:hover img {
    transform: scale(1.035);
}
.business-highlight-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 54px;
}
.business-highlight-row article {
    border-top: 4px solid var(--primary-red);
    background: #fff;
    padding: 24px 26px;
    box-shadow: var(--shadow-sm);
}
.business-highlight-row span {
    color: var(--primary-red);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1px;
}
.business-highlight-row p {
    color: var(--dark-teal);
    font-size: 18px;
    line-height: 1.45;
    font-weight: 900;
    margin-top: 12px;
}
.business-split {
    display: grid;
    grid-template-columns: minmax(0, 0.48fr) minmax(0, 0.52fr);
    gap: 48px;
    align-items: center;
    margin-bottom: 70px;
}
.business-split > img {
    width: 100%;
    height: 640px;
    object-fit: cover;
}
.business-split h2 {
    color: var(--dark-teal);
    font-size: 42px;
    line-height: 1.12;
    margin: 12px 0 28px;
}
.business-split article {
    border-top: 1px solid var(--border-color);
    padding: 22px 0;
}
.business-split h3 {
    color: var(--dark-teal);
    font-size: 20px;
    margin-bottom: 8px;
}
.business-split p {
    color: var(--text-muted);
    line-height: 1.78;
}
.business-process {
    margin-bottom: 58px;
}
.business-process-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}
.business-process-grid article {
    background: #fff;
    border: 1px solid var(--border-color);
    padding: 30px;
}
.business-process-grid span {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    background: var(--primary-red);
    color: #fff;
    font-weight: 900;
    margin-bottom: 24px;
}
.business-process-grid h3 {
    color: var(--dark-teal);
    font-size: 22px;
    margin-bottom: 10px;
}
.business-process-grid p {
    color: var(--text-muted);
    line-height: 1.75;
}
.info-cta-band {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 24px;
    background: var(--primary-red);
    color: #fff;
    padding: 42px 46px;
}
.info-cta-band .eyebrow { color: #fff; }
.info-cta-band h2 {
    font-size: 34px;
    line-height: 1.15;
    margin: 10px 0;
}
.info-cta-band p {
    color: rgba(255,255,255,0.86);
    line-height: 1.7;
}

.contact-heading { margin-bottom: 28px; }
.contact-page-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
    gap: 34px;
    align-items: start;
}
.contact-info-panel {
    background: var(--dark-teal);
    color: #fff;
    padding: 38px;
    min-height: 100%;
}
.contact-info-panel h2 {
    font-size: 34px;
    line-height: 1.16;
    margin: 14px 0 28px;
    max-width: 520px;
}
.contact-info-list {
    display: grid;
    gap: 14px;
}
.contact-info-list article {
    border-top: 1px solid rgba(255,255,255,0.16);
    padding-top: 16px;
}
.contact-info-list span {
    display: block;
    color: #a8fff5;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}
.contact-info-list p {
    color: #e4eeee;
    line-height: 1.65;
    font-weight: 700;
}
.contact-form-panel {
    border: 1px solid var(--border-color);
    background: #fff;
    padding: 34px;
    display: grid;
    gap: 16px;
    box-shadow: var(--shadow-sm);
}
.contact-form-panel h2 {
    color: var(--dark-teal);
    font-size: 30px;
    margin-top: 10px;
}
.contact-form-panel label {
    display: grid;
    gap: 8px;
    color: #344;
    font-size: 13px;
    font-weight: 800;
}
.contact-form-panel input,
.contact-form-panel select,
.contact-form-panel textarea {
    width: 100%;
    border: 1px solid var(--border-color);
    min-height: 48px;
    padding: 0 13px;
    color: var(--dark-teal);
    background: #fff;
    outline: 0;
}
.contact-form-panel textarea {
    padding: 13px;
    resize: vertical;
}
.contact-form-panel input:focus,
.contact-form-panel select:focus,
.contact-form-panel textarea:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand-primary) 10%, transparent);
}
.form-success {
    background: var(--brand-aqua-soft);
    color: var(--dark-teal);
    border: 1px solid color-mix(in srgb, var(--brand-primary) 24%, transparent);
    padding: 13px 14px;
    line-height: 1.55;
    font-weight: 700;
}

@keyframes rise {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes bump {
    50% { transform: scale(1.18); }
}

@media (max-width: 1100px) {
    .main-nav { padding-left: 24px; }
    .main-nav ul { gap: 16px; }
    .cat-grid { grid-template-columns: repeat(3, 1fr); }
    .pdp-grid { grid-template-columns: 1fr; }
    .pdp-main-img { min-height: 440px; }
    .pdp-info .buy-row { grid-template-columns: 128px minmax(150px, 1fr) minmax(118px, 0.7fr); }
    .business-hero,
    .business-catalog,
    .business-split,
    .info-two-column,
    .policy-layout { grid-template-columns: 1fr; }
    .business-hero img,
    .business-split > img { height: 460px; }
    .info-support-panel,
    .policy-aside { position: static; }
}

@media (max-width: 860px) {
    body.nav-open {
        position: fixed;
        left: 0;
        right: 0;
        width: 100%;
        overflow: hidden;
        touch-action: none;
    }
    .header {
        top: 0;
        left: 0;
        width: 100%;
        height: 72px;
        transform: none;
        justify-content: center;
        padding: 8px 0;
        border-radius: 0;
        overflow: visible;
    }
    .header.sticky { top: 0; left: 0; width: 100%; max-width: none; transform: none; border-radius: 0; }
    .logo {
        width: 164px;
        min-width: 164px;
        min-height: 54px;
        padding: 7px 14px;
        position: relative;
        z-index: 2;
        border-radius: var(--radius-sm);
        overflow: hidden;
    }
    .logo img { width: 142px; max-height: 40px; }
    .logo-main { font-size: 20px; }
    .menu-toggle { display: inline-flex; }
    .main-nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        height: calc(100svh - 72px);
        max-height: calc(100svh - 72px);
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
        background: #fff;
        padding: 0;
        box-shadow: var(--shadow-md);
        transform: translateY(-140%);
        transition: transform 0.25s ease;
        z-index: 999;
    }
    .main-nav.open { transform: translateY(0); }
    .mobile-nav-head {
        position: sticky;
        top: 0;
        z-index: 2;
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 58px;
        padding: 0 14px 0 22px;
        background: #fff;
        border-bottom: 1px solid var(--border-color);
        color: var(--dark-teal);
        font-family: var(--font-heading);
        font-size: 13px;
        font-weight: 900;
        text-transform: uppercase;
    }
    .mobile-nav-close {
        background: var(--brand-aqua-soft);
        color: var(--dark-teal);
    }
    .main-nav ul { display: grid; gap: 0; }
    .main-nav li { border-bottom: 1px solid var(--border-color); }
    .main-nav a { display: block; padding: 17px 22px; }
    .nav-has-dropdown { display: grid; grid-template-columns: minmax(0, 1fr) 54px; gap: 0; align-items: stretch; }
    .nav-has-dropdown > a { display: flex; justify-content: space-between; align-items: center; }
    .nav-dropdown-toggle {
        min-width: 44px;
        min-height: 44px;
        margin: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: var(--primary-red);
        border-left: 1px solid var(--border-color);
    }
    .nav-dropdown {
        grid-column: 1 / -1;
        position: static;
        width: 100%;
        padding: 0 14px 14px;
        grid-template-columns: 1fr;
        box-shadow: none;
        border: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }
    .nav-has-dropdown.is-open .nav-dropdown { display: grid; }
    .nav-has-dropdown.is-open .nav-dropdown-toggle { transform: rotate(180deg); }
    .nav-has-dropdown:not(.is-open) .nav-dropdown-toggle { transform: none; }
    .nav-dropdown a {
        grid-template-columns: 46px minmax(0, 1fr);
        column-gap: 18px;
        padding: 14px 16px;
        border-color: var(--border-color);
    }
    .nav-dropdown i {
        width: 46px;
        height: 46px;
    }
    .nav-dropdown span { font-size: 15px; line-height: 1.25; }
    .mobile-account-link {
        display: block;
        padding: 16px 22px 24px;
        border-bottom: 0;
    }
    .mobile-account-link .btn {
        width: 100%;
        min-height: 48px;
    }
    .mobile-nav-search {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 44px;
        gap: 8px;
        padding: 14px;
        border-bottom: 1px solid var(--border-color);
    }
    .mobile-nav-search label {
        display: grid;
        grid-template-columns: 18px minmax(0, 1fr);
        align-items: center;
        gap: 9px;
        min-height: 44px;
        border: 1px solid var(--border-color);
        padding: 0 12px;
        color: var(--primary-red);
        background: #fff;
    }
    .mobile-nav-search input {
        width: 100%;
        min-width: 0;
        border: 0;
        outline: 0;
        color: var(--dark-teal);
        font: inherit;
        font-size: 14px;
    }
    .mobile-nav-search button {
        min-height: 44px;
        border: 0;
        background: var(--primary-red);
        color: #fff;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    .header-actions a[href="account.html"] { display: none; }
    .header-actions .icon-btn[data-search-toggle] { display: inline-flex; }
    .header-actions {
        position: absolute;
        inset: 0;
        z-index: 3;
        width: 100%;
        margin-left: 0;
        padding: 0 10px;
        gap: 4px;
        pointer-events: none;
    }
    .header-actions .icon-btn { pointer-events: auto; }
    .menu-toggle { margin-right: auto; }
    .icon-btn { width: 38px; height: 38px; }
    .pdp-gallery-arrow {
        opacity: 1;
        pointer-events: auto;
    }
    .pdp-attributes { grid-template-columns: 1fr; }
    .pdp-info .buy-row { grid-template-columns: 1fr; }
    .pdp-cart-btn,
    .pdp-buy-now { width: 100%; }
    .hero { min-height: 720px; }
    .hero-content { margin-left: 0; padding-top: 120px; }
    .hero-title { font-size: 54px; }
    .trust-wrap { margin-top: 0; padding: 0; }
    .trust-bar { grid-template-columns: 1fr; box-shadow: none; }
    .section-block, .news-section { padding: 64px 18px; }
    .product-grid, .catalog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
    .product-img-wrapper { height: 230px; }
    .cat-grid, .blog-grid { grid-template-columns: 1fr; }
    .editorial-hero, .featured-post, .news-list, .home-faq-layout, .newsletter-panel, .about-intro, .about-split, .value-grid, .business-highlight-row, .business-process-grid, .info-cta-band { grid-template-columns: 1fr; }
    .editorial-hero { height: auto; min-height: 0; }
    .editorial-hero > div::after { display: none; }
    .editorial-hero img { height: 300px; }
    .home-faq-intro { position: static; gap: 24px; }
    .home-faq-copy h2 { font-size: 36px; }
    .home-faq-media {
        width: min(100%, 380px);
        height: clamp(210px, 36vw, 280px);
        min-height: 0;
    }
    .home-faq-media img {
        height: 100%;
        aspect-ratio: auto;
        object-position: center 78%;
    }
    .faq-list summary {
        grid-template-columns: 34px minmax(0, 1fr);
        min-height: 70px;
        padding: 20px 58px 20px 22px;
    }
    .faq-list summary::after { right: 22px; }
    .faq-list p { padding: 0 22px 24px 74px; }
    .home-faq-support {
        grid-template-columns: auto minmax(0, 1fr);
        padding: 24px;
    }
    .home-faq-support .btn {
        grid-column: 1 / -1;
        justify-self: start;
    }
    .newsletter-panel {
        min-height: 0;
        padding: 38px 28px;
        gap: 32px;
        background: linear-gradient(180deg, #fff 0%, color-mix(in srgb, var(--brand-primary) 4%, #f8f9fc) 100%);
    }
    .newsletter-panel::before {
        width: 520px;
        height: 520px;
        right: -18%;
        top: auto;
        bottom: -180px;
    }
    .newsletter-panel::after { display: none; }
    .newsletter-copy h2 { font-size: 38px; }
    .newsletter-copy > p { font-size: 16px; }
    .newsletter-media {
        min-height: 290px;
        justify-content: center;
    }
    .newsletter-media img {
        width: 100%;
        max-height: 320px;
        object-position: center right;
    }
    .editorial-hero > div { padding: 36px 28px; }
    .editorial-hero h1, .post-hero h1, .about-hero h1 { font-size: 42px; }
    .featured-post div { padding: 30px; }
    .featured-post img, .post-hero img, .about-split img { height: 340px; min-height: 0; }
    .about-hero { min-height: 0; padding: 0; }
    .about-intro, .about-split, .about-values, .about-cta { padding-top: 58px; padding-bottom: 58px; }
    .about-intro h2, .about-split h2, .about-cta h2 { font-size: 34px; }
    .about-cta { align-items: flex-start; flex-direction: column; }
    .page-shell {
        width: calc(100% - 36px);
        margin-top: 96px;
    }
    .catalog-hero { grid-template-columns: 1fr; min-height: 0; height: auto; }
    .category-hero-copy { padding: 36px 28px; }
    .category-hero-copy::after { display: none; }
    .category-hero-media { min-height: 260px; height: 260px; }
    .page-heading { padding: 30px 24px; }
    .catalog-hero h1 { font-size: 36px; }
    .page-heading h1 { font-size: 36px; }
    .business-hero > div { padding: 38px 28px; }
    .business-hero h1 { font-size: 42px; }
    .business-catalog-copy { padding: 36px 28px; }
    .business-catalog h2 { font-size: 34px; }
    .business-catalog-preview { min-height: 260px; }
    .business-split h2 { font-size: 34px; }
    .business-hero img,
    .business-split > img { height: 360px; }
    .info-cta-band { padding: 34px 28px; }
    .info-cta-band .btn { justify-self: start; }
    .plp-container { grid-template-columns: 1fr; }
    .plp-sidebar {
        position: fixed;
        top: 68px;
        bottom: 0;
        left: 0;
        width: min(350px, 90vw);
        z-index: 1701;
        overflow-y: auto;
        transform: translateX(-105%);
        transition: transform 0.25s ease;
        box-shadow: var(--shadow-md);
    }
    body.filters-open .plp-sidebar { transform: translateX(0); }
    body.filters-open::after {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(4, 24, 25, 0.42);
        z-index: 1700;
    }
    .listing-toolbar {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr);
        align-items: end;
        gap: 14px;
    }
    .listing-toolbar > div { grid-column: 1 / -1; }
    .listing-toolbar label { min-width: 0; }
    .listing-toolbar .sort-control span { display: none; }
    .listing-toolbar select {
        min-height: 46px;
        height: 46px;
        padding: 0 38px 0 14px;
        font-size: 14px;
        font-weight: 800;
    }
    .listing-toolbar .sort-control { align-self: end; }
    .filter-drawer-toggle {
        display: inline-flex;
        min-height: 46px;
        height: 46px;
        align-items: center;
        justify-content: center;
        gap: 8px;
        border: 1px solid var(--border-color);
        background: #fff;
        color: var(--dark-teal);
        font-weight: 900;
        text-transform: uppercase;
        padding: 0 14px;
    }
    .filter-drawer-toggle i { color: var(--primary-red); }
    .search-panel { top: 72px; width: 100%; }
    .header.sticky + .search-panel { top: 72px; }
    .search-results { grid-template-columns: 1fr; }
    .search-result:nth-child(odd) { border-right: 0; }
    .cart-page-layout, .checkout-layout, .checkout-shell, .account-layout, .contact-page-layout { grid-template-columns: 1fr; }
    .checkout-benefits, .checkout-steps { grid-template-columns: 1fr; }
    .checkout-steps span { border-right: 0; border-bottom: 1px solid var(--border-color); }
    .checkout-steps span:last-child { border-bottom: 0; }
    .checkout-topbar { align-items: flex-start; flex-direction: column; }
    .checkout-summary { position: static; }
    .cart-page-line { grid-template-columns: 86px 1fr; }
    .cart-page-line img { width: 86px; height: 86px; }
    .cart-page-line > strong, .cart-page-qty, .remove-line { grid-column: 2; justify-self: start; }
    .order-summary { position: static; }
    .footer-main { grid-template-columns: 1fr 1fr; }
    .info-page-content { grid-template-columns: 1fr; }
    .policy-section,
    .policy-aside,
    .info-support-panel,
    .business-process-grid article { padding: 26px; }
    .contact-info-panel, .contact-form-panel { padding: 28px; }
}

@media (max-width: 560px) {
    .logo { min-width: auto; }
    .logo-sub { display: none; }
    .hero-title { font-size: 44px; }
    .business-hero h1 { font-size: 34px; }
    .business-catalog { margin: 34px 0; }
    .business-catalog h2 { font-size: 29px; }
    .business-split h2,
    .info-cta-band h2 { font-size: 28px; }
    .business-hero img,
    .business-split > img { height: 300px; }
    .faq-group summary { padding: 16px 18px; }
    .faq-group p { padding: 0 18px 18px; }
    .policy-section h2 { font-size: 24px; }
    .editorial-hero h1, .post-hero h1, .about-hero h1 { font-size: 34px; }
    .home-faq-section { padding: 64px 0; }
    .home-faq-copy h2 { font-size: 30px; }
    .home-faq-layout { gap: 28px; }
    .home-faq-copy p { font-size: 15px; line-height: 1.62; }
    .home-faq-media {
        width: 100%;
        height: 210px;
    }
    .faq-list summary {
        grid-template-columns: 28px minmax(0, 1fr);
        gap: 12px;
        min-height: 64px;
        padding: 18px 48px 18px 18px;
        font-size: 15px;
        line-height: 1.35;
    }
    .faq-list summary span { font-size: 12px; }
    .faq-list summary::after { right: 18px; }
    .faq-list p {
        padding: 0 18px 20px 58px;
        font-size: 14px;
        line-height: 1.62;
    }
    .home-faq-support {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 22px 18px;
    }
    .home-faq-support-icon {
        width: 48px;
        height: 48px;
    }
    .home-faq-support .btn {
        width: 100%;
        justify-self: stretch;
    }
    .newsletter-section { padding: 86px 0 64px; }
    .newsletter-panel {
        padding: 30px 20px;
        gap: 26px;
    }
    .newsletter-copy h2 {
        font-size: 32px;
        line-height: 1.08;
    }
    .newsletter-copy > p {
        font-size: 15px;
        line-height: 1.62;
        margin-bottom: 22px;
    }
    .newsletter-form {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 24px;
    }
    .newsletter-field,
    .newsletter-form .btn {
        min-height: 56px;
        width: 100%;
    }
    .newsletter-form .btn {
        min-width: 0;
    }
    .newsletter-benefits {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .newsletter-benefits article,
    .newsletter-benefits article:first-child,
    .newsletter-benefits article:last-child {
        padding: 0;
        border-right: 0;
    }
    .newsletter-media {
        min-height: 220px;
    }
    .newsletter-media img {
        max-height: 240px;
        object-position: center right;
    }
    .editorial-hero img { min-height: 260px; }
    .post-hero p { font-size: 16px; }
    .post-body h2 { font-size: 25px; }
    .post-footer-nav .btn { width: 100%; }
    .about-intro h2, .about-split h2, .about-cta h2 { font-size: 29px; }
    .value-grid article { min-height: auto; }
    .hero-content p { font-size: 15px; }
    .hero-actions .btn { width: 100%; }
    .section-title h2 { font-size: 28px; }
    .product-grid, .catalog-grid { grid-template-columns: 1fr; }
    .product-card h3 { min-height: auto; }
    .cat-grid { grid-template-columns: 1fr; }
    .buy-row { grid-template-columns: auto minmax(0, 1fr); gap: 10px; }
    .pdp-info .buy-row { grid-template-columns: 1fr; gap: 12px; }
    .pdp-main-img { min-height: 360px; }
    .pdp-main-img img { padding: 24px; }
    .pdp-gallery-arrow { width: 40px; height: 40px; }
    .pdp-gallery-arrow.prev { left: 10px; }
    .pdp-gallery-arrow.next { right: 10px; }
    .pdp-thumbs { overflow-x: auto; padding-bottom: 4px; }
    .pdp-thumbs button { width: 82px; height: 82px; flex: 0 0 auto; }
    .payment-box { align-items: center; text-align: center; }
    .form-grid, .payment-options, .search-page-form { grid-template-columns: 1fr; }
    .checkout-shell { padding: 0 14px; margin-bottom: 36px; }
    .checkout-topbar { padding: 18px 14px; }
    .checkout-intro { padding: 24px; }
    .checkout-intro h1 { font-size: 34px; }
    .checkout-support { align-items: flex-start; flex-direction: column; gap: 4px; }
    .checkout-summary .summary-product { grid-template-columns: 54px 1fr; }
    .checkout-summary .summary-product strong { grid-column: 2; }
    .checkout-summary .summary-product img { width: 54px; height: 54px; }
    .account-form { padding: 22px; }
    .account-row { align-items: flex-start; flex-direction: column; }
    .cart-head { padding: 20px 18px 18px; }
    .cart-head h2 { font-size: 20px; }
    .cart-items { padding: 14px; }
    .cart-line {
        grid-template-columns: 74px minmax(0, 1fr);
        gap: 12px;
        padding: 12px;
    }
    .cart-line img {
        width: 74px;
        height: 74px;
    }
    .cart-drawer-footer { padding: 16px 18px 22px; }
    .cart-drawer-actions { grid-template-columns: 1fr; }
    .search-result { grid-template-columns: 58px 1fr; }
    .search-result b { grid-column: 2; }
    .search-result img { width: 58px; height: 58px; }
    .qty-input { width: auto; justify-content: center; }
    .qty-btn { width: 38px; }
    .qty-input input { width: 44px; }
    .tabs-nav { gap: 18px; overflow-x: auto; }
    .tab-link { white-space: nowrap; }
    .spec-list, .spec-list div { grid-template-columns: 1fr; }
    .pdp-info h1 { font-size: 30px; }
    .pdp-price .pdp-price-current { font-size: 31px; }
    .pdp-price-tax,
    .pdp-lowest-price { font-size: 11.5px; }
    .footer-main { grid-template-columns: 1fr; }
    .footer-bottom .container { grid-template-columns: 1fr; justify-items: start; }
    .footer-bottom-payments,
    .footer-credit { justify-self: start; text-align: left; }
}

@media (max-width: 360px) {
    .logo {
        width: 148px;
        min-width: 148px;
        padding-left: 10px;
        padding-right: 10px;
    }
    .logo img { width: 128px; }
    .header-actions { padding: 0 8px; gap: 2px; }
    .icon-btn { width: 36px; height: 36px; }
}

/* Template 1 header and product box treatment for reusable webshop content */
.header {
    position: sticky;
    top: 0;
    left: auto;
    transform: none;
    width: 100%;
    max-width: none;
    display: block;
    background: #fff;
    border-radius: 0;
    overflow: visible;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    z-index: 1000;
}
.header.sticky {
    top: 0;
    border-radius: 0;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}
.header-top {
    width: min(95%, var(--container-width));
    margin: 0 auto;
    padding: 16px 0;
    display: grid;
    grid-template-columns: 260px minmax(280px, 1fr) auto auto;
    gap: 28px;
    align-items: center;
    border-bottom: 1px solid #f0edf1;
}
.logo {
    min-width: 0;
    min-height: 0;
    width: auto;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
}
.logo img {
    width: 190px;
    max-height: 62px;
    object-fit: contain;
}
.header-search {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 48px;
    align-items: center;
    min-height: 54px;
    padding-left: 18px;
    background: var(--header-search-bg);
    border-radius: 16px;
}
.header-search input {
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--dark-teal);
}
.header-search input::placeholder { color: var(--header-search-placeholder); }
.header-search button {
    width: 48px;
    height: 48px;
    border: 0;
    background: transparent;
    color: var(--dark-teal);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.support-box {
    display: grid;
    gap: 2px;
    text-align: right;
    white-space: nowrap;
}
.support-box span {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.3;
}
.support-box a {
    color: var(--dark-teal);
    font-size: 18px;
    line-height: 1.25;
    font-weight: 800;
}
.header-actions {
    position: static;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    width: auto;
    margin: 0;
    pointer-events: auto;
}
.icon-btn {
    width: 42px;
    height: 42px;
    background: var(--header-search-bg);
    color: var(--dark-teal);
    border-radius: 50%;
}
.icon-btn:hover {
    background: var(--brand-aqua-soft);
    color: var(--primary-red);
}
.menu-toggle,
.mobile-search-toggle {
    display: none;
}
.badge {
    top: -4px;
    right: -5px;
    background: var(--primary-red);
}
.main-nav {
    width: min(95%, var(--container-width));
    margin: 0 auto;
    padding: 0;
    position: relative;
}
.main-nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.main-nav li {
    position: relative;
}
.main-nav a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 18px 4px;
    color: var(--header-nav-fg);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    text-transform: none;
    white-space: nowrap;
}
.main-nav a:hover,
.main-nav a.active {
    color: var(--primary-red);
}
.nav-dropdown {
    top: calc(100% + 6px);
    left: -18px;
    width: 560px;
    padding: 10px 8px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
    border-radius: 14px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.02);
}
.nav-dropdown-single {
    width: 350px;
    grid-template-columns: 1fr;
}
.nav-dropdown a {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 12px;
    padding: 12px 14px;
}
.nav-dropdown span {
    font-size: 14px;
}
.nav-dropdown small {
    display: block;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.35;
}
.nav-dropdown i {
    border-radius: 50%;
}
.search-panel {
    top: 142px;
}
.header.sticky + .search-panel {
    top: 142px;
}
.page-shell {
    margin-top: 42px;
}
.about-shell {
    margin-top: 42px;
}
.hero-content {
    padding-top: 92px;
}
.product-grid,
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 26px;
}
.product-card.product-item {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 16px;
    background: #fff;
    border: 1px solid #fbfbfb;
    box-shadow: 0 5px 22px rgba(0, 0, 0, 0.04);
    border-radius: 16px;
    overflow: visible;
    transition: box-shadow 0.3s ease-out, transform 0.3s ease-out;
}
.product-card.product-item:hover {
    box-shadow: 0 21px 44px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}
.product-card .product-img-wrapper {
    height: 230px;
    margin: 0 0 16px;
    position: relative;
    background: #f9f9f9;
    border: 0;
    border-radius: 12px;
    text-align: center;
    overflow: hidden;
}
.product-card .product-img-wrapper a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}
.product-card .product-img-wrapper img {
    width: 100%;
    height: 100%;
    max-height: 210px;
    object-fit: contain;
    position: absolute;
    inset: 0;
    padding: 24px;
    margin: auto;
    transition: opacity 0.35s ease, transform 0.35s ease;
}
.product-card .img-hover {
    opacity: 0;
}
.product-card:hover .img-main {
    opacity: 0;
    transform: scale(1.04);
}
.product-card:hover .img-hover {
    opacity: 1;
    transform: scale(1.04);
}
.product-card .flag {
    left: 12px;
    top: 12px;
    border-radius: 999px;
    background: var(--primary-red);
    font-size: 11px;
    letter-spacing: 0;
}
.product-card .flag.sale {
    left: auto;
    right: 12px;
    background: var(--brand-red);
    color: #171017;
}
.product-card .btn-wishlist {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid var(--border-muted);
    color: var(--dark-teal);
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.product-card .btn-wishlist:hover {
    background: var(--wishlist-action-bg);
    color: #fff;
    border-color: var(--wishlist-action-bg);
}
.product-info-box {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 0;
}
.product-card h3 {
    display: block;
    width: 100%;
    min-height: 50px;
    margin: 0 0 10px;
    color: var(--header-nav-fg);
    font-size: 17px;
    line-height: 1.45;
    font-weight: 700;
    text-transform: none;
}
.product-card h3 a:hover {
    color: var(--primary-red);
}
.product-meta-line {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--text-faint);
    font-size: 12px;
    font-weight: 700;
}
.product-meta-line .qty {
    text-transform: uppercase;
}
.product-meta-line .rating {
    color: var(--text-body);
    text-align: right;
}
.product-meta-line .rating i {
    color: var(--brand-secondary);
}
.product-price {
    display: flex;
    gap: 10px;
    align-items: baseline;
    margin: auto 0 15px;
}
.product-price span,
.product-price b {
    color: var(--text-body);
    font-size: 22px;
    line-height: 1.35;
    font-weight: 800;
}
.product-price del {
    color: #9aa2a2;
    font-size: 14px;
}
.product-card .btn-cart {
    width: 100%;
    min-height: 44px;
    gap: 8px;
    padding: 11px 14px;
    border-radius: 6px;
}

@media (max-width: 1180px) {
    .header-top {
        grid-template-columns: 230px minmax(240px, 1fr) auto;
        gap: 20px;
        padding-left: 28px;
        padding-right: 28px;
    }
    .support-box {
        display: none;
    }
    .main-nav {
        padding-left: 28px;
        padding-right: 28px;
    }
}

/* Final mobile header and hero normalization */
@media (max-width: 860px) {
    .header,
    .header.sticky {
        top: 0;
        left: 0;
        transform: none;
        width: 100%;
        max-width: none;
        border-radius: 0;
    }
    .header-top {
        width: 100%;
        min-height: 66px;
        padding: 8px 12px;
        display: grid;
        grid-template-columns: 44px minmax(0, 1fr) auto;
        gap: 8px;
        align-items: center;
    }
    .menu-toggle,
    .mobile-search-toggle {
        display: inline-flex !important;
    }
    .logo {
        display: inline-flex;
        justify-content: center;
        min-width: 0;
        width: 100%;
        padding: 0;
        overflow: visible;
    }
    .logo img {
        width: min(154px, 42vw);
        max-height: 44px;
        object-fit: contain;
    }
    .header-search,
    .support-box,
    .account-shortcut,
    .wishlist-shortcut {
        display: none !important;
    }
    .header-actions {
        position: static;
        display: flex;
        width: auto;
        margin: 0;
        padding: 0;
        gap: 6px;
        pointer-events: auto;
    }
    .header-actions .icon-btn {
        width: 38px;
        height: 38px;
        margin: 0;
        pointer-events: auto;
    }
    .cart-btn {
        display: inline-flex !important;
    }
    .home .hero {
        min-height: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 20px;
        background: var(--brand-ink);
        overflow: hidden;
    }
    .home .hero-content {
        width: 100%;
        margin-left: 0;
        padding: 28px 22px 18px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        z-index: 1;
    }
    .home .hero-content p {
        max-width: 34rem;
        margin-left: auto;
        margin-right: auto;
    }
    .home .hero-actions {
        justify-content: center;
    }
    .home .hero::after {
        content: "";
        display: block;
        width: 100%;
        height: 360px;
        margin-top: -42px;
        background:
            linear-gradient(180deg, var(--brand-ink) 0%, rgba(23,16,23,0.64) 18%, rgba(23,16,23,0.12) 46%, rgba(23,16,23,0) 100%),
            var(--home-hero-image, none) center right/cover;
        -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.12) 9%, rgba(0,0,0,0.72) 25%, #000 48%);
        mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.12) 9%, rgba(0,0,0,0.72) 25%, #000 48%);
    }
}

@media (max-width: 860px) {
    body.nav-open {
        position: fixed;
        left: 0;
        right: 0;
        width: 100%;
        overflow: hidden;
        touch-action: none;
    }
    .header,
    .header.sticky {
        top: 0;
        left: auto;
        transform: none;
        width: 100%;
        max-width: none;
        height: auto;
        padding: 0;
        border-radius: 0;
        overflow: visible;
    }
    .header-top {
        min-height: 66px;
        padding: 8px 12px;
        grid-template-columns: 42px minmax(130px, 1fr) auto;
        gap: 8px;
    }
    .header-search,
    .account-shortcut {
        display: none;
    }
    .menu-toggle,
    .mobile-search-toggle {
        display: inline-flex;
    }
    .logo {
        justify-content: center;
        width: auto;
        min-width: 0;
        min-height: 0;
        padding: 0;
        border-radius: 0;
        overflow: visible;
    }
    .logo img {
        width: 150px;
        max-height: 44px;
    }
    .header-actions {
        position: static;
        inset: auto;
        z-index: auto;
        width: auto;
        margin: 0;
        padding: 0;
        gap: 6px;
        pointer-events: auto;
    }
    .header-actions .icon-btn {
        pointer-events: auto;
    }
    .main-nav {
        position: fixed;
        top: 66px;
        left: 0;
        right: 0;
        width: 100%;
        height: calc(100svh - 66px);
        max-height: calc(100svh - 66px);
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
        background: #fff;
        padding: 0;
        box-shadow: var(--shadow-md);
        transform: translateY(-140%);
        transition: transform 0.25s ease;
        z-index: 999;
    }
    .main-nav.open {
        transform: translateY(0);
    }
    .main-nav ul {
        display: grid;
        justify-content: stretch;
        gap: 0;
    }
    .main-nav li {
        border-bottom: 1px solid var(--border-color);
    }
    .main-nav a {
        display: block;
        padding: 17px 22px;
        font-size: 14px;
    }
    .nav-has-dropdown > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .nav-dropdown,
    .nav-dropdown-single {
        grid-column: 1 / -1;
        position: static;
        width: 100%;
        padding: 0 14px 14px;
        grid-template-columns: 1fr;
        box-shadow: none;
        border: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }
    .nav-has-dropdown.is-open .nav-dropdown {
        display: grid;
    }
    .mobile-account-link {
        display: block;
        padding: 16px 22px 24px;
        border-bottom: 0;
    }
    .mobile-account-link .btn {
        width: 100%;
    }
    .search-panel,
    .header.sticky + .search-panel {
        top: 66px;
        width: 100%;
    }
    .page-shell,
    .about-shell {
        margin-top: 30px;
    }
    .hero-content {
        padding-top: 84px;
    }
}

@media (max-width: 560px) {
    .product-grid,
    .catalog-grid {
        grid-template-columns: 1fr;
    }
    .product-card .product-img-wrapper {
        height: 220px;
    }
    .product-card h3 {
        min-height: auto;
    }
}

/* Header and product polish layer */
.header {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}
.header-top {
    grid-template-columns: 270px minmax(360px, 1fr) auto auto;
    gap: 26px;
    padding-top: 14px;
    padding-bottom: 14px;
    border-bottom-color: var(--border-soft);
}
.logo img {
    width: 210px;
    max-height: 64px;
}
.header-search {
    min-height: 54px;
    padding: 8px 8px 8px 20px;
    background: var(--header-search-bg);
    border-radius: 16px;
}
.header-search input {
    height: 38px;
    font-size: 16px;
    line-height: 1.2;
}
.header-search button {
    width: 42px;
    height: 42px;
    font-size: 20px;
}
.support-box {
    display: grid;
    grid-template-columns: 42px auto;
    align-items: center;
    gap: 10px;
    min-width: 166px;
}
.support-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--header-search-bg);
    color: var(--brand-secondary);
    border-radius: 50%;
    font-size: 18px;
}
.support-copy {
    display: grid;
    text-align: left;
    gap: 1px;
}
.support-copy small {
    color: var(--text-faint);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.15;
}
.support-copy a {
    color: var(--text-body);
    font-size: 18px;
    line-height: 1.2;
    font-weight: 800;
}
.header-actions {
    gap: 4px;
}
.header-actions .icon-btn {
    position: relative;
    width: 42px;
    height: 42px;
    margin: 0 2px;
    background: var(--header-search-bg);
    color: var(--text-body);
    border-radius: 50%;
    border: 0;
    font-size: 17px;
}
.header-actions .icon-btn:hover,
.mobile-menu-toggle:hover {
    background: var(--surface-warm);
    color: var(--text-body);
}
.badge {
    top: -6px;
    right: -6px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    background: var(--brand-secondary);
    color: var(--text-body);
    border: 0;
    border-radius: 999px;
    font-size: 11px;
    line-height: 18px;
    font-weight: 800;
}
.main-nav {
    padding-top: 0;
    padding-bottom: 0;
}
.main-nav ul {
    gap: 22px;
}
.main-nav a {
    padding: 17px 0;
    color: var(--header-nav-fg);
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
}
.main-nav a:hover,
.main-nav a.active {
    color: var(--brand-secondary-strong);
}
.nav-dropdown-toggle {
    font-size: 11px;
}
.nav-dropdown {
    top: calc(100% + 8px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: color-mix(in srgb, var(--header-dropdown-bg) 98%, transparent);
    border-radius: 14px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.02);
}
.nav-dropdown a {
    border-radius: 10px;
}
.nav-dropdown a:hover {
    background: var(--surface-warm);
    color: var(--brand-secondary-strong);
    transform: translateX(6px);
}
.nav-dropdown i {
    background: var(--brand-secondary-soft);
    color: var(--brand-secondary);
}
.search-panel,
.header.sticky + .search-panel {
    top: 144px;
}
.product-card.product-item {
    height: 100%;
    padding: 24px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(226, 232, 240, 0.6);
    border-radius: 20px;
    box-shadow: 0 4px 20px -5px rgba(148, 163, 184, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card.product-item:hover {
    transform: translateY(-8px);
    border-color: color-mix(in srgb, var(--product-cta-hover-bg) 30%, transparent);
    box-shadow: 0 20px 40px -15px color-mix(in srgb, var(--product-cta-hover-bg) 14%, transparent), 0 10px 25px -10px rgba(148, 163, 184, 0.15);
}
.product-card .product-img-wrapper {
    height: 200px;
    margin: 0 0 18px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface-card-muted);
    border: 1px solid rgba(241, 245, 249, 0.8);
    border-radius: 14px;
    transition: background 0.3s ease;
}
.product-card.product-item:hover .product-img-wrapper {
    background: #f1f5f9;
}
.product-card .product-img-wrapper img {
    width: auto;
    height: auto;
    max-width: calc(100% - 40px);
    max-height: calc(100% - 40px);
    padding: 0;
    object-fit: contain;
}
.product-card:hover .img-main,
.product-card:hover .img-hover {
    transform: none;
}
.product-card .flag {
    left: 12px;
    top: 12px;
    padding: 5px 11px;
    background: var(--product-flag-bg);
    color: #fff;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}
.product-card .btn-wishlist {
    top: 12px;
    right: 12px;
    width: 48px;
    height: 48px;
    background: #fff;
    border: 1px solid var(--border-muted);
    color: var(--text-body);
}
.product-card .btn-wishlist:hover,
.product-card .btn-wishlist.active {
    background: var(--wishlist-action-bg);
    color: #fff;
    border-color: var(--wishlist-action-bg);
}
.product-card h3 {
    height: 2.8rem;
    min-height: 0;
    margin-bottom: 8px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: #1e293b;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.4;
}
.product-card h3 a:hover {
    color: var(--product-cta-hover-bg);
}
.product-meta-line {
    margin: 0 0 8px;
    color: var(--text-faint);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.35;
}
.product-meta-line .rating {
    color: var(--text-body);
    font-size: 12px;
    font-weight: 800;
}
.product-price {
    margin-top: auto;
    margin-bottom: 12px;
}
.product-price span,
.product-price b {
    color: var(--product-cta-bg);
    font-size: 1.15rem;
    font-weight: 800;
}
.product-card .btn-cart,
.product-card .btn-primary {
    min-height: 42px;
    padding: 10px 16px;
    background: var(--product-cta-bg);
    border: 0;
    color: #fff;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.08);
}
.product-card.product-item:hover .btn-cart,
.product-card.product-item:hover .btn-primary {
    background: var(--product-cta-hover-bg);
    color: var(--product-cta-hover-fg);
    box-shadow: 0 8px 20px color-mix(in srgb, var(--product-cta-hover-bg) 25%, transparent);
}

@media (max-width: 1180px) {
    .header-top {
        grid-template-columns: 230px minmax(240px, 1fr) auto;
    }
    .support-box {
        display: none;
    }
}

@media (max-width: 860px) {
    .header-top {
        min-height: 66px;
        grid-template-columns: 42px minmax(120px, 1fr) auto;
        padding: 8px 12px;
    }
    .logo img {
        width: 150px;
        max-height: 44px;
    }
    .menu-toggle,
    .mobile-search-toggle {
        display: inline-flex;
    }
    .account-shortcut,
    .wishlist-shortcut,
    .header-search {
        display: none !important;
    }
    .header-actions {
        gap: 4px;
    }
    .header-actions .icon-btn {
        width: 38px;
        height: 38px;
        margin: 0 1px;
    }
    .main-nav {
        top: 66px;
        height: calc(100svh - 66px);
        max-height: calc(100svh - 66px);
    }
    .mobile-nav-head {
        min-height: 58px;
    }
    .main-nav ul {
        gap: 0;
    }
    .main-nav a {
        padding: 17px 22px;
        font-size: 15px;
    }
    .nav-dropdown a:hover {
        transform: none;
    }
    .search-panel,
    .header.sticky + .search-panel {
        top: 66px;
    }
}

@media (max-width: 560px) {
    .product-card.product-item {
        padding: 20px;
    }
    .product-card .product-img-wrapper {
        height: 210px;
    }
    .product-card h3 {
        height: auto;
        min-height: 0;
    }
}

/* Outdoor template trust strip + stable dropdown/font normalization */
.benefits {
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-bottom: 1px solid var(--filter-border);
}
.benefits.compact {
    padding: 34px 58px;
}
.benefits div {
    display: grid;
    grid-template-columns: 52px 1fr;
    column-gap: 18px;
    padding: 0 34px;
    border-right: 1px solid var(--filter-border);
}
.benefits div:last-child {
    border-right: 0;
}
.benefits i {
    grid-row: span 2;
    width: 39px;
    height: 39px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #4b4f4d;
    font-size: 31px;
    line-height: 1;
}
.benefits strong {
    color: var(--filter-ink);
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 20px;
    line-height: 1.15;
    font-weight: 900;
}
.benefits span {
    color: #8a8f8e;
    font-size: 14px;
    line-height: 1.45;
}

@media (min-width: 1101px) {
    .benefits.compact {
        min-height: 124px;
        align-items: center;
    }
}

.nav-has-dropdown::after {
    content: "";
    position: absolute;
    left: -10px;
    right: -10px;
    bottom: -12px;
    height: 14px;
    background: transparent;
}
.nav-dropdown {
    top: calc(100% + 8px) !important;
    overflow: hidden;
}
.nav-dropdown a,
.nav-dropdown a:hover {
    transform: none !important;
}
.nav-dropdown a:hover {
    background: var(--surface-warm);
    color: var(--brand-secondary-strong);
}
.main-nav a,
.mobile-nav-head {
    font-family: var(--font-heading) !important;
}
.hero-content {
    width: min(760px, 100%);
}
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(52px, 6vw, 78px);
    line-height: 1.05;
}

@media (max-width: 860px) {
    .benefits {
        grid-template-columns: repeat(2, 1fr);
    }
    .benefits.compact {
        padding: 24px 18px;
    }
    .benefits div {
        min-height: 110px;
        padding: 18px 10px;
        border-bottom: 1px solid var(--filter-border);
    }
    .benefits div:nth-child(even) {
        border-right: 0;
    }
    .benefits div:nth-last-child(-n + 2) {
        border-bottom: 0;
    }
    .benefits strong {
        font-size: 17px;
    }
    .benefits span {
        font-size: 13px;
    }
    .nav-has-dropdown::after {
        display: none;
    }
    .nav-dropdown {
        overflow: visible;
    }
    .hero-title {
        font-size: 48px;
    }
}

@media (max-width: 520px) {
    .benefits {
        grid-template-columns: 1fr;
    }
    .benefits div,
    .benefits div:nth-child(even),
    .benefits div:nth-last-child(-n + 2) {
        border-right: 0;
        border-bottom: 1px solid var(--filter-border);
    }
    .benefits div:last-child {
        border-bottom: 0;
    }
    .hero-title {
        font-size: 42px;
        line-height: 1.08;
    }
}

/* Outdoor-inspired PLP filters */
.header {
    border-bottom: 1px solid color-mix(in srgb, var(--brand-primary) 9%, transparent);
}
.header-top {
    border-bottom-color: color-mix(in srgb, var(--brand-primary) 10%, #fff);
    column-gap: 14px;
    grid-template-columns: 270px minmax(420px, 1fr) auto auto;
}
.header-search,
.icon-btn,
.header-actions .icon-btn {
    background: var(--header-icon-bg);
    color: var(--header-icon-fg);
}
.header-search {
    width: min(100%, 620px);
    justify-self: center;
}
.header-search button {
    color: var(--header-icon-fg);
}
.header-search:focus-within {
    background: var(--header-search-focus-bg);
    box-shadow: 0 0 0 2px color-mix(in srgb, var(--brand-primary) 18%, transparent);
}
.support-box {
    display: block;
    min-width: 112px;
    justify-content: end;
    margin-right: -2px;
}
.support-copy {
    display: grid;
    text-align: right;
    gap: 1px;
}
.support-box a {
    color: var(--brand-ink);
}
.main-nav a:hover,
.main-nav a.active,
.nav-dropdown a:hover {
    color: var(--brand-primary);
}
.icon-btn:hover,
.header-actions .icon-btn:hover,
.mobile-menu-toggle:hover {
    background: var(--header-icon-hover-bg);
    color: var(--header-icon-hover-fg);
}
.badge {
    background: var(--brand-primary);
    color: #fff;
}
.nav-dropdown a:hover {
    background: var(--brand-primary-soft);
}
.nav-dropdown i {
    background: var(--brand-primary-soft);
    color: var(--brand-primary);
}
.nav-dropdown,
.nav-dropdown-single {
    width: 290px;
    padding: 14px !important;
    gap: 8px;
    border-color: color-mix(in srgb, var(--brand-primary) 10%, #e8e8e8);
    border-radius: 12px;
    background: color-mix(in srgb, var(--header-dropdown-bg) 99%, transparent);
    box-shadow: 0 18px 42px rgba(17,17,17,.08);
    grid-template-columns: 1fr;
}
.nav-dropdown a {
    min-height: 50px;
    grid-template-columns: 34px minmax(0, 1fr);
    column-gap: 12px;
    padding: 9px 10px;
    border: 1px solid transparent;
    border-radius: 8px;
    color: var(--header-nav-fg);
    background: transparent;
}
.nav-dropdown a:hover {
    border-color: color-mix(in srgb, var(--brand-primary) 13%, transparent);
    background: color-mix(in srgb, var(--brand-primary) 5%, #fff);
    color: var(--header-nav-fg);
}
.nav-dropdown i {
    width: 34px;
    height: 34px;
    background: color-mix(in srgb, var(--brand-primary) 8%, #fff);
    color: var(--brand-primary);
    font-size: 14px;
}
.nav-dropdown span {
    color: inherit;
    font-size: 14px;
    line-height: 1.25;
    font-weight: 800;
}
.nav-dropdown small {
    display: none !important;
}
.product-card.product-item:hover {
    border-color: color-mix(in srgb, var(--brand-primary) 24%, #fff);
}
.product-card.product-item:hover .btn-cart,
.product-card.product-item:hover .btn-primary {
    background: var(--product-cta-hover-bg);
    color: var(--product-cta-hover-fg);
}

/* About page and product card cleanup */
.about-page .about-shell {
    margin-top: 42px;
    background: #fff;
}
.about-hero-v2 {
    width: min(95%, var(--container-width));
    min-height: 560px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(360px, 0.88fr) minmax(0, 1.12fr);
    background: var(--brand-ink);
    color: #fff;
    overflow: hidden;
}
.about-hero-copy {
    position: relative;
    z-index: 2;
    padding: 76px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.about-hero-copy::after {
    content: "";
    position: absolute;
    inset: 0 -44vw 0 auto;
    width: 44vw;
    min-width: 520px;
    background: linear-gradient(90deg, var(--brand-ink) 0%, rgba(23,16,23,.95) 30%, rgba(23,16,23,.58) 64%, rgba(23,16,23,0) 100%);
    pointer-events: none;
    z-index: -1;
}
.about-hero-v2 h1 {
    max-width: 720px;
    margin: 16px 0 20px;
    color: #fff;
    font-size: clamp(46px, 4.4vw, 64px);
    line-height: 1.02;
}
.about-hero-v2 p {
    max-width: 580px;
    color: rgba(255,255,255,.78);
    font-size: 18px;
    line-height: 1.75;
}
.about-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 32px;
}
.about-hero-media img {
    width: 100%;
    height: 100%;
    min-height: 560px;
    object-fit: cover;
    object-position: center right;
}
.about-proof {
    width: min(95%, var(--container-width));
    margin: 0 auto;
    padding: 32px 58px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-bottom: 1px solid var(--filter-border);
}
.about-proof div {
    padding: 0 36px;
    border-right: 1px solid var(--filter-border);
}
.about-proof div:first-child {
    padding-left: 0;
}
.about-proof div:last-child {
    padding-right: 0;
    border-right: 0;
}
.about-proof strong {
    display: block;
    color: var(--brand-primary);
    font-family: var(--font-heading);
    font-size: 34px;
    line-height: 1;
    font-weight: 900;
}
.about-proof span {
    display: block;
    margin-top: 8px;
    color: #616667;
    font-size: 14px;
    line-height: 1.45;
}
.about-story {
    width: min(95%, var(--container-width));
    margin: 0 auto;
    padding: 92px 18px;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 70px;
    align-items: center;
}
.about-story-copy {
    max-width: 560px;
}
.about-story h2,
.about-cta-v2 h2,
.about-values-v2 h2 {
    margin: 12px 0 18px;
    color: var(--brand-ink);
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.04;
}
.about-story p {
    color: #626b70;
    font-size: 17px;
    line-height: 1.85;
}
.about-story p + p {
    margin-top: 18px;
}
.about-story img {
    width: 100%;
    min-height: 470px;
    object-fit: cover;
    background: #f6f5f7;
}
.about-values-v2 {
    padding: 88px 58px;
    background: #f8f7f8;
}
.about-values-v2 .section-title {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}
.about-value-list {
    width: min(100%, 1180px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: #e9e2ea;
    border: 1px solid #e9e2ea;
}
.about-value-list article {
    min-height: 250px;
    padding: 34px;
    background: #fff;
}
.about-value-list i {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;
    border-radius: 50%;
    background: var(--brand-primary-soft);
    color: var(--brand-primary);
}
.about-value-list h3 {
    margin-bottom: 12px;
    color: var(--brand-ink);
    font-size: 21px;
}
.about-value-list p {
    color: #626b70;
    line-height: 1.7;
}
.about-cta-v2 {
    width: min(100%, 1180px);
    margin: 0 auto;
    padding: 78px 18px 96px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}
.about-cta-v2 h2 {
    max-width: 720px;
}
.product-card.product-item {
    padding: 0;
    overflow: hidden;
    border-radius: 16px;
}
.product-card .product-img-wrapper {
    height: 248px;
    margin: 0;
    padding: 0;
    border: 0;
    border-bottom: 1px solid #eef0f2;
    border-radius: 0;
    background: var(--surface-card-muted);
}
.product-card.product-item:hover .product-img-wrapper {
    background: var(--surface-card-hover);
}
.product-card .product-img-wrapper a {
    display: block;
    width: 100%;
    height: 100%;
}
.product-card .product-img-wrapper img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    padding: 0;
    object-fit: contain;
}
.product-info-box {
    padding: 16px 18px 18px;
}
.product-category-label {
    display: block;
    margin-bottom: 8px;
    color: var(--brand-primary);
    font-family: var(--font-heading);
    font-size: 12px;
    line-height: 1.2;
    font-weight: 900;
    text-transform: uppercase;
}
.product-card h3 {
    margin-bottom: 12px;
}
.product-meta-line {
    display: none;
}
.product-card .flag:not(.sale) {
    display: none;
}

@media (max-width: 920px) {
    .about-page .about-shell {
        margin-top: 0;
    }
    .about-hero-v2,
    .about-story,
    .about-value-list {
        grid-template-columns: 1fr;
    }
    .about-hero-v2 {
        min-height: 0;
    }
    .about-hero-copy {
        padding: 54px 28px;
    }
    .about-hero-copy::after {
        display: none;
    }
    .about-hero-media img {
        min-height: 320px;
    }
    .about-proof {
        grid-template-columns: 1fr;
        padding: 0 28px;
    }
    .about-proof div,
    .about-proof div:first-child,
    .about-proof div:last-child {
        padding: 24px 0;
        border-right: 0;
        border-bottom: 1px solid var(--filter-border);
    }
    .about-proof div:last-child {
        border-bottom: 0;
    }
    .about-story {
        padding: 64px 18px;
        gap: 36px;
    }
    .about-story img {
        min-height: 320px;
        order: -1;
    }
    .about-values-v2 {
        padding: 64px 18px;
    }
    .about-cta-v2 {
        align-items: flex-start;
        flex-direction: column;
        padding-top: 64px;
    }
}

@media (max-width: 560px) {
    .about-hero-v2 h1 {
        font-size: 42px;
    }
    .about-hero-actions .btn {
        width: 100%;
    }
    .about-value-list article {
        min-height: auto;
        padding: 28px 24px;
    }
    .product-card .product-img-wrapper {
        height: 240px;
    }
    .product-info-box {
        padding: 16px;
    }
}

.category-page .page-shell {
    width: min(95%, var(--container-width));
    max-width: var(--container-width);
    padding-left: 0;
    padding-right: 0;
}
.plp-container {
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 44px;
    align-items: start;
}
.plp-sidebar {
    position: static;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
}
.filter-panel-title {
    margin: 0 0 28px;
    color: var(--filter-ink);
    font-family: var(--font-heading);
    font-size: 24px;
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
}
.filter-section {
    border-top: 1px solid var(--filter-border);
    margin: 0;
    padding: 24px 0;
    background: transparent;
}
.filter-section:last-of-type {
    border-bottom: 1px solid var(--filter-border);
}
.filter-section-toggle {
    width: 100%;
    min-height: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: #202323;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 800;
    line-height: 1.35;
    text-transform: none;
    box-shadow: none;
}
.filter-section-toggle::after {
    content: "+";
    color: var(--filter-ink);
    font-family: var(--font-heading);
    font-size: 22px;
    line-height: 1;
    font-weight: 900;
}
.filter-section-toggle i {
    display: none;
}
.filter-section:not(.is-collapsed) .filter-section-toggle::after {
    content: "-";
}
.filter-section-body {
    overflow: hidden;
    transition: max-height 0.25s ease;
}
.filter-list,
.size-filter,
.color-filter {
    display: grid;
    gap: 0;
    margin: 12px 0 0;
}
.filter-list li,
.size-filter li,
.color-filter li {
    margin: 0;
    color: var(--filter-muted) !important;
    font-size: 16px;
    line-height: 1.35;
}
.filter-list button,
.category-filter-row > button:first-child {
    width: 100%;
    min-height: 38px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border: 0;
    background: transparent;
    color: var(--filter-muted);
    font: inherit;
    text-align: left;
    border-radius: 0;
}
.filter-list button:hover,
.filter-list button.active,
.size-filter label:hover,
.color-filter label:hover {
    color: var(--filter-ink);
}
.filter-list button.active {
    background: transparent !important;
    color: var(--filter-ink) !important;
}
.filter-list button.active span:first-child,
.size-filter input:checked + span,
.color-filter input:checked + span {
    color: var(--filter-ink);
    font-weight: 800;
}
.filter-count,
.count {
    min-width: auto;
    height: auto;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: var(--filter-faint);
    font-size: 15px;
    font-weight: 700;
}
.filter-list button.active .filter-count {
    background: transparent !important;
    color: var(--filter-ink) !important;
}
.category-filter-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 34px;
    gap: 6px;
    align-items: center;
}
.category-subtoggle {
    width: 30px !important;
    min-width: 30px !important;
    height: 38px;
    min-height: 38px !important;
    border: 0 !important;
    border-radius: 0 !important;
    color: var(--filter-muted) !important;
    background: transparent !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease, transform 0.2s ease;
}
.category-subtoggle::after {
    content: "+";
    color: inherit;
    font-family: var(--font-heading);
    font-size: 22px;
    line-height: 1;
    font-weight: 900;
}
.category-subtoggle:hover {
    color: var(--filter-ink) !important;
}
.category-filter-group.is-open .category-subtoggle {
    color: var(--filter-ink) !important;
}
.category-filter-group.is-open .category-subtoggle::after {
    content: "-";
}
.category-subtoggle i {
    display: none !important;
}
.category-sublist {
    display: none;
    margin: 6px 0 8px 18px;
    padding-left: 14px;
    border-left: 1px solid var(--filter-border);
}
.category-filter-group.is-open .category-sublist {
    display: grid;
}
.category-sublist button {
    min-height: 32px;
    color: #707574;
    font-size: 14px;
}
.size-filter li,
.color-filter li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 38px;
    gap: 12px;
}
.size-filter label,
.color-filter label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    color: var(--filter-muted);
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
}
.size-filter input[type="radio"],
.color-filter input[type="radio"],
.size-filter input[type="checkbox"],
.color-filter input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--filter-ink);
    margin: 0;
}
.price-range-display {
    margin: 16px 0 10px;
    color: var(--filter-ink);
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 900;
}
.price-input-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.price-input-grid label {
    display: grid;
    gap: 7px;
    color: var(--filter-faint);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
}
.price-input-grid input {
    width: 100%;
    height: 46px;
    padding: 0 12px;
    border: 1px solid var(--filter-border);
    border-radius: 0;
    background: #fff;
    color: var(--filter-ink);
    font-family: var(--font-main);
}
.price-range-sliders {
    margin-top: 22px;
    height: 22px;
    position: relative;
}
.price-slider-track {
    position: absolute;
    left: 0;
    right: 0;
    top: 9px;
    height: 4px;
    background: #d9d9d5;
    border-radius: 99px;
    pointer-events: none;
}
.price-slider-track::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--price-min, 0%);
    right: calc(100% - var(--price-max, 100%));
    background: var(--filter-ink);
    border-radius: inherit;
}
.price-slider-handle {
    position: absolute;
    top: 2px;
    width: 18px;
    height: 18px;
    border: 2px solid var(--filter-ink);
    background: #fff;
    border-radius: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}
.price-range-input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 22px;
    opacity: 0;
    pointer-events: none;
    background: transparent;
    appearance: none;
    -webkit-appearance: none;
}
.price-range-min { z-index: 3; }
.price-range-max {
    z-index: 2;
    pointer-events: auto;
}
.price-range-input::-webkit-slider-thumb {
    width: 18px;
    height: 18px;
    border: 0;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    pointer-events: auto;
    appearance: none;
    -webkit-appearance: none;
}
.price-range-input::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border: 0;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    pointer-events: auto;
}
.price-range-input::-webkit-slider-runnable-track { background: transparent; }
.price-range-input::-moz-range-track { background: transparent; }
.clear-filters {
    width: 100%;
    min-height: 46px;
    margin-top: 24px;
    border: 1px solid var(--filter-ink);
    border-radius: 0;
    background: var(--filter-ink);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 900;
    text-transform: uppercase;
}
.clear-filters:hover {
    background: #fff;
    color: var(--filter-ink);
}
.listing-toolbar {
    min-height: 50px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
    margin-bottom: 28px;
    padding: 0;
    border-bottom: 0;
    color: var(--filter-muted);
    font-family: var(--font-heading);
    font-weight: 900;
    text-transform: uppercase;
}
.listing-toolbar [data-result-count] {
    color: var(--filter-ink);
    font-size: 18px;
}
.listing-toolbar label {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--filter-muted);
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 900;
    text-transform: uppercase;
}
.listing-toolbar select {
    height: 42px;
    min-height: 42px;
    border: 1px solid var(--filter-border);
    border-radius: 0;
    background: #fff;
    padding: 0 38px 0 12px;
    color: var(--filter-ink);
    font-family: var(--font-heading);
    font-weight: 900;
    text-transform: uppercase;
}
.filter-drawer-toggle {
    display: none;
}

@media (max-width: 1100px) {
    .category-page .page-shell {
        padding-left: 28px;
        padding-right: 28px;
    }
    .plp-container {
        grid-template-columns: 320px minmax(0, 1fr);
        gap: 36px;
    }
}

@media (max-width: 860px) {
    .category-page .page-shell {
        width: calc(100% - 36px);
        padding-left: 0;
        padding-right: 0;
    }
    .plp-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .plp-sidebar {
        position: fixed;
        top: 66px;
        bottom: 0;
        left: 0;
        width: min(350px, 90vw);
        z-index: 1701;
        overflow-y: auto;
        background: #fff;
        padding: 24px 22px 32px;
        transform: translateX(-105%);
        transition: transform 0.25s ease;
        box-shadow: 22px 0 60px rgba(0,0,0,.18);
    }
    body.filters-open .plp-sidebar {
        transform: translateX(0);
    }
    .filter-panel-title {
        margin-bottom: 18px;
    }
    .listing-toolbar {
        grid-template-columns: auto minmax(0, 1fr);
        gap: 14px;
    }
    .listing-toolbar [data-result-count] {
        justify-self: start;
    }
    .listing-toolbar label {
        grid-column: 1 / -1;
        justify-content: space-between;
    }
    .listing-toolbar select {
        flex: 1;
        min-width: 0;
    }
    .filter-drawer-toggle {
        display: inline-flex;
        width: auto;
        min-height: 46px;
        align-items: center;
        justify-content: center;
        gap: 8px;
        border: 1px solid var(--filter-ink);
        border-radius: 0;
        background: var(--filter-ink);
        color: #fff;
        font-family: var(--font-heading);
        font-size: 15px;
        font-weight: 900;
        text-transform: uppercase;
        padding: 0 14px;
    }
}

/* Last mobile override: keep header visible after desktop header polish */
@media (max-width: 860px) {
    .header,
    .header.sticky {
        top: 0;
        left: 0;
        transform: none;
        width: 100%;
        max-width: none;
        border-radius: 0;
    }
    .header-top {
        width: 100%;
        min-height: 66px;
        padding: 8px 12px;
        display: grid;
        grid-template-columns: 44px minmax(0, 1fr) auto !important;
        gap: 8px;
        align-items: center;
    }
    .menu-toggle,
    .mobile-search-toggle {
        display: inline-flex !important;
    }
    .logo {
        width: 100%;
        min-width: 0;
        padding: 0;
        justify-content: center;
        overflow: visible;
    }
    .logo img {
        width: min(154px, 42vw);
        max-height: 44px;
        object-fit: contain;
    }
    .header-search,
    .support-box,
    .account-shortcut,
    .wishlist-shortcut {
        display: none !important;
    }
    .header-actions {
        position: static;
        display: flex;
        width: auto;
        margin: 0;
        padding: 0;
        gap: 6px;
        pointer-events: auto;
    }
    .header-actions .icon-btn {
        width: 38px;
        height: 38px;
        margin: 0;
        pointer-events: auto;
    }
    .cart-btn {
        display: inline-flex !important;
    }
    body.nav-open .header,
    body.nav-open .header.sticky {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1002;
        height: auto;
        min-height: 66px;
        background: var(--white);
        box-shadow: 0 8px 24px rgba(6,28,29,0.12);
    }
    body.nav-open .main-nav {
        top: 66px;
        height: calc(100svh - 66px);
        max-height: calc(100svh - 66px);
        z-index: 1001;
    }
}

/* Mobile drawer dropdowns: replace desktop mega-menu cards with compact rows. */
@media (max-width: 860px) {
    .main-nav .nav-has-dropdown {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 52px;
        align-items: stretch;
        gap: 0;
    }
    .main-nav .nav-has-dropdown > a {
        min-height: 56px;
        padding: 17px 20px;
        display: flex;
        align-items: center;
        color: var(--filter-ink);
        font-size: 15px;
        font-weight: 800;
    }
    .main-nav .nav-dropdown-toggle {
        width: 52px;
        min-width: 52px;
        min-height: 56px;
        border: 0;
        border-left: 1px solid var(--filter-border);
        background: transparent;
        color: var(--brand-primary);
        border-radius: 0;
    }
    .main-nav .nav-dropdown,
    .main-nav .nav-dropdown-single,
    .main-nav .accessory-nav-dropdown {
        grid-column: 1 / -1;
        position: static !important;
        width: 100% !important;
        max-width: none;
        padding: 0 0 10px 0;
        display: none;
        grid-template-columns: 1fr;
        gap: 0;
        background: #fff;
        border: 0;
        border-top: 1px solid var(--filter-border);
        border-radius: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        overflow: visible;
    }
    .main-nav .nav-has-dropdown.is-open .nav-dropdown {
        display: grid;
    }
    .main-nav .nav-dropdown a,
    .main-nav .nav-dropdown a:hover {
        min-height: 58px;
        display: grid;
        grid-template-columns: 44px minmax(0, 1fr);
        align-items: center;
        gap: 12px;
        padding: 11px 20px 11px 30px;
        background: #fff;
        border: 0;
        border-bottom: 1px solid color-mix(in srgb, var(--filter-border) 70%, transparent);
        border-radius: 0;
        color: var(--filter-muted);
        text-transform: none;
        transform: none;
    }
    .main-nav .nav-dropdown a:last-child {
        border-bottom: 0;
    }
    .main-nav .nav-dropdown i {
        width: 34px;
        height: 34px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: var(--surface-soft);
        color: var(--brand-primary);
        border-radius: 50%;
        font-size: 14px;
    }
    .main-nav .nav-dropdown span {
        color: var(--filter-ink);
        font-size: 14px;
        line-height: 1.3;
        font-weight: 800;
    }
    .main-nav .nav-dropdown small {
        display: none;
    }
}

/* Product imagery should sit directly on the page, without framed photo boxes. */
.pdp-main-img {
    border: 0;
    background: transparent;
}
.pdp-main-img img {
    padding: 0;
}
.product-card .product-img-wrapper {
    height: 230px;
    aspect-ratio: 1 / 0.82;
    position: relative;
    margin: 0 0 18px;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    overflow: hidden;
}
.product-card.product-item:hover .product-img-wrapper {
    background: transparent;
}
.product-card .product-img-wrapper a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}
.product-card .product-img-wrapper img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    padding: 0;
}
.product-card.product-item {
    background: #fff;
    border: 1px solid color-mix(in srgb, var(--border-color) 82%, var(--filter-ink));
    box-shadow: 0 6px 18px rgba(17, 16, 23, 0.035);
    border-radius: var(--radius-sm);
    transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}
.product-card.product-item:hover {
    border-color: color-mix(in srgb, var(--brand-primary) 26%, var(--border-soft));
    box-shadow: 0 14px 34px rgba(17, 16, 23, 0.09);
    transform: translateY(-4px);
}

@media (max-width: 560px) {
    .product-card.product-item {
        border-color: color-mix(in srgb, var(--border-color) 70%, var(--filter-ink));
        box-shadow: 0 5px 14px rgba(17, 16, 23, 0.045);
    }
    .product-card .product-info-box {
        padding: 10px;
    }
    .product-card .btn-cart,
    .product-card .btn-primary {
        min-height: 36px;
        padding: 8px 8px;
        gap: 5px;
        border-radius: 6px;
        font-size: 10.5px;
        line-height: 1;
        letter-spacing: 0;
        white-space: nowrap;
    }
    .product-card .btn-cart i,
    .product-card .btn-primary i {
        font-size: 11px;
        flex: 0 0 auto;
    }
}

/* Keep PLP category counts visually aligned with the plus/minus control column. */
.category-filter-row > button[data-filter-button="category"] {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 24px;
    align-items: center;
    gap: 8px;
}
.category-filter-row > button[data-filter-button="category"] .filter-count {
    justify-self: end;
}
.category-sublist button {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 24px;
    align-items: center;
    gap: 8px;
    padding-right: 40px;
}
.category-sublist .filter-count {
    justify-self: end;
}

/* Softer PLP hero image transition */
.category-page .category-hero-copy::after {
    right: -24vw !important;
    width: 24vw !important;
    min-width: 260px !important;
    background: linear-gradient(90deg,
        #071315 0%,
        rgba(7,19,21,.62) 24%,
        rgba(7,19,21,.28) 55%,
        rgba(7,19,21,.08) 78%,
        rgba(7,19,21,0) 100%) !important;
}

.category-page .catalog-hero .eyebrow {
    display: none;
}

@media (max-width: 860px) {
    .category-page .catalog-hero {
        background: #071315;
    }
    .category-page .category-hero-copy {
        z-index: 2;
        padding-bottom: 34px;
    }
    .category-page .category-hero-copy::after {
        display: block !important;
        top: auto !important;
        right: auto !important;
        bottom: -92px !important;
        left: 0 !important;
        width: 100% !important;
        min-width: 0 !important;
        height: 92px !important;
        background: linear-gradient(180deg,
            #071315 0%,
            rgba(7,19,21,.48) 42%,
            rgba(7,19,21,.16) 72%,
            rgba(7,19,21,0) 100%) !important;
        pointer-events: none;
    }
    .category-page .category-hero-media {
        margin-top: -1px;
    }
}

/* Mobile PLP controls: compact count, icon-only filters, and lighter sort styling. */
@media (max-width: 860px) {
    .category-page .listing-toolbar {
        min-height: 0;
        display: grid;
        grid-template-columns: 46px minmax(0, 1fr);
        gap: 10px 12px;
        align-items: center;
        margin-bottom: 18px;
        font-family: var(--font-main);
        font-weight: 600;
        text-transform: none;
    }
    .category-page .listing-toolbar [data-result-count] {
        grid-column: 1 / -1;
        order: 1;
        justify-self: start;
        color: var(--text-muted);
        font-family: var(--font-main);
        font-size: 14px;
        font-weight: 600;
        line-height: 1.25;
    }
    .category-page .filter-drawer-toggle {
        order: 2;
        width: 46px;
        height: 44px;
        min-height: 44px;
        padding: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 1px solid var(--filter-border);
        border-radius: var(--radius-sm);
        background: #fff;
        color: var(--filter-ink);
        box-shadow: none;
        font-size: 16px;
        font-weight: 600;
        text-transform: none;
    }
    .category-page .filter-drawer-toggle i {
        color: currentColor;
    }
    .category-page .listing-toolbar label {
        grid-column: auto;
        order: 3;
        min-width: 0;
        width: 100%;
        display: block;
        color: var(--text-muted);
        font-family: var(--font-main);
        font-size: 14px;
        font-weight: 600;
        text-transform: none;
    }
    .category-page .listing-toolbar .sort-label {
        display: none;
    }
    .category-page .listing-toolbar select {
        width: 100%;
        height: 44px;
        min-height: 44px;
        border-radius: var(--radius-sm);
        color: var(--filter-ink);
        font-family: var(--font-main);
        font-size: 14px;
        font-weight: 600;
        text-transform: none;
    }
}

/* PLP keeps two product columns on smaller screens for denser catalog scanning. */
@media (max-width: 860px) {
    .category-page .catalog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }
}

@media (max-width: 560px) {
    .home .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }
    .home .product-card.product-item {
        padding: 10px;
    }
    .home .product-card .product-img-wrapper {
        height: 150px;
        margin-bottom: 12px;
    }
    .home .product-card h3 {
        min-height: 44px;
        font-size: 13px;
        line-height: 1.28;
        margin-bottom: 10px;
    }
    .category-page .catalog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }
    .category-page .product-card.product-item {
        padding: 10px;
    }
    .category-page .product-card .product-img-wrapper {
        height: 150px;
        margin-bottom: 12px;
    }
    .category-page .product-card h3 {
        min-height: 44px;
        font-size: 13px;
        line-height: 1.28;
        margin-bottom: 10px;
    }
}

/* Product cards: match the demo-ribolovnicentar card treatment. */
.product-card.product-item {
    height: 100%;
    padding: 0;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(226, 232, 240, 0.6);
    border-radius: 16px;
    box-shadow: 0 4px 20px -5px rgba(148, 163, 184, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card.product-item:hover {
    transform: translateY(-8px);
    border-color: color-mix(in srgb, var(--product-cta-hover-bg) 30%, transparent);
    box-shadow: 0 20px 40px -15px color-mix(in srgb, var(--product-cta-hover-bg) 14%, transparent), 0 10px 25px -10px rgba(148, 163, 184, 0.15);
}
.product-card .product-img-wrapper {
    height: 248px;
    margin: 0;
    padding: 0;
    position: relative;
    background: var(--surface-card-muted);
    border: 0;
    border-bottom: 1px solid #eef0f2;
    border-radius: 0;
    overflow: hidden;
    transition: background 0.3s ease;
}
.product-card.product-item:hover .product-img-wrapper {
    background: var(--surface-card-hover);
}
.product-card .product-img-wrapper a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}
.product-card .product-img-wrapper img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    padding: 0;
    object-fit: contain;
    transition: opacity 0.35s ease, transform 0.35s ease;
}
.product-card:hover .img-main,
.product-card:hover .img-hover {
    transform: none;
}
.product-info-box {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 16px 18px 18px;
}
.product-category-label {
    display: block;
    margin-bottom: 8px;
    color: var(--brand-primary);
    font-family: var(--font-heading);
    font-size: 12px;
    line-height: 1.2;
    font-weight: 900;
    text-transform: uppercase;
}
.product-card h3 {
    height: 2.8rem;
    min-height: 0;
    margin: 0 0 12px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: #1e293b;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.4;
}
.product-card h3 a:hover {
    color: var(--product-cta-hover-bg);
}
.product-meta-line {
    display: none;
}
.product-price {
    margin-top: auto;
    margin-bottom: 12px;
}
.product-price span,
.product-price b {
    color: var(--product-cta-bg);
    font-size: 1.15rem;
    font-weight: 800;
}
.product-card .btn-cart,
.product-card .btn-primary {
    min-height: 42px;
    padding: 10px 16px;
    background: var(--product-cta-bg);
    border: 0;
    color: #fff;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.08);
}
.product-card.product-item:hover .btn-cart,
.product-card.product-item:hover .btn-primary {
    background: var(--product-cta-hover-bg);
    color: var(--product-cta-hover-fg);
    box-shadow: 0 8px 20px color-mix(in srgb, var(--product-cta-hover-bg) 25%, transparent);
}
.product-card .flag:not(.sale) {
    display: none;
}

@media (max-width: 560px) {
    .home .product-grid,
    .category-page .catalog-grid,
    .category-page [data-product-listing] {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
    }
    .home .product-card.product-item,
    .category-page .product-card.product-item {
        padding: 0 !important;
        border-radius: 10px;
    }
    .home .product-card .product-img-wrapper,
    .category-page .product-card .product-img-wrapper {
        height: 150px !important;
    }
    .home .product-info-box,
    .category-page .product-info-box {
        padding: 11px !important;
    }
    .home .product-card h3,
    .category-page .product-card h3 {
        min-height: 48px !important;
        height: auto !important;
        margin-bottom: 8px;
        font-size: 13px !important;
        line-height: 1.25 !important;
    }
    .home .product-category-label,
    .category-page .product-category-label,
    .category-page .product-meta-line {
        font-size: 10px !important;
        line-height: 1.25;
    }
    .home .product-price span,
    .home .product-price b,
    .category-page .product-price span,
    .category-page .product-price b {
        font-size: 15px !important;
    }
    .home .product-card .btn-cart,
    .home .product-card .btn-primary,
    .category-page .product-card .btn-cart,
    .category-page .product-card .btn-primary {
        min-height: 36px !important;
        padding: 8px 10px !important;
        font-size: 11px !important;
        line-height: 1;
        border-radius: 8px !important;
        white-space: nowrap;
    }
}

/* PLP toolbar and pagination: use the lighter mobile-style controls across viewports. */
.category-page .listing-toolbar {
    min-height: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(180px, 220px);
    gap: 12px;
    align-items: center;
    margin-bottom: 24px;
    padding: 0;
    border-bottom: 0;
    color: var(--text-muted);
    font-family: var(--font-main);
    font-weight: 600;
    text-transform: none;
}
.category-page .listing-toolbar [data-result-count] {
    justify-self: start;
    color: var(--text-muted);
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.25;
    text-transform: none;
}
.category-page .listing-toolbar label {
    min-width: 0;
    width: 100%;
    display: block;
    color: var(--text-muted);
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 600;
    text-transform: none;
}
.category-page .listing-toolbar .sort-label {
    display: none;
}
.category-page .listing-toolbar select {
    width: 100%;
    height: 44px;
    min-height: 44px;
    border: 1px solid var(--filter-border);
    border-radius: var(--radius-sm);
    background: #fff;
    padding: 0 38px 0 12px;
    color: var(--filter-ink);
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 600;
    text-transform: none;
}
.plp-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 34px 0 0;
}
.plp-pagination[hidden] {
    display: none;
}
.plp-page-btn,
.plp-page-ellipsis {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 700;
}
.plp-page-btn {
    border: 1px solid var(--filter-border);
    background: #fff;
    color: var(--filter-ink);
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.plp-page-btn:hover:not(:disabled),
.plp-page-btn.is-active {
    border-color: var(--product-cta-bg);
    background: var(--product-cta-bg);
    color: #fff;
}
.plp-page-btn:hover:not(:disabled) {
    transform: translateY(-1px);
}
.plp-page-btn:disabled {
    opacity: 0.42;
    cursor: not-allowed;
}
.plp-page-ellipsis {
    color: var(--text-muted);
}

@media (max-width: 860px) {
    .category-page .listing-toolbar {
        grid-template-columns: 46px minmax(0, 1fr);
        gap: 10px 12px;
        margin-bottom: 18px;
    }
    .category-page .listing-toolbar [data-result-count] {
        grid-column: 1 / -1;
        order: 1;
    }
    .category-page .filter-drawer-toggle {
        order: 2;
    }
    .category-page .listing-toolbar label {
        grid-column: auto;
        order: 3;
    }
    .plp-pagination {
        gap: 6px;
        margin-top: 28px;
    }
    .plp-page-btn,
    .plp-page-ellipsis {
        width: 38px;
        height: 38px;
        font-size: 13px;
    }
}

/* Homepage product/category grids */
@media (min-width: 861px) {
    .home [data-new-products],
    .home [data-best-products] {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 18px;
    }
    .home [data-new-products] .product-card .product-img-wrapper,
    .home [data-best-products] .product-card .product-img-wrapper {
        height: 210px;
    }
    .home [data-new-products] .product-info-box,
    .home [data-best-products] .product-info-box {
        padding: 14px 14px 16px;
    }
    .home [data-new-products] .product-card h3,
    .home [data-best-products] .product-card h3 {
        font-size: 0.88rem;
    }
    .home [data-new-products] .product-card .btn-cart,
    .home [data-new-products] .product-card .btn-primary,
    .home [data-best-products] .product-card .btn-cart,
    .home [data-best-products] .product-card .btn-primary {
        padding-left: 10px;
        padding-right: 10px;
        font-size: 0.76rem;
    }
}

@media (max-width: 560px) {
    .home [data-new-products] .product-card:nth-child(n + 5),
    .home [data-best-products] .product-card:nth-child(n + 5) {
        display: none;
    }
    .home .cat-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }
}

/* Desktop nav dropdown: match demo-ribolovnicentar, text-only items. */
@media (min-width: 861px) {
    .main-nav > ul {
        gap: clamp(10px, 1.15vw, 18px);
    }

    .main-nav > ul > li > a {
        font-size: 13px;
        white-space: nowrap;
    }

    .nav-dropdown,
    .nav-dropdown-single,
    .accessory-nav-dropdown {
        width: 270px !important;
        max-width: 270px !important;
        padding: 8px !important;
        gap: 2px !important;
        grid-template-columns: 1fr !important;
        border-radius: 10px;
    }

    .nav-dropdown a,
    .accessory-nav-dropdown a {
        min-height: 34px !important;
        display: grid;
        grid-template-columns: minmax(0, 1fr) !important;
        padding: 7px 10px !important;
        column-gap: 0 !important;
        border-radius: 6px !important;
    }

    .nav-dropdown i,
    .accessory-nav-dropdown i {
        display: none !important;
    }

    .nav-dropdown span,
    .accessory-nav-dropdown span {
        font-size: 13px !important;
        line-height: 1.2 !important;
        font-weight: 760 !important;
    }
}

/* Header and hero reference update */
.header,
.header.sticky {
    position: sticky;
    top: 0;
    left: auto;
    width: 100%;
    max-width: none;
    height: auto;
    padding: 0;
    transform: none;
    display: block;
    background: #ffffff;
    border: 0;
    border-bottom: 1px solid #edf0f5;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
}

.header.sticky {
    box-shadow: 0 12px 30px rgba(7, 23, 51, 0.08);
}

.header-shell {
    width: min(calc(100% - 96px), 1540px);
    min-height: 98px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: clamp(24px, 3vw, 56px);
}

.header-shell .logo {
    width: auto;
    min-width: 0;
    min-height: 0;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    justify-content: flex-start;
}

.header-shell .logo img {
    width: clamp(174px, 14vw, 214px);
    max-height: 54px;
    object-fit: contain;
}

.header-shell .menu-toggle {
    display: none;
}

.header-shell .main-nav {
    position: static;
    width: auto;
    max-width: none;
    height: auto;
    max-height: none;
    margin: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
    overflow: visible;
    z-index: auto;
}

.header-shell .mobile-nav-head {
    display: none;
}

.header-shell .main-nav > ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 2.05vw, 44px);
    flex-wrap: nowrap;
    min-width: 0;
    overflow: visible;
}

.header-shell .main-nav li {
    border: 0;
}

.header-shell .main-nav > ul > li > a {
    display: inline-flex;
    align-items: center;
    min-height: 78px;
    padding: 0;
    color: #071733;
    font-family: var(--font-main) !important;
    font-size: clamp(13px, 0.95vw, 16px);
    font-weight: 500;
    line-height: 1.2;
    text-transform: none;
    white-space: nowrap;
}

.header-shell .main-nav a:hover,
.header-shell .main-nav a.active {
    color: var(--brand-primary);
}

.header-shell .nav-has-dropdown {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    position: relative;
}

.header-shell .nav-dropdown-toggle {
    width: auto;
    min-width: 0;
    min-height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    color: #071733;
    font-size: 11px;
}

.header-shell .nav-has-dropdown:hover .nav-dropdown-toggle,
.header-shell .nav-has-dropdown:focus-within .nav-dropdown-toggle {
    color: var(--brand-primary);
    transform: rotate(180deg);
}

.header-shell .nav-dropdown,
.header-shell .nav-dropdown-single,
.header-shell .accessory-nav-dropdown {
    top: calc(100% - 4px) !important;
    left: -18px;
    right: auto;
    width: 270px !important;
    max-width: min(270px, calc(100vw - 40px)) !important;
    padding: 8px !important;
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 2px !important;
    background: #ffffff;
    border: 1px solid #e9edf3;
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(7, 23, 51, 0.12);
}

.header-shell .nav-dropdown a,
.header-shell .accessory-nav-dropdown a {
    min-height: 38px !important;
    display: grid;
    grid-template-columns: minmax(0, 1fr) !important;
    padding: 8px 10px !important;
    color: #071733;
    border: 0;
    border-radius: 6px !important;
    background: transparent;
}

.header-shell .nav-dropdown a:hover,
.header-shell .accessory-nav-dropdown a:hover {
    background: color-mix(in srgb, var(--brand-primary) 7%, #ffffff);
    color: var(--brand-primary);
}

.header-shell .nav-dropdown i,
.header-shell .accessory-nav-dropdown i {
    display: none !important;
}

.header-shell .nav-dropdown span,
.header-shell .accessory-nav-dropdown span {
    font-size: 13px !important;
    line-height: 1.25 !important;
    font-weight: 600 !important;
}

.header-shell .header-actions {
    position: static;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(12px, 1.4vw, 24px);
    width: auto;
    margin: 0;
    padding: 0;
    pointer-events: auto;
}

.header-shell .header-actions .icon-btn {
    position: relative;
    width: 42px;
    height: 42px;
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #071733;
    border: 0;
    border-radius: 50%;
    font-size: 24px;
    pointer-events: auto;
}

.header-shell .header-actions .icon-btn:hover {
    background: color-mix(in srgb, var(--brand-primary) 8%, #ffffff);
    color: var(--brand-primary);
}

.header-shell .cart-btn .badge {
    top: 0;
    right: 0;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    background: var(--brand-primary);
    color: #ffffff;
    font-size: 11px;
    line-height: 18px;
}

.search-panel,
.header.sticky + .search-panel {
    top: 98px;
    width: min(calc(100% - 96px), 1080px);
}

.home .hero {
    min-height: clamp(640px, calc(100svh - 98px), 820px);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #071733;
    background:
        linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.93) 33%, rgba(255,255,255,0.68) 44%, rgba(255,255,255,0) 63%),
        var(--home-hero-image, none) center right / cover no-repeat;
}

.home .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 26%, rgba(155,22,135,0.08), transparent 28%),
        linear-gradient(180deg, rgba(255,255,255,0.15), rgba(255,255,255,0));
    pointer-events: none;
}

.home .hero-content {
    width: min(660px, 43vw);
    margin-left: max(64px, calc((100vw - 1540px) / 2 + 48px));
    padding: 44px 0 42px;
    position: relative;
    z-index: 1;
    color: #071733;
    animation: rise 0.7s ease both;
}

.home .hero-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    color: var(--brand-primary);
    font-size: 13px;
    font-weight: 850;
    letter-spacing: 1.7px;
    line-height: 1.2;
    text-transform: uppercase;
}

.home .hero-subtitle::before {
    content: "";
    width: 46px;
    height: 5px;
    background: var(--brand-primary);
    border-radius: 999px;
}

.home .hero-title {
    max-width: 690px;
    margin: 30px 0 24px;
    color: #071733 !important;
    font-family: var(--font-heading);
    font-size: clamp(54px, 5.25vw, 86px);
    font-weight: 900;
    line-height: 1.04;
    letter-spacing: 0;
    opacity: 1;
}

.home .hero-content p {
    max-width: 560px;
    margin: 0 0 34px;
    color: #3c4a63 !important;
    font-size: clamp(18px, 1.35vw, 25px);
    font-weight: 500;
    line-height: 1.55;
    opacity: 1;
}

.home .hero-actions {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.home .hero-actions .btn {
    min-height: 58px;
    padding: 0 32px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 800;
    line-height: 1;
    text-transform: none;
}

.home .hero-actions .btn i {
    font-size: 14px;
    transition: transform 0.2s ease;
}

.home .hero-actions .btn:hover i {
    transform: translateX(4px);
}

.home .hero .btn-primary {
    background: var(--brand-primary);
    color: #ffffff;
    box-shadow: 0 16px 32px color-mix(in srgb, var(--brand-primary) 24%, transparent);
}

.home .hero .btn-primary:hover {
    background: var(--brand-primary-dark);
    color: #ffffff;
}

.home .hero .btn-light {
    color: #071733;
    background: rgba(255,255,255,0.56);
    border: 1px solid rgba(7,23,51,0.42);
    box-shadow: none;
}

.home .hero .btn-light:hover {
    color: var(--brand-primary);
    background: #ffffff;
    border-color: var(--brand-primary);
}

.hero-proof {
    display: flex;
    align-items: stretch;
    gap: 22px;
    max-width: 620px;
    margin-top: 58px;
    color: #071733;
}

.hero-proof > div {
    min-width: 0;
    flex: 1 1 0;
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 14px;
    align-items: center;
    padding-right: 22px;
    border-right: 1px solid rgba(7,23,51,0.16);
}

.hero-proof > div:last-child {
    padding-right: 0;
    border-right: 0;
}

.hero-proof i {
    grid-row: 1 / span 2;
    color: #071733;
    font-size: 27px;
}

.hero-proof span {
    min-width: 0;
    color: #536176;
    font-size: 13px;
    font-weight: 650;
    line-height: 1.25;
}

.hero-proof strong {
    min-width: 0;
    color: #071733;
    font-size: 14px;
    font-weight: 850;
    line-height: 1.25;
}

@media (max-width: 1240px) and (min-width: 861px) {
    .header-shell {
        width: min(calc(100% - 44px), 1180px);
        gap: 20px;
    }

    .header-shell .main-nav > ul {
        gap: 16px;
    }

    .header-shell .main-nav > ul > li > a {
        font-size: 13px;
    }

    .header-shell .header-actions {
        gap: 10px;
    }

    .home .hero-content {
        width: min(610px, 50vw);
        margin-left: 42px;
    }
}

@media (max-width: 860px) {
    .header,
    .header.sticky {
        min-height: 72px;
        background: #ffffff;
        box-shadow: 0 8px 24px rgba(7,23,51,0.08);
    }

    .header-shell {
        width: 100%;
        min-height: 72px;
        padding: 0 14px;
        grid-template-columns: 44px minmax(0, 1fr) auto;
        gap: 8px;
    }

    .header-shell .menu-toggle {
        display: inline-flex !important;
        width: 40px;
        height: 40px;
        background: transparent;
        color: #071733;
        font-size: 22px;
    }

    .header-shell .logo {
        width: 100%;
        justify-content: center;
        overflow: visible;
    }

    .header-shell .logo img {
        width: min(164px, 44vw);
        max-height: 42px;
    }

    .header-shell .header-actions {
        gap: 4px;
    }

    .header-shell .account-shortcut {
        display: none !important;
    }

    .header-shell .header-actions .icon-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .header-shell .main-nav {
        position: fixed !important;
        top: 72px;
        left: 0;
        right: 0;
        width: 100%;
        height: calc(100svh - 72px);
        max-height: calc(100svh - 72px);
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
        background: #ffffff;
        box-shadow: 0 18px 42px rgba(7,23,51,0.14);
        transform: translateY(-120%);
        transition: transform 0.25s ease;
        z-index: 1001;
    }

    .header-shell .main-nav.open {
        transform: translateY(0);
    }

    .header-shell .mobile-nav-head {
        min-height: 58px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 14px 0 22px;
        color: #071733;
        background: #ffffff;
        border-bottom: 1px solid #edf0f5;
        font-size: 13px;
        font-weight: 850;
        text-transform: uppercase;
    }

    .header-shell .main-nav > ul {
        display: grid;
        justify-content: stretch;
        gap: 0;
        overflow: visible;
    }

    .header-shell .main-nav li {
        border-bottom: 1px solid #edf0f5;
    }

    .header-shell .main-nav > ul > li > a {
        min-height: 56px;
        padding: 17px 20px;
        display: flex;
        align-items: center;
        color: #071733;
        font-size: 15px;
        font-weight: 800;
    }

    .header-shell .nav-has-dropdown {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 52px;
        gap: 0;
    }

    .header-shell .nav-dropdown-toggle {
        width: 52px;
        min-width: 52px;
        min-height: 56px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: var(--brand-primary);
        border-left: 1px solid #edf0f5;
    }

    .header-shell .nav-dropdown,
    .header-shell .nav-dropdown-single,
    .header-shell .accessory-nav-dropdown {
        grid-column: 1 / -1;
        position: static !important;
        width: 100% !important;
        max-width: none !important;
        padding: 0 0 10px 0 !important;
        display: none;
        gap: 0 !important;
        background: #ffffff;
        border: 0;
        border-top: 1px solid #edf0f5;
        border-radius: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .header-shell .nav-has-dropdown.is-open .nav-dropdown {
        display: grid;
    }

    .header-shell .nav-dropdown a,
    .header-shell .nav-dropdown a:hover {
        min-height: 54px !important;
        display: flex;
        align-items: center;
        padding: 10px 24px 10px 34px !important;
        color: #3c4a63;
        background: #ffffff;
        border-bottom: 1px solid rgba(237,240,245,0.8);
        border-radius: 0 !important;
    }

    .header-shell .nav-dropdown span {
        font-size: 14px !important;
    }

    .header-shell .mobile-account-link {
        display: block;
        padding: 16px 20px 24px;
        border-bottom: 0;
    }

    .header-shell .mobile-account-link .btn {
        width: 100%;
        min-height: 48px;
    }

    body.nav-open .header,
    body.nav-open .header.sticky {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1002;
    }

    body.nav-open .main-nav {
        top: 72px;
        height: calc(100svh - 72px);
        max-height: calc(100svh - 72px);
    }

    .search-panel,
    .header.sticky + .search-panel {
        top: 72px;
        width: 100%;
    }

    .home .hero {
        min-height: 0;
        display: block;
        padding: 0 0 30px;
        background:
            linear-gradient(180deg, rgba(255,255,255,0.99) 0%, rgba(255,255,255,0.96) 48%, rgba(255,255,255,0.88) 100%),
            linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.92) 58%, rgba(255,255,255,0.78) 100%),
            var(--home-hero-image, none) 58% bottom / cover no-repeat;
    }

    .home .hero::before {
        display: none;
    }

    .home .hero::after {
        display: none;
    }

    .home .hero-content {
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 34px 22px 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .home .hero-subtitle {
        gap: 12px;
        font-size: 11px;
        letter-spacing: 1.2px;
    }

    .home .hero-subtitle::before {
        width: 34px;
        height: 4px;
    }

    .home .hero-title {
        margin: 20px 0 14px;
        color: #071733 !important;
        font-size: clamp(38px, 10.4vw, 54px);
        line-height: 1.03;
    }

    .home .hero-content p {
        max-width: 34rem;
        margin-bottom: 20px;
        color: #2f3d55 !important;
        font-size: 16px;
        line-height: 1.48;
    }

    .home .hero-actions {
        width: 100%;
        gap: 12px;
    }

    .home .hero-actions .btn {
        min-height: 52px;
        padding: 0 16px;
        flex: 1 1 calc(50% - 6px);
        font-size: 14px;
    }

    .hero-proof {
        width: 100%;
        max-width: none;
        margin-top: 20px;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        border-top: 0;
    }

    .hero-proof > div {
        min-height: 86px;
        padding: 10px 8px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 5px;
        background: rgba(255,255,255,0.54);
        border: 1px solid rgba(7,23,51,0.12);
        border-radius: 6px;
        border-right: 0;
        border-bottom: 1px solid rgba(7,23,51,0.12);
    }

    .hero-proof > div:last-child {
        border-right: 1px solid rgba(7,23,51,0.12);
        border-bottom: 1px solid rgba(7,23,51,0.12);
    }

    .hero-proof i {
        font-size: 19px;
    }

    .hero-proof span {
        font-size: 11px;
        line-height: 1.2;
    }

    .hero-proof strong {
        font-size: 11px;
        line-height: 1.2;
    }
}

@media (max-width: 520px) {
    .home .hero-actions .btn {
        flex-basis: calc(50% - 6px);
        width: auto;
    }
}

/* Product cards and homepage carousel */
.product-card.product-item {
    height: 100%;
    padding: 0 !important;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #dfe7f1;
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(7, 23, 51, 0.045);
    transform: none;
    transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.product-card.product-item:hover {
    border-color: color-mix(in srgb, var(--brand-primary) 30%, #dfe7f1);
    box-shadow: 0 22px 46px rgba(7, 23, 51, 0.095);
    transform: translateY(-4px);
}

.product-card .product-img-wrapper {
    width: 100%;
    height: 310px;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, #f8fbff 0%, #ffffff 62%, #edf3fb 100%);
    border: 0;
    border-bottom: 1px solid #dfe7f1;
    border-radius: 0;
}

.product-card .product-img-wrapper a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.product-card .product-img-wrapper img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: cover;
    padding: 0;
    transition: transform 0.32s ease;
}

.product-card .img-hover {
    display: none;
}

.product-card:hover .img-main {
    opacity: 1;
    transform: scale(1.035);
}

.product-card .flag.sale {
    top: 16px;
    left: 16px;
    z-index: 2;
    border-radius: 999px;
    background: var(--brand-primary);
    color: #ffffff;
}

.product-card .btn-wishlist,
.product-category-label {
    display: none !important;
}

.product-info-box {
    min-height: 154px;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    padding: 18px 18px 16px !important;
}

.product-card h3 {
    min-height: 52px !important;
    height: auto !important;
    margin: 0 0 14px !important;
    color: #071733;
    font-family: var(--font-main);
    font-size: 18px !important;
    font-weight: 700;
    line-height: 1.32 !important;
}

.product-card h3 a:hover {
    color: var(--brand-primary);
}

.product-price {
    margin: 0 0 20px !important;
    display: flex;
    align-items: baseline;
    gap: 8px;
    color: #071733;
}

.product-price span,
.product-price b {
    color: #071733 !important;
    font-size: 20px !important;
    font-weight: 800;
    line-height: 1.1;
}

.product-price del {
    color: #7b8798;
    font-size: 13px;
}

.product-card-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.product-card-link {
    color: var(--product-card-accent);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
}

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

.product-card-cart {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--product-card-accent-border);
    border-radius: 50%;
    background: #ffffff;
    color: var(--product-card-accent);
    font-size: 0;
    box-shadow: none;
    transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.product-card-cart .header-icon-svg {
    width: 24px;
    height: 24px;
    stroke-width: 1.65;
}

.product-card-cart:hover {
    background: var(--product-card-accent);
    border-color: var(--product-card-accent);
    color: #ffffff;
    transform: translateY(-2px);
}

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

.home-products-showcase {
    width: min(calc(100% - 96px), 1540px);
    margin: 0 auto;
    padding: 72px 0 84px;
}

.home-products-head {
    min-height: 150px;
    margin-bottom: 36px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
}

.home-products-copy {
    max-width: 560px;
}

.home-products-count {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--product-card-accent);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 2px;
}

.home-products-copy h2 {
    margin: 0 0 14px;
    color: #071733;
    font-size: clamp(42px, 4vw, 58px);
    font-weight: 800;
    line-height: 1.05;
}

.home-products-copy p {
    max-width: 340px;
    color: #40506a;
    font-size: 19px;
    font-weight: 500;
    line-height: 1.55;
}

.home-products-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    padding-bottom: 42px;
}

.home-products-nav button {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #aebbd0;
    border-radius: 50%;
    background: #ffffff;
    color: #071733;
    font-size: 21px;
    transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease, transform 0.22s ease, opacity 0.22s ease;
}

.home-products-nav button:last-child {
    background: var(--product-card-accent);
    border-color: var(--product-card-accent);
    color: #ffffff;
}

.home-products-nav button:not(:disabled):hover {
    transform: translateY(-2px);
}

.home-products-nav button:disabled {
    opacity: 0.45;
    cursor: default;
}

.home-products-viewport {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.home-products-viewport::-webkit-scrollbar {
    display: none;
}

.home-products-track {
    display: flex;
    gap: 24px;
    align-items: stretch;
}

.home-products-track .product-card {
    flex: 0 0 calc((100% - 96px) / 5);
    scroll-snap-align: start;
}

@media (max-width: 1240px) {
    .home-products-showcase {
        width: min(calc(100% - 44px), 1180px);
    }

    .home-products-track .product-card {
        flex-basis: calc((100% - 72px) / 4);
    }
}

@media (max-width: 980px) {
    .home-products-track .product-card {
        flex-basis: calc((100% - 48px) / 3);
    }
}

@media (max-width: 860px) {
    .product-card .product-img-wrapper {
        height: 245px !important;
    }

    .home-products-showcase {
        width: 100%;
        padding: 54px 18px 64px;
    }

    .home-products-head {
        min-height: 0;
        margin-bottom: 28px;
        align-items: flex-start;
    }

    .home-products-copy h2 {
        font-size: 36px;
    }

    .home-products-copy p {
        font-size: 16px;
    }

    .home-products-nav {
        gap: 10px;
        padding-bottom: 0;
    }

    .home-products-nav button {
        width: 46px;
        height: 46px;
        font-size: 16px;
    }

    .home-products-track {
        gap: 16px;
    }

    .home-products-track .product-card {
        flex-basis: min(76vw, 310px);
    }
}

@media (max-width: 560px) {
    .product-card .product-img-wrapper {
        height: 220px !important;
    }

    .product-info-box {
        min-height: 144px;
        padding: 16px !important;
    }

    .product-card h3 {
        min-height: 44px !important;
        font-size: 16px !important;
    }

    .product-card-cart {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
        font-size: 19px;
    }

    .home-products-head {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 18px;
    }

    .home-products-count {
        margin-bottom: 12px;
        font-size: 13px;
    }

    .home-products-copy h2 {
        font-size: 31px;
    }

    .home-products-copy p {
        max-width: 260px;
        font-size: 14px;
    }
}

/* Header utility bar, icon weight, footer copy polish */
.announcement-bar {
    position: relative;
    z-index: 3;
    background: #f1f3f6;
    border-bottom: 1px solid #e3e7ed;
    color: #46556b;
}

.announcement-inner {
    width: min(calc(100% - 96px), 1540px);
    min-height: 38px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
}

.announcement-inner > span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    white-space: nowrap;
}

.announcement-inner i {
    color: #071733;
    font-size: 14px;
}

.announcement-inner nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
    min-width: 0;
}

.announcement-inner a {
    color: #46556b;
    font-size: 13px;
    font-weight: 750;
    white-space: nowrap;
}

.announcement-inner a:hover {
    color: #071733;
}

.header-icon-svg {
    width: 29px;
    height: 29px;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.65;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.header-icon-svg * {
    vector-effect: non-scaling-stroke;
}

.header-shell .header-actions .icon-btn {
    font-size: 0;
    color: #071733;
}

.header-shell .header-actions .icon-btn:hover {
    color: #005de8;
}

.header-shell .cart-btn .badge {
    top: 2px;
    right: 1px;
}

.search-panel {
    top: 136px;
}

.header.sticky + .search-panel {
    top: 98px;
}

.hero-proof > div {
    grid-template-columns: 34px minmax(0, 1fr);
}

    .hero-proof i {
        grid-row: 1 / span 2;
    }

.footer-main {
    gap: 32px;
    padding-top: 56px;
    padding-bottom: 50px;
}

.footer-brand-panel p {
    max-width: 270px;
    margin: 16px 0 16px;
    color: #c6d0e3;
    font-size: 13px;
    line-height: 1.55;
}

.footer-brand img {
    filter: brightness(0) invert(1);
    opacity: 0.92;
}

.footer h3 {
    margin-bottom: 16px;
    font-size: 12px;
}

.footer-links li {
    margin-bottom: 8px;
    font-size: 13px;
    line-height: 1.32;
}

.footer-contact {
    gap: 4px;
}

.footer-contact span {
    margin-top: 8px;
    font-size: 10px;
}

.footer-contact a {
    font-size: 13px;
}

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

@media (max-width: 1240px) {
    .announcement-inner {
        width: min(calc(100% - 44px), 1180px);
    }
}

@media (max-width: 860px) {
    .announcement-inner {
        width: 100%;
        min-height: 40px;
        padding: 0 14px;
        justify-content: flex-start;
        gap: 20px;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .announcement-inner::-webkit-scrollbar {
        display: none;
    }

    .announcement-inner nav {
        gap: 16px;
        flex: 0 0 auto;
        margin-left: 4px;
        padding-right: 2px;
    }

    .announcement-inner > span {
        flex: 0 0 auto;
    }

    .announcement-inner > span,
    .announcement-inner a {
        font-size: 12px;
    }

    .search-panel {
        top: 112px;
    }

    .header.sticky + .search-panel {
        top: 72px;
    }

    .hero-proof > div {
        display: grid;
        grid-template-columns: 26px minmax(0, 1fr);
        grid-template-rows: auto auto;
        column-gap: 8px;
        align-items: center;
    }

    .hero-proof i {
        grid-row: 1 / span 2;
        font-size: 18px;
    }

    .footer-main {
        gap: 26px;
    }
}

/* PLP final layout: light catalog banner, left filters, and dense product grid. */
body.category-page {
    background: #ffffff;
}

body.category-page main.page-shell {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

.category-page .catalog-hero {
    width: 100%;
    min-height: 200px;
    height: auto;
    margin: 0;
    padding: 0;
    display: block;
    overflow: hidden;
    position: relative;
    isolation: isolate;
    border: 0;
    background: linear-gradient(105deg, #f8fbff 0%, #eef5ff 58%, #e6effb 100%);
    color: #071733;
}

.category-page .catalog-hero::before,
.category-page .catalog-hero::after {
    display: none;
}

.category-page .category-hero-copy {
    width: min(calc(100% - 96px), 1540px);
    min-height: 200px;
    margin: 0 auto;
    padding: 38px 0;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: transparent !important;
}

.category-page .category-hero-copy::after {
    display: none !important;
}

.category-page .catalog-hero .eyebrow {
    display: block;
    margin: 0 0 13px;
    color: #35506d;
    font-family: var(--font-main);
    font-size: 13px;
    line-height: 1.35;
    font-weight: 650;
    letter-spacing: 0;
    text-transform: none;
}

.category-page .catalog-hero h1 {
    max-width: 520px;
    margin: 0 0 12px;
    color: #071733;
    font-size: clamp(36px, 4vw, 50px);
    line-height: 1.05;
    letter-spacing: 0;
    font-weight: 850;
}

.category-page .catalog-hero p {
    max-width: 560px;
    margin: 0;
    color: #41536e;
    font-size: 16px;
    line-height: 1.62;
    font-weight: 500;
}

.category-page .category-hero-media {
    display: none;
}

.category-page .category-hero-media img,
.category-page .category-hero-media::before,
.category-page .category-hero-media::after {
    display: none;
}

.category-page .plp-container {
    width: min(calc(100% - 96px), 1540px);
    margin: 44px auto 92px;
    display: grid;
    grid-template-columns: 248px minmax(0, 1fr);
    gap: 48px;
    align-items: start;
}

.category-page .product-listing-section {
    min-width: 0;
}

.category-page .plp-sidebar {
    position: sticky;
    top: 116px;
    padding: 0;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.category-page .filter-panel-title {
    margin: 0 0 20px;
    color: #071733;
    font-family: var(--font-main);
    font-size: 0;
    line-height: 1.2;
    font-weight: 800;
    text-transform: none;
}

.category-page .filter-panel-title::after {
    content: "Filteri";
    font-size: 16px;
}

.category-page .filter-section {
    margin: 0;
    padding: 0 0 23px;
    border: 0;
    background: transparent;
}

.category-page .filter-section + .filter-section {
    padding-top: 1px;
}

.category-page .filter-section-toggle {
    min-height: 34px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: #071733;
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.35;
    font-weight: 800;
    text-transform: none;
}

.category-page .filter-section-toggle::after,
.category-page .category-subtoggle::after {
    color: #071733;
    font-family: var(--font-main);
    font-size: 18px;
    font-weight: 700;
}

.category-page .filter-section-toggle i,
.category-page .category-subtoggle i {
    display: none !important;
}

.category-page .filter-list,
.category-page .size-filter,
.category-page .color-filter {
    margin: 12px 0 0;
    display: grid;
    gap: 0;
}

.category-page .category-filter-list {
    margin-left: 12px;
}

.category-page .filter-list button,
.category-page .category-filter-row > button:first-child,
.category-page .category-sublist button {
    min-height: 29px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent !important;
    color: #53637a;
    font-family: var(--font-main);
    font-size: 13.5px;
    line-height: 1.35;
    font-weight: 550;
}

.category-page .filter-list button:hover,
.category-page .filter-list button.active,
.category-page .size-filter label:hover,
.category-page .color-filter label:hover,
.category-page .size-filter input:checked + span,
.category-page .color-filter input:checked ~ span:last-child {
    color: #071733 !important;
}

.category-page .filter-list button.active span:first-child,
.category-page .size-filter input:checked + span,
.category-page .color-filter input:checked ~ span:last-child {
    font-weight: 800;
}

.category-page .filter-count,
.category-page .count {
    min-width: 0;
    height: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent !important;
    color: #7b8aa1 !important;
    font-size: 12px;
    line-height: 1.35;
    font-weight: 650;
}

.category-page .category-filter-row {
    grid-template-columns: minmax(0, 1fr) 26px;
    gap: 2px;
}

.category-page .category-subtoggle {
    width: 24px !important;
    min-width: 24px !important;
    height: 27px;
    min-height: 27px !important;
    color: #071733 !important;
}

.category-page .category-sublist {
    margin: 6px 0 8px 10px;
    padding-left: 12px;
    border-left: 1px solid #dbe5f2;
}

.category-page .price-input-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin: 10px 0 12px;
}

.category-page .price-input-grid label {
    display: grid;
    gap: 5px;
    color: #6b7890;
    font-family: var(--font-main);
    font-size: 11px;
    line-height: 1.2;
    font-weight: 700;
    text-transform: none;
}

.category-page .price-input-grid input {
    height: 38px;
    padding: 0 10px;
    border: 1px solid #dbe5f2;
    border-radius: 8px;
    background: #fff;
    color: #071733;
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 650;
}

.category-page .price-range-sliders {
    --price-thumb-size: 22px;
    --price-range-edge: 13px;
    height: 38px;
    margin-top: 14px;
    overflow: visible;
}

.category-page .price-slider-track {
    height: 7px;
    top: 16px;
    left: var(--price-range-edge);
    right: var(--price-range-edge);
    background: #d6e1f0;
    border-radius: 999px;
}

.category-page .price-slider-track::before {
    background: var(--product-card-accent);
    box-shadow: 0 0 0 1px var(--product-card-accent-shadow);
}

.category-page .price-slider-handle {
    display: block;
    width: var(--price-thumb-size);
    height: var(--price-thumb-size);
    top: 50%;
    border: 3px solid var(--product-card-accent);
    box-shadow: 0 4px 10px rgba(7,23,51,0.14);
    transform: translate(-50%, -50%);
}

.category-page .price-range-input {
    left: var(--price-range-edge);
    right: var(--price-range-edge);
    width: auto;
    height: 38px;
    pointer-events: none;
}

.category-page .price-range-min {
    z-index: 5;
}

.category-page .price-range-max {
    z-index: 6;
    pointer-events: none;
}

.category-page .price-range-input::-webkit-slider-thumb {
    width: 22px;
    height: 22px;
    cursor: pointer;
    pointer-events: auto;
}

.category-page .price-range-input::-moz-range-thumb {
    width: 22px;
    height: 22px;
    cursor: pointer;
    pointer-events: auto;
}

.category-page .price-range-values {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 4px;
    color: #53637a;
    font-size: 12px;
    font-weight: 800;
}

.category-page .size-filter li,
.category-page .color-filter li {
    min-height: 27px;
    gap: 10px;
}

.category-page .size-filter label,
.category-page .color-filter label {
    gap: 8px;
    color: #53637a;
    font-family: var(--font-main);
    font-size: 13px;
    line-height: 1.35;
    font-weight: 550;
}

.category-page .size-filter input[type="radio"] {
    width: 14px;
    height: 14px;
    accent-color: var(--product-card-accent);
}

.category-page .color-filter input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.category-page .filter-color-swatch {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    border-radius: 50%;
    background: var(--swatch);
    border: 1px solid rgba(7,23,51,0.14);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.54);
}

.category-page .color-filter input:checked + .filter-color-swatch {
    box-shadow: 0 0 0 3px #fff, 0 0 0 5px var(--product-card-accent);
}

.category-page .clear-filters {
    width: 100%;
    min-height: 42px;
    margin-top: 2px;
    border: 1px solid #dbe5f2;
    border-radius: 8px;
    background: #fff;
    color: #071733;
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 800;
    text-transform: none;
    box-shadow: none;
}

.category-page .clear-filters:hover {
    border-color: var(--product-card-accent);
    background: var(--product-card-accent);
    color: #fff;
}

.category-page .listing-toolbar {
    min-height: 44px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 18px;
    align-items: center;
    margin: 0 0 24px;
    padding: 0;
    border: 0;
    color: #40506a;
    font-family: var(--font-main);
    font-weight: 600;
    text-transform: none;
}

.category-page .listing-toolbar [data-result-count] {
    color: #40506a;
    font-family: var(--font-main);
    font-size: 14px;
    line-height: 1.35;
    font-weight: 600;
    text-transform: none;
}

.category-page .listing-toolbar label {
    width: auto;
    min-width: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #53637a;
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 650;
    text-transform: none;
}

.category-page .listing-toolbar .sort-label {
    display: inline;
}

.category-page .listing-toolbar select {
    width: 150px;
    height: 40px;
    min-height: 40px;
    padding: 0 34px 0 12px;
    border: 1px solid #dbe5f2;
    border-radius: 8px;
    background-color: #fff;
    color: #071733;
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 600;
    text-transform: none;
}

.category-page .plp-view-toggle {
    height: 40px;
    display: inline-flex;
    align-items: center;
    overflow: hidden;
    border: 1px solid #dbe5f2;
    border-radius: 8px;
    background: #fff;
}

.category-page .plp-view-toggle button {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-right: 1px solid #dbe5f2;
    background: #fff;
    color: #6b7890;
    font-size: 14px;
}

.category-page .plp-view-toggle button:last-child {
    border-right: 0;
}

.category-page .plp-view-toggle button.is-active,
.category-page .plp-view-toggle button:hover {
    color: var(--product-card-accent);
    background: #f4f8ff;
}

.category-page .filter-drawer-toggle {
    display: none;
}

.category-page .catalog-grid,
.category-page [data-product-listing] {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 28px 22px !important;
}

body.category-page.plp-list-view .catalog-grid,
body.category-page.plp-list-view [data-product-listing] {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
}

body.category-page.plp-list-view .product-card.product-item {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    min-height: 220px;
}

body.category-page.plp-list-view .product-card .product-img-wrapper {
    height: 100%;
    min-height: 220px;
    border-right: 1px solid #dbe5f2;
    border-bottom: 0;
}

body.category-page.plp-list-view .product-info-box {
    justify-content: center;
    padding: 24px 28px;
}

body.category-page.plp-list-view .product-card h3 {
    max-width: 520px;
    height: auto;
    font-size: 18px;
}

.category-page .product-card.product-item {
    border-color: #dde7f4;
    box-shadow: 0 8px 24px rgba(35, 67, 112, 0.06);
}

.category-page .product-card.product-item:hover {
    box-shadow: 0 18px 38px rgba(35, 67, 112, 0.13);
}

.category-page .product-card .product-img-wrapper {
    background: linear-gradient(135deg, #f7fbff, #edf5ff);
}

.category-page .plp-pagination {
    margin-top: 36px;
}

.category-page .plp-page-btn,
.category-page .plp-page-ellipsis {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    font-size: 13px;
}

.category-page .plp-page-btn:hover:not(:disabled),
.category-page .plp-page-btn.is-active {
    border-color: var(--product-card-accent);
    background: var(--product-card-accent);
}

@media (max-width: 1320px) {
    .category-page .plp-container {
        width: min(calc(100% - 56px), 1180px);
        grid-template-columns: 238px minmax(0, 1fr);
        gap: 36px;
    }

    .category-page .catalog-grid,
    .category-page [data-product-listing] {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 980px) {
    .category-page .plp-container {
        width: min(calc(100% - 36px), 920px);
        grid-template-columns: 218px minmax(0, 1fr);
        gap: 26px;
    }

    .category-page .listing-toolbar {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .category-page .plp-view-toggle {
        display: none;
    }

    body.category-page.plp-list-view .catalog-grid,
    body.category-page.plp-list-view [data-product-listing] {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }

    body.category-page.plp-list-view .product-card.product-item {
        display: flex;
        min-height: 0;
    }

    body.category-page.plp-list-view .product-card .product-img-wrapper {
        height: 248px;
        min-height: 0;
        border-right: 0;
        border-bottom: 1px solid #dbe5f2;
    }

    body.category-page.plp-list-view .product-info-box {
        padding: 16px 18px 18px;
    }

    body.category-page.plp-list-view .product-card h3 {
        height: 2.8rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 860px) {
    .category-page .catalog-hero {
        min-height: 0;
        grid-template-columns: 1fr;
        background: linear-gradient(138deg, rgba(249,252,255,0.96) 0%, rgba(235,245,255,0.96) 56%, rgba(194,221,255,0.98) 100%);
    }

    .category-page .catalog-hero::before {
        right: -142px;
        bottom: -168px;
        width: 330px;
        height: 330px;
        border-width: 58px;
    }

    .category-page .catalog-hero::after {
        right: -22px;
        top: 28px;
        width: 58px;
        height: 174px;
        opacity: 0.42;
    }

    .category-page .category-hero-copy {
        width: calc(100% - 28px);
        min-height: 186px;
        padding: 34px 0 32px;
    }

    .category-page .category-hero-copy::after {
        display: none !important;
    }

    .category-page .catalog-hero h1 {
        max-width: 340px;
        font-size: 34px;
    }

    .category-page .catalog-hero p {
        max-width: 360px;
        font-size: 14px;
        line-height: 1.55;
    }

    .category-page .category-hero-media {
        display: none;
    }

    .category-page .plp-container {
        width: calc(100% - 28px);
        margin: 28px auto 64px;
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .category-page .plp-sidebar {
        position: fixed;
        top: 66px;
        bottom: 0;
        left: 0;
        width: min(360px, 92vw);
        z-index: 1701;
        padding: 24px 20px 34px;
        overflow-y: auto;
        background: #fff;
        box-shadow: 18px 0 42px rgba(7,23,51,0.16);
        transform: translateX(-105%);
        transition: transform 0.25s ease;
    }

    body.filters-open .category-page .plp-sidebar,
    body.filters-open .plp-sidebar {
        transform: translateX(0);
    }

    .category-page .listing-toolbar {
        grid-template-columns: 46px minmax(0, 1fr);
        gap: 10px 12px;
        margin-bottom: 18px;
    }

    .category-page .listing-toolbar [data-result-count] {
        grid-column: 1 / -1;
        order: 1;
        font-size: 13px;
    }

    .category-page .filter-drawer-toggle {
        order: 2;
        width: 46px;
        height: 42px;
        min-height: 42px;
        padding: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 1px solid #dbe5f2;
        border-radius: 8px;
        background: #fff;
        color: #071733;
        box-shadow: none;
        font-size: 15px;
    }

    .category-page .listing-toolbar label {
        grid-column: auto;
        order: 3;
        width: 100%;
        display: block;
    }

    .category-page .listing-toolbar .sort-label {
        display: none;
    }

    .category-page .listing-toolbar select {
        width: 100%;
        height: 42px;
        min-height: 42px;
    }

    .category-page .catalog-grid,
    .category-page [data-product-listing] {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 14px !important;
    }

    body.category-page.plp-list-view .catalog-grid,
    body.category-page.plp-list-view [data-product-listing] {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    body.category-page.plp-list-view .product-card.product-item {
        display: flex;
        min-height: 0;
    }

    body.category-page.plp-list-view .product-card .product-img-wrapper {
        height: 150px;
        min-height: 0;
        border-right: 0;
        border-bottom: 1px solid #dbe5f2;
    }

    body.category-page.plp-list-view .product-info-box {
        padding: 11px !important;
    }
}

@media (max-width: 560px) {
    .category-page .catalog-hero h1 {
        font-size: 31px;
    }

    .category-page .catalog-hero .eyebrow {
        font-size: 12px;
    }

    .category-page .catalog-grid,
    .category-page [data-product-listing] {
        gap: 10px !important;
    }
}

/* Final typography/search/home polish */
.ui-icon {
    width: 1em;
    height: 1em;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.home .hero-title {
    max-width: 620px;
    font-size: clamp(42px, 4.35vw, 68px) !important;
    line-height: 1.06;
    font-weight: 800;
}

.home .hero-content p {
    max-width: 510px;
    font-size: clamp(16px, 1.12vw, 20px) !important;
    line-height: 1.6;
}

.home .hero-content {
    width: min(610px, 42vw);
}

.hero-proof-icon {
    grid-row: 1 / span 2;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #071733;
}

.hero-proof-icon .ui-icon {
    width: 27px;
    height: 27px;
}

.home-products-count {
    display: none !important;
}

.home-products-nav button,
.home-products-nav button:last-child {
    background: #ffffff;
    border-color: #aebbd0;
    color: #071733;
}

.home-products-nav button:not(:disabled):hover,
.home-products-nav button:last-child:not(:disabled):hover {
    background: var(--product-card-accent);
    border-color: var(--product-card-accent);
    color: #ffffff;
    transform: translateY(-2px);
}

.search-panel {
    position: fixed;
    top: 136px;
}

.header.sticky + .search-panel {
    top: 98px;
}

body.search-page main.page-shell {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

.search-page .catalog-hero {
    width: 100%;
    min-height: 200px;
    height: auto;
    margin: 0;
    display: block;
    border: 0;
    overflow: hidden;
    background: linear-gradient(105deg, #f8fbff 0%, #eef5ff 58%, #e6effb 100%);
    color: #071733;
}

.search-page .catalog-hero::before,
.search-page .catalog-hero::after {
    display: none;
}

.search-page .category-hero-copy {
    width: min(calc(100% - 96px), 1540px);
    min-height: 200px;
    margin: 0 auto;
    padding: 38px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: transparent !important;
}

.search-page .category-hero-copy::after {
    display: none !important;
}

.search-page .catalog-hero .eyebrow {
    display: block;
    margin: 0 0 13px;
    color: #35506d;
    font-size: 13px;
    line-height: 1.35;
    font-weight: 650;
    letter-spacing: 0;
    text-transform: none;
}

.search-page .catalog-hero h1 {
    max-width: 520px;
    margin: 0 0 12px;
    color: #071733;
    font-size: clamp(36px, 4vw, 50px);
    line-height: 1.05;
    font-weight: 800;
}

.search-page .catalog-hero p {
    max-width: 560px;
    margin: 0;
    color: #41536e;
    font-size: 16px;
    line-height: 1.62;
    font-weight: 500;
}

.search-results-layout {
    width: min(calc(100% - 96px), 1540px);
    margin: 44px auto 92px;
}

.search-results-toolbar {
    min-height: 44px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 440px);
    gap: 18px;
    align-items: center;
    margin: 0 0 24px;
    padding: 0;
    border: 0;
    color: #40506a;
}

.search-results-toolbar > span {
    font-size: 14px;
    line-height: 1.35;
    font-weight: 600;
}

.search-page-form {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    margin: 0;
}

.search-page-form input {
    width: 100%;
    height: 44px;
    min-height: 44px;
    border: 1px solid #dbe5f2;
    border-radius: 8px;
    background: #fff;
    color: #071733;
    font-size: 14px;
    font-weight: 500;
}

.search-page-form .btn {
    min-height: 44px;
    border-radius: 8px;
}

.search-page .catalog-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 28px 22px !important;
}

@media (max-width: 1320px) {
    .search-results-layout {
        width: min(calc(100% - 56px), 1180px);
    }

    .search-page .catalog-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 860px) {
    .home .hero-title {
        font-size: clamp(34px, 10vw, 44px) !important;
    }

    .home .hero-content {
        width: 100%;
    }

    .home .hero-content p {
        font-size: 14px !important;
    }

    .search-panel,
    .header.sticky + .search-panel {
        position: fixed;
        top: 112px;
    }

    .search-page .category-hero-copy {
        width: calc(100% - 28px);
        min-height: 186px;
        padding: 34px 0 32px;
    }

    .search-results-layout {
        width: calc(100% - 28px);
        margin: 28px auto 64px;
    }

    .search-results-toolbar {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 18px;
    }

    .search-page-form {
        grid-template-columns: 1fr;
    }

    .search-page .catalog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 14px !important;
    }
}

@media (max-width: 560px) {
    .search-page .catalog-hero h1 {
        font-size: 31px;
    }

    .search-page .catalog-grid {
        gap: 10px !important;
    }
}

/* Homepage category carousel */
.home-category-showcase {
    width: min(calc(100% - 96px), 1540px);
    margin: 0 auto;
    padding: 72px 0 78px;
}

.home-category-head {
    min-height: 116px;
    margin-bottom: 28px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
}

.home-category-copy.section-title {
    max-width: 560px;
    margin: 0;
    text-align: left;
}

.home-category-copy h2 {
    margin: 0 0 12px;
    color: #071733;
    font-size: clamp(36px, 3.4vw, 52px);
    font-weight: 800;
    line-height: 1.05;
}

.home-category-copy p {
    max-width: 360px;
    margin: 0;
    color: #40506a;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
}

.home-category-nav {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 8px;
}

.home-category-nav button {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #aebbd0;
    border-radius: 50%;
    background: #ffffff;
    color: #071733;
    font-size: 18px;
    transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease, transform 0.22s ease, opacity 0.22s ease;
}

.home-category-nav button:not(:disabled):hover {
    background: var(--product-card-accent);
    border-color: var(--product-card-accent);
    color: #ffffff;
    transform: translateY(-2px);
}

.home-category-nav button:disabled {
    opacity: 0.42;
    cursor: default;
}

.home-category-viewport {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.home-category-viewport::-webkit-scrollbar {
    display: none;
}

.home-category-showcase .cat-grid {
    display: grid !important;
    grid-auto-flow: column;
    grid-auto-columns: clamp(220px, 19vw, 290px);
    grid-template-columns: none !important;
    gap: 22px;
}

.home-category-showcase .cat-item {
    min-height: 410px;
    aspect-ratio: 0.72;
    position: relative;
    display: block;
    overflow: hidden;
    scroll-snap-align: start;
    border-radius: 8px;
    background: #e8eef8;
    color: #ffffff;
    box-shadow: 0 14px 34px rgba(7, 23, 51, 0.08);
}

.home-category-showcase .cat-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    max-width: none;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.36s ease;
}

.home-category-showcase .cat-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(7,23,51,0.34) 0%, rgba(7,23,51,0.16) 27%, rgba(7,23,51,0.03) 52%, rgba(7,23,51,0) 68%),
        linear-gradient(0deg, rgba(7,23,51,0.2) 0%, rgba(7,23,51,0.07) 24%, rgba(7,23,51,0) 48%);
}

.home-category-showcase .cat-item:hover img {
    transform: scale(1.045);
}

.cat-copy {
    position: absolute;
    top: 26px;
    left: 26px;
    right: 22px;
    z-index: 1;
    display: grid;
    gap: 10px;
    isolation: isolate;
}

.cat-copy::before {
    content: "";
    position: absolute;
    inset: -10px -14px -12px;
    z-index: -1;
    border-radius: 8px;
    background: linear-gradient(90deg, rgba(7, 23, 51, 0.34), rgba(7, 23, 51, 0.16) 62%, rgba(7, 23, 51, 0));
}

.home-category-showcase .cat-title {
    position: static;
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.08;
    text-shadow: 0 2px 14px rgba(7, 23, 51, 0.34);
}

.cat-desc {
    max-width: 190px;
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.45;
    text-shadow: 0 2px 12px rgba(7, 23, 51, 0.3);
}

.cat-arrow {
    position: absolute;
    left: 26px;
    bottom: 26px;
    z-index: 1;
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.78);
    border-radius: 50%;
    background: rgba(7, 23, 51, 0.1);
    color: #ffffff;
    font-size: 16px;
    transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.home-category-showcase .cat-item:hover .cat-arrow {
    background: #ffffff;
    color: #071733;
    transform: translateX(3px);
}

@media (max-width: 1320px) {
    .home-category-showcase {
        width: min(calc(100% - 56px), 1180px);
    }

    .home-category-showcase .cat-grid {
        grid-auto-columns: clamp(220px, 24vw, 280px);
    }
}

@media (max-width: 860px) {
    .home-category-showcase {
        width: calc(100% - 28px);
        padding: 54px 0 58px;
    }

    .home-category-head {
        min-height: 0;
        align-items: flex-end;
        gap: 18px;
        margin-bottom: 22px;
    }

    .home-category-copy h2 {
        font-size: 32px;
    }

    .home-category-copy p {
        font-size: 14px;
    }

    .home-category-nav {
        flex: 0 0 auto;
        gap: 10px;
        padding-bottom: 2px;
    }

    .home-category-nav button {
        width: 42px;
        height: 42px;
        font-size: 15px;
    }

    .home-category-showcase .cat-grid {
        grid-auto-columns: minmax(220px, 74vw);
        gap: 14px;
    }

    .home-category-showcase .cat-item {
        min-height: 340px;
    }

    .cat-copy {
        top: 22px;
        left: 22px;
    }

    .cat-arrow {
        left: 22px;
        bottom: 22px;
    }
}

/* Footer store details and legal cancellation form. */
.footer-main {
    grid-template-columns: minmax(210px, 0.85fr) minmax(190px, 0.8fr) minmax(170px, 0.7fr) minmax(280px, 1.15fr);
    align-items: start;
}

.footer-brand-panel p {
    margin-bottom: 0;
}

.footer-store-panel {
    min-width: 0;
}

.footer-store {
    display: grid;
    gap: 15px;
}

.footer-store-row {
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
}

.footer-store-icon {
    width: 32px;
    height: 32px;
    display: inline-grid;
    place-items: center;
    border: 1px solid color-mix(in srgb, var(--white) 20%, transparent);
    color: var(--white);
}

.footer-store-icon .ui-icon {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-store-row strong {
    display: block;
    margin-bottom: 5px;
    color: color-mix(in srgb, var(--white) 62%, var(--text-muted));
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-store-row a,
.footer-store-row p {
    display: block;
    color: var(--white);
    font-size: 13px;
    font-weight: 750;
    line-height: 1.45;
}

.footer-store-row a + a {
    margin-top: 2px;
}

.footer-store-row a:hover {
    color: var(--brand-primary);
}

.footer-hours {
    display: grid;
    gap: 4px;
}

.footer-hours p {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    margin: 0;
}

.footer-hours span {
    color: color-mix(in srgb, var(--white) 78%, var(--text-muted));
}

.footer-hours b {
    color: var(--white);
    font-weight: 850;
    white-space: nowrap;
}

.cancellation-layout .policy-main {
    gap: 20px;
}

.cancellation-form {
    display: grid;
    gap: 20px;
    padding: 32px;
    background: var(--white);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.cancellation-form-head h2 {
    margin: 8px 0 8px;
    color: var(--dark-teal);
    font-size: 30px;
    line-height: 1.15;
}

.cancellation-form-head p {
    color: var(--text-muted);
    line-height: 1.7;
}

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

.cancellation-form label {
    display: grid;
    gap: 8px;
    color: var(--dark-teal);
    font-size: 13px;
    font-weight: 850;
}

.cancellation-form input,
.cancellation-form textarea {
    width: 100%;
    min-height: 48px;
    padding: 0 13px;
    border: 1px solid var(--border-color);
    background: var(--white);
    color: var(--dark-teal);
    font: inherit;
    outline: 0;
}

.cancellation-form textarea {
    padding: 13px;
    resize: vertical;
}

.cancellation-form input:focus,
.cancellation-form textarea:focus {
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand-primary) 10%, transparent);
}

.cancellation-form .full-field {
    grid-column: 1 / -1;
}

.cancellation-form .check-field {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px;
    background: color-mix(in srgb, var(--brand-primary) 5%, var(--white));
    border: 1px solid color-mix(in srgb, var(--brand-primary) 16%, var(--border-color));
    line-height: 1.55;
}

.cancellation-form .check-field input {
    width: 17px;
    min-height: 17px;
    height: 17px;
    flex: 0 0 17px;
    margin-top: 2px;
    padding: 0;
    accent-color: var(--brand-primary);
}

@media (max-width: 980px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand-panel {
        grid-column: 1 / -1;
    }
}

@media (max-width: 680px) {
    .footer-main,
    .cancellation-grid {
        grid-template-columns: 1fr;
    }

    .footer-store-row {
        grid-template-columns: 30px minmax(0, 1fr);
    }

    .footer-hours p {
        grid-template-columns: 1fr;
        gap: 1px;
    }

    .cancellation-form {
        padding: 24px;
    }
}

/* About page refresh: catalog-style banner, trust strip, mission and CTA. */
.about-page .about-shell {
    margin-top: 0;
    background: var(--white);
    overflow: hidden;
}

.about-plp-banner {
    min-height: 380px;
    display: grid;
    align-items: center;
    color: var(--white);
    background-image:
        linear-gradient(90deg, color-mix(in srgb, var(--brand-ink) 92%, var(--brand-primary)) 0%, color-mix(in srgb, var(--brand-ink) 78%, transparent) 42%, color-mix(in srgb, var(--brand-ink) 18%, transparent) 72%),
        var(--about-banner-image);
    background-size: cover;
    background-position: center right;
    isolation: isolate;
}

.about-banner-inner {
    width: min(calc(100% - 96px), var(--container-width));
    margin: 0 auto;
    padding: 68px 0 74px;
    animation: aboutFadeUp 0.55s ease both;
}

.about-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 26px;
    color: color-mix(in srgb, var(--white) 78%, transparent);
    font-size: 13px;
    font-weight: 700;
}

.about-breadcrumb a:hover {
    color: var(--white);
}

.about-plp-banner h1 {
    max-width: 560px;
    margin: 0;
    color: var(--white);
    font-size: clamp(46px, 5vw, 68px);
    line-height: 1.02;
}

.about-title-rule {
    width: 52px;
    height: 3px;
    display: block;
    margin: 28px 0 24px;
    background: var(--white);
}

.about-plp-banner p {
    max-width: 560px;
    color: color-mix(in srgb, var(--white) 86%, transparent);
    font-size: 18px;
    line-height: 1.72;
}

.about-trust-strip {
    background: var(--white);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.about-trust-inner {
    width: min(calc(100% - 96px), 1180px);
    margin: 0 auto;
    padding: 38px 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 42px;
}

.about-trust-item {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    transition: transform 0.24s ease;
}

.about-trust-item:hover {
    transform: translateY(-3px);
}

.about-trust-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    color: var(--brand-primary);
}

.about-trust-icon .ui-icon {
    width: 34px;
    height: 34px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.about-trust-icon i {
    font-size: 28px;
}

.about-trust-item h2 {
    margin: 0 0 8px;
    color: var(--brand-ink);
    font-size: 16px;
    line-height: 1.25;
}

.about-trust-item p {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.65;
}

.about-mission-v3 {
    width: min(calc(100% - 96px), var(--container-width));
    margin: 0 auto;
    padding: 76px 0 0;
    display: grid;
    grid-template-columns: minmax(320px, 0.38fr) minmax(0, 0.62fr);
    gap: 72px;
    align-items: center;
}

.about-mission-copy {
    max-width: 500px;
    animation: aboutFadeUp 0.55s ease both;
}

.about-mission-copy h2 {
    margin: 12px 0 24px;
    color: var(--brand-ink);
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.06;
}

.about-mission-copy p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.78;
}

.about-mission-copy p + p {
    margin-top: 16px;
}

.about-mission-copy .btn {
    margin-top: 30px;
}

.about-mission-media {
    min-height: 440px;
    height: min(46vw, 560px);
    margin: 0;
    overflow: hidden;
    background: var(--surface-card-muted);
}

.about-mission-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.about-mission-media:hover img {
    transform: scale(1.035);
}

.about-closing-band {
    margin-top: 0;
    padding: 58px 0;
    color: var(--white);
    background:
        linear-gradient(135deg, color-mix(in srgb, var(--brand-primary) 72%, var(--brand-ink)) 0%, var(--brand-ink) 82%);
}

.about-closing-inner {
    width: min(calc(100% - 96px), 920px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    gap: 22px;
    align-items: center;
}

.about-closing-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: var(--white);
}

.about-closing-icon .ui-icon {
    width: 36px;
    height: 36px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.about-closing-band .eyebrow {
    color: color-mix(in srgb, var(--white) 82%, var(--brand-primary-soft));
}

.about-closing-band h2 {
    max-width: 680px;
    margin: 8px 0 10px;
    color: var(--white);
    font-size: clamp(28px, 3.3vw, 42px);
    line-height: 1.12;
}

.about-closing-band p {
    max-width: 660px;
    color: color-mix(in srgb, var(--white) 82%, transparent);
    line-height: 1.7;
}

.about-closing-band .btn {
    white-space: nowrap;
}

@keyframes aboutFadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1080px) {
    .about-trust-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-mission-v3,
    .about-closing-inner {
        grid-template-columns: 1fr;
    }

    .about-mission-v3 {
        gap: 34px;
        padding-top: 62px;
    }

    .about-mission-media {
        width: 100%;
        max-width: 100%;
        min-height: 0;
        height: auto;
        aspect-ratio: 16 / 9;
    }

    .about-closing-inner .btn {
        justify-self: start;
    }
}

@media (max-width: 720px) {
    .about-plp-banner {
        min-height: 330px;
        background-position: center;
    }

    .about-banner-inner,
    .about-trust-inner,
    .about-mission-v3,
    .about-closing-inner {
        width: calc(100% - 32px);
    }

    .about-banner-inner {
        padding: 48px 0 54px;
    }

    .about-plp-banner h1 {
        font-size: 42px;
    }

    .about-plp-banner p {
        max-width: 360px;
        font-size: 15px;
    }

    .about-trust-inner {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 18px 0;
    }

    .about-trust-item {
        padding: 18px 0;
        border-bottom: 1px solid var(--border-color);
    }

    .about-trust-item:last-child {
        border-bottom: 0;
    }

    .about-mission-v3 {
        padding-top: 48px;
    }

    .about-mission-copy h2 {
        font-size: 32px;
    }

    .about-closing-band {
        padding: 44px 0;
    }
}

/* Shared neutral page banners for PLP, info, B2B, news and about pages. */
.page-banner {
    width: 100%;
    min-height: 200px;
    margin: 0 0 44px;
    display: grid;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(105deg, var(--surface-card-muted) 0%, color-mix(in srgb, var(--surface-card-muted) 76%, var(--border-color)) 55%, color-mix(in srgb, var(--surface-card-muted) 58%, var(--text-muted)) 100%);
    border: 0;
    color: var(--brand-ink);
}

.page-banner-inner {
    width: min(calc(100% - 96px), 1540px);
    min-height: 200px;
    margin: 0 auto;
    padding: 38px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.page-banner-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    margin: 0 0 13px;
    color: color-mix(in srgb, var(--text-muted) 86%, var(--brand-ink));
    font-family: var(--font-main);
    font-size: 13px;
    line-height: 1.35;
    font-weight: 650;
    letter-spacing: 0;
    text-transform: none;
}

.page-banner-breadcrumb a {
    color: color-mix(in srgb, var(--brand-ink) 88%, var(--text-muted));
    font-weight: 760;
}

.page-banner-breadcrumb a:hover {
    color: var(--brand-primary);
}

.page-banner-breadcrumb span {
    color: inherit;
}

.page-banner h1 {
    max-width: 720px;
    margin: 0 0 12px;
    color: var(--brand-ink);
    font-size: clamp(36px, 4vw, 50px);
    line-height: 1.05;
    letter-spacing: 0;
    font-weight: 850;
}

.page-banner p {
    max-width: 650px;
    margin: 0;
    color: color-mix(in srgb, var(--text-muted) 82%, var(--brand-ink));
    font-size: 16px;
    line-height: 1.62;
    font-weight: 500;
}

body.info-page main.page-shell,
body.news-page main.page-shell,
body.post-page main.page-shell,
body.search-page main.page-shell,
body.about-page .about-shell {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

body.cart-page main.page-shell,
body.wishlist-page main.page-shell,
body.account-page main.page-shell {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

body.info-page .contact-page-layout,
body.info-page .info-two-column,
body.info-page .policy-layout,
body.info-page .info-page-content,
body.news-page .featured-post,
body.news-page .news-list,
body.post-page .post-layout,
body.cart-page .cart-page-layout,
body.wishlist-page main.page-shell > .product-grid,
body.wishlist-page main.page-shell > .empty-state,
body.account-page .account-layout {
    width: min(calc(100% - 96px), var(--container-width));
    margin-left: auto;
    margin-right: auto;
}

body.info-page .contact-page-layout,
body.info-page .info-two-column,
body.info-page .policy-layout,
body.info-page .info-page-content,
body.post-page .post-layout,
body.cart-page .cart-page-layout,
body.wishlist-page main.page-shell > .product-grid,
body.wishlist-page main.page-shell > .empty-state,
body.account-page .account-layout {
    margin-bottom: 90px;
}

body.news-page .featured-post {
    margin-bottom: 34px;
}

body.news-page .news-list {
    margin-bottom: 90px;
}

.post-cover-image {
    width: 100%;
    height: min(44vw, 520px);
    min-height: 360px;
    display: block;
    object-fit: cover;
    margin-bottom: 44px;
}

.about-page .page-banner {
    margin-bottom: 0;
}

.category-page .catalog-hero,
.search-page .catalog-hero {
    background: linear-gradient(105deg, var(--surface-card-muted) 0%, color-mix(in srgb, var(--surface-card-muted) 76%, var(--border-color)) 55%, color-mix(in srgb, var(--surface-card-muted) 58%, var(--text-muted)) 100%);
    color: var(--brand-ink);
}

.category-page .catalog-hero .eyebrow,
.search-page .catalog-hero .eyebrow {
    color: color-mix(in srgb, var(--text-muted) 86%, var(--brand-ink));
}

.category-page .catalog-hero h1,
.search-page .catalog-hero h1 {
    color: var(--brand-ink);
}

.category-page .catalog-hero p,
.search-page .catalog-hero p {
    color: color-mix(in srgb, var(--text-muted) 82%, var(--brand-ink));
}

.category-page .catalog-hero .page-banner-breadcrumb {
    margin-bottom: 13px;
}

.category-page .catalog-hero .page-banner-breadcrumb a {
    color: color-mix(in srgb, var(--brand-ink) 88%, var(--text-muted));
}

.category-page .catalog-hero .page-banner-breadcrumb a:hover {
    color: var(--brand-primary);
}

.page-heading {
    background: linear-gradient(105deg, var(--surface-card-muted) 0%, color-mix(in srgb, var(--surface-card-muted) 76%, var(--border-color)) 55%, color-mix(in srgb, var(--surface-card-muted) 58%, var(--text-muted)) 100%);
}

@media (max-width: 920px) {
    body.info-page .contact-page-layout,
    body.info-page .info-two-column,
    body.info-page .policy-layout,
    body.info-page .info-page-content,
    body.news-page .featured-post,
    body.news-page .news-list,
    body.post-page .post-layout,
    body.cart-page .cart-page-layout,
    body.wishlist-page main.page-shell > .product-grid,
    body.wishlist-page main.page-shell > .empty-state,
    body.account-page .account-layout {
        width: calc(100% - 32px);
    }

    .page-banner-inner {
        width: calc(100% - 32px);
        min-height: 180px;
        padding: 34px 0;
    }

    .page-banner {
        min-height: 180px;
        margin-bottom: 32px;
    }

    .page-banner h1 {
        font-size: 36px;
    }

    .page-banner p {
        font-size: 15px;
    }

    .post-cover-image {
        min-height: 260px;
        height: auto;
        aspect-ratio: 16 / 10;
        margin-bottom: 30px;
    }
}

/* Final responsive header and home hero tuning. */
@media (max-width: 1120px) and (min-width: 861px) {
    .header-shell {
        width: min(calc(100% - 28px), 1080px);
        min-height: 82px;
        grid-template-columns: minmax(118px, auto) minmax(0, 1fr) auto;
        gap: clamp(10px, 1.4vw, 16px);
    }

    .header-shell .logo img {
        width: clamp(118px, 15vw, 160px);
        max-height: 38px;
    }

    .header-shell .main-nav > ul {
        gap: clamp(8px, 1.25vw, 14px);
    }

    .header-shell .main-nav > ul > li > a {
        min-height: 82px;
        font-size: clamp(11px, 1.12vw, 13px);
    }

    .header-shell .nav-has-dropdown {
        gap: 5px;
    }

    .header-shell .nav-dropdown-toggle {
        font-size: 10px;
    }

    .header-shell .header-actions {
        gap: 4px;
    }

    .header-shell .header-actions .icon-btn {
        width: 34px;
        height: 34px;
    }

    .header-icon-svg {
        width: 23px;
        height: 23px;
    }

    .header-shell .cart-btn .badge {
        top: -1px;
        right: -1px;
    }

    .search-panel {
        top: 120px;
    }

    .header.sticky + .search-panel {
        top: 82px;
    }

    .home .hero {
        min-height: clamp(600px, calc(100svh - 82px), 720px);
        background:
            linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.94) 34%, rgba(255,255,255,0.68) 48%, rgba(255,255,255,0) 70%),
            var(--home-hero-tablet-image, var(--home-hero-image, none)) center right / cover no-repeat;
    }

    .home .hero-content {
        width: min(500px, 47vw);
        margin-left: max(28px, calc((100vw - 1080px) / 2 + 14px));
        padding-top: 34px;
        padding-bottom: 34px;
    }

    .home .hero-title {
        max-width: 500px;
        margin: 22px 0 16px;
        font-size: clamp(38px, 4.35vw, 48px) !important;
    }

    .home .hero-content p {
        max-width: 455px;
        margin-bottom: 24px;
        font-size: clamp(15px, 1.45vw, 17px) !important;
    }

    .home .hero-actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 204px));
        gap: 14px;
        align-items: stretch;
    }

    .home .hero-actions .btn {
        width: 100%;
        min-height: 54px;
        padding: 0 18px;
        justify-content: center;
        text-align: center;
        white-space: nowrap;
    }

    .hero-proof {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        width: min(560px, calc(100vw - 56px));
        max-width: 560px;
        margin-top: 30px;
        gap: 10px;
    }

    .hero-proof > div {
        grid-template-columns: 28px minmax(0, 1fr);
        column-gap: 8px;
        padding: 9px 10px;
        background: rgba(255,255,255,0.84);
        border: 1px solid rgba(7,23,51,0.12);
        border-radius: 6px;
        border-right: 1px solid rgba(7,23,51,0.12);
    }

    .hero-proof > div:last-child {
        border-right: 1px solid rgba(7,23,51,0.12);
    }

    .hero-proof-icon {
        width: 28px;
        height: 28px;
    }

    .hero-proof-icon .ui-icon {
        width: 23px;
        height: 23px;
    }

    .hero-proof span,
    .hero-proof strong {
        font-size: 11px;
        line-height: 1.2;
    }
}

@media (max-width: 960px) and (min-width: 861px) {
    .header-shell {
        width: calc(100% - 20px);
        grid-template-columns: minmax(104px, auto) minmax(0, 1fr) auto;
        gap: 8px;
    }

    .header-shell .logo img {
        width: clamp(104px, 13vw, 124px);
        max-height: 34px;
    }

    .header-shell .main-nav > ul {
        gap: 8px;
    }

    .header-shell .main-nav > ul > li > a {
        font-size: 11px;
    }

    .header-shell .header-actions .icon-btn {
        width: 32px;
        height: 32px;
    }

    .header-icon-svg {
        width: 22px;
        height: 22px;
    }

    .home .hero-content {
        width: min(450px, 48vw);
        margin-left: 28px;
    }

    .home .hero-actions {
        grid-template-columns: repeat(2, minmax(0, 190px));
    }

    .home .hero-actions .btn {
        min-height: 52px;
        font-size: 14px;
    }

    .hero-proof > div {
        min-height: 48px;
    }

    .hero-proof strong {
        display: none;
    }
}

@media (max-width: 860px) {
    .home .hero {
        min-height: 0;
        padding: 0 0 24px;
        background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
    }

    .home .hero::after {
        content: "";
        width: calc(100% - 32px);
        max-width: 680px;
        height: clamp(220px, 38vw, 310px);
        margin: 18px auto 0;
        display: block;
        border-radius: 8px;
        background:
            linear-gradient(180deg, rgba(255,255,255,0) 58%, rgba(255,255,255,0.12) 100%),
            var(--home-hero-tablet-image, var(--home-hero-image, none)) center bottom / cover no-repeat;
        box-shadow: 0 18px 42px rgba(7, 23, 51, 0.08);
    }

    .home .hero-content {
        max-width: 680px;
        margin: 0 auto;
        padding: 32px 16px 0;
    }

    .home .hero-title {
        max-width: 620px;
        margin: 18px 0 12px;
        font-size: clamp(34px, 7.8vw, 44px) !important;
    }

    .home .hero-content p {
        max-width: 38rem;
        margin-bottom: 18px;
        font-size: 15px !important;
    }

    .home .hero-actions {
        width: 100%;
        max-width: 426px;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .home .hero-actions .btn {
        width: 100%;
        min-height: 52px;
        padding: 0 12px;
        justify-content: center;
        text-align: center;
        white-space: nowrap;
    }

    .hero-proof {
        width: 100%;
        max-width: 540px;
        margin-top: 16px;
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .hero-proof > div,
    .hero-proof > div:last-child {
        min-height: 0;
        padding: 9px 11px;
        display: grid;
        grid-template-columns: 26px minmax(0, 1fr);
        grid-template-rows: auto auto;
        column-gap: 9px;
        align-items: center;
        background: rgba(255,255,255,0.82);
        border: 1px solid rgba(7,23,51,0.12);
        border-radius: 6px;
    }

    .hero-proof-icon {
        width: 26px;
        height: 26px;
    }

    .hero-proof-icon .ui-icon {
        width: 21px;
        height: 21px;
    }

    .hero-proof span {
        font-size: 12px;
        line-height: 1.15;
    }

    .hero-proof strong {
        font-size: 12px;
        line-height: 1.15;
    }
}

@media (max-width: 860px) and (min-width: 561px) {
    .home .hero::after {
        height: clamp(220px, 34vw, 270px);
        margin-top: 14px;
    }

    .hero-proof {
        max-width: 680px;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
    }

    .hero-proof > div,
    .hero-proof > div:last-child {
        min-height: 48px;
        padding: 8px 10px;
        align-content: center;
    }

    .hero-proof strong {
        display: none;
    }
}

@media (max-width: 560px) {
    .home .hero {
        padding-bottom: 20px;
    }

    .home .hero-content {
        padding: 28px 16px 0;
    }

    .home .hero-subtitle {
        max-width: 100%;
        font-size: 10px;
    }

    .home .hero-title {
        font-size: clamp(30px, 9vw, 38px) !important;
    }

    .home .hero-actions {
        max-width: 360px;
        grid-template-columns: 1fr;
    }

    .home .hero-actions .btn {
        flex-basis: auto;
    }

    .hero-proof {
        margin-top: 14px;
        max-width: 360px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-proof > div,
    .hero-proof > div:last-child {
        padding: 8px 10px;
    }

    .hero-proof > div:nth-child(3) {
        grid-column: 1 / -1;
    }

    .hero-proof strong {
        display: none;
    }

    .home .hero::after {
        width: calc(100% - 28px);
        height: clamp(190px, 56vw, 260px);
        margin-top: 14px;
        background:
            linear-gradient(180deg, rgba(255,255,255,0) 58%, rgba(255,255,255,0.1) 100%),
            var(--home-hero-mobile-image, var(--home-hero-tablet-image, var(--home-hero-image, none))) center bottom / cover no-repeat;
    }
}

@media (max-width: 360px) {
    .home .hero {
        padding-bottom: 16px;
    }

    .home .hero-content {
        padding-top: 24px;
    }

    .home .hero-title {
        margin-top: 14px;
        font-size: clamp(28px, 9vw, 34px) !important;
    }

    .home .hero-content p {
        margin-bottom: 16px;
        font-size: 14px !important;
    }

    .home .hero-actions .btn {
        min-height: 48px;
    }

    .hero-proof {
        gap: 6px;
    }

    .hero-proof > div,
    .hero-proof > div:last-child {
        padding: 7px 9px;
    }

    .home .hero::after {
        height: clamp(164px, 54vw, 210px);
        margin-top: 12px;
    }
}

/* Final mobile hero image and trust-bar polish. */
@media (max-width: 860px) {
    .home .hero::after {
        background-position: center bottom;
        background-size: cover;
    }
}

@media (max-width: 860px) and (min-width: 561px) {
    .home .hero::after {
        height: clamp(270px, 40vw, 330px);
        margin-top: 18px;
    }
}

@media (max-width: 560px) {
    .hero-proof {
        width: 100%;
        max-width: 380px;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 6px;
    }

    .hero-proof > div,
    .hero-proof > div:last-child,
    .hero-proof > div:nth-child(3) {
        grid-column: auto;
        min-height: 76px;
        padding: 8px 6px;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        justify-items: center;
        align-content: center;
        row-gap: 5px;
        text-align: center;
    }

    .hero-proof-icon {
        width: 25px;
        height: 25px;
    }

    .hero-proof-icon .ui-icon {
        width: 20px;
        height: 20px;
    }

    .hero-proof span {
        font-size: 11px;
        line-height: 1.15;
    }

    .home .hero::after {
        width: calc(100% - 32px);
        max-width: 430px;
        height: clamp(270px, 76vw, 340px);
        margin-top: 16px;
    }
}

@media (max-width: 360px) {
    .hero-proof {
        gap: 5px;
    }

    .hero-proof > div,
    .hero-proof > div:last-child {
        min-height: 72px;
        padding: 7px 5px;
    }

    .hero-proof span {
        font-size: 10.5px;
    }

    .home .hero::after {
        height: clamp(250px, 80vw, 300px);
    }
}

/* PLP pagination spacing polish. */
.category-page .plp-pagination {
    gap: 14px;
    row-gap: 12px;
    margin: 52px auto 8px;
    flex-wrap: wrap;
}

.category-page .plp-page-btn,
.category-page .plp-page-ellipsis {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 10px;
    font-size: 14px;
}

.category-page .plp-page-arrow:first-child {
    margin-right: 4px;
}

.category-page .plp-page-arrow:last-child {
    margin-left: 4px;
}

@media (max-width: 640px) {
    .category-page .plp-pagination {
        gap: 10px;
        row-gap: 10px;
        margin-top: 38px;
    }

    .category-page .plp-page-btn,
    .category-page .plp-page-ellipsis {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
        font-size: 13px;
    }

    .category-page .plp-page-arrow:first-child {
        margin-right: 2px;
    }

    .category-page .plp-page-arrow:last-child {
        margin-left: 2px;
    }
}

@media (max-width: 360px) {
    .category-page .plp-pagination {
        gap: 8px;
        row-gap: 8px;
    }

    .category-page .plp-page-btn,
    .category-page .plp-page-ellipsis {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
    }
}

/* Reusable product card refresh: clean image-first card and single CTA. */
.product-card.product-item {
    position: relative;
    isolation: isolate;
    border-color: transparent;
    border-radius: 8px;
    background: var(--surface-card);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.045);
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.product-card.product-item::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 30;
    border: 1px solid color-mix(in srgb, var(--product-card-accent) 34%, #dbe5f2);
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.category-page .product-card.product-item,
.search-page .product-card.product-item,
.wishlist-page .product-card.product-item {
    border-color: transparent;
}

.product-card.product-item:hover,
.category-page .product-card.product-item:hover,
.search-page .product-card.product-item:hover,
.wishlist-page .product-card.product-item:hover {
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.11);
}

.product-card.product-item:hover::after,
.category-page .product-card.product-item:hover::after,
.search-page .product-card.product-item:hover::after,
.wishlist-page .product-card.product-item:hover::after {
    opacity: 1;
}

.product-card .product-img-wrapper,
.category-page .product-card .product-img-wrapper {
    position: relative;
    z-index: 0;
    height: clamp(210px, 17vw, 268px);
    margin: 12px 12px 0;
    border-radius: 7px;
    background: linear-gradient(145deg, var(--surface-card-muted) 0%, var(--surface-card) 68%, var(--product-card-accent-soft) 100%);
    border-bottom: 0;
    overflow: hidden;
}

.product-info-box {
    position: relative;
    z-index: 1;
}

.product-card .product-img-wrapper img {
    object-fit: contain;
    padding: 0;
}

.product-card .btn-wishlist.product-card-wishlist {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
    width: 34px;
    height: 34px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: var(--surface-card);
    color: var(--text-faint);
    font-size: 15px;
    box-shadow: var(--shadow-sm);
}

.product-card .btn-wishlist.product-card-wishlist:hover,
.product-card .btn-wishlist.product-card-wishlist.active {
    background: var(--surface-card);
    color: var(--product-card-accent);
    border-color: transparent;
    transform: translateY(-1px);
}

.product-info-box {
    min-height: 0;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    padding: 16px 14px 14px !important;
}

.product-card h3 {
    min-height: 2.65em !important;
    margin: 0 0 12px !important;
    font-size: clamp(13.5px, 0.9vw, 15px) !important;
    font-weight: 800;
    line-height: 1.32 !important;
}

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

.product-price {
    margin: auto 0 12px !important;
}

.product-price span,
.product-price b {
    font-size: 18px !important;
}

.product-card-footer {
    margin-top: 0;
    display: block;
}

.product-card-cta {
    width: 100%;
    height: auto;
    min-height: 42px;
    flex: 0 1 auto;
    padding: 0 12px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 22px;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--product-card-accent);
    border-radius: 7px;
    background: var(--product-card-accent);
    color: var(--product-cta-fg);
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 850;
    line-height: 1.1;
    text-align: center;
    text-decoration: none;
    box-shadow: none;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card-cta > span:first-child {
    min-width: 0;
    justify-self: center;
}

.product-card-cta-icon {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: currentColor;
}

.product-card-cta-icon .header-icon-svg {
    width: 19px;
    height: 19px;
    stroke-width: 1.75;
}

.product-card-cta:hover {
    background: var(--product-card-accent-dark);
    border-color: var(--product-card-accent-dark);
    color: var(--product-cta-hover-fg);
    transform: translateY(-1px);
    box-shadow: none;
}

.home-products-viewport {
    box-sizing: border-box;
    padding: 12px 2px 28px;
    margin: -12px 0 -28px;
}

.category-page .product-listing-section,
.search-results-layout,
body.wishlist-page main.page-shell > .product-grid {
    overflow: visible;
}

.category-page .catalog-grid,
.category-page [data-product-listing],
.search-page .catalog-grid,
body.wishlist-page main.page-shell > .product-grid {
    box-sizing: border-box;
    padding-top: 8px;
    padding-bottom: 18px;
}

@media (max-width: 1320px) {
    .category-page .product-card .product-img-wrapper {
        height: 190px;
    }
}

@media (max-width: 560px) {
    .product-card .product-img-wrapper,
    .category-page .product-card .product-img-wrapper {
        height: 150px;
    }

    .product-info-box {
        padding: 11px !important;
    }

    .product-card h3 {
        min-height: 2.5em !important;
        margin-bottom: 9px !important;
        font-size: 12.75px !important;
    }

    .product-price {
        margin-bottom: 11px !important;
    }

    .product-price span,
    .product-price b {
        font-size: 15px !important;
    }

    .product-card-cta {
        min-height: 38px;
        grid-template-columns: minmax(0, 1fr) 18px;
        gap: 6px;
        padding: 0 9px;
        font-size: 11.5px;
    }

    .product-card-cta-icon .header-icon-svg {
        width: 17px;
        height: 17px;
    }

    .product-card .btn-wishlist.product-card-wishlist {
        top: 8px;
        right: 8px;
        width: 30px;
        height: 30px;
        font-size: 13px;
    }
}

/* Wider content alignment and footer hierarchy polish. */
.page-banner-inner,
body.info-page .contact-page-layout,
body.info-page .info-two-column,
body.info-page .policy-layout,
body.info-page .info-page-content,
body.news-page .featured-post,
body.news-page .news-list,
body.post-page .post-layout,
body.cart-page .cart-page-layout,
body.wishlist-page main.page-shell > .product-grid,
body.wishlist-page main.page-shell > .empty-state,
body.account-page .account-layout,
.about-trust-inner,
.about-mission-v3 {
    width: min(calc(100% - 96px), 1540px);
    max-width: none;
}

body.news-page .featured-post {
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.58fr);
    gap: 52px;
    align-items: center;
}

body.news-page .news-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.about-mission-v3 {
    padding-bottom: 96px;
    grid-template-columns: minmax(360px, 0.42fr) minmax(0, 0.58fr);
}

.footer-main {
    width: min(calc(100% - 96px), 1540px);
    max-width: none;
    padding-left: 0;
    padding-right: 0;
    grid-template-columns: minmax(190px, 1.05fr) minmax(150px, 0.72fr) minmax(190px, 0.92fr) minmax(170px, 0.82fr) minmax(260px, 1.18fr);
    gap: 30px;
}

.footer h3 {
    text-transform: uppercase;
}

.footer-store {
    gap: 10px;
}

.footer-store-row {
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 10px;
}

.footer-store-icon {
    width: 22px;
    height: 22px;
    border: 0;
    color: var(--white);
}

.footer-store-icon .ui-icon {
    width: 18px;
    height: 18px;
}

.footer-store-row strong {
    margin-bottom: 2px;
}

.footer-hours {
    gap: 2px;
}

.footer-hours p {
    grid-template-columns: max-content auto;
    justify-content: start;
    gap: 8px;
}

@media (max-width: 1180px) {
    .footer-main {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .footer-brand-panel,
    .footer-store-panel {
        grid-column: span 1;
    }
}

@media (max-width: 920px) {
    .page-banner-inner,
    body.info-page .contact-page-layout,
    body.info-page .info-two-column,
    body.info-page .policy-layout,
    body.info-page .info-page-content,
    body.news-page .featured-post,
    body.news-page .news-list,
    body.post-page .post-layout,
    body.cart-page .cart-page-layout,
    body.wishlist-page main.page-shell > .product-grid,
    body.wishlist-page main.page-shell > .empty-state,
    body.account-page .account-layout,
    .about-trust-inner,
    .about-mission-v3,
    .footer-main {
        width: calc(100% - 32px);
    }

    body.news-page .featured-post,
    body.news-page .news-list,
    .about-mission-v3,
    .footer-main {
        grid-template-columns: 1fr;
    }

    .about-mission-v3 {
        padding-bottom: 64px;
    }
}

/* Home section rhythm: hero-style eyebrows and wider intro copy. */
.section-title {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.section-title p {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.62;
}

.home-section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 18px;
    color: var(--brand-primary);
    font-size: 13px;
    font-weight: 850;
    letter-spacing: 1.7px;
    line-height: 1.2;
    text-transform: uppercase;
}

.home-section-eyebrow::before {
    content: "";
    width: 46px;
    height: 5px;
    flex: 0 0 46px;
    background: var(--brand-primary);
    border-radius: 999px;
}

.home-category-copy.section-title,
.home-products-copy,
.home .news-section .section-title {
    width: min(900px, 100%);
    max-width: 900px;
    text-align: left;
}

.home-category-copy.section-title,
.home .news-section .section-title {
    margin-left: 0;
    margin-right: 0;
}

.home-products-copy {
    flex: 1 1 auto;
}

.home-category-copy h2,
.home-products-copy h2,
.home .news-section .section-title h2 {
    max-width: 880px;
}

.home-category-copy p,
.home-products-copy p,
.home .news-section .section-title p {
    max-width: 900px;
    margin-left: 0;
    margin-right: 0;
}

.home .news-section .container {
    width: min(calc(100% - 96px), 1540px);
    max-width: none;
    padding-left: 0;
    padding-right: 0;
}

@media (max-width: 860px) {
    .section-title,
    .home-category-copy.section-title,
    .home-products-copy,
    .home .news-section .section-title {
        width: 100%;
        max-width: none;
    }

    .home-section-eyebrow {
        gap: 12px;
        margin-bottom: 14px;
        font-size: 11px;
        letter-spacing: 1.2px;
    }

    .home-section-eyebrow::before {
        width: 34px;
        height: 4px;
        flex-basis: 34px;
    }

    .home-category-copy p,
    .home-products-copy p,
    .home .news-section .section-title p {
        max-width: 34rem;
    }

    .home .news-section .container {
        width: calc(100% - 36px);
    }
}

@media (max-width: 560px) {
    .home-category-head,
    .home-products-head {
        display: grid;
        grid-template-columns: 1fr;
        align-items: start;
    }

    .home-category-nav,
    .home-products-nav {
        justify-self: start;
    }

    .home-category-copy.section-title,
    .home-products-copy {
        width: 100%;
    }

    .home-category-copy p,
    .home-products-copy p {
        max-width: none;
    }
}

@media (max-width: 640px) {
    .announcement-inner {
        justify-content: center;
        overflow: hidden;
        padding-inline: 12px;
    }

    .announcement-inner nav {
        display: none;
    }
}

/* Homepage standardization: reusable white sections and consistent intro rhythm. */
.home-category-showcase,
.home-products-showcase,
.home-why-section,
.home .news-section,
.home-faq-section,
.newsletter-section {
    background: #ffffff;
}

.home-category-showcase,
.home-products-showcase,
.home .news-section {
    padding-top: clamp(62px, 6vw, 88px);
    padding-bottom: clamp(62px, 6vw, 88px);
}

.home-why-section,
.home-faq-section {
    padding-top: clamp(72px, 7vw, 104px);
    padding-bottom: clamp(72px, 7vw, 104px);
}

.home-category-copy h2,
.home-products-copy h2,
.home .news-section .section-title h2,
.home-why-copy h2,
.home-faq-copy h2 {
    color: #071733;
    font-size: clamp(34px, 3.4vw, 52px);
    font-weight: 850;
    line-height: 1.06;
    letter-spacing: 0;
}

.home-category-copy p,
.home-products-copy p,
.home-why-copy p,
.home-faq-copy p,
.home .news-section .section-title p {
    max-width: 620px;
    color: #53637a;
    font-size: clamp(14px, 1.2vw, 16px);
    line-height: 1.58;
}

.home .news-section .section-title {
    margin-bottom: 30px;
}

.home .news-section .section-title p:empty {
    display: none;
}

.home-section-link {
    margin-top: 8px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--product-card-accent);
    font-size: 13px;
    font-weight: 850;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.home-section-link:hover {
    color: var(--product-card-accent-dark);
    transform: translateX(2px);
}

.home .news-section .blog-grid {
    margin-top: 0;
}

@media (max-width: 640px) {
    .home-category-copy h2,
    .home-products-copy h2,
    .home .news-section .section-title h2,
    .home-why-copy h2,
    .home-faq-copy h2 {
        font-size: clamp(30px, 8.8vw, 38px);
    }

    .home-category-showcase,
    .home-products-showcase,
    .home .news-section,
    .home-why-section,
    .home-faq-section,
    .newsletter-section {
        padding-top: 58px;
        padding-bottom: 58px;
    }
}

/* Final homepage alignment: one reusable section width and one white surface. */
.home {
    --home-section-width: 1540px;
    --home-section-gutter: 96px;
    background: #ffffff;
}

.home main,
.home-category-showcase,
.home-products-showcase,
.home-why-section,
.home-reviews-section,
.home .news-section,
.home-faq-section,
.newsletter-section {
    background: #ffffff !important;
}

.home-category-showcase,
.home-products-showcase,
.home-why-inner,
.home-reviews-inner,
.home .news-section > .container,
.home-faq-layout,
.newsletter-panel {
    width: min(calc(100% - var(--home-section-gutter)), var(--home-section-width)) !important;
    max-width: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box;
}

.home .news-section > .container,
.home-faq-layout {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.home .news-section {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.home-category-showcase,
.home-products-showcase {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.home-faq-section,
.newsletter-section {
    padding-top: clamp(72px, 7vw, 104px);
    padding-bottom: clamp(72px, 7vw, 104px);
}

.home-faq-panel,
.home-faq-support,
.newsletter-panel {
    background: #ffffff !important;
}

.home-faq-panel,
.newsletter-panel {
    box-shadow: none !important;
}

.newsletter-panel {
    min-height: 0;
    border-color: color-mix(in srgb, var(--border-color) 88%, transparent);
}

.newsletter-panel::before,
.newsletter-panel::after {
    display: none !important;
}

.newsletter-copy h2 {
    max-width: 780px;
    font-size: clamp(36px, 4vw, 58px);
}

.newsletter-copy > p:empty {
    display: none;
}

@media (max-width: 1320px) {
    .home {
        --home-section-width: 1180px;
        --home-section-gutter: 56px;
    }
}

@media (max-width: 860px) {
    .home {
        --home-section-width: 100%;
        --home-section-gutter: 28px;
    }

    .newsletter-section {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .newsletter-panel {
        width: 100% !important;
        padding: 34px 22px 0;
    }
}

@media (max-width: 560px) {
    .newsletter-copy h2 {
        font-size: clamp(30px, 9vw, 38px);
    }

    .newsletter-section {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .newsletter-panel {
        padding: 30px 18px 0;
    }
}

/* Final post and banner polish: editorial posts, airy breadcrumbs. */
body.post-page main.page-shell {
    background: #ffffff;
}

body.post-page .post-layout {
    width: min(calc(100% - 96px), 980px) !important;
    max-width: 980px !important;
    margin: 0 auto 92px !important;
    padding-top: clamp(56px, 6vw, 86px);
}

.post-title-block {
    max-width: 860px;
    margin: 0 auto 34px;
    text-align: center;
}

.post-title-block .page-banner-breadcrumb,
.post-breadcrumb {
    justify-content: center;
    margin-bottom: 22px;
}

.post-title-block h1 {
    max-width: 840px;
    margin: 0 auto 18px;
    color: var(--brand-ink);
    font-size: clamp(36px, 4.4vw, 58px);
    font-weight: 850;
    line-height: 1.05;
    letter-spacing: 0;
}

.post-title-block p {
    max-width: 720px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: clamp(15px, 1.35vw, 18px);
    line-height: 1.7;
}

.post-cover-image {
    width: min(100%, 860px) !important;
    height: clamp(240px, 28vw, 380px) !important;
    min-height: 0 !important;
    margin: 0 auto 42px !important;
    border-radius: 8px;
}

.post-body {
    margin-top: 0 !important;
}

.page-banner-breadcrumb,
.category-page .catalog-hero .page-banner-breadcrumb,
.search-page .catalog-hero .page-banner-breadcrumb {
    display: flex !important;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px !important;
    row-gap: 10px !important;
    max-width: min(100%, 920px);
    margin: 0 0 22px !important;
    padding: 0;
    color: color-mix(in srgb, var(--text-muted) 88%, var(--brand-ink));
    font-size: 13px;
    line-height: 1.6;
    font-weight: 560;
    letter-spacing: 0;
    text-transform: none;
}

.page-banner-breadcrumb a,
.page-banner-breadcrumb span {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    min-width: 0;
}

.page-banner-breadcrumb a {
    color: color-mix(in srgb, var(--brand-ink) 82%, var(--text-muted));
    font-weight: 650;
}

.page-banner-breadcrumb > span[aria-hidden="true"] {
    color: color-mix(in srgb, var(--text-muted) 62%, transparent);
    font-weight: 500;
    margin-inline: -2px;
}

.category-page .catalog-hero .eyebrow.page-banner-breadcrumb,
.search-page .catalog-hero .eyebrow.page-banner-breadcrumb {
    display: flex !important;
}

.category-page .catalog-hero,
.search-page .catalog-hero {
    border-radius: 0 !important;
}

@media (max-width: 920px) {
    body.post-page .post-layout {
        width: calc(100% - 32px) !important;
        padding-top: 46px;
    }

    .post-title-block {
        margin-bottom: 28px;
    }

    .post-cover-image {
        height: clamp(210px, 48vw, 310px) !important;
    }
}

@media (max-width: 560px) {
    body.post-page .post-layout {
        width: calc(100% - 28px) !important;
        padding-top: 36px;
        margin-bottom: 68px !important;
    }

    .post-title-block {
        text-align: left;
    }

    .post-title-block .page-banner-breadcrumb,
    .post-breadcrumb {
        justify-content: flex-start;
        margin-bottom: 18px;
    }

    .post-title-block h1 {
        font-size: clamp(30px, 9vw, 38px);
    }

    .page-banner-breadcrumb,
    .category-page .catalog-hero .page-banner-breadcrumb,
    .search-page .catalog-hero .page-banner-breadcrumb {
        gap: 11px !important;
        row-gap: 8px !important;
        font-size: 12px;
        line-height: 1.5;
    }
}

/* Focused checkout: no site header/footer, no reassurance copy, just order flow. */
body.checkout-page {
    min-height: 100svh;
    background: #fff;
    color: var(--brand-ink);
}

body.checkout-page .header,
body.checkout-page .footer,
body.checkout-page .announcement-bar {
    display: none !important;
}

body.checkout-page [data-checkout-page] {
    min-height: 100svh;
}

body.checkout-page .checkout-page-shell {
    min-height: 100svh;
    background: #fff;
}

body.checkout-page .checkout-topbar {
    width: min(100% - 36px, 1180px);
    max-width: 1180px;
    margin: 0 auto;
    padding: 26px 0 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-bottom: 1px solid var(--border-color);
}

body.checkout-page .checkout-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

body.checkout-page .checkout-brand img {
    width: clamp(132px, 15vw, 168px);
    max-height: 52px;
    object-fit: contain;
}

body.checkout-page .checkout-brand strong {
    color: var(--brand-ink);
    font-size: 22px;
    font-weight: 850;
}

body.checkout-page .checkout-brand small {
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 680;
    letter-spacing: 0;
    text-transform: none;
    white-space: nowrap;
}

body.checkout-page .checkout-back {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 720;
    white-space: nowrap;
}

body.checkout-page .checkout-back:hover {
    color: var(--brand-primary);
}

body.checkout-page .checkout-shell {
    width: min(100% - 36px, 1180px);
    max-width: 1180px;
    margin: 0 auto;
    padding: 42px 0 82px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: clamp(34px, 5vw, 64px);
    align-items: start;
}

body.checkout-page .checkout-main {
    display: grid;
    gap: 24px;
}

body.checkout-page .checkout-intro {
    padding: 0 0 6px;
    background: transparent;
    border: 0;
    box-shadow: none;
}

body.checkout-page .checkout-intro .eyebrow {
    display: none;
}

body.checkout-page .checkout-intro h1 {
    margin: 0;
    color: var(--brand-ink);
    font-size: clamp(32px, 3.6vw, 46px);
    font-weight: 850;
    line-height: 1.05;
}

body.checkout-page .checkout-form {
    display: grid;
    gap: 0;
}

body.checkout-page .checkout-form section {
    padding: 26px 0 28px;
    background: transparent;
    border: 0;
    border-top: 1px solid var(--border-color);
    box-shadow: none;
}

body.checkout-page .checkout-section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

body.checkout-page .checkout-section-title span {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 780;
}

body.checkout-page .checkout-section-title h2 {
    margin: 0;
    color: var(--brand-ink);
    font-size: 20px;
    font-weight: 820;
    line-height: 1.2;
}

body.checkout-page .form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 16px;
}

body.checkout-page .checkout-form label {
    display: grid;
    gap: 8px;
    color: var(--text-body);
    font-size: 13px;
    font-weight: 650;
}

body.checkout-page .checkout-form input,
body.checkout-page .checkout-form select,
body.checkout-page .checkout-form textarea {
    width: 100%;
    min-height: 50px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    background: #fff;
    color: var(--brand-ink);
    padding: 0 14px;
    outline: 0;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

body.checkout-page .checkout-form textarea {
    min-height: 96px;
    padding: 13px 14px;
    resize: vertical;
}

body.checkout-page .checkout-form input:focus,
body.checkout-page .checkout-form select:focus,
body.checkout-page .checkout-form textarea:focus {
    border-color: color-mix(in srgb, var(--brand-primary) 58%, var(--border-color));
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand-primary) 9%, transparent);
    background: #fff;
}

body.checkout-page .wide {
    grid-column: 1 / -1;
}

body.checkout-page .woo-payment-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 14px;
}

body.checkout-page .payment-method {
    display: flex;
    align-items: center !important;
    gap: 10px;
    min-height: 52px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    background: #fff;
    padding: 13px 14px;
    cursor: pointer;
    transition: border-color 0.18s ease, background 0.18s ease;
}

body.checkout-page .payment-method.selected {
    border-color: color-mix(in srgb, var(--brand-primary) 62%, var(--border-color));
    background: var(--brand-primary-soft);
    box-shadow: none;
}

body.checkout-page .payment-method input {
    width: auto;
    min-height: auto;
    margin: 0;
    accent-color: var(--brand-primary);
}

body.checkout-page .payment-method span {
    display: grid;
    gap: 3px;
}

body.checkout-page .payment-method strong {
    color: var(--brand-ink);
    font-size: 14px;
    font-weight: 760;
}

body.checkout-page .payment-method small {
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 520;
    line-height: 1.45;
}

body.checkout-page .fake-stripe-box {
    display: grid;
    gap: 14px;
    margin: 0 0 16px;
    padding: 18px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    background: var(--surface-card-muted);
}

body.checkout-page .stripe-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--brand-ink);
}

body.checkout-page .stripe-head strong {
    font-size: 14px;
    font-weight: 780;
}

body.checkout-page .stripe-head span {
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 650;
    letter-spacing: 0;
    text-transform: none;
}

body.checkout-page .checkout-terms {
    display: flex;
    grid-template-columns: none;
    align-items: center;
    gap: 10px;
    margin: 0;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 560;
}

body.checkout-page .checkout-terms input {
    width: 16px;
    min-height: 16px;
    accent-color: var(--brand-primary);
}

body.checkout-page .checkout-submit {
    width: 100%;
    min-height: 56px;
    margin-top: 6px;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 780;
}

body.checkout-page .checkout-success {
    margin-top: 14px;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    background: color-mix(in srgb, var(--accent-success) 9%, #fff);
    border: 1px solid color-mix(in srgb, var(--accent-success) 25%, var(--border-color));
    color: var(--accent-success);
    font-weight: 700;
}

body.checkout-page .checkout-summary {
    position: sticky;
    top: 22px;
    display: grid;
    gap: 0;
    padding: 22px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: #fff;
    box-shadow: none;
}

body.checkout-page .checkout-summary-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

body.checkout-page .checkout-summary-head h2 {
    margin: 0;
    color: var(--brand-ink);
    font-size: 19px;
    font-weight: 830;
}

body.checkout-page .checkout-summary-head a {
    color: var(--brand-primary);
    font-size: 13px;
    font-weight: 720;
}

body.checkout-page .checkout-summary-products {
    display: grid;
}

body.checkout-page .checkout-summary .summary-product {
    display: grid !important;
    grid-template-columns: 58px minmax(0, 1fr) auto;
    align-items: center !important;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-color);
}

body.checkout-page .checkout-summary .summary-product img {
    width: 58px;
    height: 58px;
    object-fit: contain;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-sm);
    background: var(--surface-card-muted);
}

body.checkout-page .checkout-summary .summary-product span {
    display: grid;
    min-width: 0;
    color: var(--brand-ink);
    font-size: 13px;
    font-weight: 720;
    line-height: 1.35;
}

body.checkout-page .checkout-summary .summary-product small {
    margin-top: 4px;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 520;
}

body.checkout-page .checkout-summary .summary-product strong {
    color: var(--brand-ink);
    font-size: 13px;
    font-weight: 780;
    white-space: nowrap;
}

body.checkout-page .checkout-summary-lines {
    display: grid;
    gap: 11px;
    padding-top: 16px;
}

body.checkout-page .checkout-summary-lines div {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    color: var(--text-muted);
    font-size: 14px;
}

body.checkout-page .checkout-summary-lines strong {
    color: var(--brand-ink);
    font-weight: 760;
    text-align: right;
}

body.checkout-page .checkout-summary-lines .summary-total {
    margin-top: 5px;
    padding-top: 14px;
    border-top: 1px solid var(--border-color);
    color: var(--brand-ink);
    font-size: 17px;
    font-weight: 820;
}

body.checkout-page .checkout-summary-lines .summary-total strong {
    color: var(--brand-ink);
    font-size: 24px;
    font-weight: 860;
}

body.checkout-page .checkout-summary .empty-cart {
    margin: 16px 0 0;
    padding: 18px;
    border-radius: var(--radius-sm);
    background: var(--surface-card-muted);
}

@media (max-width: 860px) {
    body.checkout-page .checkout-topbar {
        width: min(100% - 28px, 1180px);
        padding: 20px 0 18px;
    }

    body.checkout-page .checkout-shell {
        width: min(100% - 28px, 1180px);
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 0 58px;
    }

    body.checkout-page .checkout-summary {
        position: static;
    }
}

@media (max-width: 560px) {
    body.checkout-page .checkout-topbar {
        gap: 12px;
    }

    body.checkout-page .checkout-brand {
        gap: 10px;
    }

    body.checkout-page .checkout-brand img {
        width: 124px;
    }

    body.checkout-page .checkout-brand small {
        display: none;
    }

    body.checkout-page .checkout-back {
        font-size: 12px;
    }

    body.checkout-page .checkout-intro h1 {
        font-size: 32px;
    }

    body.checkout-page .form-grid,
    body.checkout-page .woo-payment-options {
        grid-template-columns: 1fr;
    }

    body.checkout-page .checkout-form section {
        padding: 22px 0 24px;
    }

    body.checkout-page .fake-stripe-box,
    body.checkout-page .checkout-summary {
        padding: 16px;
    }

    body.checkout-page .checkout-summary .summary-product {
        grid-template-columns: 54px minmax(0, 1fr);
    }

    body.checkout-page .checkout-summary .summary-product strong {
        grid-column: 2;
    }
}

/* Contact page refresh: light, reusable contact details and a simpler form. */
body.info-page .contact-page-layout {
    grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
    gap: clamp(28px, 4vw, 56px);
    align-items: start;
}

body.info-page .contact-info-panel {
    min-height: 0;
    padding: clamp(26px, 3vw, 38px);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--surface-card-muted);
    color: var(--brand-ink);
    box-shadow: none;
}

body.info-page .contact-info-panel .eyebrow {
    display: none;
}

body.info-page .contact-info-head h2 {
    max-width: 460px;
    margin: 0 0 22px;
    color: var(--brand-ink);
    font-size: clamp(25px, 2.5vw, 34px);
    font-weight: 840;
    line-height: 1.12;
}

body.info-page .contact-info-list {
    display: grid;
    gap: 0;
    border-top: 1px solid var(--border-color);
}

body.info-page .contact-info-list article {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    padding: 18px 0;
    border-top: 0;
    border-bottom: 1px solid var(--border-color);
}

body.info-page .contact-info-list article:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

body.info-page .contact-info-list .contact-info-icon {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    margin: 0;
    border-radius: 50%;
    background: var(--brand-primary-soft);
    color: var(--brand-primary);
    letter-spacing: 0;
    text-transform: none;
}

body.info-page .contact-info-list .contact-info-icon .ui-icon {
    width: 19px;
    height: 19px;
    stroke: currentColor;
    stroke-width: 1.8;
}

body.info-page .contact-info-copy {
    display: grid;
    gap: 5px;
    min-width: 0;
}

body.info-page .contact-info-copy strong {
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 760;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

body.info-page .contact-info-copy a,
body.info-page .contact-info-copy p {
    display: grid;
    gap: 3px;
    margin: 0;
    color: var(--brand-ink);
    font-size: 15px;
    font-weight: 720;
    line-height: 1.45;
}

body.info-page .contact-info-copy a:hover {
    color: var(--brand-primary);
}

body.info-page .contact-info-copy small {
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 560;
}

body.info-page .contact-hours-list {
    display: grid;
    gap: 5px;
}

body.info-page .contact-hours-list p {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    margin: 0;
    color: var(--brand-ink);
    font-size: 14px;
    line-height: 1.4;
}

body.info-page .contact-hours-list span {
    display: inline;
    margin: 0;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 560;
    letter-spacing: 0;
    text-transform: none;
}

body.info-page .contact-hours-list strong {
    color: var(--brand-ink);
    font-size: 14px;
    font-weight: 760;
    white-space: nowrap;
}

body.info-page .contact-form-panel {
    padding: clamp(28px, 3.3vw, 42px);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: #fff;
    box-shadow: none;
    gap: 17px;
}

body.info-page .contact-form-head {
    margin-bottom: 4px;
}

body.info-page .contact-form-head .eyebrow {
    display: none;
}

body.info-page .contact-form-panel h2 {
    margin: 0;
    color: var(--brand-ink);
    font-size: clamp(26px, 2.8vw, 36px);
    font-weight: 840;
    line-height: 1.12;
}

body.info-page .contact-form-head p {
    max-width: 560px;
    margin: 10px 0 0;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}

body.info-page .contact-form-panel label {
    gap: 8px;
    color: var(--text-body);
    font-size: 13px;
    font-weight: 650;
}

body.info-page .contact-form-panel input,
body.info-page .contact-form-panel textarea {
    min-height: 52px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    background: #fff;
    color: var(--brand-ink);
    padding: 0 14px;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

body.info-page .contact-form-panel textarea {
    min-height: 150px;
    padding: 14px;
}

body.info-page .contact-form-panel input:focus,
body.info-page .contact-form-panel textarea:focus {
    border-color: color-mix(in srgb, var(--brand-primary) 58%, var(--border-color));
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand-primary) 9%, transparent);
}

body.info-page .contact-form-panel .btn {
    min-height: 52px;
    justify-self: start;
    min-width: 190px;
    border-radius: var(--radius-sm);
}

body.info-page .contact-form-panel .form-success {
    border-radius: var(--radius-sm);
    background: color-mix(in srgb, var(--accent-success) 8%, #fff);
    border-color: color-mix(in srgb, var(--accent-success) 24%, var(--border-color));
    color: var(--accent-success);
}

@media (max-width: 920px) {
    body.info-page .contact-page-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    body.info-page .contact-info-panel,
    body.info-page .contact-form-panel {
        padding: 24px 18px;
    }

    body.info-page .contact-hours-list p {
        grid-template-columns: 1fr;
        gap: 2px;
    }

    body.info-page .contact-form-panel .btn {
        width: 100%;
        justify-self: stretch;
    }
}

/* Homepage category cards: image top, soft fade, white content area and downloaded PNG icon assets. */
.home-category-showcase .cat-grid {
    grid-auto-columns: clamp(230px, 18vw, 285px) !important;
    gap: 22px !important;
}

.home-category-showcase .cat-item {
    min-height: clamp(370px, 29vw, 430px) !important;
    aspect-ratio: 0.66 !important;
    position: relative;
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--brand-primary) 13%, var(--border-color));
    border-radius: 8px;
    background: #ffffff;
    color: var(--brand-ink);
    box-shadow: none;
    transition: border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.home-category-showcase .cat-item:hover {
    border-color: color-mix(in srgb, var(--brand-primary) 28%, var(--border-color));
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(7, 23, 51, 0.08);
}

.home-category-showcase .cat-item::after,
.home-category-showcase .cat-copy,
.home-category-showcase .cat-copy::before,
.home-category-showcase .cat-desc {
    display: none !important;
}

.home-category-showcase .cat-media {
    position: absolute;
    inset: 0 0 auto;
    height: 74%;
    overflow: hidden;
    background: var(--surface-card-muted);
}

.home-category-showcase .cat-media::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 34%;
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.72) 58%, #ffffff 100%);
    pointer-events: none;
}

.home-category-showcase .cat-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    max-width: none;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.38s ease;
}

.home-category-showcase .cat-item:hover .cat-media img {
    transform: scale(1.04);
}

.home-category-showcase .cat-body {
    position: absolute;
    inset: auto 0 0;
    z-index: 2;
    min-height: 146px;
    padding: 34px 24px 26px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 18px;
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, #ffffff 38%, #ffffff 100%);
}

.home-category-showcase .cat-icon {
    width: 62px;
    height: 62px;
    display: inline-grid;
    place-items: center;
    margin: 0;
    border-radius: 50%;
    background: var(--brand-primary);
    box-shadow: 0 18px 34px color-mix(in srgb, var(--brand-primary) 24%, transparent);
}

.home-category-showcase .cat-icon img {
    position: static;
    width: 30px;
    height: 30px;
    object-fit: contain;
    transform: none !important;
}

.home-category-showcase .cat-title-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
}

.home-category-showcase .cat-title {
    position: static;
    max-width: 100%;
    color: var(--brand-ink);
    font-size: clamp(16px, 1.22vw, 19px);
    font-weight: 850;
    line-height: 1.14;
    letter-spacing: 0;
    text-shadow: none;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: manual;
    text-wrap: balance;
}

.home-category-showcase .cat-arrow {
    position: static;
    width: auto;
    height: auto;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--brand-primary);
    font-size: 17px;
    line-height: 1;
    transition: color 0.2s ease, transform 0.2s ease;
}

.home-category-showcase .cat-item:hover .cat-arrow {
    background: transparent;
    color: var(--brand-primary-dark);
    transform: translateX(4px);
}

@media (max-width: 860px) {
    .home-category-showcase .cat-grid {
        grid-auto-columns: minmax(230px, 72vw) !important;
    }

    .home-category-showcase .cat-item {
        min-height: 370px !important;
    }
}

@media (max-width: 480px) {
    .home-category-showcase .cat-grid {
        grid-auto-columns: minmax(220px, 78vw) !important;
    }

    .home-category-showcase .cat-body {
        min-height: 138px;
        padding: 32px 20px 24px;
    }

    .home-category-showcase .cat-title {
        font-size: clamp(16px, 4.6vw, 18px);
    }
}
