:root {
    --ink: #111314;
    --ink-2: #1b1f20;
    --graphite: #2a302f;
    --field: #4f5a48;
    --brass: #b79a62;
    --clay: #8a4237;
    --paper: #f4f1e9;
    --mist: #d7d7cd;
    --line: rgba(255,255,255,.14);
    --dark-line: rgba(17,19,20,.14);
    --shadow: 0 24px 70px rgba(17, 19, 20, .22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: #eeece3;
    font-family: "Instrument Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; letter-spacing: 0; }
button { cursor: pointer; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    height: 76px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
    padding: 0 clamp(18px, 4vw, 56px);
    color: #f7f3e9;
    background: rgba(17, 19, 20, .94);
    border-bottom: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(18px);
}
.brand-lockup { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; letter-spacing: 0; }
.brand-mark {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(183,154,98,.8);
    border-radius: 50%;
    position: relative;
    display: inline-block;
}
.brand-mark:before, .brand-mark:after {
    content: "";
    position: absolute;
    background: rgba(183,154,98,.9);
}
.brand-mark:before { width: 18px; height: 1px; left: 7px; top: 16px; }
.brand-mark:after { width: 1px; height: 18px; left: 16px; top: 7px; }
.brand-word { font-size: 22px; }
.site-logo { max-width: 152px; max-height: 42px; object-fit: contain; }
.main-nav { display: flex; justify-content: center; gap: 26px; color: rgba(247,243,233,.78); font-size: 14px; }
.main-nav a:hover, .main-nav a.active, .mobile-nav a:hover { color: var(--brass); }
.header-actions { display: flex; align-items: center; gap: 14px; }
.account-link { color: rgba(247,243,233,.78); font-size: 14px; font-weight: 700; }
.account-link:hover { color: var(--brass); }
.cart-link {
    min-width: 58px;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 1px solid rgba(255,255,255,.18);
    padding: 9px 13px;
    color: #fff;
}
.cart-link strong {
    min-width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    background: var(--brass);
    color: #161514;
    border-radius: 50%;
    font-size: 12px;
}
.cart-icon {
    position: relative;
    width: 22px;
    height: 20px;
    display: inline-block;
    border: 2px solid currentColor;
    border-top: 0;
}
.cart-icon:before {
    content: "";
    position: absolute;
    left: 4px;
    top: -8px;
    width: 10px;
    height: 10px;
    border: 2px solid currentColor;
    border-bottom: 0;
    border-radius: 10px 10px 0 0;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}
.menu-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--line); background: transparent; }
.menu-toggle span { display: block; width: 18px; height: 1px; margin: 6px auto; background: #fff; }
.mobile-nav { display: none; background: var(--ink); color: #fff; padding: 18px; border-bottom: 1px solid var(--line); }
.mobile-nav.open { display: grid; gap: 14px; }

.site-alert {
    margin: 18px auto 0;
    max-width: 1120px;
    padding: 14px 18px;
    background: #e7ded0;
    border: 1px solid #c9b98e;
    color: #342b1f;
}
.toast {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 80;
    max-width: 320px;
    padding: 14px 16px;
    color: #fff;
    background: #1a1d1d;
    border: 1px solid rgba(255,255,255,.16);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition: .22s ease;
}
.toast.show { opacity: 1; transform: translateY(0); }

.hero {
    min-height: calc(100vh - 76px);
    position: relative;
    display: grid;
    align-items: end;
    overflow: hidden;
    color: #fff;
    padding: clamp(64px, 9vw, 120px) clamp(18px, 5vw, 72px);
}
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(9,10,9,.9), rgba(12,14,13,.68) 44%, rgba(12,14,13,.2)), linear-gradient(0deg, rgba(10,10,9,.9), transparent 48%);
}
.hero-content { position: relative; max-width: 760px; padding-bottom: 56px; }
.eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--brass);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em;
}
h1, h2, h3, p { margin-top: 0; letter-spacing: 0; }
.hero h1 { margin-bottom: 16px; font-size: clamp(58px, 10vw, 128px); line-height: .92; }
.hero p, .page-hero p { max-width: 720px; color: rgba(255,255,255,.78); font-size: clamp(18px, 2vw, 23px); line-height: 1.5; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-panel {
    position: absolute;
    right: clamp(18px, 5vw, 72px);
    bottom: 34px;
    width: min(330px, calc(100% - 36px));
    padding: 20px;
    background: rgba(18, 20, 20, .74);
    border: 1px solid rgba(255,255,255,.16);
}
.hero-panel span, .hero-panel strong { display: block; }
.hero-panel span { color: var(--brass); font-size: 12px; text-transform: uppercase; font-weight: 800; letter-spacing: .1em; }
.hero-panel strong { margin-top: 6px; line-height: 1.35; }

.btn {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--brass);
    background: var(--brass);
    color: #151513;
    padding: 12px 18px;
    font-weight: 800;
    transition: .18s ease;
}
.btn:hover { transform: translateY(-1px); filter: brightness(1.04); }
.btn.ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.38); }
.btn.ghost.dark { color: var(--ink); border-color: var(--dark-line); }
.btn.secondary { background: transparent; color: var(--ink); border-color: var(--dark-line); }
.btn.small { min-height: 38px; padding: 9px 12px; font-size: 13px; }
.btn:disabled { opacity: .5; cursor: not-allowed; transform: none; }
.text-link { border: 0; background: transparent; color: var(--clay); font-weight: 800; padding: 0; }
.text-link.inverse { color: var(--brass); }

.section { padding: clamp(54px, 7vw, 96px) clamp(18px, 5vw, 72px); }
.section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 22px;
    margin-bottom: 28px;
}
.section h2, .page-hero h1 { font-size: clamp(34px, 5vw, 64px); line-height: 1; }
.intro-band {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(280px, .75fr);
    gap: clamp(28px, 6vw, 90px);
    background: #f5f2ea;
    border-bottom: 1px solid var(--dark-line);
}
.intro-band p { color: #4b4c46; font-size: 19px; line-height: 1.7; }
.category-grid, .product-grid, .article-grid, .service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}
.category-tile {
    min-height: 170px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    gap: 8px;
    padding: 22px;
    background: var(--ink);
    color: #fff;
    border: 1px solid rgba(255,255,255,.08);
}
.category-tile span { color: var(--brass); font-size: 12px; text-transform: uppercase; font-weight: 800; }
.category-tile strong { font-size: 22px; }
.category-tile small { color: rgba(255,255,255,.6); }

.dark-section { background: #111314; color: #fff; }
.product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.product-grid.light .product-card { background: #f8f5ee; color: var(--ink); border-color: var(--dark-line); }
.product-card {
    display: grid;
    background: #1a1d1d;
    border: 1px solid rgba(255,255,255,.1);
    color: #fff;
    overflow: hidden;
}
.product-media {
    position: relative;
    aspect-ratio: 1 / .86;
    background: #252a29;
    overflow: hidden;
}
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.product-card:hover .product-media img { transform: scale(1.03); }
.product-media em {
    position: absolute;
    left: 12px;
    top: 12px;
    padding: 6px 9px;
    background: var(--brass);
    color: #121211;
    font-size: 11px;
    font-style: normal;
    font-weight: 800;
}
.image-fallback {
    height: 100%;
    display: grid;
    place-items: center;
    background:
        linear-gradient(135deg, rgba(183,154,98,.16), transparent 42%),
        linear-gradient(180deg, #242928, #161817);
}
.image-fallback span { color: var(--brass); font-weight: 900; text-transform: uppercase; }
.image-fallback.large { min-height: 560px; }
.product-body { display: grid; gap: 14px; padding: 18px; }
.product-body a span { display: block; margin-bottom: 6px; color: var(--brass); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.product-body h3 { font-size: 18px; line-height: 1.25; }
.product-meta { display: flex; gap: 10px; align-items: baseline; }
.product-meta del { color: #8f948b; }

.split-section {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(320px, .8fr);
    gap: clamp(28px, 6vw, 80px);
    padding: clamp(62px, 8vw, 108px) clamp(18px, 5vw, 72px);
    background: var(--field);
    color: #fff;
}
.training-copy h2 { font-size: clamp(34px, 5vw, 60px); line-height: 1; }
.training-copy p { color: rgba(255,255,255,.76); font-size: 18px; line-height: 1.7; }
.service-stack { display: grid; gap: 12px; }
.service-row, .service-card {
    display: grid;
    gap: 8px;
    padding: 22px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.16);
}
.service-row span, .service-card span { color: var(--brass); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.service-row strong { font-size: 22px; }

.editorial-section { background: #f5f2ea; }
.article-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.article-grid.wide { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.article-card {
    display: grid;
    gap: 12px;
    padding: 20px;
    background: #fffaf0;
    border: 1px solid var(--dark-line);
}
.article-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; margin-bottom: 4px; }
.article-card span { color: var(--clay); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.article-card strong { font-size: 22px; line-height: 1.2; }
.article-card p { color: #575950; line-height: 1.6; }
.trade-callout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding: clamp(42px, 6vw, 72px) clamp(18px, 5vw, 72px);
    background: #171918;
    color: #fff;
}
.trade-callout h2 { font-size: clamp(28px, 4vw, 48px); line-height: 1.05; }
.trade-callout p { color: rgba(255,255,255,.72); max-width: 680px; line-height: 1.65; }

.page-hero {
    padding: clamp(76px, 10vw, 132px) clamp(18px, 5vw, 72px);
    color: #fff;
    background:
        linear-gradient(90deg, rgba(17,19,20,.95), rgba(17,19,20,.72)),
        url("/frontend-assets/truzero-hero.png") center / cover;
}
.page-hero.compact { padding-block: clamp(58px, 8vw, 96px); }
.page-hero h1 { max-width: 960px; }

.shop-shell {
    display: grid;
    grid-template-columns: 270px 1fr;
    gap: 26px;
    padding: clamp(34px, 5vw, 72px);
}
.shop-filters {
    align-self: start;
    position: sticky;
    top: 96px;
    display: grid;
    gap: 8px;
    padding: 18px;
    background: #f8f5ee;
    border: 1px solid var(--dark-line);
}
.shop-filters strong { margin-bottom: 8px; }
.shop-filters a {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    border: 1px solid transparent;
}
.shop-filters a.active, .shop-filters a:hover { border-color: var(--dark-line); background: #ede7d9; }
.shop-toolbar {
    display: grid;
    grid-template-columns: 1fr 220px auto;
    gap: 10px;
    margin-bottom: 18px;
}
input, textarea, select {
    width: 100%;
    border: 1px solid rgba(17,19,20,.2);
    background: #fffaf0;
    color: var(--ink);
    padding: 12px 13px;
}
textarea { resize: vertical; }

.product-detail {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(320px, .8fr);
    gap: clamp(28px, 5vw, 70px);
    padding: clamp(36px, 6vw, 82px) clamp(18px, 5vw, 72px);
    background: #f5f2ea;
}
.gallery-main {
    min-height: 560px;
    overflow: hidden;
    background: #202423;
}
.gallery-main img { width: 100%; height: 100%; min-height: 560px; object-fit: cover; transition: transform .18s ease; }
.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
    margin-top: 12px;
}
.gallery-thumbs button {
    border: 2px solid transparent;
    background: transparent;
    padding: 0;
    aspect-ratio: 1;
}
.gallery-thumbs button.active { border-color: var(--brass); }
.gallery-thumbs img { width: 100%; height: 100%; object-fit: cover; }
.detail-copy { align-self: center; display: grid; gap: 18px; }
.detail-copy h1 { font-size: clamp(38px, 6vw, 76px); line-height: .96; }
.crumb { color: var(--clay); font-weight: 800; }
.rating-strip { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; color: #6c6b61; }
.rating-strip strong { color: #b17f2c; letter-spacing: .08em; }
.rating-strip a { color: var(--clay); font-weight: 800; }
.rich { color: #41443d; line-height: 1.75; }
.rich h2, .rich h3 { margin-top: 1.5em; }
.rich ul { padding-left: 20px; list-style: disc; }
.price-line { display: flex; align-items: baseline; gap: 14px; }
.price-line strong { font-size: 32px; }
.price-line del { color: #7e8077; }
.stock-line { display: inline-flex; align-items: center; gap: 9px; color: #4d514a; }
.stock-line span { width: 9px; height: 9px; border-radius: 50%; background: #7a2d25; }
.stock-line span.in-stock { background: #587d49; }
.buy-box { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 10px; align-items: end; }
.spec-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-top: 10px; }
.spec-grid div { padding: 14px; background: #ede7d9; border: 1px solid var(--dark-line); }
.spec-grid span { display: block; color: #6b675c; font-size: 12px; text-transform: uppercase; font-weight: 800; }
.prose-section { max-width: 980px; }

.cart-layout, .checkout-layout, .contact-panel {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 28px;
    padding: clamp(34px, 5vw, 72px);
}
.cart-items { display: grid; gap: 12px; }
.cart-item {
    display: grid;
    grid-template-columns: 1fr 120px 230px 80px 120px;
    gap: 14px;
    align-items: center;
    padding: 18px;
    background: #f8f5ee;
    border: 1px solid var(--dark-line);
}
.cart-item form { display: flex; gap: 8px; align-items: center; }
.cart-item input { max-width: 82px; }
.order-summary {
    align-self: start;
    position: sticky;
    top: 96px;
    display: grid;
    gap: 16px;
    padding: 22px;
    background: #171918;
    color: #fff;
    border: 1px solid rgba(255,255,255,.12);
}
.order-summary div { display: flex; justify-content: space-between; gap: 18px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,.12); }
.order-summary small, .cart-item small { display: block; color: #8d9288; margin-top: 4px; font-size: 12px; }
.order-summary p { color: rgba(255,255,255,.66); line-height: 1.6; }
.summary-total strong { color: var(--brass); font-size: 22px; }
.checkout-form, .enquiry-form {
    display: grid;
    gap: 18px;
    padding: 24px;
    background: #f8f5ee;
    border: 1px solid var(--dark-line);
}
.tracking-layout {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 28px;
    padding: clamp(34px, 5vw, 72px);
}
.tracking-form, .tracking-result, .shipment-panel {
    display: grid;
    gap: 16px;
    padding: 24px;
    background: #f8f5ee;
    border: 1px solid var(--dark-line);
}
.tracking-form { align-self: start; position: sticky; top: 96px; }
.tracking-head {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: start;
}
.tracking-head h2 { font-size: clamp(30px, 4vw, 52px); line-height: 1; }
.tracking-head > strong { color: var(--brass); font-size: 28px; }
.shipment-timeline {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin: 12px 0;
}
.shipment-timeline div {
    display: grid;
    gap: 8px;
    padding: 14px;
    background: #ede7d9;
    border: 1px solid var(--dark-line);
}
.shipment-timeline span {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid #9a9487;
}
.shipment-timeline .complete span { border-color: var(--brass); background: var(--brass); }
.shipment-timeline small { color: #6b675c; }
.form-grid, .enquiry-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
label { display: grid; gap: 7px; color: #3b3d38; font-weight: 700; }
.field-note { color: #716b5e; font-size: 13px; line-height: 1.5; }
.wide { grid-column: 1 / -1; }
.payment-options { display: grid; gap: 10px; }
.payment-options label { display: flex; align-items: center; gap: 10px; }
.payment-options input { width: auto; }
.payment-options small { display: block; color: #716b5e; margin-top: 3px; font-weight: 500; }
.form-errors {
    padding: 12px;
    color: #6f2019;
    background: #f0d8d1;
    border: 1px solid #d49b8e;
}
.success-hero .btn { margin-top: 18px; }
.contact-panel { grid-template-columns: minmax(0, .7fr) minmax(320px, 1fr); background: #f5f2ea; }
.contact-panel h2 { font-size: clamp(32px, 5vw, 56px); line-height: 1; }
.service-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.service-card { color: var(--ink); background: #f8f5ee; border-color: var(--dark-line); }
.service-card img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; margin-bottom: 6px; }
.service-card h2 { font-size: 24px; line-height: 1.15; }
.article-detail { background: #f5f2ea; }
.article-detail > img { width: 100%; max-height: 560px; object-fit: cover; }
.article-content { max-width: 900px; margin: 0 auto; padding: clamp(42px, 7vw, 90px) 18px; }
.article-content h1 { font-size: clamp(38px, 6vw, 72px); line-height: .98; }
.video-embed { aspect-ratio: 16 / 9; margin: 24px 0; background: #111; }
.video-embed iframe { width: 100%; height: 100%; border: 0; }
.empty-state {
    grid-column: 1 / -1;
    padding: 28px;
    background: #f8f5ee;
    border: 1px solid var(--dark-line);
    color: var(--ink);
}
.reviews-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 22px;
}
.review-list { display: grid; gap: 12px; }
.review-card, .review-form-panel {
    padding: 20px;
    background: #f8f5ee;
    border: 1px solid var(--dark-line);
}
.review-card div { display: flex; justify-content: space-between; gap: 18px; color: var(--clay); font-weight: 800; }
.review-card h3 { margin-top: 12px; font-size: 20px; }
.review-card p { color: #4e514b; line-height: 1.65; }
.review-form-panel form { display: grid; gap: 14px; }
.account-shell {
    min-height: calc(100vh - 76px);
    display: grid;
    place-items: center;
    padding: clamp(34px, 7vw, 82px) 18px;
    background:
        linear-gradient(90deg, rgba(17,19,20,.92), rgba(17,19,20,.56)),
        url("/frontend-assets/truzero-hero.png") center / cover;
}
.account-card {
    width: min(520px, 100%);
    display: grid;
    gap: 16px;
    padding: 28px;
    background: #f8f5ee;
    border: 1px solid rgba(255,255,255,.18);
    box-shadow: var(--shadow);
}
.account-card h1 { font-size: 42px; line-height: 1; }
.account-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 26px;
    padding: clamp(34px, 5vw, 72px);
}
.account-menu {
    align-self: start;
    position: sticky;
    top: 96px;
    display: grid;
    gap: 8px;
    padding: 18px;
    background: #171918;
    color: #fff;
}
.account-menu a, .account-menu button {
    min-height: 42px;
    display: flex;
    align-items: center;
    padding: 10px 12px;
    border: 1px solid rgba(255,255,255,.1);
    color: rgba(255,255,255,.78);
    background: transparent;
}
.account-menu a.active, .account-menu a:hover, .account-menu button:hover { color: var(--brass); }
.account-main { display: grid; gap: 18px; }
.account-panel {
    padding: 22px;
    background: #f8f5ee;
    border: 1px solid var(--dark-line);
}
.order-row, .order-line {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 14px;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--dark-line);
}
.order-line { grid-template-columns: 1fr auto; }
.order-line small { display: block; color: #74766d; margin-top: 4px; }
.order-status-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 18px;
}
.order-status-grid div {
    display: grid;
    gap: 6px;
    padding: 14px;
    background: #ede7d9;
    border: 1px solid var(--dark-line);
}
.order-status-grid span { color: #6b675c; font-size: 12px; text-transform: uppercase; font-weight: 800; }
.empty-state strong { display: block; margin-bottom: 8px; font-size: 22px; }
.empty-state p { color: #5a5d55; }
.pagination { display: flex; gap: 8px; margin-top: 22px; }

.site-footer {
    display: grid;
    grid-template-columns: minmax(260px, .8fr) 1fr;
    gap: 38px;
    padding: 44px clamp(18px, 5vw, 72px);
    color: rgba(255,255,255,.76);
    background: #0e1010;
    border-top: 1px solid rgba(255,255,255,.1);
}
.footer-brand { color: #fff; margin-bottom: 14px; }
.site-footer p { max-width: 460px; line-height: 1.7; }
.footer-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.footer-grid div { display: grid; align-content: start; gap: 9px; }
.footer-grid strong { color: #fff; margin-bottom: 6px; }

@media (max-width: 1040px) {
    .main-nav { display: none; }
    .menu-toggle { display: block; }
    .site-header { grid-template-columns: auto 1fr; }
    .header-actions { justify-self: end; }
    .category-grid, .product-grid, .article-grid, .article-grid.wide, .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .shop-shell, .product-detail, .cart-layout, .checkout-layout, .contact-panel, .intro-band, .split-section { grid-template-columns: 1fr; }
    .shop-filters, .order-summary { position: static; }
    .cart-item { grid-template-columns: 1fr; align-items: stretch; }
    .buy-box { grid-template-columns: 1fr; }
    .reviews-layout, .account-layout, .tracking-layout { grid-template-columns: 1fr; }
    .account-menu, .tracking-form { position: static; }
}

@media (max-width: 680px) {
    .site-header { height: 68px; padding-inline: 14px; }
    .cart-link span { display: none; }
    .hero { min-height: 760px; padding-inline: 16px; }
    .hero-content { padding-bottom: 160px; }
    .hero-panel { left: 16px; right: 16px; }
    .section-head, .trade-callout { align-items: start; flex-direction: column; }
    .category-grid, .product-grid, .article-grid, .article-grid.wide, .service-grid, .form-grid, .enquiry-form, .footer-grid, .site-footer, .shop-toolbar, .spec-grid { grid-template-columns: 1fr; }
    .shipment-timeline { grid-template-columns: 1fr; }
    .detail-media img, .image-fallback.large { min-height: 360px; }
}
