:root {
    /* Main editable brand tokens. Keep business-specific colors here. */
    --brand-primary: #1f7fc4;
    --brand-primary-dark: #0f568b;
    --brand-primary-soft: #e5f3ff;
    --brand-secondary: #111111;
    --brand-secondary-strong: color-mix(in srgb, var(--brand-secondary) 70%, var(--brand-ink));
    --brand-secondary-soft: #eeeeee;
    --brand-ink: #111111;
    --color-surface: #ffffff;
    --surface-soft: #f7f7f3;
    --surface-muted: #f4f4ef;
    --surface-warm: var(--brand-secondary-soft);
    --surface-card: #ffffff;
    --surface-card-muted: #f8fafc;
    --surface-card-hover: #f4f6f8;
    --border-soft: #e6e2cf;
    --border-muted: #e5e2d4;
    --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-cta-bg: var(--brand-primary);
    --product-cta-fg: #ffffff;
    --product-cta-hover-bg: var(--brand-primary-dark);
    --product-cta-hover-fg: #ffffff;
    --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: #0b0b0b;
    --light-gray: #f7f7f3;
    --border-color: #e6e2cf;
    --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(--primary-red); color: #fff; }
.btn-primary:hover { background: var(--brand-aqua-dark); color: #fff; 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(--primary-red); color: var(--primary-red); }

.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; }

.ride-banner {
    min-height: 100svh;
    background: var(--dark-bg);
    color: #fff;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    --ride-progress: 0;
}
.ride-banner::before {
    content: '';
    position: absolute;
    inset: -10svh 0;
    background: var(--ride-banner-image, none) center/cover no-repeat;
    transform: translateY(calc(var(--ride-progress) * -9svh));
    transform-origin: top center;
    will-change: transform;
}
.ride-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(13,12,16,0.86), rgba(13,12,16,0.34));
}
.ride-banner .container {
    width: 100%;
    position: relative;
    z-index: 2;
    transform: translateY(calc(var(--ride-progress) * -28px));
    will-change: transform;
}
.ride-banner h2 { font-size: 72px; line-height: 1.02; margin: 18px 0 30px; }
.ride-banner h2,
.ride-banner .hero-subtitle { text-shadow: 0 3px 22px rgba(0,0,0,0.55); }
.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: 92px 0; background: #fff; }
.home-faq-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 70px;
    align-items: start;
}
.home-faq-copy { position: sticky; top: 120px; }
.home-faq-copy h2 {
    color: var(--dark-teal);
    font-size: 46px;
    line-height: 1.08;
    margin: 14px 0 18px;
}
.home-faq-copy p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 26px;
    max-width: 430px;
}
.faq-list {
    display: grid;
    gap: 12px;
}
.faq-list details {
    background: #f8fafa;
    border: 1px solid var(--border-color);
    transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.faq-list details[open] {
    background: #fff;
    border-color: rgba(32,199,178,0.36);
    box-shadow: var(--shadow-sm);
}
.faq-list summary {
    list-style: none;
    cursor: pointer;
    color: var(--dark-teal);
    font-weight: 900;
    padding: 22px 58px 22px 24px;
    position: relative;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
    content: '+';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-red);
    font-size: 24px;
    line-height: 1;
}
.faq-list details[open] summary::after { content: '-'; }
.faq-list p {
    color: var(--text-muted);
    line-height: 1.75;
    padding: 0 24px 24px;
}
.newsletter-section { padding: 0 0 96px; background: #fff; }
.newsletter-panel {
    background: var(--dark-teal);
    color: #fff;
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 54px;
    align-items: center;
    padding: 58px;
    position: relative;
    overflow: hidden;
}
.newsletter-panel::after {
    content: '';
    position: absolute;
    right: 38px;
    bottom: -40px;
    color: rgba(255,255,255,0.06);
    font-size: 190px;
    font-weight: 900;
    line-height: 1;
    pointer-events: none;
}
.newsletter-panel .eyebrow { color: #a8fff5; }
.newsletter-panel h2 {
    font-size: 44px;
    line-height: 1.08;
    margin: 14px 0 16px;
    max-width: 720px;
}
.newsletter-panel p {
    color: #d4dfdf;
    line-height: 1.8;
    max-width: 620px;
}
.newsletter-form {
    position: relative;
    z-index: 1;
    background: #fff;
    padding: 24px;
    display: grid;
    gap: 14px;
    box-shadow: var(--shadow-md);
}
.newsletter-form label {
    color: var(--dark-teal);
    font-weight: 900;
    font-size: 13px;
    display: grid;
    gap: 8px;
}
.newsletter-form input {
    min-height: 50px;
    border: 1px solid var(--border-color);
    padding: 0 14px;
    color: var(--dark-teal);
}
.newsletter-form p {
    color: #176b36;
    font-weight: 800;
    font-size: 13px;
    margin: 0;
}
.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: flex; gap: 14px; align-items: baseline; margin: 0 0 22px; }
.pdp-price span { font-size: 38px; }
.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-buy-now {
    background: var(--brand-secondary);
    color: var(--brand-ink);
}
.pdp-buy-now:hover {
    background: var(--brand-secondary-strong);
    color: #fff;
}
.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(460px, 100vw);
    height: 100vh;
    background: #f7f9f9;
    z-index: 2000;
    transform: translateX(100%);
    transition: transform 0.28s ease;
    box-shadow: -22px 0 50px rgba(0,0,0,0.18);
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    overflow: hidden;
}
.cart-drawer.open { transform: translateX(0); }
.cart-head { display: flex; justify-content: space-between; align-items: center; padding: 26px 28px; background: var(--dark-teal); color: #fff; }
.cart-head h2 { color: #fff; font-size: 24px; }
.cart-head button { border: 0; background: rgba(255,255,255,0.1); width: 38px; height: 38px; color: #fff; font-size: 18px; }
.cart-head button:hover { background: var(--primary-red); }
.cart-items { padding: 18px; overflow: auto; flex: 1; }
.cart-line { display: grid; grid-template-columns: 86px 1fr; gap: 16px; padding: 16px; margin-bottom: 12px; background: #fff; border: 1px solid var(--border-color); box-shadow: var(--shadow-sm); }
.cart-line img { width: 86px; height: 86px; object-fit: contain; background: #f8fafa; border: 1px solid #eef1f1; }
.cart-line strong { display: block; color: var(--dark-teal); font-size: 14px; margin-bottom: 4px; }
.cart-line span { color: var(--text-muted); font-size: 13px; }
.cart-variant { display: block; color: var(--primary-red) !important; font-weight: 700; margin-bottom: 3px; }
.cart-line-actions { display: flex; align-items: center; gap: 8px; margin-top: 9px; }
.cart-line-actions button { border: 1px solid var(--border-color); background: #fff; min-width: 28px; height: 28px; padding: 4px 8px; color: #344; font-size: 12px; font-weight: 700; }
.cart-line-actions button:hover { border-color: var(--primary-red); color: var(--primary-red); }
.empty-cart { color: var(--text-muted); text-align: center; margin-top: 30px; }
.cart-total { display: flex; justify-content: space-between; padding: 22px 28px; background: #fff; border-top: 1px solid var(--border-color); font-size: 18px; }
.cart-total strong { color: var(--dark-teal); font-size: 24px; }
.cart-drawer-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 28px 28px; background: #fff; }
.cart-drawer-actions .btn { 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: 1fr auto 1fr; align-items: center; gap: 20px; }
.footer-bottom img { height: 25px; }
.footer-bottom span:last-child { justify-self: end; }
.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;
    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-copy { position: static; }
    .home-faq-copy h2, .newsletter-panel h2 { font-size: 36px; }
    .newsletter-panel { padding: 38px 28px; gap: 32px; }
    .newsletter-panel::after { font-size: 120px; right: 18px; }
    .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; }
    .ride-banner { min-height: 100svh; }
    .ride-banner h2 { font-size: 48px; }
    .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, .newsletter-panel h2 { font-size: 30px; }
    .newsletter-section { padding-bottom: 64px; }
    .newsletter-panel { padding: 30px 22px; }
    .newsletter-form { padding: 18px; }
    .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-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 span { font-size: 31px; }
    .footer-main { grid-template-columns: 1fr; }
    .footer-bottom .container { grid-template-columns: 1fr; justify-items: start; }
    .footer-bottom span:last-child { justify-self: start; }
}

@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: rgba(255, 196, 63, 0.3);
    box-shadow: 0 20px 40px -15px rgba(255, 196, 63, 0.12), 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: #b45309;
}
.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(--brand-secondary);
    color: var(--text-body);
    box-shadow: 0 8px 20px rgba(255, 196, 63, 0.25);
}

@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(--brand-secondary);
    color: var(--brand-ink);
}

/* 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: rgba(255, 196, 63, 0.3);
    box-shadow: 0 20px 40px -15px rgba(255, 196, 63, 0.12), 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: #b45309;
}
.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(--brand-secondary);
    color: var(--text-body);
    box-shadow: 0 8px 20px rgba(255, 196, 63, 0.25);
}
.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 .cat-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 18px;
    }
    .home .cat-item {
        min-height: 220px;
    }
    .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;
    }
}
