/* ==========================================================================
   ALTARIS INDUSTRIAL — DESIGN SYSTEM CSS
   Compiled from locked design system. Do not modify token values.
   ========================================================================== */

/* ============ DESIGN TOKENS ============ */
:root {
    /* Navy palette */
    --navy-950: #0a1d35;
    --navy-900: #122a47;
    --navy-800: #1a3758;
    --navy-700: #24476e;
    --navy-600: #345a82;
    --navy-100: #dce4ee;
    --navy-50: #eef2f8;

    /* Gold palette */
    --orange-600: #8f7019;
    --orange-500: #bb9523;
    --orange-400: #d1ab38;
    --orange-300: #e0c060;
    --orange-100: #f0dfa0;
    --orange-50: #f9f0d0;

    /* Gold — logo only */
    --gold: #f5a623;

    /* Ink */
    --ink-900: #0a1626;
    --ink-700: #2d3e52;
    --ink-600: #4b5c72;
    --ink-500: #6a7a8f;
    --ink-400: #8b99ad;

    /* Lines */
    --line-100: #e6e9ef;
    --line-50: #f1f3f7;

    /* Backgrounds */
    --bg-page: #ffffff;
    --bg-surface: #ffffff;
    --bg-muted: #f6f8fb;

    /* Typography */
    --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --display: 'Oswald', var(--sans);
}

/* ============ RESET ============ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink-700);
    background: var(--bg-page);
    -webkit-font-smoothing: antialiased;
}

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

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

ul {
    list-style: none;
}

button {
    cursor: pointer;
    font-family: var(--sans);
}

input,
select,
textarea {
    font-family: var(--sans);
}

/* ============ LAYOUT ============ */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
}

.section {
    padding: 88px 0;
}

.section-tight {
    padding: 64px 0;
}

.section-dark {
    background: var(--navy-950);
    color: white;
}

.section-muted {
    background: var(--bg-muted);
}

/* ============ TYPOGRAPHY ============ */
.section-header {
    text-align: center;
    margin-bottom: 56px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.section-header-center {
    text-align: center;
}

.section-eyebrow {
    font-family: var(--display);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.22em;
    color: var(--orange-500);
    text-transform: uppercase;
    margin-bottom: 16px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.section-eyebrow::before,
.section-eyebrow::after {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--orange-500);
}

.section-title {
    font-family: var(--display);
    font-size: 44px;
    font-weight: 700;
    color: var(--navy-950);
    letter-spacing: 0.005em;
    line-height: 1.1;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.section-dark .section-title,
.section-title--light {
    color: white;
}

.section-sub {
    font-size: 17px;
    color: var(--ink-600);
    line-height: 1.55;
}

.section-dark .section-sub {
    color: rgba(255, 255, 255, 0.75);
}

/* ============ UTILITY BAR ============ */
.utility {
    background: var(--navy-950);
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.utility .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.utility-left {
    display: flex;
    gap: 22px;
    align-items: center;
}

.utility-right {
    display: flex;
    gap: 16px;
    align-items: center;
}

.utility-left span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.utility a {
    color: rgba(255, 255, 255, 0.9);
    transition: color .15s;
}

.utility a:hover {
    color: var(--orange-400);
}

/* ============ HEADER ============ */
.site-header {
    background: var(--navy-950);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    gap: 32px;
}

.site-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}

.site-logo img {
    height: 62px;
    width: auto;
    display: block;
    filter: brightness(1.2);
}

.logo-mark {
    width: 44px;
    height: 44px;
    background: var(--gold);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-950);
    font-family: var(--display);
    font-weight: 700;
    font-size: 24px;
    letter-spacing: -0.02em;
}

.logo-text {
    font-family: var(--display);
    font-weight: 700;
    font-size: 22px;
    color: white;
    letter-spacing: 0.02em;
    line-height: 1;
    text-transform: uppercase;
}

.logo-sub {
    font-family: var(--sans);
    font-weight: 500;
    font-size: 9px;
    color: var(--orange-400);
    letter-spacing: 0.28em;
    text-transform: uppercase;
    display: block;
    margin-top: 4px;
}

.main-nav {
    display: flex;
    gap: 30px;
    flex: 1;
    justify-content: center;
}

.main-nav a {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    padding: 8px 0;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color .15s;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.main-nav a:hover,
.main-nav a.current-menu-item,
.main-nav a.current-page-ancestor {
    color: var(--orange-400);
}

.main-nav a.current-menu-item::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--orange-500);
}

/*.main-nav a.has-submenu::after {*/
/*    content: '▾';*/
/*    font-size: 9px;*/
/*    margin-left: 2px;*/
/*    color: rgba(255, 255, 255, 0.5);*/
/*}*/

.main-nav a.no-dropdown::after {
    display: none;
}

/* ── Nav dropdown wrapper ── */
.nav-item-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

/* Invisible bridge covering the gap so hover isn't lost mid-travel */
.nav-item-wrap::after {
    content: '';
    position: absolute;
    top: 100%;
    left: -16px;
    right: -16px;
    height: 18px;
}

.submenu-chevron {
    flex-shrink: 0;
    opacity: 0.65;
    transition: transform .2s ease;
}

.nav-item-wrap:hover .submenu-chevron,
.nav-item-wrap.open .submenu-chevron {
    transform: rotate(180deg);
    opacity: 1;
}

/* ── Sub-menu panel ── */
.nav-item-wrap .sub-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    min-width: 230px;
    background: #fff;
    border-top: 3px solid var(--orange-500);
    border-radius: 0 0 6px 6px;
    box-shadow: 0 10px 36px rgba(10, 29, 53, 0.16);
    list-style: none;
    padding: 6px 0 8px;
    margin: 0;
    z-index: 300;
    opacity: 0;
    visibility: hidden;
    transition: opacity .18s ease, transform .18s ease, visibility .18s;
    pointer-events: none;
}

/* Arrow notch above panel */
.nav-item-wrap .sub-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 8px solid var(--orange-500);
}

.nav-item-wrap:hover .sub-menu,
.nav-item-wrap.open .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.nav-item-wrap .sub-menu li {
    margin: 0;
    padding: 0;
}

.nav-item-wrap .sub-menu a {
    display: block !important;
    padding: 10px 20px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    color: var(--navy-800) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    white-space: nowrap;
    transition: background .12s, color .12s;
    position: static !important;
}

.nav-item-wrap .sub-menu a::after {
    display: none !important;
}

.nav-item-wrap .sub-menu a:hover {
    background: var(--bg-muted, #f7f8fa);
    color: var(--orange-500) !important;
}

/* "All Services →" — accented separator */
.nav-item-wrap .sub-menu li:first-child a {
    color: var(--orange-500) !important;
    font-size: 11px !important;
    padding-bottom: 10px !important;
    border-bottom: 1px solid var(--line-100, #e8ecf1) !important;
    margin-bottom: 2px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all .15s;
    position: relative;
    font-size: 15px;
    background: rgba(255, 255, 255, 0.04);
    text-decoration: none;
}

.icon-btn:hover {
    border-color: var(--orange-400);
    color: var(--orange-400);
    background: rgba(187, 149, 35, 0.1);
}

.cart-dot {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--orange-500);
    color: white;
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Prevent scroll when mobile nav is open */
body.nav-open {
    overflow: hidden;
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    font-size: 18px;
    align-items: center;
    justify-content: center;
}

.nav-close {
    display: none;
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1;
    flex-shrink: 0;
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 13px;
    transition: all .18s;
    cursor: pointer;
    border: none;
    text-decoration: none;
    font-family: var(--sans);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
}

.btn-primary {
    background: var(--orange-500);
    color: white;
}

.btn-primary:hover {
    background: var(--orange-600);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(187, 149, 35, 0.3);
    color: white;
}

.shop-cta-row {
    text-align: center;
    margin-top: 20px;
}

.btn-shop {
    background: var(--orange-500);
    color: white;
}

.btn-shop:hover {
    background: var(--orange-600);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(187, 149, 35, 0.3);
    color: white;
}

.btn-ghost-light {
    background: transparent;
    color: white;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
}

.btn-ghost-light:hover {
    border-color: var(--orange-400);
    color: var(--orange-400);
}

.btn-ghost-dark {
    background: transparent;
    color: var(--navy-900);
    border: 1.5px solid var(--navy-100);
}

.btn-ghost-dark:hover {
    border-color: var(--orange-500);
    color: var(--orange-600);
}

.btn-white {
    background: white;
    color: var(--navy-900);
}

.btn-white:hover {
    background: var(--navy-50);
}

.btn-dark {
    background: var(--navy-950);
    color: white;
}

.btn-dark:hover {
    background: var(--navy-800);
    transform: translateY(-1px);
}

.btn-big {
    padding: 16px 32px;
    font-size: 14px;
}

/* ============ BREADCRUMB ============ */
.breadcrumb {
    background: var(--bg-muted);
    border-bottom: 1px solid var(--line-100);
    padding: 12px 0;
    font-size: 13px;
    color: var(--ink-500);
}

.breadcrumb .container {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--ink-600);
    transition: color .15s;
}

.breadcrumb a:hover {
    color: var(--orange-500);
}

.breadcrumb .sep {
    color: var(--ink-400);
}

.breadcrumb .current {
    color: var(--navy-950);
    font-weight: 600;
}

/* ============ HERO ============ */
.hero {
    background: var(--navy-950);
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    min-height: 520px;
    position: relative;
}

.hero-side {
    padding: 80px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    color: white;
}

.hero-side-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-side-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
}

.hero-services .hero-side-bg img {
    opacity: 0.65;
}

.hero-services .hero-side-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.80;
}

.hero-side-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-services .hero-side-overlay {
    background: linear-gradient(to right, rgba(10, 29, 53, 0.62) 0%, rgba(10, 29, 53, 0.38) 55%, rgba(10, 29, 53, 0.12) 100%);
}

.hero-shop .hero-side-overlay {
    background: linear-gradient(to right, rgba(18, 42, 71, 0.62) 0%, rgba(18, 42, 71, 0.38) 55%, rgba(18, 42, 71, 0.12) 100%);
}

.hero-shop .hero-side-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.80;
}

.hero-side-content {
    position: relative;
    z-index: 2;
    max-width: 560px;
}

.hero-side-label {
    font-family: var(--display);
    font-size: 14px;
    font-weight: 600;
    color: var(--orange-400);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.hero-side-label::before {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--orange-400);
}

.hero-headline {
    font-family: var(--display);
    font-size: 56px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: white;
}

.hero-shop .hero-headline {
    font-size: 52px;
}

.hero-tagline {
    font-size: 16px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 28px;
}

.hero-cta-row {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
}

.hero-phone {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.hero-phone strong {
    color: white;
    font-weight: 700;
    font-size: 15px;
}

.hero-divider {
    position: absolute;
    top: 10%;
    bottom: 10%;
    left: 54.5%;
    width: 1px;
    background: rgba(255, 255, 255, 0.08);
    z-index: 3;
}

.hero-services-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 28px;
    margin-bottom: 32px;
}

.hero-svc-col-heading {
    font-size: 13px;
    font-weight: 700;
    color: white;
    letter-spacing: 0.02em;
    margin-bottom: 12px;
}

.hero-svc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.hero-svc-list li {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.80);
    padding-left: 14px;
    position: relative;
    line-height: 1.4;
}

.hero-svc-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--orange-400);
}

.hero-shop-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-shop-list li {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.82);
    padding-left: 16px;
    position: relative;
    line-height: 1.4;
}

.hero-shop-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--orange-400);
}

/* Page hero (interior pages) */
.page-hero {
    background: var(--navy-950);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, var(--navy-950) 30%, rgba(10, 29, 53, 0.8) 100%);
    z-index: 1;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.page-hero-label {
    font-family: var(--display);
    font-size: 13px;
    font-weight: 600;
    color: var(--orange-400);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.page-hero-label::before {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--orange-400);
}

.page-hero-title {
    font-family: var(--display);
    font-size: 52px;
    line-height: 1.05;
    font-weight: 700;
    text-transform: uppercase;
    color: white;
    margin-bottom: 20px;
}

.page-hero-title em {
    color: var(--orange-400);
    font-style: normal;
}

.page-hero-sub {
    font-size: 17px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 28px;
    max-width: 560px;
}

.page-hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.page-hero-visual {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-visual-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--orange-500);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 3px;
    font-family: var(--display);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ============ TRUST BAR ============ */
.trustbar {
    background: white;
    padding: 40px 0;
    border-bottom: 1px solid var(--line-100);
}

.trustbar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: center;
    justify-items: center;
}

.trust-stat {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 18px;
}

.trust-stat-icon {
    font-size: 40px;
    line-height: 1;
    flex-shrink: 0;
}

.trust-stat-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.trust-stat-val {
    font-family: var(--display);
    font-size: 40px;
    font-weight: 700;
    color: var(--navy-950);
    line-height: 1;
    letter-spacing: 0;
}

.trust-stat-lbl {
    font-size: 13px;
    color: var(--ink-500);
    letter-spacing: 0.02em;
    font-weight: 500;
}

/* ============ PROCESS STEPS ============ */
.process-wrap {
    background: var(--bg-muted);
    border-top: 1px solid var(--line-100);
    border-bottom: 1px solid var(--line-100);
}

.process-path {
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.process-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.process-step {
    background: white;
    border: 1px solid var(--line-100);
    border-radius: 6px;
    padding: 24px 22px;
    transition: all .2s;
    cursor: pointer;
    position: relative;
    border-top: 3px solid var(--navy-800);
}

.process-step:hover {
    border-top-color: var(--orange-500);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(10, 29, 53, 0.1);
}

.process-step.active {
    border-top-color: var(--orange-500);
    box-shadow: 0 8px 20px rgba(10, 29, 53, 0.1);
}

.process-step.dimmed {
    opacity: 0.45;
}

.process-step-cta {
    background: var(--navy-950);
    border-top-color: var(--orange-500);
}

.process-step-cta .step-num {
    color: var(--orange-400);
}

.process-step-cta .step-title {
    color: white;
    font-size: 18px;
}

.process-step-cta .step-sub {
    color: rgba(255, 255, 255, 0.7);
}

.process-step-cta a {
    color: var(--orange-400);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.step-num {
    font-family: var(--display);
    font-size: 12px;
    font-weight: 600;
    color: var(--orange-500);
    margin-bottom: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.step-title {
    font-family: var(--display);
    font-size: 22px;
    font-weight: 700;
    color: var(--navy-950);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.01em;
}

.step-sub {
    font-size: 13px;
    color: var(--ink-500);
    line-height: 1.45;
}

.process-flow-note {
    text-align: center;
    font-size: 13px;
    color: var(--ink-500);
    margin-top: 28px;
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.flow-pill {
    background: white;
    border: 1px solid var(--line-100);
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    color: var(--navy-900);
    font-family: var(--display);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 13px;
}

.flow-arrow {
    color: var(--orange-500);
    font-size: 20px;
    font-weight: 700;
}

/* ============ PAGE HERO SIMPLE (no bg image) ============ */
.page-hero-simple {
    padding: 72px 0 60px;
    background-image: url(/wp-content/uploads/2026/04/Section.png);
    background-repeat: no-repeat;
    background-size: 100%;
}

.page-hero-simple.hero-section-services {
    background-image: url(/wp-content/uploads/2026/04/Section-PAGE-HERO.png);
}

.page-hero-simple .page-hero-label {
    margin-bottom: 16px;
}

.page-hero-simple .page-hero-title {
    font-size: 48px;
    max-width: 700px;
}

.page-hero-simple .page-hero-sub {
    max-width: 620px;
    margin-bottom: 0;
}

/* ============ INDUSTRIES GRID ============ */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.industry-card:last-child:nth-child(3n+1) {
    grid-column: 2;
}

.industry-card {
    background: white;
    border: 1px solid var(--line-100);
    border-radius: 6px;
    padding: 32px 28px;
    transition: all .22s;
    display: flex;
    flex-direction: column;
    border-bottom: 3px solid transparent;
}

.industry-card:hover {
    border-bottom-color: var(--orange-500);
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(10, 29, 53, 0.1);
}

.industry-card-icon {
    font-size: 32px;
    margin-bottom: 18px;
    line-height: 1;
}

.industry-card-title {
    font-family: var(--display);
    font-size: 20px;
    font-weight: 700;
    color: var(--navy-950);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    line-height: 1.2;
}

.industry-card-title a {
    color: inherit;
    text-decoration: none;
}

.industry-card-title a:hover {
    color: var(--orange-500);
}

.industry-card-tag {
    font-size: 13px;
    color: var(--ink-500);
    line-height: 1.5;
    margin-bottom: 12px;
}

.industry-card-desc {
    font-size: 14px;
    color: var(--ink-600);
    line-height: 1.55;
    margin-bottom: 14px;
}

.industry-card-certs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line-100);
    margin-top: auto;
}

.cert-pill {
    font-size: 11px;
    font-weight: 600;
    color: var(--navy-800);
    background: var(--navy-50);
    padding: 4px 10px;
    border-radius: 3px;
    letter-spacing: 0.02em;
}

.industry-card-link {
    font-size: 12px;
    font-weight: 700;
    color: var(--orange-500);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: auto;
    text-decoration: none;
    min-height: 44px;
}

.industry-card-link::after {
    content: '→';
    transition: transform .15s;
}

.industry-card:hover .industry-card-link::after {
    transform: translateX(4px);
}

/* ============ SERVICE CARDS ============ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card:last-child:nth-child(3n+1) {
    grid-column: 2;
}

.service-card {
    background: white;
    border: 1px solid var(--line-100);
    border-radius: 6px;
    padding: 32px 28px;
    transition: all .22s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid var(--line-100);
}

.service-card:hover {
    border-bottom-color: var(--orange-500);
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(10, 29, 53, 0.1);
}

.service-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 4px;
    background: var(--navy-950);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    color: var(--orange-400);
    font-size: 24px;
    padding: 10px;
}

.service-card-title {
    font-family: var(--display);
    font-size: 22px;
    font-weight: 700;
    color: var(--navy-950);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.01em;
}

.service-card-sub {
    font-size: 14px;
    color: var(--ink-600);
    line-height: 1.55;
    margin-bottom: 18px;
    min-height: 44px;
}

.service-card-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 18px;
}

.spec-chip {
    font-size: 11px;
    font-weight: 600;
    color: var(--navy-800);
    background: var(--navy-50);
    padding: 4px 10px;
    border-radius: 3px;
    letter-spacing: 0.02em;
}

.service-card-link {
    font-size: 12px;
    font-weight: 700;
    color: var(--orange-500);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    min-height: 44px;
}

.service-card-link::after {
    content: '→';
    transition: transform .15s;
}

.service-card:hover .service-card-link::after {
    transform: translateX(4px);
}

/* ============ SHOP CATEGORIES ============ */
.shop-categories {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
    margin-bottom: 40px;
}

.shop-cat {
    background: white;
    border: 1px solid var(--line-100);
    border-radius: 6px;
    padding: 22px 16px;
    text-align: center;
    cursor: pointer;
    transition: all .22s;
    border-bottom: 3px solid var(--orange-500);
}

.shop-cat:hover {
    border-bottom-color: var(--orange-500);
    transform: translateY(-3px);
    box-shadow: 0 12px 26px rgba(10, 29, 53, 0.08);
}

.shop-cat-img {
    width: 100%;
    aspect-ratio: 1;
    background: var(--navy-50);
    border-radius: 4px;
    margin-bottom: 14px;
    overflow: hidden;
}

.shop-cat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shop-cat-title {
    font-family: var(--display);
    font-size: 14px;
    font-weight: 700;
    color: var(--navy-950);
    margin-bottom: 3px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.shop-cat-count {
    font-size: 11px;
    color: var(--ink-500);
    font-weight: 500;
}

/* ============ PRODUCT CARDS ============ */
.product-card {
    background: white;
    border: 1px solid var(--line-100);
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    transition: all .22s;
    border-bottom: 3px solid var(--orange-500);
    display: block;
}

.product-card:hover {
    border-bottom-color: var(--orange-500);
    box-shadow: 0 12px 26px rgba(10, 29, 53, 0.08);
    transform: translateY(-3px);
}

.product-img {
    aspect-ratio: 1;
    background: var(--navy-50);
    position: relative;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s;
}

.product-card:hover .product-img img {
    transform: scale(1.04);
}

.product-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 2;
}

.product-badge {
    background: var(--orange-500);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 3px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: inline-block;
}

.product-badge.new {
    background: var(--navy-800);
}

.product-badge.sale {
    background: #16a34a;
}

.product-wishlist {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: white;
    border: 1px solid var(--line-100);
    font-size: 16px;
    color: var(--ink-400);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .15s;
}

.product-wishlist:hover {
    color: var(--orange-500);
    border-color: var(--orange-400);
}

.product-info {
    padding: 18px;
}

.product-sku {
    font-size: 10px;
    color: var(--ink-500);
    margin-bottom: 6px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.product-name {
    font-family: var(--display);
    font-size: 15px;
    font-weight: 700;
    color: var(--navy-950);
    margin-bottom: 8px;
    line-height: 1.25;
    text-transform: uppercase;
    letter-spacing: 0.01em;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
}

.product-stars {
    color: var(--orange-500);
    font-size: 12px;
}

.product-rating-count {
    font-size: 12px;
    color: var(--ink-500);
}

.product-price-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding-top: 10px;
    border-top: 1px solid var(--line-100);
}

.product-price-group {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.product-price {
    font-family: var(--display);
    font-size: 20px;
    font-weight: 700;
    color: var(--orange-500);
}

.product-price-strike {
    font-size: 14px;
    color: var(--ink-400);
    text-decoration: line-through;
}

.product-unit {
    font-size: 11px;
    color: var(--ink-500);
    font-weight: 500;
}

.product-stock {
    font-size: 11px;
    font-weight: 700;
    color: #16a34a;
    letter-spacing: 0.04em;
}

.product-stock.low {
    color: var(--orange-600);
}

.shop-bestsellers-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.shop-bestsellers-header h3 {
    font-family: var(--display);
    font-size: 18px;
    font-weight: 700;
    color: var(--navy-950);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin: 0;
}

.bestsellers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* ============ SPECS BAR ============ */
.specs-bar {
    background: white;
    border-bottom: 1px solid var(--line-100);
    padding: 40px 0;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.spec-card {
    border-left: 3px solid var(--orange-500);
    padding: 16px 20px;
    background: var(--bg-muted);
    border-radius: 0 4px 4px 0;
}

.spec-card-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--ink-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 6px;
}

.spec-card-value {
    font-family: var(--display);
    font-size: 22px;
    font-weight: 700;
    color: var(--navy-950);
    line-height: 1.1;
    text-transform: uppercase;
}

.spec-card-note {
    font-size: 11px;
    color: var(--ink-400);
    margin-top: 4px;
}

/* ============ MATERIALS GRID ============ */
.materials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.material-card:last-child:nth-child(3n+1) {
    grid-column: 2;
}

.material-card {
    background: white;
    border: 1px solid var(--line-100);
    border-radius: 6px;
    padding: 28px 24px;
    transition: all .22s;
    border-top: 3px solid var(--navy-800);
}

.material-card:hover {
    border-top-color: var(--orange-500);
    transform: translateY(-3px);
    box-shadow: 0 12px 26px rgba(10, 29, 53, 0.08);
}

.material-card-icon {
    font-size: 28px;
    margin-bottom: 16px;
}

.material-card-title {
    font-family: var(--display);
    font-size: 18px;
    font-weight: 700;
    color: var(--navy-950);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.material-card-sub {
    font-size: 13px;
    color: var(--ink-600);
    line-height: 1.55;
}

/* ============ CAPABILITY SECTION ============ */
.capability-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.capability-visual {
    aspect-ratio: 4/3;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--line-100);
}

.capability-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.capability-title {
    font-family: var(--display);
    font-size: 38px;
    line-height: 1.1;
    font-weight: 700;
    color: var(--navy-950);
    margin-bottom: 18px;
    text-transform: uppercase;
}

.capability-body {
    font-size: 16px;
    line-height: 1.7;
    color: var(--ink-600);
    margin-bottom: 24px;
}

.capability-specs {
    margin-bottom: 24px;
}

.capability-spec-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--line-100);
    font-size: 14px;
}

.capability-spec-k {
    color: var(--ink-600);
    font-weight: 600;
}

.capability-spec-v {
    color: var(--navy-900);
    font-weight: 700;
    font-family: var(--display);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

/* ============ QUALITY ============ */
.quality-wrap {
    background: white;
    border-top: 1px solid var(--line-100);
}

.quality-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.quality-title {
    font-family: var(--display);
    font-size: 38px;
    line-height: 1.1;
    font-weight: 700;
    color: var(--navy-950);
    margin-bottom: 18px;
    text-transform: uppercase;
}

.quality-body {
    font-size: 16px;
    line-height: 1.7;
    color: var(--ink-600);
    margin-bottom: 24px;
}

.quality-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
}

.quality-pill {
    font-family: var(--display);
    font-size: 13px;
    font-weight: 600;
    color: var(--navy-900);
    background: var(--navy-50);
    border: 1px solid var(--navy-100);
    padding: 8px 14px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.quality-certs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.quality-cert {
    background: var(--navy-950);
    border-radius: 6px;
    padding: 20px;
    border-top: 3px solid var(--orange-500);
    text-align: center;
}

.quality-cert-name {
    font-family: var(--display);
    font-size: 15px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.quality-cert-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.quality-note {
    font-size: 12px;
    color: var(--ink-400);
    margin-top: 14px;
}

/* ============ SINGLE SERVICE PAGE ============ */

/* Image placeholder */
.svc-img-placeholder {
    width: 100%;
    height: 100%;
    min-height: 300px;
    border-radius: 6px;
    /*     background: var(--navy-50); */
    /*     border: 2px dashed var(--line-200, #d0d8e4); */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--ink-300, #a0aab6);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.svc-img-placeholder-icon {
    width: 40px;
    height: 40px;
    opacity: 0.4;
}

/* Hero */
.svc-hero {
    position: relative;
    background: var(--navy-950);
    color: white;
    min-height: 480px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.svc-hero-bg {
    position: absolute;
    inset: 0;
}

.svc-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    display: block;
}

.svc-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10, 29, 53, 0.92) 45%, rgba(10, 29, 53, 0.55));
}

.svc-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    padding: 80px 0;
}

.svc-hero-text {
    display: flex;
    flex-direction: column;
}

.svc-hero .section-eyebrow {
    color: var(--orange-400);
}

.svc-hero .section-eyebrow::before,
.svc-hero .section-eyebrow::after {
    background: var(--orange-400);
}

.svc-hero-title {
    font-family: var(--display);
    font-size: 52px;
    font-weight: 700;
    line-height: 1.05;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    margin: 14px 0 18px;
}

.svc-hero-sub {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.6;
    margin-bottom: 30px;
}

.svc-hero-cta {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.svc-hero-phone {
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    white-space: nowrap;
}

.svc-hero-phone:hover {
    color: white;
}

.svc-hero-visual {
    aspect-ratio: 4/3;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.svc-hero-visual img,
.svc-hero-visual-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.svc-hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.svc-hero-visual .svc-img-placeholder {
    border-radius: 8px;
    min-height: unset;
    height: 100%;
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.35);
}

/* Our Expertise */
.svc-expertise-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.svc-expertise-content .section-eyebrow {
    margin-bottom: 20px;
}

.svc-expertise-body {
    font-size: 16px;
    line-height: 1.8;
    color: var(--ink-600);
}

.svc-expertise-body p:first-child {
    font-size: 20px;
    font-weight: 500;
    color: var(--navy-900);
    line-height: 1.5;
    margin-bottom: 24px;
}

.svc-expertise-body p {
    margin-bottom: 18px;
}

.svc-expertise-body p:last-child {
    margin-bottom: 0;
}

.svc-expertise-body h2,
.svc-expertise-body h3 {
    font-family: var(--display);
    color: var(--navy-950);
    font-weight: 700;
    text-transform: uppercase;
    margin: 28px 0 14px;
}

.svc-expertise-body ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 16px 0 24px;
}

.svc-expertise-body li {
    font-size: 13px;
    font-weight: 600;
    color: var(--navy-800);
    background: var(--navy-50);
    border: 1px solid var(--line-100);
    padding: 7px 16px;
    border-radius: 3px;
    line-height: 1;
    transition: all .15s;
}

.svc-expertise-body li:hover {
    background: white;
    border-color: var(--orange-400);
    color: var(--orange-600);
}

.svc-expertise-visual {
    aspect-ratio: 4/3;
    border-radius: 8px;
    overflow: hidden;
}

.svc-expertise-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.svc-expertise-visual .svc-img-placeholder {
    border-radius: 8px;
    min-height: unset;
    height: 100%;
}

/* Our Solutions */
.svc-solutions-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 72px;
    align-items: center;
}

.svc-solutions-visual {
    aspect-ratio: 4/3;
    border-radius: 8px;
    overflow: hidden;
}

.svc-solutions-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.svc-solutions-visual .svc-img-placeholder {
    border-radius: 8px;
    min-height: unset;
    height: 100%;
}

.svc-solutions-content .section-eyebrow {
    margin-bottom: 12px;
}

.svc-solutions-body {
    font-size: 15px;
    line-height: 1.75;
    color: var(--ink-600);
    margin-bottom: 28px;
}

.svc-solutions-body p {
    margin-bottom: 16px;
}

.svc-solutions-body p:last-child {
    margin-bottom: 0;
}

.svc-solutions-body ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 24px;
    border-top: 1px solid var(--line-100);
}

.svc-solutions-body li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 11px 0;
    border-bottom: 1px solid var(--line-100);
    font-size: 14px;
    font-weight: 600;
    color: var(--navy-900);
    line-height: 1.4;
}

.svc-solutions-body li::before {
    content: '';
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--orange-500);
}

.svc-solutions-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Service Types */
.svc-types .section-header {
    margin-bottom: 32px;
}

.svc-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.svc-type-card {
    background: white;
    border: 1px solid var(--line-100);
    border-radius: 6px;
    padding: 32px 28px;
    border-top: 3px solid var(--navy-800);
    transition: all .2s;
}

.svc-type-card:hover {
    border-top-color: var(--orange-500);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(10, 29, 53, 0.08);
}

.svc-type-title {
    font-family: var(--display);
    font-size: 17px;
    font-weight: 700;
    color: var(--navy-950);
    text-transform: uppercase;
    letter-spacing: 0.01em;
    margin-bottom: 12px;
}

.svc-type-desc {
    font-size: 14px;
    color: var(--ink-600);
    line-height: 1.65;
}

/* ============ CONSULTING PAGE ============ */
.consulting-intro {
    text-align: center;
}

.consulting-intro-inner {
    max-width: 780px;
    margin: 0 auto;
}

.consulting-intro-inner .section-eyebrow {
    justify-content: center;
}

.consulting-lead {
    font-size: 22px;
    font-weight: 500;
    color: var(--navy-900);
    line-height: 1.6;
    margin: 20px 0 20px;
}

.consulting-sub-lead {
    font-size: 16px;
    color: var(--ink-600);
    line-height: 1.8;
}

.consulting-pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.consulting-pillar {
    background: white;
    border-radius: 6px;
    padding: 40px 32px;
    border-top: 3px solid var(--orange-500);
}

.consulting-pillar-num {
    font-family: var(--display);
    font-size: 11px;
    font-weight: 700;
    color: var(--orange-500);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
}

.consulting-pillar-title {
    font-family: var(--display);
    font-size: 20px;
    font-weight: 700;
    color: var(--navy-950);
    text-transform: uppercase;
    letter-spacing: 0.01em;
    margin-bottom: 14px;
}

.consulting-pillar-desc {
    font-size: 14px;
    color: var(--ink-600);
    line-height: 1.7;
}

.consulting-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.consulting-detail-text .section-eyebrow {
    margin-bottom: 20px;
}

.consulting-detail-text p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--ink-600);
    margin-bottom: 18px;
}

.consulting-detail-text p:last-of-type {
    margin-bottom: 24px;
}

.consulting-detail-visual {
    aspect-ratio: 4/3;
    border-radius: 8px;
    overflow: hidden;
}

.consulting-detail-visual .svc-img-placeholder {
    height: 100%;
    min-height: unset;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .consulting-pillars-grid {
        grid-template-columns: 1fr;
    }

    .consulting-detail-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .consulting-detail-visual {
        aspect-ratio: 16/9;
    }

    .consulting-lead {
        font-size: 18px;
    }
}

/* ============ HOMEPAGE EXPERTISE GRID ============ */
.hp-expertise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid var(--line-100);
    border-radius: 6px;
    overflow: hidden;
    margin-top: 48px;
}

.hp-expertise-col {
    border-right: 1px solid var(--line-100);
    background: white;
    display: flex;
    flex-direction: column;
}

.hp-expertise-col:last-child {
    border-right: none;
}

.hp-expertise-img {
    aspect-ratio: 16/9;
    overflow: hidden;
    flex-shrink: 0;
}

.hp-expertise-img .svc-img-placeholder {
    height: 100%;
    min-height: unset;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid var(--line-100);
}

.hp-expertise-body {
    padding: 28px 24px 36px;
    flex: 1;
}

.hp-expertise-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy-950);
    letter-spacing: 0.01em;
    margin: 0 0 18px;
    text-transform: none;
    font-family: var(--body, sans-serif);
}

.hp-expertise-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hp-expertise-list li {
    font-size: 13px;
    color: var(--ink-500);
    line-height: 1.5;
    padding: 5px 0;
}

@media (max-width: 900px) {
    .hp-expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hp-expertise-col:nth-child(2) {
        border-right: none;
    }

    .hp-expertise-col:nth-child(3) {
        border-top: 1px solid var(--line-100);
    }

    .hp-expertise-col:nth-child(4) {
        border-top: 1px solid var(--line-100);
        border-right: none;
    }
}

@media (max-width: 480px) {
    .hp-expertise-grid {
        grid-template-columns: 1fr;
    }

    .hp-expertise-col {
        border-right: none;
        border-bottom: 1px solid var(--line-100);
    }

    .hp-expertise-col:last-child {
        border-bottom: none;
    }
}

/* ============ MATERIALS TAB PAGE ============ */
.mat-tab-nav {
    background: white;
    border-top: 1px solid var(--line-100);
    border-bottom: 1px solid var(--line-100);
    padding: 32px 0;
}

.mat-tab-inner {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.mat-tab-btn {
    background: none;
    border: 2px solid var(--line-200, #d0d8e4);
    border-radius: 4px;
    padding: 14px 40px;
    font-family: var(--display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-400, #6b7889);
    cursor: pointer;
    transition: all .2s;
    white-space: nowrap;
}

.mat-tab-btn:hover {
    border-color: var(--navy-800);
    color: var(--navy-800);
}

.mat-tab-btn.active {
    background: var(--navy-950);
    border-color: var(--navy-950);
    color: white;
}

.mat-tab-panel {
    display: none;
}

.mat-tab-panel.active {
    display: block;
}

.mat-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.mat-intro-text .section-eyebrow {
    margin-bottom: 16px;
}

.mat-punchline {
    font-family: var(--display);
    font-size: 38px;
    font-weight: 700;
    color: var(--navy-950);
    line-height: 1.15;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    margin: 0 0 24px;
}

.mat-expertise {
    font-size: 16px;
    line-height: 1.8;
    color: var(--ink-600);
}

.mat-intro-visual {
    aspect-ratio: 4/3;
    border-radius: 8px;
    overflow: hidden;
}

.mat-intro-visual .svc-img-placeholder {
    height: 100%;
    min-height: unset;
}

.mat-solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 40px 0 48px;
}

.mat-solutions-grid--5 {
    grid-template-columns: repeat(6, 1fr);
}

.mat-solutions-grid--5 .mat-solution-card:nth-child(-n+3) {
    grid-column: span 2;
}

.mat-solutions-grid--5 .mat-solution-card:nth-child(4) {
    grid-column: 2 / 4;
}

.mat-solutions-grid--5 .mat-solution-card:nth-child(5) {
    grid-column: 4 / 6;
}

.mat-solution-card {
    background: white;
    border: 1px solid var(--line-100);
    border-radius: 6px;
    padding: 32px 28px;
    border-top: 3px solid var(--navy-800);
    transition: all .2s;
}

.mat-solution-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(10, 29, 53, 0.08);
}

.mat-solution-label {
    font-family: var(--display);
    font-size: 15px;
    font-weight: 700;
    color: var(--navy-950);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 14px;
}

.mat-solution-desc {
    font-size: 14px;
    color: var(--ink-600);
    line-height: 1.7;
}

.mat-panel-cta {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-top: 8px;
}

.mat-cta-note {
    font-size: 14px;
    color: var(--ink-500);
}

@media (max-width: 1024px) {
    .mat-solutions-grid--5 {
        grid-template-columns: repeat(3, 1fr);
    }

    .mat-solutions-grid--5 .mat-solution-card:nth-child(n) {
        grid-column: unset;
    }
}

@media (max-width: 768px) {
    .mat-tab-btn {
        padding: 12px 24px;
        font-size: 12px;
    }

    .mat-intro-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .mat-intro-visual {
        aspect-ratio: 16/9;
    }

    .mat-punchline {
        font-size: 28px;
    }

    .mat-solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mat-solutions-grid--5 {
        grid-template-columns: repeat(2, 1fr);
    }

    .mat-panel-cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

@media (max-width: 640px) {
    .mat-tab-btn {
        padding: 11px 20px;
        width: 100%;
        text-align: center;
    }

    .mat-solutions-grid,
    .mat-solutions-grid--5 {
        grid-template-columns: 1fr;
    }

    .mat-intro-visual {
        display: none;
    }

    .mat-punchline {
        font-size: 24px;
    }
}

/* ============ FAQ ============ */
.faq-wrap {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--line-100);
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: var(--navy-950);
    gap: 16px;
}

.faq-q:hover {
    color: var(--orange-600);
}

.faq-icon {
    font-size: 22px;
    color: var(--orange-500);
    flex-shrink: 0;
    transition: transform .2s;
    font-weight: 300;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-a {
    padding: 0 0 20px;
    font-size: 14px;
    color: var(--ink-600);
    line-height: 1.7;
    display: none;
}

.faq-item.open .faq-a {
    display: block;
}

/* ============ CASE STUDIES ============ */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.case-card {
    background: white;
    border: 1px solid var(--line-100);
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    transition: all .22s;
}

.case-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(10, 29, 53, 0.1);
}

.case-img {
    aspect-ratio: 16/10;
    background: var(--navy-100);
    overflow: hidden;
    position: relative;
}

.case-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-industry {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--orange-500);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 3px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-family: var(--display);
}

.case-body {
    padding: 26px;
    border-top: 3px solid var(--orange-500);
}

.case-title {
    font-family: var(--display);
    font-size: 19px;
    font-weight: 700;
    color: var(--navy-950);
    line-height: 1.2;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.case-excerpt {
    font-size: 14px;
    color: var(--ink-600);
    line-height: 1.55;
    margin-bottom: 16px;
}

.case-link {
    font-size: 12px;
    font-weight: 700;
    color: var(--orange-500);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Featured case study */
.case-featured {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 48px;
    align-items: center;
}

.case-featured-visual {
    aspect-ratio: 4/3;
    border-radius: 6px;
    overflow: hidden;
}

.case-featured-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-featured-label {
    font-family: var(--display);
    font-size: 12px;
    color: var(--orange-500);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 14px;
    font-weight: 600;
}

.case-featured-title {
    font-family: var(--display);
    font-size: 28px;
    font-weight: 700;
    color: var(--navy-950);
    line-height: 1.15;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.case-featured-body {
    font-size: 15px;
    color: var(--ink-600);
    line-height: 1.7;
    margin-bottom: 22px;
}

/* ============ CROSSSELL ============ */
.crosssell-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.crosssell-card {
    background: white;
    border: 1px solid var(--line-100);
    border-radius: 6px;
    padding: 28px 24px;
    border-top: 3px solid var(--navy-800);
    transition: all .2s;
}

.crosssell-card:hover {
    border-top-color: var(--orange-500);
    transform: translateY(-3px);
    box-shadow: 0 12px 26px rgba(10, 29, 53, 0.08);
}

.crosssell-step {
    font-family: var(--display);
    font-size: 11px;
    font-weight: 600;
    color: var(--orange-500);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.crosssell-title {
    font-family: var(--display);
    font-size: 22px;
    font-weight: 700;
    color: var(--navy-950);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.crosssell-sub {
    font-size: 13px;
    color: var(--ink-600);
    line-height: 1.55;
    margin-bottom: 16px;
}

.crosssell-link {
    font-size: 12px;
    font-weight: 700;
    color: var(--orange-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* ============ INDUSTRIES SERVED ============ */
.industries-served {
    background: var(--navy-950);
    padding: 40px 0;
}

.industries-served-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.industries-served-title {
    font-family: var(--display);
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    white-space: nowrap;
}

.industries-served-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.industry-chip {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 7px 14px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: all .15s;
}

.industry-chip:hover {
    background: var(--orange-500);
    border-color: var(--orange-500);
    color: white;
}

/* ============ GROWTH SPOTLIGHT ============ */
.growth-spotlight {
    background: var(--navy-950);
    color: white;
    position: relative;
    overflow: hidden;
}

.growth-spotlight::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: radial-gradient(ellipse at right, rgba(187, 149, 35, 0.18), transparent 70%);
    pointer-events: none;
}

.growth-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.growth-visual {
    aspect-ratio: 4/3;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.growth-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.growth-visual-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--orange-500);
    color: white;
    padding: 6px 14px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: var(--display);
}

.growth-title {
    font-family: var(--display);
    font-size: 42px;
    line-height: 1.05;
    font-weight: 700;
    color: white;
    letter-spacing: 0.005em;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.growth-body {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 24px;
}

.growth-bullets {
    list-style: none;
    margin-bottom: 28px;
}

.growth-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.growth-bullets li:last-child {
    border-bottom: none;
}

.growth-bullets li::before {
    content: '→';
    color: var(--orange-400);
    font-weight: 700;
    font-size: 15px;
    flex-shrink: 0;
}

.growth-markets {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.growth-chip {
    font-family: var(--display);
    font-size: 12px;
    font-weight: 600;
    color: var(--orange-300);
    background: rgba(187, 149, 35, 0.1);
    border: 1px solid rgba(187, 149, 35, 0.3);
    padding: 6px 12px;
    border-radius: 3px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ============ BREADTH ============ */
.breadth-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.breadth-card {
    background: white;
    border: 1px solid var(--line-100);
    border-radius: 6px;
    padding: 36px;
    border-top: 3px solid var(--navy-950);
}

.breadth-title {
    font-family: var(--display);
    font-size: 24px;
    font-weight: 700;
    color: var(--navy-950);
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    text-transform: uppercase;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line-100);
}

.breadth-icon {
    width: 36px;
    height: 36px;
    background: var(--navy-950);
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--orange-400);
    padding: 8px;
}

.breadth-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.breadth-chip {
    font-size: 13px;
    font-weight: 500;
    color: var(--navy-800);
    background: var(--bg-muted);
    padding: 12px 14px;
    border-radius: 4px;
    border: 1px solid transparent;
    transition: all .15s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadth-chip::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--orange-500);
    border-radius: 50%;
    flex-shrink: 0;
}

.breadth-chip:hover {
    background: white;
    border-color: var(--orange-400);
    color: var(--orange-600);
}

.section-dark .breadth-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    border-top-color: var(--orange-500);
}

.section-dark .breadth-title {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.section-dark .breadth-icon {
    background: rgba(255, 255, 255, 0.1);
}

.section-dark .breadth-chip {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.75);
}

.section-dark .breadth-chip:hover {
    background: rgba(255, 255, 255, 0.13);
    border-color: var(--orange-400);
    color: var(--orange-400);
}

.consulting-section--light {
    background: white;
    border-top: 1px solid var(--line-100);
}

/* ============ CERTIFICATIONS ============ */
.certs-section {
    background: var(--navy-950);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.certs-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: 0.4;
}

.certs-section>.container {
    position: relative;
    z-index: 2;
}

.certs-header {
    text-align: center;
    margin-bottom: 48px;
}

.certs-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
    max-width: 1100px;
    margin: 0 auto;
}

.cert-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 22px 16px;
    text-align: center;
    transition: all .22s;
    border-top: 3px solid var(--orange-500);
}

.cert-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
}

.cert-name {
    font-family: var(--display);
    font-weight: 700;
    font-size: 15px;
    color: white;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.cert-desc {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
}

/* ============ CONSULTING ============ */
.consulting-section {
    background: var(--bg-muted);
    border-top: 1px solid var(--line-100);
}

.consulting-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    align-items: center;
}

.consulting-visual {
    aspect-ratio: 4/3;
    background: var(--navy-100);
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--line-100);
}

.consulting-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.consulting-title {
    font-family: var(--display);
    font-size: 38px;
    line-height: 1.1;
    font-weight: 700;
    color: var(--navy-950);
    letter-spacing: 0.01em;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.consulting-body {
    font-size: 16px;
    line-height: 1.7;
    color: var(--ink-600);
    margin-bottom: 22px;
}

/* ============ FINAL CTA ============ */
.final-cta {
    padding: 0;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    min-height: 320px;
}

.cta-primary,
.cta-services {
    background: var(--navy-950);
    color: white;
    padding: 64px 72px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-services {
    background-image: url(/wp-content/uploads/2026/04/Background-1.png);
    background-repeat: no-repeat;
    background-size: 100%;
}

.cta-primary::before,
.cta-services::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, var(--orange-500), transparent 70%);
    opacity: 0.18;
}

.cta-label,
.cta-services-label {
    font-family: var(--display);
    font-size: 12px;
    color: var(--orange-400);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-weight: 600;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-label::before,
.cta-services-label::before {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--orange-400);
}

.cta-title,
.cta-services-title {
    font-family: var(--display);
    font-size: 38px;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 14px;
    position: relative;
    text-transform: uppercase;
}

.cta-sub,
.cta-services-sub {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 28px;
    max-width: 460px;
    line-height: 1.6;
    position: relative;
}

.cta-phone {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    margin-left: 18px;
}

.cta-phone strong {
    color: white;
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
}

.cta-secondary,
.cta-shop {
    background: var(--navy-800);
    color: white;
    padding: 64px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-secondary-title,
.cta-shop-title {
    font-family: var(--display);
    font-size: 26px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.cta-secondary-body,
.cta-shop-sub {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 22px;
}

.cta-shop-label {
    font-family: var(--display);
    font-size: 11px;
    color: var(--orange-300);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-weight: 600;
}

.cta-resources {
    background: var(--navy-800);
    padding: 64px 48px;
}

.cta-resources-title {
    font-family: var(--display);
    font-size: 22px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.cta-resources ul {
    list-style: none;
}

.cta-resources li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-resources li:last-child {
    border-bottom: none;
}

.cta-resources a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    transition: color .15s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cta-resources a::before {
    content: '→';
    color: var(--orange-400);
    font-size: 12px;
}

.cta-resources a:hover {
    color: var(--orange-400);
}

/* ============ WHY CHOOSE US ============ */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.why-choose-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--navy-950);
    padding-bottom: 12px;
    border-bottom: 2px solid var(--orange-500);
    margin-bottom: 16px;
}

.why-choose-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-choose-list li {
    font-size: 13px;
    color: var(--ink-600);
    padding: 7px 0;
    border-bottom: 1px solid var(--line-100);
}

@media (max-width: 1024px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
}

/* ============ FOOTER ============ */
.site-footer {
    background: #080f1c;
    color: rgba(255, 255, 255, 0.7);
    padding: 72px 0 0;
    border-top: 3px solid var(--orange-500);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 56px;
}

.footer-logo {
    display: inline-block;
    text-decoration: none;
}

.footer-logo img {
    height: 100px;
    width: auto;
    display: block;
    filter: brightness(1.15);
}

.footer-brand p {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 18px;
    max-width: 240px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 700;
    transition: all .15s;
}

.footer-social a:hover {
    background: var(--orange-500);
    border-color: var(--orange-500);
    color: white;
}

.footer-col-title {
    font-family: var(--display);
    font-size: 13px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 24px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    transition: color .15s;
    line-height: 1.4;
}

.footer-col li:not(:has(a)) {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
}

.footer-col a:hover {
    color: var(--orange-400);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.4);
    transition: color .15s;
}

.footer-legal a:hover {
    color: var(--orange-400);
}

/* ============ ABOUT PAGE ============ */
.proof-bar {
    background: var(--navy-950);
    padding: 0;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.proof-stat {
    padding: 36px 28px;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
    text-align: center;
}

.proof-stat:last-child {
    border-right: none;
}

.proof-stat-val {
    font-family: var(--display);
    font-size: 38px;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.proof-stat-lbl {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 6px;
    letter-spacing: 0.04em;
}

.proof-stat-note {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 4px;
}

.story-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 64px;
    align-items: start;
}

.story-content p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--ink-600);
    margin-bottom: 18px;
}

.story-visual {
    aspect-ratio: 3/4;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--line-100);
}

.story-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.timeline-wrap {
    background: var(--navy-950);
    padding: 88px 0;
}

.timeline-wrap .section-header {
    color: white;
}

.timeline-grid {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-50%);
}

.timeline-items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    position: relative;
    z-index: 2;
}

/* Each item: 3 cols (left 1fr | dot 40px | right 1fr), 2 rows (year+title row | text row) */
.timeline-item {
    display: grid;
    grid-template-columns: 1fr 40px 1fr;
    grid-template-rows: auto auto;
    column-gap: 24px;
    padding: 32px 0;
}

/* Dot always centred in the middle column */
.timeline-dot {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    justify-self: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--orange-500);
    border: 3px solid var(--navy-950);
    box-shadow: 0 0 0 3px var(--orange-500);
}

/* Odd items: year+text LEFT (right-aligned), title RIGHT */
.timeline-item:nth-child(odd) .timeline-year {
    grid-column: 1;
    grid-row: 1;
    text-align: right;
}

.timeline-item:nth-child(odd) .timeline-title {
    grid-column: 3;
    grid-row: 1;
}

.timeline-item:nth-child(odd) .timeline-text {
    grid-column: 1;
    grid-row: 2;
    text-align: right;
}

/* Even items: title LEFT, year+text RIGHT */
.timeline-item:nth-child(even) .timeline-year {
    grid-column: 3;
    grid-row: 1;
}

.timeline-item:nth-child(even) .timeline-title {
    grid-column: 1;
    grid-row: 1;
}

.timeline-item:nth-child(even) .timeline-text {
    grid-column: 3;
    grid-row: 2;
}

.timeline-year {
    font-family: var(--display);
    font-size: 24px;
    font-weight: 700;
    color: var(--orange-400);
    white-space: nowrap;
}

.timeline-title {
    font-family: var(--display);
    font-size: 18px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.timeline-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    padding-top: 6px;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.leader-card {
    text-align: center;
}

.leader-photo {
    aspect-ratio: 1;
    border-radius: 6px;
    overflow: hidden;
    background: var(--navy-50);
    margin-bottom: 18px;
    border: 2px solid var(--line-100);
}

.leader-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-name {
    font-family: var(--display);
    font-size: 18px;
    font-weight: 700;
    color: var(--navy-950);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.leader-role {
    font-size: 13px;
    color: var(--orange-500);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}

.leader-bio {
    font-size: 13px;
    color: var(--ink-600);
    line-height: 1.55;
    margin-bottom: 12px;
}

.leader-linkedin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 4px;
    background: var(--navy-950);
    color: white;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: background .15s;
}

.leader-linkedin:hover {
    background: var(--orange-500);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.value-card {
    background: white;
    border: 1px solid var(--line-100);
    border-radius: 6px;
    padding: 36px 28px;
    border-top: 3px solid var(--orange-500);
}

.value-number {
    font-family: var(--display);
    font-size: 48px;
    font-weight: 700;
    color: var(--orange-100);
    line-height: 1;
    margin-bottom: 14px;
}

.value-title {
    font-family: var(--display);
    font-size: 20px;
    font-weight: 700;
    color: var(--navy-950);
    text-transform: uppercase;
    margin-bottom: 14px;
}

.value-body {
    font-size: 14px;
    color: var(--ink-600);
    line-height: 1.7;
}

.facility-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 56px;
    align-items: center;
}

.facility-visual-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 12px;
    min-height: 480px;
}

.facility-visual-wrap> :first-child {
    grid-column: 1;
    grid-row: 1 / 3;
    border-radius: 6px;
    overflow: hidden;
}

.facility-visual-wrap> :first-child img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.facility-visual-wrap> :nth-child(2),
.facility-visual-wrap> :nth-child(3) {
    border-radius: 6px;
    overflow: hidden;
    min-height: 0;
}

.facility-visual-wrap> :nth-child(2) img,
.facility-visual-wrap> :nth-child(3) img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.facility-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 24px 0;
}

.facility-stat {
    text-align: center;
}

.facility-stat-val {
    font-family: var(--display);
    font-size: 24px;
    font-weight: 700;
    color: var(--navy-950);
}

.facility-stat-lbl {
    font-size: 11px;
    color: var(--ink-500);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.extras-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.extra-card {
    background: white;
    border: 1px solid var(--line-100);
    border-radius: 6px;
    padding: 36px;
    border-top: 3px solid var(--navy-800);
}

.extra-title {
    font-family: var(--display);
    font-size: 24px;
    font-weight: 700;
    color: var(--navy-950);
    text-transform: uppercase;
    margin-bottom: 14px;
}

.extra-body {
    font-size: 14px;
    color: var(--ink-600);
    line-height: 1.7;
    margin-bottom: 20px;
}

/* ============ CONTACT PAGE ============ */
.routing-section {
    padding: 88px 0;
}

/* ── Contact form section ── */
.contact-form-section {
    border-top: 1px solid var(--line-100);
}

.contact-form-wrap {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 72px;
    align-items: start;
}

.contact-form-col--centered {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.contact-form-title {
    font-family: var(--display);
    font-size: 38px;
    font-weight: 700;
    color: var(--navy-950);
    text-transform: uppercase;
    letter-spacing: 0.005em;
    line-height: 1.1;
    margin: 10px 0 14px;
}

.contact-form-sub {
    font-size: 16px;
    color: var(--ink-600);
    line-height: 1.65;
    margin-bottom: 32px;
}

.contact-form-note {
    font-size: 12px;
    color: var(--ink-400);
    margin-top: 16px;
    line-height: 1.6;
}

.contact-form-note a {
    color: var(--orange-500);
    text-decoration: none;
}

.contact-form-note a:hover {
    text-decoration: underline;
}

/* Trust strip above the form */
.contact-form-trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 28px;
}

.cft-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #fff;
    border: 1px solid var(--line-100);
    border-radius: 6px;
    padding: 16px 18px;
}

.cft-item svg {
    flex-shrink: 0;
    color: var(--orange-500);
    margin-top: 2px;
}

.cft-item > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cft-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ink-400);
}

.cft-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy-950);
    text-decoration: none;
}

.cft-value:hover {
    color: var(--orange-500);
}

/* Form card */
.contact-form {
    background: #fff;
    border: 1px solid var(--line-100);
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .05);
}

@media (max-width: 860px) {
    .contact-form-trust {
        grid-template-columns: 1fr;
    }
    .contact-form {
        padding: 28px 24px;
    }
}

@media (max-width: 480px) {
    .contact-form {
        padding: 20px 16px;
    }
}

.contact-form-success {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: #f0faf4;
    border: 1px solid #a8dab5;
    border-left: 4px solid #2e9e5b;
    border-radius: 6px;
    padding: 24px 28px;
    color: var(--navy-950);
    margin-top: 4px;
}

.contact-form-success[hidden] {
    display: none;
}

.contact-form-success svg {
    flex-shrink: 0;
    color: #2e9e5b;
    margin-top: 2px;
}

.contact-form-success strong {
    display: block;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 6px;
}

.contact-form-success p {
    font-size: 14px;
    color: var(--ink-500);
    margin: 0;
}

/* ── Contact info column ── */
.contact-info-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: sticky;
    top: 104px;
}

.contact-info-card {
    background: white;
    border: 1px solid var(--line-100);
    border-left: 3px solid var(--orange-500);
    border-radius: 0 6px 6px 0;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-info-icon {
    font-size: 22px;
    flex-shrink: 0;
    line-height: 1;
    width: 28px;
    text-align: center;
}

.contact-info-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ink-400);
    margin-bottom: 3px;
}

.contact-info-value {
    font-family: var(--display);
    font-size: 14px;
    font-weight: 700;
    color: var(--navy-950);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.3;
}

.contact-info-value a {
    color: var(--navy-950);
    text-decoration: none;
    transition: color .15s;
}

.contact-info-value a:hover {
    color: var(--orange-500);
}

.contact-trust-box {
    background: var(--navy-950);
    border-radius: 6px;
    padding: 22px 24px;
    margin-top: 4px;
    border-top: 3px solid var(--orange-500);
}

.contact-trust-box p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.70);
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 1100px) {
    .contact-form-wrap {
        grid-template-columns: 1fr 300px;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .contact-form-wrap {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info-col {
        position: static;
    }

    .contact-form-title {
        font-size: 28px;
    }
}

.routing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.route-card {
    background: white;
    border: 1px solid var(--line-100);
    border-radius: 6px;
    padding: 32px 28px;
    transition: all .22s;
    border-bottom: 3px solid var(--orange-500);
}

.route-card:hover {
    border-bottom-color: var(--orange-500);
    transform: translateY(-3px);
    box-shadow: 0 12px 26px rgba(10, 29, 53, 0.08);
}

.route-card.primary {
    border-bottom: 3px solid var(--orange-500);
}

.route-icon {
    font-size: 32px;
    margin-bottom: 18px;
}

.route-title {
    font-family: var(--display);
    font-size: 20px;
    font-weight: 700;
    color: var(--navy-950);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.route-desc {
    font-size: 14px;
    color: var(--ink-600);
    line-height: 1.6;
    margin-bottom: 18px;
}

.route-action {
    font-size: 13px;
    font-weight: 700;
    color: var(--orange-500);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.route-email {
    color: var(--navy-800);
    font-family: var(--sans);
    text-transform: lowercase;
    font-size: 14px;
}

.route-email:hover {
    color: var(--orange-500);
}

.location-wrap {
    padding: 88px 0;
    background: var(--bg-muted);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 48px;
    align-items: start;
}

.location-details h3 {
    font-family: var(--display);
    font-size: 22px;
    font-weight: 700;
    color: var(--navy-950);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.location-subtitle {
    font-size: 13px;
    color: var(--ink-500);
    margin-bottom: 24px;
}

.contact-rows {
    margin-bottom: 24px;
}

.contact-row {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid var(--line-100);
}

.contact-key {
    font-size: 12px;
    font-weight: 700;
    color: var(--ink-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding-top: 2px;
}

.contact-val {
    font-size: 14px;
    color: var(--ink-700);
    line-height: 1.6;
}

.contact-val a {
    color: var(--navy-900);
    font-weight: 600;
}

.contact-val a:hover {
    color: var(--orange-500);
}

.contact-val-note {
    font-size: 12px;
    color: var(--ink-400);
    margin-top: 4px;
}

.map-wrap {
    aspect-ratio: 4/3;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--line-100);
}

.map-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-pin {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--navy-950);
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 4px;
    font-family: var(--display);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.visiting-section {
    padding: 88px 0;
}

.visiting-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.visiting-card {
    background: white;
    border: 1px solid var(--line-100);
    border-radius: 6px;
    padding: 36px;
    border-top: 3px solid var(--navy-800);
}

.visiting-icon {
    font-size: 32px;
    margin-bottom: 18px;
}

.visiting-title {
    font-family: var(--display);
    font-size: 20px;
    font-weight: 700;
    color: var(--navy-950);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.visiting-body {
    font-size: 14px;
    color: var(--ink-600);
    line-height: 1.7;
    margin-bottom: 14px;
}

.visiting-meta {
    font-size: 12px;
    color: var(--orange-600);
    font-weight: 700;
    padding: 8px 14px;
    background: var(--orange-50);
    border-radius: 4px;
    display: inline-block;
}

.social-section {
    background: var(--navy-950);
    padding: 64px 0;
}

.social-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.social-card {}

.social-card h3 {
    font-family: var(--display);
    font-size: 22px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.social-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 700;
    transition: all .15s;
}

.social-icons a:hover {
    background: var(--orange-500);
    border-color: var(--orange-500);
}

/* ============ SHOP PAGE ============ */
.shop-hero {
    background: var(--bg-muted);
    border-bottom: 1px solid var(--line-100);
    padding: 64px 0;
}

.shop-hero-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 56px;
    align-items: center;
}

.shop-hero-label {
    font-family: var(--display);
    font-size: 13px;
    color: var(--orange-500);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.shop-hero-label::before {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--orange-500);
}

.shop-hero-title {
    font-family: var(--display);
    font-size: 48px;
    line-height: 1.05;
    font-weight: 700;
    color: var(--navy-950);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.shop-hero-sub {
    font-size: 16px;
    color: var(--ink-600);
    line-height: 1.7;
    margin-bottom: 24px;
}

.shop-search {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1.5px solid var(--line-100);
    border-radius: 4px;
    background: white;
    overflow: hidden;
}

.shop-search input {
    flex: 1;
    border: none;
    padding: 12px 16px;
    font-size: 14px;
    outline: none;
    color: var(--ink-700);
}

.shop-search-btn {
    background: var(--orange-500);
    color: white;
    border: none;
    padding: 12px 20px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: background .15s;
}

.shop-search-btn:hover {
    background: var(--orange-600);
}

.shop-hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.shop-hero-stat {
    background: white;
    border: 1px solid var(--line-100);
    border-radius: 6px;
    padding: 20px 16px;
    text-align: center;
    border-top: 3px solid var(--orange-500);
}

.shop-hero-stat-val {
    font-family: var(--display);
    font-size: 22px;
    font-weight: 700;
    color: var(--navy-950);
    line-height: 1;
    margin-bottom: 6px;
}

.shop-hero-stat-lbl {
    font-size: 11px;
    color: var(--ink-500);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.promise-strip {
    background: var(--navy-950);
    padding: 28px 0;
}

.promise-grid {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.promise-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 32px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.promise-item:first-child {
    padding-left: 0;
}

.promise-item:last-child {
    border-right: none;
}

.promise-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.promise-title {
    font-family: var(--display);
    font-size: 15px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.promise-sub {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 2px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.cat-card {
    background: white;
    border: 1px solid var(--line-100);
    border-radius: 6px;
    padding: 20px 14px;
    text-align: center;
    cursor: pointer;
    transition: all .22s;
    border-bottom: 3px solid var(--orange-500);
    display: block;
}

.cat-card:hover {
    border-bottom-color: var(--orange-500);
    transform: translateY(-3px);
    box-shadow: 0 12px 26px rgba(10, 29, 53, 0.08);
}

.cat-img {
    aspect-ratio: 1;
    background: var(--navy-50);
    border-radius: 4px;
    margin-bottom: 12px;
    overflow: hidden;
}

.cat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cat-title {
    font-family: var(--display);
    font-size: 13px;
    font-weight: 700;
    color: var(--navy-950);
    text-transform: uppercase;
    margin-bottom: 3px;
}

.cat-count {
    font-size: 11px;
    color: var(--ink-500);
}

.by-size-wrap {
    background: var(--navy-950);
    padding: 64px 0;
}

.by-size-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.size-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 24px 16px;
    text-align: center;
    cursor: pointer;
    transition: all .2s;
}

.size-card:hover {
    background: var(--orange-500);
    border-color: var(--orange-500);
    transform: translateY(-2px);
}

.size-val {
    font-family: var(--display);
    font-size: 28px;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.size-unit {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 4px;
}

.size-count {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.featured-band {
    background: var(--orange-500);
    overflow: hidden;
}

.featured-band-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.featured-band-content {
    padding: 64px 56px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-band-label {
    font-family: var(--display);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 14px;
    font-weight: 600;
}

.featured-band-title {
    font-family: var(--display);
    font-size: 36px;
    line-height: 1.1;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.featured-band-sub {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 24px;
}

.featured-band-cta {
    font-weight: 700;
    font-size: 14px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.featured-band-visual {
    overflow: hidden;
}

.featured-band-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.section-link {
    font-size: 13px;
    font-weight: 700;
    color: var(--orange-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    white-space: nowrap;
}

.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding: 16px 0;
    border-bottom: 1px solid var(--line-100);
    flex-wrap: wrap;
    gap: 12px;
}

.toolbar-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.toolbar-count {
    font-size: 14px;
    color: var(--ink-600);
}

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

.filter-pill {
    font-size: 12px;
    font-weight: 600;
    color: var(--navy-900);
    background: var(--navy-50);
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid var(--navy-100);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.filter-pill .close {
    color: var(--ink-500);
    font-size: 14px;
}

.filter-pill:not(.active) {
    background: transparent;
    color: var(--orange-600);
    border-color: transparent;
}

.toolbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sort-select {
    font-size: 13px;
    color: var(--navy-900);
    border: 1.5px solid var(--line-100);
    border-radius: 4px;
    padding: 8px 14px;
    outline: none;
    cursor: pointer;
}

.view-toggle {
    display: flex;
    border: 1px solid var(--line-100);
    border-radius: 4px;
    overflow: hidden;
}

.view-toggle button {
    width: 36px;
    height: 36px;
    border: none;
    background: white;
    color: var(--ink-500);
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.view-toggle button.active {
    background: var(--navy-950);
    color: white;
}

.products-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 32px;
    align-items: start;
}

.sidebar {
    background: white;
    border: 1px solid var(--line-100);
    border-radius: 6px;
    padding: 24px;
    position: sticky;
    top: 104px;
}

.sidebar-title {
    font-family: var(--display);
    font-size: 16px;
    font-weight: 700;
    color: var(--navy-950);
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--navy-950);
}

.filter-group {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line-100);
}

.filter-group:last-child {
    border-bottom: none;
}

.filter-group-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--navy-950);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.filter-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-check {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--ink-700);
    cursor: pointer;
}

.filter-count {
    font-size: 11px;
    color: var(--ink-400);
    margin-left: auto;
}

.filter-price-range {
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-price-range input {
    flex: 1;
    border: 1px solid var(--line-100);
    border-radius: 3px;
    padding: 7px 10px;
    font-size: 13px;
    outline: none;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.load-more-row {
    text-align: center;
    margin-top: 40px;
}

.trust-cta-wrap {
    padding: 88px 0;
    background: var(--bg-muted);
}

.trust-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 56px;
    align-items: center;
}

.trust-cta-visual {
    aspect-ratio: 4/3;
    border-radius: 6px;
    overflow: hidden;
}

.trust-cta-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trust-cta-title {
    font-family: var(--display);
    font-size: 38px;
    line-height: 1.1;
    font-weight: 700;
    color: var(--navy-950);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.trust-cta-body {
    font-size: 16px;
    color: var(--ink-600);
    line-height: 1.7;
    margin-bottom: 20px;
}

.trust-cta-bullets {
    list-style: none;
    margin-bottom: 24px;
}

.trust-cta-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--ink-700);
    border-bottom: 1px solid var(--line-100);
}

.trust-cta-bullets li:last-child {
    border-bottom: none;
}

.trust-cta-bullets li::before {
    content: '→';
    color: var(--orange-500);
    font-weight: 700;
    flex-shrink: 0;
}

.newsletter-wrap {
    background: var(--navy-950);
    padding: 56px 0;
}

.newsletter-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.newsletter-title {
    font-family: var(--display);
    font-size: 30px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.newsletter-sub {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 0;
    border-radius: 4px;
    overflow: hidden;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
}

.newsletter-form input {
    flex: 1;
    background: rgba(255, 255, 255, 0.06);
    border: none;
    padding: 14px 18px;
    font-size: 14px;
    color: white;
    outline: none;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-form button {
    background: var(--orange-500);
    color: white;
    border: none;
    padding: 14px 24px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: background .15s;
}

.newsletter-form button:hover {
    background: var(--orange-600);
}

/* ============ PRODUCT PAGE ============ */
.product-hero {
    padding: 64px 0;
    background: white;
    border-bottom: 1px solid var(--line-100);
}

.product-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}

.gallery-wrap {
    position: sticky;
    top: 104px;
}

.gallery-main {
    aspect-ratio: 1;
    background: var(--navy-50);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    margin-bottom: 12px;
    border: 1px solid var(--line-100);
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-main-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--orange-500);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 3px;
    font-family: var(--display);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
}

.gallery-thumb {
    aspect-ratio: 1;
    border-radius: 4px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color .15s;
}

.gallery-thumb.active {
    border-color: var(--orange-500);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.buybox-breadcrumb {
    font-size: 12px;
    color: var(--ink-500);
    margin-bottom: 10px;
}

.buybox-title {
    font-family: var(--display);
    font-size: 32px;
    font-weight: 700;
    color: var(--navy-950);
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 10px;
}

.buybox-meta {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line-100);
    flex-wrap: wrap;
}

.buybox-sku {
    font-size: 12px;
    color: var(--ink-500);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.buybox-rating {
    display: none;
    /* display: flex; */
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--ink-700);
}

.stars {
    color: var(--orange-500);
}

.buybox-desc {
    font-size: 15px;
    color: var(--ink-600);
    line-height: 1.7;
    margin-bottom: 22px;
}

.variant-group {
    margin-bottom: 18px;
}

.variant-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--navy-950);
    margin-bottom: 10px;
}

.variant-label-value {
    color: var(--ink-500);
    font-weight: 400;
}

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

.variant {
    padding: 8px 16px;
    border: 1.5px solid var(--line-100);
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy-900);
    cursor: pointer;
    transition: all .15s;
}

.variant:hover {
    border-color: var(--orange-400);
    color: var(--orange-600);
}

.variant.active {
    border-color: var(--navy-950);
    background: var(--navy-950);
    color: white;
}

.variant.out {
    opacity: 0.45;
    cursor: not-allowed;
    text-decoration: line-through;
}

.price-block {
    background: var(--bg-muted);
    border-left: 4px solid var(--orange-500);
    border-radius: 0 4px 4px 0;
    padding: 20px 22px;
    margin-bottom: 20px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 10px;
}

.price-main {
    font-family: var(--display);
    font-size: 36px;
    font-weight: 700;
    color: var(--orange-500);
    line-height: 1;
}

.price-unit {
    font-size: 14px;
    color: var(--ink-600);
    margin-left: 8px;
}

.price-per-unit {
    font-size: 13px;
    color: var(--ink-500);
}

.stock-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--ink-700);
}

.stock-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #16a34a;
    flex-shrink: 0;
}

.qty-cart-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.qty-stepper {
    display: flex;
    border: 1.5px solid var(--line-100);
    border-radius: 4px;
    overflow: hidden;
}

.qty-btn {
    width: 40px;
    height: 46px;
    background: white;
    border: none;
    font-size: 20px;
    color: var(--navy-950);
    cursor: pointer;
    transition: background .15s;
}

.qty-btn:hover {
    background: var(--navy-50);
}

.qty-input {
    width: 52px;
    height: 46px;
    border: none;
    border-left: 1.5px solid var(--line-100);
    border-right: 1.5px solid var(--line-100);
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    color: var(--navy-950);
    font-family: var(--display);
}

.addcart-btn {
    flex: 1;
    background: var(--orange-500);
    color: white;
    border: none;
    border-radius: 4px;
    padding: 12px 24px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: all .18s;
}

.addcart-btn:hover {
    background: var(--orange-600);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(187, 149, 35, 0.3);
}

.save-btn {
    width: 46px;
    height: 46px;
    border: 1.5px solid var(--line-100);
    border-radius: 4px;
    background: white;
    font-size: 20px;
    color: var(--ink-400);
    cursor: pointer;
    transition: all .15s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.save-btn:hover {
    color: var(--orange-500);
    border-color: var(--orange-400);
}

.quick-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    padding-top: 14px;
    border-top: 1px solid var(--line-100);
}

.quick-actions a {
    font-size: 13px;
    color: var(--navy-800);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color .15s;
}

.quick-actions a:hover {
    color: var(--orange-500);
}

.volume-wrap {
    background: var(--navy-950);
}

.volume-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 56px;
    align-items: center;
}

.volume-table {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    overflow: hidden;
}

.volume-table table {
    width: 100%;
    border-collapse: collapse;
}

.volume-table th {
    background: rgba(255, 255, 255, 0.07);
    padding: 14px 20px;
    text-align: left;
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.volume-table td {
    padding: 16px 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.volume-table tr.current td {
    background: rgba(187, 149, 35, 0.1);
}

.price-cell {
    font-family: var(--display);
    font-size: 18px;
    font-weight: 700;
    color: var(--orange-400);
}

.save-cell {
    color: #4ade80;
    font-size: 13px;
    font-weight: 700;
}

.spec-card-block h3 {
    font-family: var(--display);
    font-size: 20px;
    font-weight: 700;
    color: var(--navy-950);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
}

.spec-table td {
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px solid var(--line-100);
}

.spec-table td:first-child {
    color: var(--ink-500);
    font-weight: 600;
    width: 140px;
}

.spec-table td:last-child {
    color: var(--navy-950);
    font-weight: 500;
}

.compat-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.compat-item {
    display: block;
    padding: 14px 16px;
    background: var(--bg-muted);
    border-radius: 4px;
    border: 1px solid transparent;
    transition: all .15s;
    cursor: pointer;
}

.compat-item:hover {
    border-color: var(--orange-400);
    background: white;
}

.compat-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--navy-950);
    margin-bottom: 3px;
}

.compat-detail {
    font-size: 12px;
    color: var(--ink-500);
}

.description-wrap {
    max-width: 760px;
}

.description-wrap p {
    font-size: 15px;
    color: var(--ink-600);
    line-height: 1.8;
    margin-bottom: 16px;
}

.downloads-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.download-card {
    background: white;
    border: 1px solid var(--line-100);
    border-radius: 6px;
    padding: 24px 20px;
    text-align: center;
    cursor: pointer;
    transition: all .22s;
    border-bottom: 3px solid transparent;
}

.download-card:hover {
    border-bottom-color: var(--orange-500);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(10, 29, 53, 0.08);
}

.download-icon {
    font-size: 28px;
    margin-bottom: 10px;
}

.download-title {
    font-family: var(--display);
    font-size: 15px;
    font-weight: 700;
    color: var(--navy-950);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.download-meta {
    font-size: 12px;
    color: var(--ink-500);
}

.fbwith-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.fb-card {
    background: white;
    border: 1px solid var(--line-100);
    border-radius: 6px;
    overflow: hidden;
}

.fb-img {
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--navy-50);
}

.fb-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fb-body {
    padding: 14px;
}

.fb-sku {
    font-size: 10px;
    color: var(--ink-500);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.fb-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--navy-950);
    margin-bottom: 10px;
}

.fb-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fb-price {
    font-family: var(--display);
    font-size: 18px;
    font-weight: 700;
    color: var(--orange-500);
}

.fb-add {
    background: var(--navy-950);
    color: white;
    border: none;
    padding: 7px 14px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: background .15s;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.fb-add:hover {
    background: var(--orange-500);
}

.bridge-wrap {
    background: white;
}

.bridge-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 56px;
    align-items: center;
}

.bridge-visual {
    aspect-ratio: 4/3;
    border-radius: 6px;
    overflow: hidden;
}

.bridge-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bridge-title {
    font-family: var(--display);
    font-size: 38px;
    line-height: 1.1;
    font-weight: 700;
    color: var(--navy-950);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.bridge-body {
    font-size: 16px;
    color: var(--ink-600);
    line-height: 1.7;
    margin-bottom: 20px;
}

.bridge-bullets {
    list-style: none;
    margin-bottom: 24px;
}

.bridge-bullets li {
    display: flex;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--ink-700);
    border-bottom: 1px solid var(--line-100);
}

.bridge-bullets li:last-child {
    border-bottom: none;
}

.bridge-bullets li::before {
    content: '→';
    color: var(--orange-500);
    font-weight: 700;
    flex-shrink: 0;
}

.reviews-summary {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    padding: 32px;
    background: var(--bg-muted);
    border-radius: 6px;
    margin-bottom: 32px;
    border: 1px solid var(--line-100);
}

.reviews-score-card {
    text-align: center;
    min-width: 120px;
}

.reviews-score-num {
    font-family: var(--display);
    font-size: 56px;
    font-weight: 700;
    color: var(--navy-950);
    line-height: 1;
}

.reviews-score-stars {
    color: var(--orange-500);
    font-size: 20px;
    margin: 4px 0;
}

.reviews-score-count {
    font-size: 12px;
    color: var(--ink-500);
}

.reviews-bars {
    flex: 1;
}

.review-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.review-bar-label {
    font-size: 13px;
    color: var(--ink-600);
    width: 24px;
    text-align: right;
}

.review-bar-track {
    flex: 1;
    height: 8px;
    background: var(--line-100);
    border-radius: 4px;
    overflow: hidden;
}

.review-bar-fill {
    height: 100%;
    background: var(--orange-500);
    border-radius: 4px;
}

.review-bar-count {
    font-size: 12px;
    color: var(--ink-500);
    width: 20px;
}

.review-item {
    padding: 24px 0;
    border-bottom: 1px solid var(--line-100);
}

.review-head {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 4px;
}

.review-stars {
    color: var(--orange-500);
    font-size: 14px;
}

.review-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy-950);
}

.review-verified {
    font-size: 11px;
    font-weight: 700;
    color: #16a34a;
    background: #dcfce7;
    padding: 2px 8px;
    border-radius: 10px;
}

.review-meta {
    font-size: 12px;
    color: var(--ink-500);
    margin-bottom: 10px;
}

.review-body {
    font-size: 14px;
    color: var(--ink-700);
    line-height: 1.7;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.related-card {
    background: white;
    border: 1px solid var(--line-100);
    border-radius: 6px;
    padding: 16px;
    text-align: center;
    cursor: pointer;
    transition: all .2s;
    border-bottom: 3px solid transparent;
    display: block;
}

.related-card:hover,
.related-card.current {
    border-bottom-color: var(--orange-500);
}

.related-card.current {
    background: var(--orange-50);
    border-color: var(--orange-400);
}

.related-img {
    aspect-ratio: 1;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
}

.related-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-size {
    font-family: var(--display);
    font-size: 18px;
    font-weight: 700;
    color: var(--navy-950);
}

.related-price {
    font-size: 12px;
    color: var(--ink-500);
    margin-top: 3px;
}

/* ============ QUOTE PAGE ============ */
.quote-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: start;
}

.quote-form-col {}

.quote-form-section-title {
    font-family: var(--display);
    font-size: 13px;
    font-weight: 700;
    color: var(--navy-950);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin: 0 0 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--line-100);
}

.form-row {
    margin-bottom: 0;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.form-group label {
    font-size: 12px;
    font-weight: 700;
    color: var(--ink-600);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.form-group .req {
    color: var(--orange-500);
}

.form-group input,
.form-group select,
.form-group textarea {
    border: 1.5px solid var(--navy-100);
    border-radius: 4px;
    padding: 10px 14px;
    font-size: 14px;
    font-family: var(--body);
    color: var(--navy-950);
    background: var(--bg-muted);
    transition: border-color .2s, box-shadow .2s;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--navy-600);
    box-shadow: 0 0 0 3px rgba(52, 90, 130, 0.12);
    background: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M0 0l6 8 6-8z' fill='%234b5c72'/%3E%3C/svg%3E"), none;
    background-repeat: no-repeat, no-repeat;
    background-position: right 14px center;
    background-color: var(--bg-muted);
    padding-right: 40px;
}

.quote-form-footer {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

.quote-form-note {
    font-size: 13px;
    color: var(--ink-400);
}

.btn-lg {
    padding: 14px 32px;
    font-size: 15px;
}

/* Sidebar */
.quote-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.quote-sidebar-card {
    background: var(--bg-muted);
    border: 1px solid var(--line-100);
    border-radius: 6px;
    padding: 24px;
}

.quote-sidebar-title {
    font-family: var(--display);
    font-size: 13px;
    font-weight: 700;
    color: var(--navy-950);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 14px;
}

.quote-steps {
    padding-left: 20px;
    margin: 0;
}

.quote-steps li {
    font-size: 14px;
    color: var(--ink-600);
    line-height: 1.6;
    margin-bottom: 8px;
}

.quote-sidebar-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.quote-contact-row {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 8px;
    align-items: baseline;
}

.quote-contact-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink-400);
}

.quote-contact-row a {
    font-size: 14px;
    color: var(--navy-950);
    text-decoration: none;
}

.quote-contact-row a:hover {
    color: var(--orange-500);
}

.quote-sidebar-certs {
    background: white;
}

.cert-pills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* ============ PROCESS PAGE ============ */
.process-detail-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.process-detail-item {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 32px;
    align-items: start;
    padding: 40px 0;
    border-bottom: 1px solid var(--line-100);
}

.process-detail-item:last-child {
    border-bottom: none;
}

.process-detail-num {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.process-detail-icon {
    font-size: 28px;
    line-height: 1;
}

.process-detail-step {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ink-400);
}

.process-detail-title {
    font-family: var(--display);
    font-size: 26px;
    font-weight: 700;
    color: var(--navy-950);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.process-detail-body {
    font-size: 14px;
    color: var(--ink-600);
    line-height: 1.7;
    margin-bottom: 16px;
}

.process-detail-facts {
    padding-left: 18px;
    margin: 0;
}

.process-detail-facts li {
    font-size: 13px;
    color: var(--ink-500);
    margin-bottom: 4px;
}

.process-detail-link {
    padding-top: 4px;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 13px;
}

/* ============ RESPONSIVE ============ */

/* Nav collapses to hamburger at 860px — prevents link crowding at tablet */
@media (max-width: 860px) {
    .nav-toggle {
        display: flex;
    }

    .header-actions .btn-primary {
        display: none;
    }

    .icon-btn[aria-label="Search"] {
        display: none;
    }

    .icon-btn[aria-label="My Account"] {
        display: none;
    }

    .header-inner {
        height: 72px;
    }

    .site-logo img {
        height: 60px;
    }

    .main-nav {
        display: none;
    }

    .main-nav.is-open {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        position: fixed;
        inset: 0;
        top: 72px;
        background: var(--navy-950);
        padding: 64px 24px 24px;
        z-index: 99;
        gap: 0;
        overflow-y: auto;
    }

    .main-nav.is-open .nav-close {
        display: flex;
    }

    .main-nav.is-open > a,
    .main-nav.is-open > .nav-item-wrap > a.has-submenu {
        padding: 16px 0;
        font-size: 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        display: flex;
        color: white;
        justify-content: space-between;
        width: 100%;
    }

    .main-nav.is-open > a:first-of-type {
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .main-nav.is-open > a::after,
    .main-nav.is-open > .nav-item-wrap > a::after {
        display: none !important;
    }

    /* Mobile dropdown accordion */
    .main-nav.is-open .nav-item-wrap {
        flex-direction: column;
        align-items: stretch;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .main-nav.is-open .nav-item-wrap > a.has-submenu {
        border-bottom: none;
    }

    .main-nav.is-open .nav-item-wrap .sub-menu {
        position: static;
        transform: none !important;
        opacity: 1 !important;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        background: rgba(255, 255, 255, 0.05);
        border-top: none;
        border-radius: 0;
        box-shadow: none;
        padding: 0;
        pointer-events: none;
        transition: max-height .28s ease, visibility .28s, padding .28s;
    }

    .main-nav.is-open .nav-item-wrap .sub-menu::before {
        display: none;
    }

    .main-nav.is-open .nav-item-wrap.open .sub-menu {
        visibility: visible;
        max-height: 400px;
        padding: 4px 0 8px;
        pointer-events: auto;
    }

    .main-nav.is-open .nav-item-wrap .sub-menu a {
        color: rgba(255, 255, 255, 0.72) !important;
        padding: 11px 20px !important;
        font-size: 13px !important;
        border-bottom: none !important;
        display: block !important;
        background: transparent;
    }

    .main-nav.is-open .nav-item-wrap .sub-menu a:hover {
        background: rgba(255, 255, 255, 0.07);
        color: var(--orange-400) !important;
    }

    .main-nav.is-open .nav-item-wrap .sub-menu li:first-child a {
        color: var(--orange-400) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    }

    .main-nav.is-open .submenu-chevron {
        color: rgba(255, 255, 255, 0.7);
    }
}

@media (max-width: 1100px) {
    .container {
        padding: 0 24px;
    }

    .hero-headline {
        font-size: 44px;
    }

    .page-hero-title {
        font-size: 42px;
    }

    .section-title {
        font-size: 36px;
    }

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

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

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-card:last-child:nth-child(3n+1) {
        grid-column: unset;
    }

    .service-card:last-child:nth-child(2n+1) {
        grid-column: 1 / -1;
        max-width: calc(50% - 10px);
        margin-left: auto;
        margin-right: auto;
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .industry-card:last-child:nth-child(3n+1) {
        grid-column: unset;
    }

    .industry-card:last-child:nth-child(2n+1) {
        grid-column: 1 / -1;
        max-width: calc(50% - 10px);
        margin-left: auto;
        margin-right: auto;
    }

    .materials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .material-card:last-child:nth-child(3n+1) {
        grid-column: unset;
    }

    .material-card:last-child:nth-child(2n+1) {
        grid-column: 1 / -1;
        max-width: calc(50% - 10px);
        margin-left: auto;
        margin-right: auto;
    }

    .shop-categories {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .trustbar-grid {
        grid-template-columns: repeat(1, 1fr);
        justify-items: start;
    }

    .growth-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .case-featured {
        grid-template-columns: 1fr;
    }

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

    .gallery-wrap {
        position: static;
    }

    .products-layout {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: static;
        display: none;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fbwith-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .downloads-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .cta-services,
    .cta-primary {
        padding: 48px 32px;
    }

    .cta-secondary,
    .cta-shop {
        padding: 40px 32px;
    }

    .leadership-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .capability-grid,
    .quality-grid,
    .consulting-grid,
    .story-grid,
    .facility-grid,
    .trust-cta-grid,
    .bridge-grid,
    .newsletter-grid,
    .location-grid,
    .volume-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .by-size-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .routing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

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

    .proof-stat:nth-last-child(2):nth-child(3n+1) {
        grid-column: 2;
    }

    .process-row {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .form-row-2 {
        grid-template-columns: 1fr 1fr;
    }

    .timeline-item {
        grid-template-columns: 1fr 24px 1fr;
    }

    .promise-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .promise-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding: 16px 0;
    }

    .promise-item:nth-child(2n) {
        border-bottom: none;
    }

    .featured-band-grid {
        grid-template-columns: 1fr;
    }

    .featured-band-visual {
        display: none;
    }

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

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

    .spec-card-block h3 {
        margin-top: 24px;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 16px;
    }

    .utility {
        display: none;
    }

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

    .hero-side {
        padding: 48px 24px;
    }

    .hero-headline {
        font-size: 36px;
    }

    .hero-divider {
        display: none;
    }

    .hero-services-cols {
        grid-template-columns: 1fr;
    }

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

    .page-hero-visual {
        display: none;
    }

    .page-hero-title {
        font-size: 34px;
    }

    .section-title {
        font-size: 30px;
    }

    .section {
        padding: 56px 0;
    }

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

    .service-card:last-child:nth-child(2n+1) {
        grid-column: unset;
        max-width: none;
        margin: 0;
    }

    .service-card:last-child:nth-child(3n+1) {
        grid-column: unset;
    }

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

    .industry-card:last-child:nth-child(2n+1) {
        grid-column: unset;
        max-width: none;
        margin: 0;
    }

    .industry-card:last-child:nth-child(3n+1) {
        grid-column: unset;
    }

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

    .material-card:last-child:nth-child(2n+1) {
        grid-column: unset;
        max-width: none;
        margin: 0;
    }

    .material-card:last-child:nth-child(3n+1) {
        grid-column: unset;
    }

    .shop-categories {
        grid-template-columns: repeat(2, 1fr);
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .certs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

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

    .process-row {
        grid-template-columns: 1fr 1fr;
    }

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

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

    .breadth-items {
        grid-template-columns: 1fr;
    }

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

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

    .form-row-2 {
        grid-template-columns: 1fr;
    }

    .process-detail-item {
        grid-template-columns: 48px 1fr;
    }

    .process-detail-link {
        grid-column: 1 / -1;
    }

    .spec-card {
        margin-bottom: 8px;
    }

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

    .by-size-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .cta-services-title,
    .cta-title {
        font-size: 28px;
    }

    .cta-phone {
        display: block;
        margin-left: 0;
        margin-top: 12px;
    }

    .header-inner {
        padding: 0 16px;
    }

    .proof-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .proof-stat:last-child:nth-child(2n+1) {
        grid-column: 1 / -1;
    }

    .fbwith-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .qty-cart-row {
        flex-wrap: wrap;
    }

    .addcart-btn {
        width: 100%;
        justify-content: center;
    }

    .volume-table {
        font-size: 13px;
    }

    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .svc-hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 56px 0;
    }

    .svc-hero-visual {
        display: none;
    }

    .svc-hero-title {
        font-size: 36px;
    }

    .svc-expertise-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .svc-expertise-visual {
        aspect-ratio: 16/9;
    }

    .svc-solutions-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .svc-solutions-visual {
        aspect-ratio: 16/9;
    }

    .svc-types-grid {
        grid-template-columns: 1fr 1fr;
    }

    .svc-solutions-cta {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ============ ACCESSIBILITY ============ */
@media (prefers-reduced-motion: reduce) {
    * {
        transition: none !important;
        transform: none !important;
    }
}

:focus-visible {
    outline: 0 !important;
    outline-offset: 0 !important;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ============ SHOP LAYOUT & FILTERS ============ */
.shop-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 40px;
    align-items: start;
}

.shop-sidebar {
    position: sticky;
    top: 104px;
    background: white;
    border: 1px solid var(--line-100);
    border-radius: 6px;
    overflow: hidden;
}

.sidebar-section {
    padding: 18px 20px;
    border-bottom: 1px solid var(--line-100);
}

.sidebar-section:last-child {
    border-bottom: none;
}

.shop-sidebar .sidebar-title {
    font-family: var(--display);
    font-size: 11px;
    font-weight: 700;
    color: var(--navy-950);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 12px;
    padding-bottom: 0;
    border-bottom: none;
}

.sidebar-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sidebar-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 10px;
    border-radius: 4px;
    font-size: 13px;
    color: var(--ink-600);
    text-decoration: none;
    transition: background .15s, color .15s;
}

.sidebar-list li a:hover {
    background: var(--bg-muted);
    color: var(--navy-950);
}

.sidebar-list li a.active {
    background: var(--navy-50);
    color: var(--orange-600);
    font-weight: 600;
}

.sidebar-count {
    font-size: 11px;
    color: var(--ink-400);
}

.sidebar-note {
    font-size: 12px;
    color: var(--ink-400);
    line-height: 1.5;
}

/* Price range form */
.price-filter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Dual range slider */
.price-slider-wrap {
    position: relative;
    height: 28px;
    margin: 8px 0 4px;
}

.price-slider-track {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 4px;
    background: var(--line-100);
    border-radius: 2px;
    pointer-events: none;
}

.price-slider-range {
    position: absolute;
    height: 100%;
    background: var(--orange-500);
    border-radius: 2px;
}

.price-range-thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    pointer-events: none;
    outline: none;
    margin: 0;
    padding: 0;
}

.price-range-min {
    z-index: 1;
}

.price-range-max {
    z-index: 2;
}

/* Webkit thumb */
.price-range-thumb::-webkit-slider-runnable-track {
    background: transparent;
    height: 4px;
}

.price-range-thumb::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--navy-950);
    border: 2px solid white;
    box-shadow: 0 1px 4px rgba(10, 29, 53, 0.3);
    cursor: pointer;
    pointer-events: all;
    margin-top: -6px;
}

.price-range-thumb:focus::-webkit-slider-thumb {
    box-shadow: 0 0 0 3px rgba(52, 90, 130, 0.18), 0 1px 4px rgba(10, 29, 53, 0.3);
}

/* Firefox thumb */
.price-range-thumb::-moz-range-track {
    background: transparent;
    height: 4px;
}

.price-range-thumb::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--navy-950);
    border: 2px solid white;
    box-shadow: 0 1px 4px rgba(10, 29, 53, 0.3);
    cursor: pointer;
    pointer-events: all;
}

.price-slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    margin-bottom: 2px;
}

.price-slider-val {
    font-size: 13px;
    font-weight: 600;
    color: var(--navy-950);
}

.price-filter-btn {
    padding: 8px 16px;
    background: var(--navy-950);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: background .15s;
}

.price-filter-btn:hover {
    background: var(--navy-800);
}

.price-filter-clear {
    font-size: 12px;
    color: var(--ink-500);
    text-decoration: none;
    text-align: center;
    transition: color .15s;
}

.price-filter-clear:hover {
    color: var(--orange-600);
}


/* Product tags */
.sidebar-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.sidebar-tag {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    border: 1.5px solid var(--navy-100);
    font-size: 12px;
    color: var(--ink-600);
    text-decoration: none;
    transition: all .15s;
    background: white;
    line-height: 1.4;
}

.sidebar-tag:hover,
.sidebar-tag.active {
    border-color: var(--orange-500);
    color: var(--orange-600);
    background: var(--orange-50, #f9f0d0);
}

/* Sidebar trust signals */
.sidebar-trust {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.trust-line {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12px;
    color: var(--ink-600);
    line-height: 1.4;
}

.trust-check {
    color: var(--orange-500);
    font-weight: 700;
    flex-shrink: 0;
}

/* Toolbar */
.shop-count {
    font-size: 14px;
    color: var(--ink-600);
}

.shop-sort {
    display: flex;
    align-items: center;
}

/* WooCommerce catalog ordering */
.woocommerce-ordering {
    margin: 0;
}

.woocommerce-ordering select {
    padding: 8px 32px 8px 14px;
    border: 1.5px solid var(--line-100);
    border-radius: 4px;
    font-size: 13px;
    color: var(--navy-900);
    background: white;
    outline: none;
    cursor: pointer;
    font-family: var(--sans, inherit);
    transition: border-color .2s;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M0 0l6 8 6-8z' fill='%234b5c72'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

.woocommerce-ordering select:focus {
    border-color: var(--navy-600);
}

/* Product grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* WooCommerce default product loop items — styled to match theme */
.product-grid .product {
    background: white;
    border: 1px solid var(--line-100);
    border-radius: 6px;
    overflow: hidden;
    transition: all .22s;
    border-bottom: 3px solid var(--orange-500);
    display: flex;
    flex-direction: column;
    list-style: none;
}

.product-grid .product:hover {
    box-shadow: 0 12px 26px rgba(10, 29, 53, 0.08);
    transform: translateY(-3px);
}

.product-grid .product a:not(.button) img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
    transition: transform .3s;
    background: var(--navy-50);
}

.product-grid .product:hover a img {
    transform: scale(1.04);
}

.product-grid .product .woocommerce-loop-product__title {
    font-family: var(--display);
    font-size: 14px;
    font-weight: 700;
    color: var(--navy-950);
    text-transform: uppercase;
    letter-spacing: 0.01em;
    padding: 14px 16px 4px;
    line-height: 1.25;
}

.product-grid .product .price {
    display: block;
    padding: 4px 16px 10px;
    font-family: var(--display);
    font-size: 18px;
    font-weight: 700;
    color: var(--orange-500);
}

.product-grid .product .price del {
    font-size: 13px;
    color: var(--ink-400);
    font-weight: 400;
}

.product-grid .product .button,
.product-grid a.added_to_cart {
    display: block;
    margin: auto 16px 16px;
    width: calc(100% - 32px);
    text-align: center;
    padding: 10px 16px;
    background: var(--orange-500);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    cursor: pointer;
    text-decoration: none;
    transition: background .15s;
    font-family: var(--sans, inherit);
}

.product-grid .product .button:hover,
.product-grid a.added_to_cart:hover {
    background: var(--orange-600);
    color: white;
}

.product-grid .product .onsale {
    background: var(--orange-500);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 3px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    position: absolute;
    top: 12px;
    left: 12px;
    margin: 0;
    min-height: 0;
    line-height: 1.4;
}

/* Pagination */
.shop-pagination {
    margin-top: 40px;
}

.woocommerce-pagination {
    display: flex;
    justify-content: center;
}

.woocommerce-pagination ul.page-numbers {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.woocommerce-pagination ul.page-numbers li {
    list-style: none;
}

.woocommerce-pagination ul.page-numbers .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink-600);
    border: 1.5px solid var(--line-100);
    text-decoration: none;
    transition: all .15s;
    background: white;
}

.woocommerce-pagination ul.page-numbers .page-numbers:hover {
    border-color: var(--navy-600);
    color: var(--navy-950);
    background: var(--bg-muted);
}

.woocommerce-pagination ul.page-numbers .page-numbers.current {
    background: var(--navy-950);
    color: white;
    border-color: var(--navy-950);
}

.woocommerce-pagination ul.page-numbers .prev,
.woocommerce-pagination ul.page-numbers .next {
    font-size: 16px;
    font-weight: 400;
    width: auto;
    padding: 0 12px;
}

/* No products found */
.woocommerce-info {
    padding: 28px 24px;
    background: var(--bg-muted);
    border: 1px solid var(--line-100);
    border-left: 4px solid var(--navy-800);
    border-radius: 4px;
    font-size: 14px;
    color: var(--ink-600);
    margin: 0;
}

/* Responsive: tablet */
@media (max-width: 1024px) {
    .shop-layout {
        grid-template-columns: 220px 1fr;
        gap: 28px;
    }

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

/* Responsive: mobile */
@media (max-width: 767px) {
    .shop-layout {
        grid-template-columns: 1fr;
    }

    .shop-sidebar {
        position: static;
    }

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

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Product column: prevent grid blowout + ensure full width ── */
.shop-products {
    min-width: 0;
    width: 100%;
}

.shop-products .woocommerce-info {
    display: block;
    width: 100%;
    box-sizing: border-box;
}

/* ── AJAX loading state ── */
.product-grid.is-loading {
    opacity: 0.4;
    pointer-events: none;
    transition: opacity .2s;
}

/* ── Sidebar title row (title + reset button) ── */
.sidebar-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.sidebar-title-row .sidebar-title {
    margin-bottom: 0;
}

/* ── Price filter reset button ── */
.pf-reset-btn {
    background: none;
    border: none;
    color: var(--ink-400, #8b99ad);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: color .15s;
}

.pf-reset-btn:hover {
    color: var(--orange-500, #bb9523);
}

/* ── AJAX pagination dots ── */
.page-numbers.dots {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    font-size: 14px;
    color: var(--ink-400, #8b99ad);
    pointer-events: none;
}

/* ── Category grid: 4-column variant ── */
.categories-grid--4 {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 80px;
}

.categories-grid--4 .cat-card {
    padding: 28px 20px;
}

.categories-grid--4 .cat-title {
    font-size: 13px;
    margin-bottom: 4px;
}

.categories-grid--4 .cat-count {
    font-size: 11px;
}

@media (max-width: 900px) {
    .categories-grid--4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .categories-grid--4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ── Single product: spec cards span half the 4-col grid ── */
.spec-card-block {
    grid-column: span 2;
}

/* ── Spec / compat note (placeholder text) ── */
.spec-note {
    font-size: 14px;
    color: var(--ink-400, #8b99ad);
    font-style: italic;
    padding: 16px 0;
}

/* ── WooCommerce price in buybox ── */
.buybox-woo-form p.price {
    margin: 0 0 16px;
    background: var(--bg-muted, #f6f8fb);
    border-left: 3px solid var(--orange-500, #bb9523);
    padding: 14px 20px;
    border-radius: 0 4px 4px 0;
}

.buybox-woo-form p.price .woocommerce-Price-amount,
.buybox-woo-form p.price ins .woocommerce-Price-amount {
    font-family: var(--display, sans-serif);
    font-size: 32px;
    font-weight: 700;
    color: var(--orange-500, #bb9523);
    text-decoration: none;
}

.buybox-woo-form p.price del .woocommerce-Price-amount {
    font-size: 20px;
    color: var(--ink-400, #8b99ad);
    margin-right: 8px;
}

/* ── WooCommerce add-to-cart form in buybox ── */
.buybox-woo-form form.cart {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 20px;
    flex-wrap: wrap;
}

.buybox-woo-form form.cart .quantity {
    display: flex;
    align-items: center;
    border: 1.5px solid var(--navy-100, #dce4ee);
    border-radius: 4px;
    overflow: hidden;
    height: 46px;
    background: white;
}

.buybox-woo-form form.cart .quantity label {
    display: none;
}

.buybox-woo-form form.cart .quantity input.qty {
    width: 56px;
    height: 44px;
    text-align: center;
    border: none;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    background: white;
    color: var(--navy-950, #0a1d35);
    -moz-appearance: textfield;
    padding: 0;
    outline: none;
}

.buybox-woo-form form.cart .quantity input.qty::-webkit-outer-spin-button,
.buybox-woo-form form.cart .quantity input.qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.buybox-woo-form form.cart .single_add_to_cart_button {
    flex: 1;
    min-width: 0;
    height: 46px;
    background: var(--orange-500, #bb9523);
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: background .18s, transform .18s;
    padding: 0 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.buybox-woo-form form.cart .single_add_to_cart_button:hover {
    background: var(--orange-600, #8f7019);
    transform: translateY(-1px);
}

.buybox-woo-form form.cart .single_add_to_cart_button.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* ── Quick action buttons ── */
.quick-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--navy-700, #24476e);
    text-decoration: none;
    border: 1.5px solid var(--navy-100, #dce4ee);
    border-radius: 4px;
    padding: 7px 12px;
    background: white;
    transition: border-color .15s, color .15s, background .15s;
    letter-spacing: 0.02em;
}

.quick-action-btn:hover {
    border-color: var(--orange-400, #d4aa35);
    color: var(--orange-500, #bb9523);
    background: var(--orange-50, #f9f0d0);
}

/* ── Product description + downloads layout ── */
.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 56px;
    align-items: start;
}

.product-detail-grid h3 {
    font-family: var(--display, sans-serif);
    font-size: 18px;
    font-weight: 700;
    color: var(--navy-950, #0a1d35);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line-100, #e4eaf2);
}

/* ── Prose (long product description) ── */
.prose {
    font-size: 15px;
    line-height: 1.75;
    color: var(--ink-700, #2d3e52);
    max-width: unset !important;
}

.prose p {
    margin-bottom: 16px;
}

.prose p:last-child {
    margin-bottom: 0;
}

.prose ul,
.prose ol {
    margin: 0 0 16px 20px;
}

.prose li {
    margin-bottom: 6px;
}

.prose strong {
    font-weight: 700;
    color: var(--navy-950, #0a1d35);
}

.prose a {
    color: var(--orange-500, #bb9523);
    text-decoration: underline;
}

/* ── Downloads list ── */
.downloads-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.download-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 16px;
    background: white;
    border: 1.5px solid var(--navy-100, #dce4ee);
    border-radius: 4px;
    text-decoration: none;
    color: var(--navy-950, #0a1d35);
    font-size: 14px;
    font-weight: 500;
    transition: border-color .15s, background .15s;
}

.download-link:hover {
    border-color: var(--orange-400, #d4aa35);
    background: var(--orange-50, #f9f0d0);
    color: var(--navy-950, #0a1d35);
}

.download-icon {
    font-size: 18px;
    flex-shrink: 0;
}

/* ── Reviews section ── */
.reviews-heading {
    font-family: var(--display, sans-serif);
    font-size: 28px;
    font-weight: 700;
    color: var(--navy-950, #0a1d35);
    margin-bottom: 28px;
}

.reviews-list {
    margin-top: 32px;
    border-top: 1px solid var(--line-100, #e4eaf2);
}

/* ── WooCommerce Single Product Form ── */
.buybox-woo-form form.cart {
    display: flex;
    align-items: center;
    gap: 12px;
}

.buybox-woo-form form.cart .single_add_to_cart_button {
    background: var(--orange-500);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 13px;
    transition: all .18s;
    cursor: pointer;
    border: none;
    font-family: var(--sans);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.buybox-woo-form form.cart .single_add_to_cart_button:hover {
    background: var(--orange-600);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(187, 149, 35, 0.3);
    color: white;
}

/* ── Product Price Styling ── */
.buybox-woo-form p.price {
    font-family: var(--display);
    font-size: 32px;
    font-weight: 700;
    color: var(--orange-500);
    background-color: var(--bg-muted);
    border-left: 4px solid var(--orange-500);
    padding: 16px 20px;
    margin-bottom: 24px;
    display: inline-block;
    width: 100%;
    line-height: 1;
}

.buybox-woo-form p.price del {
    font-family: var(--sans);
    font-size: 16px;
    color: var(--ink-400);
    margin-right: 8px;
    font-weight: 400;
}

/* ── Quantity Input with Buttons ── */
.buybox-woo-form form.cart .quantity {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--line-100);
    border-radius: 4px;
    height: 46px;
    background: white;
}

.buybox-woo-form form.cart .quantity input.qty {
    width: 44px;
    height: 100%;
    text-align: center;
    border: none;
    background: transparent;
    padding: 0;
    -moz-appearance: textfield;
    font-weight: 600;
    color: var(--navy-950);
}

.buybox-woo-form form.cart .quantity input.qty::-webkit-outer-spin-button,
.buybox-woo-form form.cart .quantity input.qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.qty-btn {
    width: 36px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--ink-500);
    font-size: 18px;
    transition: color 0.15s, background 0.15s;
}

.qty-btn:hover {
    color: var(--orange-500);
    background: var(--bg-muted);
}

.qty-btn.minus {
    border-radius: 4px 0 0 4px;
}

.qty-btn.plus {
    border-radius: 0 4px 4px 0;
}

/* ── UI Improvement for Specs & Compatibility ── */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 32px;
    margin-top: 24px;
    margin-bottom: 40px;
}

.spec-card-block {
    background: var(--bg-muted, #f6f8f9);
    border: 1px solid var(--line-100, #e4eaf2);
    border-radius: 8px;
    padding: 32px 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.spec-card-block h3 {
    font-family: var(--display, sans-serif);
    font-size: 18px;
    font-weight: 700;
    color: var(--navy-950, #0a1d35);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--orange-500, #bb9523);
    display: inline-block;
    width: max-content;
}

.spec-note {
    font-size: 14px;
    color: var(--ink-500, #617388);
    font-style: italic;
    background: rgba(255, 255, 255, 0.5);
    padding: 16px;
    border-radius: 6px;
    border: 1px dashed var(--line-200, #c4cfdd);
    text-align: center;
    margin: auto 0;
}

/* ── "View cart" link in the single product buybox (after AJAX add) ── */
.buybox a.added_to_cart {
    display: block;
    width: 100%;
    margin-top: 8px;
    padding: 11px 16px;
    background: transparent;
    color: var(--navy-950);
    border: 1.5px solid var(--navy-100);
    border-radius: 4px;
    text-align: center;
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: border-color .15s, background .15s, color .15s;
    box-sizing: border-box;
}

.buybox a.added_to_cart:hover {
    border-color: var(--orange-400);
    background: var(--orange-50);
    color: var(--navy-950);
}

/* ── Responsive: product detail grid ── */
@media (max-width: 900px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .spec-card-block {
        grid-column: span 2;
    }
}

@media (max-width: 767px) {
    .specs-grid {
        grid-template-columns: 1fr;
    }

    .spec-card-block {
        grid-column: span 1;
    }

    .buybox-woo-form form.cart {
        flex-wrap: wrap;
    }

    .buybox-woo-form form.cart .single_add_to_cart_button {
        width: 100%;
    }
}

/* ============================================================
   WOOCOMMERCE BLOCK CART PAGE
   ============================================================ */

/* ── Block cart container ── */
.wp-block-woocommerce-cart {
    padding: 0;
}

/* Reset any global table/th/td borders that bleed into the block cart */
table.wc-block-cart-items,
table.wc-block-cart-items th,
table.wc-block-cart-items td {
    border: none !important;
    background: none !important;
    margin: 0 !important;
}

/* ── Cart items table header ── */
table.wc-block-cart-items .wc-block-cart-items__header th {
    font-family: var(--display) !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    color: var(--ink-500) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.12em !important;
    padding: 14px 16px 14px 0 !important;
    /* border-bottom: 2px solid var(--line-100) !important; */
}

/* ── Cart item rows ── */
table.wc-block-cart-items .wc-block-cart-items__row {
    transition: background .15s;
}

table.wc-block-cart-items .wc-block-cart-items__row:hover {
    background: var(--navy-50);
}

table.wc-block-cart-items .wc-block-cart-items__row td {
    border-top: 1px solid var(--line-100) !important;
    padding: 20px 16px 20px 0 !important;
    vertical-align: middle !important;
}

/* ── Product image ── */
.wc-block-cart-item__image img {
    border-radius: 4px !important;
    border: 1px solid var(--line-100) !important;
}

/* ── Product name ── */
.wc-block-components-product-name {
    font-family: var(--display) !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    color: var(--navy-950) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.01em !important;
    text-decoration: none !important;
    line-height: 1.3 !important;
    transition: color .15s !important;
}

.wc-block-components-product-name:hover {
    color: var(--orange-500) !important;
}

/* ── Unit price ── */
.wc-block-cart-item__prices .price {
    font-family: var(--display) !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: var(--ink-500) !important;
}

/* ── Line total (right column) ── */
.wc-block-cart-item__total .wc-block-components-formatted-money-amount {
    font-family: var(--display) !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    color: var(--orange-500) !important;
}

/* ── Remove link ── */
.wc-block-cart-item__remove-link {
    color: var(--ink-400) !important;
    font-size: 12px !important;
    text-decoration: underline !important;
    transition: color .15s !important;
}

.wc-block-cart-item__remove-link:hover {
    color: #dc2626 !important;
}

/* ── Quantity selector ── */
.wc-block-components-quantity-selector {
    border: 1.5px solid var(--navy-100) !important;
    border-radius: 4px !important;
    overflow: hidden !important;
    height: 40px !important;
}

.wc-block-components-quantity-selector__button {
    background: var(--bg-muted) !important;
    border: none !important;
    color: var(--navy-700) !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    width: 36px !important;
    height: 100% !important;
    cursor: pointer !important;
    transition: background .15s !important;
}

.wc-block-components-quantity-selector__button:hover {
    background: var(--navy-100) !important;
}

.wc-block-components-quantity-selector__input {
    border: none !important;
    border-left: 1.5px solid var(--navy-100) !important;
    border-right: 1.5px solid var(--navy-100) !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: var(--navy-950) !important;
    font-family: var(--sans) !important;
    text-align: center !important;
    height: 100% !important;
    outline: none !important;
    box-shadow: none !important;
}

.wc-block-components-quantity-selector__input:focus {
    box-shadow: none !important;
    outline: none !important;
}

/* ── Cart sidebar (order summary) ── */
.wc-block-cart__sidebar {
    border: none !important;
    border-radius: 6px !important;
    overflow: hidden !important;
    background: white !important;
    box-shadow: 0 0 0 1px var(--line-100), 0 4px 20px rgba(10, 29, 53, 0.07) !important;
    position: sticky !important;
    top: 104px !important;
    padding: 20px 20px 0 20px !important;
}

/* "Order summary" heading */
.wc-block-cart__totals-title {
    font-family: var(--display) !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    color: var(--navy-950) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.14em !important;
    background: var(--bg-muted) !important;
    border-bottom: 1px solid var(--line-100) !important;
    padding: 16px 20px !important;
    margin: 0 !important;
    display: block !important;
}

/* Totals rows */
.wc-block-components-totals-item {
    padding: 12px 20px !important;
    border-bottom: 1px solid var(--line-100) !important;
}

.wc-block-components-totals-item__label {
    font-size: 13px !important;
    color: var(--ink-500) !important;
    font-weight: 500 !important;
}

.wc-block-components-totals-item__value {
    font-family: var(--display) !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    color: var(--navy-950) !important;
}

/* Order total row */
.wc-block-components-totals-footer-item {
    padding: 16px 20px !important;
    border-bottom: 1px solid var(--line-100) !important;
    background: var(--navy-50) !important;
}

.wc-block-components-totals-footer-item .wc-block-components-totals-item__label {
    font-family: var(--display) !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    color: var(--navy-950) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.06em !important;
}

.wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
    font-family: var(--display) !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    color: var(--orange-500) !important;
}

/* Checkout button */
.wc-block-cart__submit-button {
    display: block !important;
    width: 100% !important;
    padding: 14px 24px !important;
    background: var(--orange-500) !important;
    color: white !important;
    border: none !important;
    border-radius: 4px !important;
    font-family: var(--display) !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    text-decoration: none !important;
    cursor: pointer !important;
    transition: background .18s, transform .18s !important;
    box-sizing: border-box !important;
    box-shadow: none !important;
}

.wc-block-cart__submit-button:hover:not([aria-disabled="true"]) {
    background: var(--orange-600) !important;
    color: white !important;
    text-decoration: none !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 8px 20px rgba(187, 149, 35, 0.3) !important;
}

.wc-block-cart__submit {
    padding: 0px !important;
    margin-bottom: 20px !important;
}

.woocommerce-cart .wp-block-product-new.wp-block-woocommerce-product-new,
.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wp-block-separator.is-style-dots {
    display: none !important;
}

/* ── Empty cart state ── */
.wp-block-woocommerce-empty-cart-block {
    text-align: center;
    padding: 60px 24px;
    max-width: unset;
    margin: 0 auto;
}

.wc-block-cart__empty-cart__title {
    font-family: var(--display) !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    color: var(--navy-950) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.02em !important;
}

.wp-block-woocommerce-empty-cart-block a {
    display: inline-flex !important;
    align-items: center !important;
    padding: 12px 28px !important;
    background: var(--orange-500) !important;
    color: white !important;
    border-radius: 4px !important;
    font-family: var(--display) !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    text-decoration: none !important;
    transition: all .18s !important;
    margin-top: 12px !important;
}

.wp-block-woocommerce-empty-cart-block a:hover {
    background: var(--orange-600) !important;
    transform: translateY(-1px) !important;
    color: white !important;
}

/* ── Cross-sells / You may also like ── */
.cross-sells,
.wp-block-woocommerce-cart .wc-block-cart__cross-sells {
    margin-top: 48px;
}

.cross-sells>h2,
.wc-block-cart__cross-sells-title {
    font-family: var(--display) !important;
    font-size: 26px !important;
    font-weight: 700 !important;
    color: var(--navy-950) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.02em !important;
    margin-bottom: 24px !important;
}

.cross-sells .products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.cross-sells .products .product {
    background: white;
    border: 1px solid var(--line-100);
    border-radius: 6px;
    overflow: hidden;
    transition: all .22s;
    border-bottom: 3px solid var(--orange-500);
    display: flex;
    flex-direction: column;
    list-style: none;
}

.cross-sells .products .product:hover {
    box-shadow: 0 12px 26px rgba(10, 29, 53, 0.08);
    transform: translateY(-3px);
}

.cross-sells .products .product a img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
    background: var(--navy-50);
}

.cross-sells .products .product .woocommerce-loop-product__title {
    font-family: var(--display);
    font-size: 13px;
    font-weight: 700;
    color: var(--navy-950);
    text-transform: uppercase;
    letter-spacing: 0.01em;
    padding: 14px 16px 4px;
    line-height: 1.3;
}

.cross-sells .products .product .price {
    display: block;
    padding: 4px 16px 10px;
    font-family: var(--display);
    font-size: 17px;
    font-weight: 700;
    color: var(--orange-500);
}

.cross-sells .products .product .button {
    display: block !important;
    margin: auto 16px 16px !important;
    width: calc(100% - 32px) !important;
    text-align: center;
    padding: 10px 16px !important;
    background: var(--orange-500) !important;
    color: white !important;
    border: none !important;
    border-radius: 4px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.06em !important;
    cursor: pointer;
    text-decoration: none;
    transition: background .15s !important;
    font-family: var(--sans) !important;
}

.cross-sells .products .product .button:hover {
    background: var(--orange-600) !important;
    color: white !important;
}

/* Coupon input (block cart uses wc-block-components-totals-coupon) */
.wc-block-components-totals-coupon__input input {
    padding: 9px 14px;
    border: 1.5px solid var(--navy-100);
    border-radius: 4px;
    font-size: 13px;
    color: var(--navy-950);
    background: white;
    outline: none;
    font-family: var(--sans);
    width: 180px;
    transition: border-color .2s;
}

.wc-block-components-totals-coupon__input input:focus {
    border-color: var(--navy-600);
}

.wc-block-components-totals-coupon__button {
    padding: 9px 18px !important;
    background: var(--orange-500) !important;
    color: white !important;
    border: none !important;
    border-radius: 4px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.06em !important;
    cursor: pointer !important;
    transition: background .15s !important;
    font-family: var(--display) !important;
    text-decoration: none !important;
    white-space: nowrap !important;
}

.wc-block-components-totals-coupon__button:hover {
    background: var(--orange-600) !important;
    color: white !important;
}

.wc-stripe-gpay-container .wc-stripe-gpay-button-container .gpay-card-info-container-fill button.long {
    height: 50px !important;
}

/* ── Cart responsive ── */
@media (max-width: 900px) {
    .wc-block-cart__sidebar {
        position: static !important;
    }

    .cross-sells .products {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .wp-block-woocommerce-empty-cart-block {
        padding: 48px 0;
    }

    .cross-sells .products {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

/* ============================================================
   WOOCOMMERCE BLOCK CHECKOUT PAGE
   ============================================================ */

/* ── Reset global table borders in checkout order summary ── */
.wc-block-checkout__sidebar table,
.wc-block-checkout__sidebar table th,
.wc-block-checkout__sidebar table td {
    border: none !important;
    background: none !important;
    margin: 0 !important;
}

/* ── Checkout sidebar card ── */
.wc-block-checkout__sidebar {
    border: none !important;
    border-radius: 6px !important;
    overflow: hidden !important;
    background: white !important;
    box-shadow: 0 0 0 1px var(--line-100), 0 4px 20px rgba(10, 29, 53, 0.07) !important;
    padding: 5px 20px !important;
}

.wc-block-checkout__sidebar>.wp-block-woocommerce-checkout-order-summary-block {
    border: none !important;
}

/* ── Order summary heading ── */
.wc-block-components-checkout-order-summary__title {
    font-family: var(--display) !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    color: var(--navy-950) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.14em !important;
    background: var(--bg-muted) !important;
    border-bottom: 1px solid var(--line-100) !important;
    padding: 16px 20px !important;
}

.wc-block-components-checkout-order-summary__title-text {
    font-family: var(--display) !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    color: var(--navy-950) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.14em !important;
    margin: 0 !important;
}

.wc-block-components-checkout-order-summary__title-price {
    font-family: var(--display) !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    color: var(--orange-500) !important;
}

/* ── Order summary product items ── */
.wc-block-components-order-summary-item {
    padding: 14px 20px !important;
    border-bottom: 1px solid var(--line-100) !important;
}

.wc-block-components-order-summary-item__image img {
    border-radius: 4px !important;
    border: 1px solid var(--line-100) !important;
}

.wc-block-components-order-summary-item__individual-price {
    font-family: var(--display) !important;
    font-size: 12px !important;
    color: var(--ink-500) !important;
}

.wc-block-components-order-summary-item__name {
    font-family: var(--display) !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    color: var(--navy-950) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.01em !important;
    line-height: 1.3 !important;
}

.wc-block-components-order-summary-item__total-price {
    font-family: var(--display) !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    color: var(--orange-500) !important;
}

/* ── Step headings (Contact information / Billing address / Payment options) ── */
.wc-block-components-checkout-step__title {
    font-family: var(--display) !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    color: var(--navy-950) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.04em !important;
}

.wc-block-components-checkout-step {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
    margin-bottom: 0 !important;
    border-bottom: none !important;
}

/* ── Address form field grid ── */
.wc-block-components-address-form {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px 16px !important;
    align-items: start !important;
}

.wc-block-components-address-form__address_1,
.wc-block-components-address-form__address_2,
.wc-block-components-address-form__country {
    grid-column: 1 / -1 !important;
}

/* Contact step (email only) — single column */
.wc-block-checkout__contact-fields .wc-block-components-address-form,
.wp-block-woocommerce-checkout-contact-information-block .wc-block-components-address-form {
    grid-template-columns: 1fr !important;
}

/* Ensure all address form field wrappers have no extra margin */
.wc-block-components-address-form>* {
    margin: 0 !important;
}

/* ── Text inputs ── */
.wc-block-components-text-input input,
.wc-block-components-text-input .wc-block-components-text-input__wrapper input {
    border: 1.5px solid var(--navy-100) !important;
    border-radius: 4px !important;
    font-family: var(--sans) !important;
    font-size: 14px !important;
    color: var(--navy-950) !important;
    background: white !important;
    padding: 10px 14px !important;
    transition: border-color .2s, box-shadow .2s !important;
    outline: none !important;
    box-shadow: none !important;
    height: auto !important;
}

.wc-block-components-text-input input:focus,
.wc-block-components-text-input .wc-block-components-text-input__wrapper input:focus {
    border-color: var(--navy-600) !important;
    box-shadow: 0 0 0 3px rgba(52, 90, 130, 0.10) !important;
}

.wc-block-components-text-input label,
.wc-block-components-text-input .wc-block-components-text-input__wrapper label {
    font-family: var(--sans) !important;
    font-size: 12px !important;
    color: var(--ink-500) !important;
    font-weight: 500 !important;
}

/* ── Select dropdowns ── */
.wc-block-components-select-input select,
.wc-block-components-select select {
    border: 1.5px solid var(--navy-100) !important;
    border-radius: 4px !important;
    font-family: var(--sans) !important;
    font-size: 14px !important;
    color: var(--navy-950) !important;
    background: white !important;
    padding: 10px 14px !important;
    outline: none !important;
    transition: border-color .2s !important;
}

.wc-block-components-select-input select:focus,
.wc-block-components-select select:focus {
    border-color: var(--navy-600) !important;
    box-shadow: 0 0 0 3px rgba(52, 90, 130, 0.10) !important;
}

/* ── Payment method section ── */
.wc-block-checkout__payment-method {
    background: white !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
}

/* Payment option row (each method li) */
.wc-block-components-radio-control__option {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    gap: 0 12px !important;
    border: 1.5px solid var(--line-100) !important;
    border-radius: 6px !important;
    background: white !important;
    padding: 14px 18px !important;
    margin: 0 0 8px !important;
    transition: border-color .15s, background .15s !important;
    cursor: pointer !important;
}

.wc-block-components-radio-control__option:last-child {
    margin-bottom: 0 !important;
}

.wc-block-components-radio-control__option:hover {
    border: 0 !important;
    background: transparent !important;
}

/* Selected row: orange border */
.wc-block-components-radio-control__option-checked,
.wc-block-components-checkout-payment-methods .wc-block-components-radio-control__option-checked {
    border: 0 !important;
    background: 0 !important;
}

/* Radio input — properly sized, shrink-proof */
.wc-block-components-radio-control__input {
    appearance: none !important;
    -webkit-appearance: none !important;
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    border: 2px solid var(--navy-100) !important;
    border-radius: 50% !important;
    background: white !important;
    flex-shrink: 0 !important;
    cursor: pointer !important;
    transition: border-color .15s, background .15s !important;
    position: relative !important;
    display: grid !important;
    place-items: center !important;
}

.wc-block-components-radio-control__input::after {
    content: "" !important;
    width: 8px !important;
    height: 8px !important;
    border-radius: 50% !important;
    background: var(--orange-500) !important;
    transform: scale(0) !important;
    transition: transform .15s !important;
}

.wc-block-components-radio-control__input:checked {
    border: 1px solid black !important;
    background: transparent !important;
}

.wc-block-components-radio-control__input:checked::after {
    transform: scale(1) !important;
}

/* Payment method label text */
.wc-block-components-payment-method-label__label,
.wc-block-components-radio-control__label {
    font-family: var(--display) !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    color: var(--navy-950) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.04em !important;
    flex: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
    cursor: pointer !important;
}

/* Card brand icons */
.wc-block-components-payment-method-label__brand-icon,
.wc-block-components-payment-method-label__brands img {
    border-radius: 3px !important;
    border: 1px solid var(--line-100) !important;
    height: 22px !important;
    width: auto !important;
}

/* Payment content area (card fields) */
.wc-block-components-payment-method-content,
.wc-block-components-checkout-payment-methods__save-card-info {
    background: var(--bg-muted) !important;
    border-top: 1px solid var(--line-100) !important;
    padding: 16px 20px !important;
    margin: 0 !important;
}

/* Strip the dark border WooCommerce/Stripe renders on the inner card container */
.wc-block-components-payment-method-content fieldset,
.wc-block-components-payment-method-content .wc-block-gateway-container,
.wc-block-components-payment-method-content>div>div {
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

/* Card field rows (card number / expiry / CVC) */
.wc-block-components-payment-method-content .wc-block-components-form,
.wc-block-components-payment-method-content form {
    display: grid !important;
    grid-template-columns: 2fr 1fr 1fr !important;
    gap: 12px 16px !important;
    align-items: start !important;
}

/* Save card checkbox — add top breathing room */
.wc-block-components-checkbox {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin-top: 12px !important;
}


.wc-block-components-checkbox input[type="checkbox"],
.wc-block-components-checkbox__input {
    accent-color: var(--orange-500) !important;
    width: 16px !important;
    height: 16px !important;
    flex-shrink: 0 !important;
    cursor: pointer !important;
}

.wc-block-components-checkbox__label {
    font-family: var(--sans) !important;
    font-size: 13px !important;
    color: var(--ink-700) !important;
    font-weight: 500 !important;
    cursor: pointer !important;
}

/* ── Terms & conditions text ── */
.wc-block-checkout__terms p,
.wc-block-checkout__terms a {
    font-family: var(--sans) !important;
    font-size: 13px !important;
    color: var(--ink-500) !important;
}

.wc-block-checkout__terms a {
    color: var(--orange-500) !important;
    text-decoration: underline !important;
}

/* ── Actions row (Place Order + Return to Cart) ── */
.wc-block-checkout__actions_row {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 16px !important;
    padding-top: 20px !important;
    flex-wrap: wrap !important;
}

/* Place Order button */
.wc-block-components-checkout-place-order-button {
    background: var(--orange-500) !important;
    color: white !important;
    border: none !important;
    border-radius: 4px !important;
    font-family: var(--display) !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    padding: 14px 32px !important;
    cursor: pointer !important;
    text-decoration: none !important;
    transition: background .18s, transform .18s !important;
    box-shadow: none !important;
    min-width: 200px !important;
}

.wc-block-components-checkout-place-order-button:hover {
    background: var(--orange-600) !important;
    color: white !important;
    text-decoration: none !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 8px 20px rgba(187, 149, 35, 0.3) !important;
}

/* Return to Cart — ghost outline button */
.wc-block-components-checkout-return-to-cart-button {
    font-family: var(--display) !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    color: var(--navy-900) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.06em !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    background: transparent !important;
    border: 1.5px solid var(--navy-100) !important;
    border-radius: 4px !important;
    padding: 15px 20px 15px 40px !important;
    cursor: pointer !important;
    transition: border-color .18s, color .18s, background .18s !important;
    white-space: nowrap !important;
}

.wc-block-components-checkout-return-to-cart-button svg {
    width: 16px !important;
    height: 16px !important;
    flex-shrink: 0 !important;
    stroke: currentColor !important;
    left: 15px !important;
}

.wc-block-components-checkout-return-to-cart-button:hover {
    border-color: var(--orange-500) !important;
    color: var(--orange-600) !important;
    /* background: var(--orange-50) !important; */
    text-decoration: none !important;
}

/* ── Add a note section — hidden ── */
.wc-block-checkout__add-note,
.wp-block-woocommerce-checkout-order-note-block {
    display: none !important;
}

.woocommerce-checkout select:focus-visible {
    outline: 0 !important;
}

.woocommerce-checkout select {
    border: 1.5px solid var(--navy-100) !important;
}

.wc-block-components-radio-control--highlight-checked .wc-block-components-radio-control-accordion-option--checked-option-highlighted {
    box-shadow: 0 0 0 1.5px rgb(0 0 0 / 5%);
}

/* ── Checkout responsive ── */
@media (max-width: 900px) {
    .wc-block-checkout__sidebar {
        margin-top: 32px !important;
    }
}

/* ════════════════════════════════════════════════════════════
   MY ACCOUNT — Login / Register  +  Dashboard
   ════════════════════════════════════════════════════════════ */

/* Top/bottom breathing room on all My Account pages */
.woocommerce-account .woo-main {
    padding-top: 56px;
    padding-bottom: 72px;
}

/* Login/Register page: centred, narrower than container */
.woocommerce-account:not(.logged-in) .woocommerce {
    max-width: 860px;
    margin: 0 auto;
}

/* Logged-in pages: sidebar + content grid */
.woocommerce-account.logged-in .woocommerce {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 40px;
    align-items: start;
}

/* Two-column layout for login + register side by side */
.woocommerce-account .woocommerce>.u-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

/* Section headings (Login / Register) */
.woocommerce-account .woocommerce h2 {
    font-family: var(--display);
    font-size: 22px;
    font-weight: 700;
    color: var(--navy-950);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--orange-500);
}

/* Labels */
.woocommerce-account .woocommerce label {
    display: block;
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--ink-600);
    margin-bottom: 6px;
}

/* Required asterisk */
.woocommerce-account .woocommerce .required {
    color: var(--orange-500);
}

/* Text / password inputs */
.woocommerce-account .woocommerce input[type="text"],
.woocommerce-account .woocommerce input[type="email"],
.woocommerce-account .woocommerce input[type="password"] {
    width: 100%;
    height: 44px;
    padding: 0 14px;
    border: 1.5px solid var(--navy-100);
    border-radius: 4px;
    background: #fff;
    font-family: var(--sans);
    font-size: 14px;
    color: var(--ink-900);
    outline: none;
    transition: border-color .15s, box-shadow .15s;
    box-sizing: border-box;
}

.woocommerce-account .woocommerce input[type="text"]:focus,
.woocommerce-account .woocommerce input[type="email"]:focus,
.woocommerce-account .woocommerce input[type="password"]:focus {
    border-color: var(--navy-600);
    box-shadow: 0 0 0 3px rgba(52, 90, 130, 0.10);
}

/* Form rows */
.woocommerce-account .woocommerce .form-row {
    margin-bottom: 18px;
}

/* Remember me row — inline checkbox + label */
.woocommerce-account .woocommerce .woocommerce-form__label-for-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    color: var(--ink-700);
    cursor: pointer;
    margin-bottom: 0;
}

.woocommerce-account .woocommerce .woocommerce-form__input-checkbox {
    width: 16px;
    height: 16px;
    accent-color: var(--orange-500);
    cursor: pointer;
    flex-shrink: 0;
}

/* Remember me + Log in button row */
.woocommerce-account .woocommerce .woocommerce-form-login__rememberme {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-right: 16px;
}

/* Buttons — Log in / Register */
.woocommerce-account .woocommerce .button,
.woocommerce-account .woocommerce button[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 28px;
    background: var(--orange-500);
    color: white;
    font-family: var(--display);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background .15s;
    text-decoration: none;
    vertical-align: middle;
}

.woocommerce-account .woocommerce .button:hover,
.woocommerce-account .woocommerce button[type="submit"]:hover {
    background: var(--orange-600);
}

/* Lost your password link */
.woocommerce-account .woocommerce .woocommerce-LostPassword a,
.woocommerce-account .woocommerce a.lost_password {
    font-size: 13px;
    color: var(--orange-500);
    text-decoration: none;
}

.woocommerce-account .woocommerce .woocommerce-LostPassword a:hover,
.woocommerce-account .woocommerce a.lost_password:hover {
    color: var(--orange-600);
    text-decoration: underline;
}

/* Privacy policy notice */
.woocommerce-account .woocommerce .woocommerce-privacy-policy-text {
    font-size: 12px;
    color: var(--ink-500);
    line-height: 1.6;
    margin-bottom: 20px;
}

.woocommerce-account .woocommerce .woocommerce-privacy-policy-text a {
    color: var(--orange-500);
}

.wc-block-components-radio-control .wc-block-components-radio-control__input:focus {
    outline: 0 !important;
}

/* ── My Account: sidebar navigation ── */
.woocommerce-MyAccount-navigation {
    background: linear-gradient(160deg, #13253d 0%, #0a1d35 100%);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(10, 29, 53, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.woocommerce-MyAccount-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* "My Account" header label at top of sidebar */
.woocommerce-MyAccount-navigation ul::before {
    content: 'My Account';
    display: block;
    font-family: var(--display);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: rgba(255, 255, 255, 0.30);
    padding: 16px 20px 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.woocommerce-MyAccount-navigation li {
    margin: 0;
}

.woocommerce-MyAccount-navigation li a {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 13px 16px 13px 20px;
    font-family: var(--display);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: color .15s, background .15s;
    position: relative;
}

/* Icon (left) */
.woocommerce-MyAccount-navigation li a::before {
    content: '';
    width: 16px;
    height: 16px;
    min-width: 16px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.50;
    transition: opacity .15s;
    flex-shrink: 0;
}

/* Chevron (right) */
.woocommerce-MyAccount-navigation li a::after {
    content: '';
    width: 12px;
    height: 12px;
    min-width: 12px;
    margin-left: auto;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.18;
    transition: opacity .15s, transform .15s;
}

/* Dashboard icon */
.woocommerce-MyAccount-navigation-link--dashboard a::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='7' height='7' rx='1'/%3E%3Crect x='14' y='3' width='7' height='7' rx='1'/%3E%3Crect x='14' y='14' width='7' height='7' rx='1'/%3E%3Crect x='3' y='14' width='7' height='7' rx='1'/%3E%3C/svg%3E");
}

/* Orders icon */
.woocommerce-MyAccount-navigation-link--orders a::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 5H7a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-2'/%3E%3Crect x='9' y='3' width='6' height='4' rx='2'/%3E%3Cline x1='9' y1='12' x2='15' y2='12'/%3E%3Cline x1='9' y1='16' x2='13' y2='16'/%3E%3C/svg%3E");
}

/* Addresses icon */
.woocommerce-MyAccount-navigation-link--edit-address a::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
}

/* Account Details icon */
.woocommerce-MyAccount-navigation-link--edit-account a::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E");
}

/* Log Out icon */
.woocommerce-MyAccount-navigation-link--customer-logout a::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4'/%3E%3Cpolyline points='16 17 21 12 16 7'/%3E%3Cline x1='21' y1='12' x2='9' y2='12'/%3E%3C/svg%3E");
}

/* Hover state */
.woocommerce-MyAccount-navigation li a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.07);
}

.woocommerce-MyAccount-navigation li a:hover::before {
    opacity: 1;
}

.woocommerce-MyAccount-navigation li a:hover::after {
    opacity: 0.55;
    transform: translateX(2px);
}

/* Active / current tab */
.woocommerce-MyAccount-navigation li.is-active a {
    background: var(--orange-500);
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.12);
}

.woocommerce-MyAccount-navigation li.is-active a::before {
    opacity: 1;
}

.woocommerce-MyAccount-navigation li.is-active a::after {
    opacity: 0.55;
}

/* Log out — separator + subtle danger tint */
.woocommerce-MyAccount-navigation-link--customer-logout {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 2px;
}

.woocommerce-MyAccount-navigation-link--customer-logout a {
    color: rgba(255, 255, 255, 0.32);
}

.woocommerce-MyAccount-navigation-link--customer-logout a:hover {
    color: white;
    background: rgba(220, 38, 38, 0.18);
}

/* ── My Account: content area ── */
.woocommerce-MyAccount-content {
    background: var(--bg-surface);
    border: 1px solid var(--line-100);
    border-radius: 6px;
    padding: 36px 40px;
}

/* Section headings inside content */
.woocommerce-MyAccount-content h2,
.woocommerce-MyAccount-content h3 {
    font-family: var(--display);
    font-weight: 700;
    color: var(--navy-950);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 20px;
}

.woocommerce-MyAccount-content h2 {
    font-size: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--orange-500);
    margin-bottom: 24px;
}

.woocommerce-MyAccount-content h3 {
    font-size: 14px;
    margin-top: 28px;
}

/* Dashboard welcome text */
.woocommerce-MyAccount-content p {
    font-size: 14px;
    color: var(--ink-700);
    line-height: 1.7;
    margin-bottom: 12px;
}

/* All links inside content — override WooCommerce default blue */
.woocommerce-MyAccount-content a {
    color: var(--orange-500);
    text-decoration: none;
}

.woocommerce-MyAccount-content a:hover {
    color: var(--orange-600);
    text-decoration: underline;
}

.woocommerce-MyAccount-content p a:hover {
    color: var(--orange-600);
    text-decoration: underline;
}

/* ── Orders table ── */
.woocommerce-account .woocommerce-orders-table,
.woocommerce-account table.shop_table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.woocommerce-account table.shop_table th {
    font-family: var(--display);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--ink-500);
    background: var(--bg-muted);
    padding: 10px 14px;
    border-bottom: 1px solid var(--line-100);
    text-align: left;
}

.woocommerce-account table.shop_table td {
    padding: 12px 14px;
    border-bottom: 1px solid var(--line-50);
    color: var(--ink-700);
    vertical-align: middle;
}

.woocommerce-account table.shop_table tr:last-child td {
    border-bottom: none;
}

.woocommerce-account table.shop_table .button,
.woocommerce-account table.shop_table a.button {
    height: 34px;
    padding: 0 16px;
    font-size: 11px;
}

/* Order status badges */
.woocommerce-account .woocommerce-orders-table__cell-order-status mark,
.woocommerce-account .order-status {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 100px;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    background: var(--bg-muted);
    color: var(--ink-600);
}

.woocommerce-account .order-status.status-processing,
.woocommerce-account .order-status.status-on-hold {
    background: var(--orange-50);
    color: var(--orange-600);
}

.woocommerce-account .order-status.status-completed {
    background: #e6f4ec;
    color: #1a7840;
}

.woocommerce-account .order-status.status-cancelled,
.woocommerce-account .order-status.status-failed {
    background: #fdeaea;
    color: #c0392b;
}

/* ── Address cards list — two columns ── */
.woocommerce-account .woocommerce-Addresses {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 16px;
}

@media (max-width: 640px) {
    .woocommerce-account .woocommerce-Addresses {
        grid-template-columns: 1fr;
    }
}

/* ── Individual address card ── */
.woocommerce-account .woocommerce-Address {
    background: var(--bg-muted, #f7f8fa);
    border-radius: 8px;
    padding: 24px 24px 28px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 1px 4px rgba(10, 29, 53, 0.06);
}

.woocommerce-account .woocommerce-Address-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.woocommerce-account .woocommerce-Address-title h3 {
    margin: 0;
    border: none;
    padding: 0;
    font-family: var(--display);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--navy-950);
}

.woocommerce-account .woocommerce-Address-title .edit {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-family: var(--display);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--orange-500);
    text-decoration: none;
    padding: 6px 14px;
    border: 1.5px solid var(--orange-500);
    border-radius: 4px;
    white-space: nowrap;
    transition: background .15s, color .15s, border-color .15s;
}

.woocommerce-account .woocommerce-Address-title .edit:hover {
    background: var(--orange-500);
    border-color: var(--orange-500);
    color: white;
}

.woocommerce-account address {
    font-style: normal;
    font-size: 13px;
    color: var(--ink-700);
    line-height: 1.7;
}

/* "You have not set up" text */
.woocommerce-account .woocommerce-Address>p {
    font-size: 13px;
    color: var(--ink-500);
    margin: 0;
}

.woocommerce-account .woocommerce-Address>p a {
    color: var(--orange-500);
    text-decoration: none;
}

.woocommerce-account .woocommerce-Address>p a:hover {
    color: var(--orange-600);
    text-decoration: underline;
}

/* ── Account details / Edit address forms ── */
.woocommerce-account .woocommerce-EditAccountForm fieldset,
.woocommerce-account .woocommerce-address-fields fieldset {
    border: none;
    border-radius: 0;
    padding: 0;
    margin-bottom: 0;
}

.woocommerce-account .woocommerce-EditAccountForm fieldset legend,
.woocommerce-account .woocommerce-address-fields fieldset legend {
    display: none;
}

/* ── Edit address / account: form layout (CSS grid) ── */
.woocommerce-account .woocommerce-address-fields,
.woocommerce-account .woocommerce-EditAccountForm {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 20px;
}

/* Direct-child form rows use grid gap — no bottom margin needed */
.woocommerce-account .woocommerce-address-fields>.form-row,
.woocommerce-account .woocommerce-EditAccountForm>.form-row {
    margin-bottom: 0;
}

/* First Name / left-column fields */
.woocommerce-account .woocommerce-address-fields>.form-row-first,
.woocommerce-account .woocommerce-EditAccountForm>.form-row-first {
    grid-column: 1;
}

/* Last Name / right-column fields */
.woocommerce-account .woocommerce-address-fields>.form-row-last,
.woocommerce-account .woocommerce-EditAccountForm>.form-row-last {
    grid-column: 2;
}

/* Full-width items span both columns */
.woocommerce-account .woocommerce-address-fields>.form-row-wide,
.woocommerce-account .woocommerce-address-fields>fieldset,
.woocommerce-account .woocommerce-address-fields>.clear,
.woocommerce-account .woocommerce-EditAccountForm>.form-row-wide,
.woocommerce-account .woocommerce-EditAccountForm>fieldset,
.woocommerce-account .woocommerce-EditAccountForm>.clear,
.woocommerce-account .woocommerce-EditAccountForm>p:last-of-type {
    grid-column: 1 / -1;
}

/* Fields inside the password fieldset keep vertical rhythm */
.woocommerce-account .woocommerce-EditAccountForm fieldset .form-row,
.woocommerce-account .woocommerce-address-fields fieldset .form-row {
    margin-bottom: 14px;
}

.woocommerce-account .woocommerce-EditAccountForm fieldset .form-row:last-child,
.woocommerce-account .woocommerce-address-fields fieldset .form-row:last-child {
    margin-bottom: 0;
}

/* ── Password strength meter ── */
.woocommerce-account .woocommerce-password-strength,
.woocommerce-account #password_strength {
    display: none;
}

.woocommerce-account .woocommerce-password-strength:not(:empty) {
    display: block;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 3px;
    margin-top: 6px;
}

.woocommerce-account .woocommerce-password-hint {
    display: block;
    font-size: 11px;
    color: var(--ink-400);
    line-height: 1.5;
    margin-top: 6px;
}

/* ── All text / email / password / tel inputs in account pages ── */
.woocommerce-account .input-text,
.woocommerce-account input.input-text,
.woocommerce-account input[type="text"],
.woocommerce-account input[type="email"],
.woocommerce-account input[type="password"],
.woocommerce-account input[type="tel"],
.woocommerce-account input[type="number"] {
    width: 100% !important;
    height: 44px;
    padding: 0 14px;
    border: 1.5px solid var(--navy-100) !important;
    border-radius: 4px;
    background: white !important;
    font-family: var(--sans);
    font-size: 14px;
    color: var(--ink-900);
    outline: none;
    transition: border-color .15s, box-shadow .15s;
    box-sizing: border-box !important;
    display: block;
}

.woocommerce-account .input-text:focus,
.woocommerce-account input.input-text:focus,
.woocommerce-account input[type="text"]:focus,
.woocommerce-account input[type="email"]:focus,
.woocommerce-account input[type="password"]:focus,
.woocommerce-account input[type="tel"]:focus,
.woocommerce-account input[type="number"]:focus {
    border-color: var(--navy-600) !important;
    box-shadow: 0 0 0 3px rgba(52, 90, 130, 0.10);
}

/* ── Select dropdowns in account forms ── */
.woocommerce-account select,
.woocommerce-account .woocommerce-address-fields select,
.woocommerce-account .woocommerce-EditAccountForm select {
    width: 100% !important;
    height: 44px;
    padding: 0 40px 0 14px;
    border: 1.5px solid var(--navy-100) !important;
    border-radius: 4px;
    background: white !important;
    font-family: var(--sans);
    font-size: 14px;
    color: var(--ink-900);
    outline: none;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M0 0l6 8 6-8z' fill='%234b5c72'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 14px center !important;
    transition: border-color .15s, box-shadow .15s;
    box-sizing: border-box !important;
    display: block;
}

.woocommerce-account select:focus,
.woocommerce-account .woocommerce-address-fields select:focus,
.woocommerce-account .woocommerce-EditAccountForm select:focus {
    border-color: var(--navy-600) !important;
    box-shadow: 0 0 0 3px rgba(52, 90, 130, 0.10);
    outline: none;
}

/* ── Form labels in account forms ── */
.woocommerce-account .woocommerce-address-fields label,
.woocommerce-account .woocommerce-EditAccountForm label {
    display: block;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink-600);
    margin-bottom: 7px;
}

/* ── Save address / save account button ── */
.woocommerce-account .woocommerce-address-fields .button,
.woocommerce-account .woocommerce-EditAccountForm .button {
    margin-top: 8px;
}

/* ── Notices ── */
.woocommerce-account .woocommerce-message,
.woocommerce-account .woocommerce-info,
.woocommerce-account .woocommerce-error {
    border-radius: 4px;
    padding: 14px 18px;
    margin-bottom: 20px;
    font-size: 13px;
    border-left: 4px solid;
    list-style: none;
}

.woocommerce-account .woocommerce-message {
    background: #e6f4ec;
    border-left-color: #1a7840;
    color: #1a5230;
}

.woocommerce-account .woocommerce-info {
    background: var(--orange-50);
    border-left-color: var(--orange-500);
    color: var(--orange-600);
}

.woocommerce-account .woocommerce-error {
    background: #fdeaea;
    border-left-color: #c0392b;
    color: #922b21;
}

/* ── Password input wrapper (enables absolute positioning for toggle) ── */
.woocommerce-account span.password-input,
.woocommerce-EditAccountForm.edit-account span.password-input {
    position: relative;
    display: block;
}

/* ── Show/hide password toggle button ── */
.woocommerce-account button.show-password-input,
.woocommerce-EditAccountForm.edit-account button.show-password-input {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    padding: 0;
    border: none;
    background: transparent;
    color: var(--ink-400);
    font-size: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color .15s;
    z-index: 2;
}

.woocommerce-account button.show-password-input::before,
.woocommerce-EditAccountForm.edit-account button.show-password-input::before {
    content: '👁️';
    font-size: 16px;
    display: block;
}

.woocommerce-account button.show-password-input:hover,
.woocommerce-EditAccountForm.edit-account button.show-password-input:hover {
    color: var(--navy-950);
}

/* ── Password input with room for toggle button ── */
.woocommerce-EditAccountForm.edit-account .woocommerce-Input--password,
.woocommerce-account span.password-input input[type="password"],
.woocommerce-account span.password-input input[type="text"] {
    padding: 0 48px 0 14px !important;
}

/* ── Responsive ── */
@media (max-width: 700px) {

    /* Login/register columns stack */
    .woocommerce-account:not(.logged-in) .woocommerce>.u-columns {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Logged-in: sidebar above content */
    .woocommerce-account.logged-in .woocommerce {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .woocommerce-MyAccount-navigation li a {
        padding: 11px 16px;
    }

    .woocommerce-MyAccount-content {
        padding: 24px 20px;
    }
}