/* ==========================================================================
   Safetywala — DARK + GOLD design system (faithful to the ducatibox theme)
   Accent gold #f8af01, black backgrounds, Montserrat + Bai Jamjuree.
   ========================================================================== */
:root {
    --gold: #f8af01;
    --gold-2: #e39f00;
    --black: #0a0a0a;
    --bg: #0d0d0d;
    --surface: #161616;
    --surface-2: #1e1e1e;
    --line: #2a2a2a;
    --text: #d7d7d7;
    --muted: #9a9a9a;
    --white: #ffffff;
    --radius: 10px;
    --shadow: 0 10px 34px rgba(0,0,0,.45);
    --max: 1240px;
    --font: 'Montserrat', system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    --font-accent: 'Bai Jamjuree', var(--font);
    --slashes-svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 70 18'%3E%3Cpath d='M30.4789 0.857422H21.0481L3.69614 18.0003H13.1269L30.4789 0.857422Z'/%3E%3Cpath d='M48.6993 0.857422H39.2685L21.9165 18.0003H31.3473L48.6993 0.857422Z'/%3E%3Cpath d='M66.9197 0.857422H57.4808L40.1369 18.0003H49.5596L66.9197 0.857422Z'/%3E%3C/svg%3E");
}

* { box-sizing: border-box; }
/* honeypot anti-spam field — visually hidden but present for bots to fill */
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; opacity: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    line-height: 1.5;
    font-size: 16px;
    font-weight: 500;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-2); }
h1, h2, h3, h4 { font-family: var(--font); color: var(--white); line-height: 1.15; margin: 0 0 .5em; font-weight: 800; }
.gold { color: var(--gold); }
.container { max-width: var(--max); margin: 0 auto; padding: 0 20px; }

/* ---- Buttons ---- */
.btn { position: relative; overflow: hidden; z-index: 1; display: inline-flex; align-items: center; gap: 10px; font-family: var(--font); font-weight: 600; padding: 12px 24px; border-radius: 0; border: 0; cursor: pointer; transition: color .3s ease; font-size: 14px; line-height: 1; text-transform: uppercase; letter-spacing: .4px; }
.btn-sm { padding: 9px 16px; font-size: 12.5px; }
.btn-lg { padding: 15px 30px; font-size: 15px; }
.btn-primary { background: var(--gold); color: #171717; }
/* slide-fill: dark sweeps in from the left on hover (cubic-bezier like original) */
.btn-primary::before { content: ''; position: absolute; inset: 0; z-index: -1; background: #191919; transform: translateX(-101%); transition: transform .4s cubic-bezier(.645,.045,.355,1); }
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary:hover { color: #fff; }
.btn-dark { background: #171717; color: #fff; }
.btn-dark::before { content: ''; position: absolute; inset: 0; z-index: -1; background: var(--gold); transform: translateX(-101%); transition: transform .4s cubic-bezier(.645,.045,.355,1); }
.btn-dark:hover::before { transform: translateX(0); }
.btn-dark:hover { color: #171717; }
.btn-outline { border: 2px solid var(--gold); color: var(--gold); background: transparent; padding: 10px 22px; }
.btn-outline:hover { background: var(--gold); color: #171717; }
.btn-block { display: flex; justify-content: center; width: 100%; }
.btn-plus { padding: 0; align-items: stretch; gap: 0; }
.btn-txt { display: inline-flex; align-items: center; padding: 14px 22px; }
.btn-lg .btn-txt { padding: 17px 28px; }
.btn-plus .plus { position: relative; z-index: 2; display: grid; place-items: center; width: 46px; background: #2b2b2b; color: #fff; border-radius: 0; font-weight: 400; font-size: 20px; transition: background .18s ease; }
.btn-plus .plus::before { content: '+'; }
.btn-plus:hover .plus::before { content: '\276F'; font-size: 14px; }
.btn-primary.btn-plus:hover .plus { background: #4a4a4a; }
.btn-lg.btn-plus .plus { width: 54px; }
.btn-dark .plus { background: var(--gold); color: #171717; }

/* ---- Topbar ---- */
.topbar { background: #000; color: #ffffff; font-size: 13.5px; border-bottom: 1px solid #1c1c1c; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; height: 48px; }
.topbar-contact { display: flex; align-items: center; gap: 18px; }
.topbar-contact a { color: #ffffff; display: inline-flex; align-items: center; gap: 8px; font-weight: 500; }
.topbar-contact a:hover { color: var(--gold); }
.tb-ic { color: var(--gold); display: inline-flex; }
.tb-ic svg { width: 15px; height: 15px; }
.tb-div { width: 1px; height: 16px; background: #3a3a3a; }
.topbar-social { display: flex; align-items: center; gap: 10px; }
.topbar-social a { width: 32px; height: 32px; border-radius: 50%; border: 1px solid #3a3a3a; color: #fff; display: grid; place-items: center; transition: .2s ease; }
.topbar-social a:hover { background: var(--gold); border-color: var(--gold); color: #171717; transform: translateY(-2px); }
.topbar-social svg { width: 15px; height: 15px; }

/* ---- Header ---- */
/* Full-width header + topbar (content spans edge-to-edge like the original). */
.topbar .container, .site-header .container { max-width: 100%; padding-left: 48px; padding-right: 48px; }
.site-header { background: #0b0b0b; border-bottom: 1px solid #1b1b1b; position: sticky; top: 0; z-index: 100; }
.header-inner { display: flex; align-items: center; gap: 22px; min-height: 94px; }
.brand-logo { height: 60px; width: auto; }
.iso-badge { height: 62px; width: auto; }
.main-nav { margin: 0 auto; }
.menu { list-style: none; display: flex; gap: 6px; margin: 0; padding: 0; }
.menu > li { position: relative; }
.menu > li > a { display: flex; align-items: center; gap: 6px; padding: 30px 16px; font-weight: 600; color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: normal; position: relative; white-space: nowrap; }
.menu > li > a::after { content: ''; position: absolute; left: 16px; right: 16px; bottom: 24px; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .2s ease; }
.menu > li:hover > a, .menu > li.active > a { color: var(--gold); }
.menu > li:hover > a::after, .menu > li.active > a::after { transform: scaleX(1); }
.caret { width: 7px; height: 7px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); margin-top: -3px; opacity: .7; }

/* Mega-menu (Products) */
.menu > li.has-mega { position: static; }
.mega-menu { position: absolute; left: 0; right: 0; top: 100%; background: #131315; border-top: 3px solid var(--gold); box-shadow: 0 20px 40px rgba(0,0,0,.5); opacity: 0; visibility: hidden; transform: translateY(10px); transition: .18s ease; z-index: 200; }
.mega-viewall-m { display: none; }  /* mobile-drawer "View All Products" link; shown only in the ≤1024 touch nav */
.has-mega:hover .mega-menu { opacity: 1; visibility: visible; transform: translateY(0); }
/* Flyout: left category list + right subcategory panel — full width (no side gaps) */
.mega-flyout { max-width: none; margin: 0; display: grid; grid-template-columns: 350px 1fr; height: 56vh; min-height: 340px; max-height: 560px; }
.mega-cats { list-style: none; margin: 0; padding: 12px 0; background: #0c0c0d; border-right: 1px solid #2c2c30; box-shadow: inset -12px 0 18px -12px rgba(0,0,0,.8); overflow-y: auto; min-height: 0; }
.mega-cat-item { border-bottom: 1px solid #1d1d20; }
.mega-cat-item:last-child { border-bottom: 0; }
.mega-cat-item > a { display: flex; align-items: center; gap: 13px; padding: 9px 22px 9px 48px; color: #cfcfcf; font-size: 13.5px; font-weight: 600; border-left: 3px solid transparent; transition: .12s ease; }
.mega-cat-thumb { width: 40px; height: 40px; border-radius: 6px; overflow: hidden; background: #fff; flex: 0 0 auto; }
.mega-cat-thumb img { width: 100%; height: 100%; object-fit: cover; }
.mega-cat-name { flex: 1; }
.mega-cat-item > a .arr { color: #666; font-size: 18px; line-height: 1; }
.mega-cat-item:hover > a, .mega-cat-item.active > a { background: #1a1a1a; color: var(--gold); border-left-color: var(--gold); }
.mega-cat-item:hover > a .arr, .mega-cat-item.active > a .arr { color: var(--gold); }
.mega-panels { position: relative; padding: 30px 48px 34px 44px; overflow-y: auto; min-height: 0; background: linear-gradient(135deg, #1b1c1f 0%, #151517 55%, #131315 100%); }
.mega-cats::-webkit-scrollbar, .mega-panels::-webkit-scrollbar { width: 8px; }
.mega-cats::-webkit-scrollbar-thumb, .mega-panels::-webkit-scrollbar-thumb { background: #333; border-radius: 4px; }
.mega-cats::-webkit-scrollbar-thumb:hover, .mega-panels::-webkit-scrollbar-thumb:hover { background: #444; }
.mega-panel { display: none; }
.mega-panel.active { display: block; animation: mega-fade .2s ease; }
@keyframes mega-fade { from { opacity: 0; transform: translateX(6px); } to { opacity: 1; transform: none; } }
.mega-panel-title { display: inline-block; font-size: 17px; font-weight: 700; text-transform: uppercase; color: #fff; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--gold); }
.mega-panel-title:hover { color: var(--gold); }
.mega-panel-sub { list-style: none; margin: 0 0 22px; padding: 0; columns: 3; column-gap: 24px; }
.mega-panel-sub li { break-inside: avoid; margin-bottom: 4px; }
.mega-panel-sub a { display: flex; align-items: center; gap: 11px; color: #b3b3b3; font-size: 13.5px; font-weight: 500; transition: .15s ease; padding: 6px 10px; border-radius: 8px; }
.mega-panel-sub a:hover { color: var(--gold); background: rgba(248, 175, 1, .09); }
.mega-sub-thumb { width: 40px; height: 40px; border-radius: 6px; overflow: hidden; background: #fff; flex: 0 0 auto; }
.mega-sub-thumb img { width: 100%; height: 100%; object-fit: cover; }
.mega-panel-empty { color: #8a8a8a; margin: 0 0 22px; }
.mega-panel-cta { display: inline-block; color: var(--gold); font-size: 13.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .3px; }
.mega-panel-cta:hover { color: var(--gold-2); }

.header-help { display: flex; align-items: center; gap: 13px; color: #fff; margin-left: 6px; }
.help-icon { position: relative; width: 46px; height: 46px; border-radius: 50%; background: var(--gold); color: #ffffff; display: grid; place-items: center; flex: 0 0 auto; }
.help-icon svg { width: 20px; height: 20px; position: relative; z-index: 2; animation: help-shake 2.2s ease-in-out infinite; transform-origin: center; }
.help-icon::before, .help-icon::after { content: ''; position: absolute; inset: 0; border-radius: 50%; border: 2px solid var(--gold); animation: help-pulse 2s ease-out infinite; }
.help-icon::after { animation-delay: 1s; }
@keyframes help-pulse { 0% { transform: scale(1); opacity: .65; } 100% { transform: scale(1.4); opacity: 0; } }
@keyframes help-shake { 0%, 60%, 100% { transform: rotate(0); } 5%, 15%, 25% { transform: rotate(-12deg); } 10%, 20%, 30% { transform: rotate(12deg); } }
.help-text { display: flex; flex-direction: column; line-height: 1.3; }
.help-text small { color: #b7b7b7; font-size: 14px; font-weight: 500; letter-spacing: .2px; }
.help-text strong { color: #fff; font-size: 18px; white-space: nowrap; font-weight: 700; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; margin-left: auto; }
.nav-toggle span { width: 26px; height: 2px; background: #fff; border-radius: 2px; }

/* ---- Hero ---- */
.hero { position: relative; overflow: hidden; color: #fff; min-height: calc(100vh - 142px); display: flex; align-items: center; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(0,0,0,.85) 0%, rgba(0,0,0,.6) 50%, rgba(0,0,0,.35) 100%); }
.hero .container { position: relative; z-index: 2; width: 100%; max-width: none; padding: 0 48px; }
.hero-inner { padding: 90px 0; max-width: 640px; }
.eyebrow { font-family: 'Montserrat', sans-serif; text-transform: uppercase; letter-spacing: 2px; font-size: 14px; color: var(--gold); font-weight: 600; margin: 0 0 14px; }
.hero .eyebrow { color: #fff; font-size: 16px; font-weight: 600; letter-spacing: 1px; margin-bottom: 20px; }
.hero h1 { color: #fff; font-family: var(--font-accent); font-size: clamp(40px, 5.2vw, 70px); font-weight: 600; letter-spacing: -0.7px; margin-bottom: 20px; line-height: 1.02; }
.hero .lead { font-size: 17px; color: #d7d7d7; margin-bottom: 32px; max-width: 560px; }

/* ---- Sections ---- */
.section { padding: 80px 0; }
.section-dark { background: var(--surface); }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 32px; gap: 20px; }
.section-head h2 { font-size: 32px; }
.section-head h2.on-dark, .section-dark h2 { color: #fff; }
.section-link { font-weight: 700; font-family: var(--font-accent); white-space: nowrap; text-transform: uppercase; font-size: 13px; letter-spacing: .5px; }
.section-intro { color: var(--muted); max-width: none; margin: -12px 0 36px; }

/* ---- Welcome ---- */
.welcome { background: var(--bg); }
.welcome-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; }
.welcome-media img { border-radius: 8px; width: 100%; }
.welcome-copy h2 { font-family: var(--font-accent); font-size: 40px; font-weight: 600; color: var(--gold); letter-spacing: -0.4px; line-height: 1.2; margin-bottom: 8px; }
.welcome-copy h3 { font-family: var(--font-accent); color: #fff; font-size: 20px; font-weight: 600; letter-spacing: -0.2px; line-height: 1.3; margin-bottom: 20px; }
.welcome-copy p { color: #999; margin-bottom: 16px; line-height: 1.75; text-align: justify; }
.welcome-copy strong { color: #fff; }

/* ---- Stats band (gold) ---- */
.stats-band { background: var(--gold); padding: 54px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.stat { display: flex; align-items: center; gap: 22px; color: #fff; background: rgba(0, 0, 0, .10); border-radius: 16px; padding: 24px 26px; transition: background .2s ease, transform .2s ease; }
.stat:hover { background: rgba(0, 0, 0, .16); transform: translateY(-3px); }
.stat-ic { flex: 0 0 auto; color: #fff; display: inline-flex; background: rgba(255, 255, 255, .2); border-radius: 10px; padding: 12px; }
.stat-ic svg { width: 52px; height: 52px; }
.stat-copy { line-height: 1.05; }
.stat-copy small { display: block; font-weight: 600; text-transform: uppercase; letter-spacing: .6px; font-size: 14px; color: #fff; margin-bottom: 6px; }
.stat-num { display: block; font-family: var(--font-accent); font-size: 56px; font-weight: 700; line-height: 1; color: #fff; }
.stat-num::after { content: '+'; }

/* ---- Categories ---- */
.categories { background: var(--bg); }
.cat-head { align-items: center; }
.cat-head > div:first-child { flex: 1; min-width: 0; }
.cat-head .btn { flex: 0 0 auto; }
.cat-heading { font-family: var(--font-accent); font-size: clamp(30px, 3.4vw, 48px); font-weight: 600; line-height: 1.15; letter-spacing: -0.5px; margin: 0; }
/* Categories carousel */
.cat-carousel { position: relative; }
.cat-track { display: flex; gap: 26px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding-bottom: 4px; scrollbar-width: none; }
.cat-track::-webkit-scrollbar { display: none; }
.cat-card { flex: 0 0 calc((100% - 3 * 26px) / 4); scroll-snap-align: start; background: #fff; border-radius: 10px; overflow: hidden; transition: transform .2s ease, box-shadow .2s ease; }
.cat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.cat-card-img { display: block; aspect-ratio: 4/3; overflow: hidden; }
.cat-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.cat-card:hover .cat-card-img img { transform: scale(1.06); }
.cat-card-body { padding: 18px 16px 20px; text-align: center; background: #fff; }
.cat-card-body h3 { margin: 0 0 14px; font-size: 16px; font-weight: 700; line-height: 1.3; }
.cat-card-body h3 a { color: #1a1a1a; }
.cat-card-body h3 a:hover { color: var(--gold-2); }
.cat-pill { display: inline-flex; align-items: center; gap: 8px; background: #101010; color: #fff; font-size: 14px; font-weight: 500; padding: 10px 22px; border-radius: 30px; transition: background .2s ease, color .2s ease; }
.cat-pill:hover { background: var(--gold); color: #171717; }
.cat-pill .arw { transition: transform .2s ease; }
.cat-pill:hover .arw { transform: translateX(4px); }
.cat-nav { position: absolute; top: 40%; transform: translateY(-50%); width: 48px; height: 48px; border-radius: 50%; border: 0; background: #fff; color: #171717; font-size: 26px; line-height: 1; cursor: pointer; display: grid; place-items: center; box-shadow: var(--shadow); z-index: 3; transition: background .18s ease, color .18s ease; }
.cat-nav:hover { background: var(--gold); color: #171717; }
.cat-prev { left: -18px; }
.cat-next { right: -18px; }

/* ---- Scrolling keywords marquee ---- */
.marquee-band { position: relative; overflow: hidden; background: #0b0b0b; height: 200px; display: flex; align-items: center; }
.m-track { display: inline-flex; align-items: center; white-space: nowrap; will-change: transform; }
.m-track span { font-family: var(--font-accent); font-weight: 700; font-size: 36px; text-transform: uppercase; letter-spacing: 1px; padding: 0 6px; }
.m-star { font-style: normal; font-size: 22px; padding: 0 20px; }
@keyframes m-left { from { transform: translateX(0); } to { transform: translateX(-33.334%); } }
@keyframes m-right { from { transform: translateX(-33.334%); } to { transform: translateX(0); } }
.m-track { animation: m-left 34s linear infinite; }
.m-track-rev { animation: m-right 46s linear infinite; }
/* diagonal dark band behind */
.m-diag { position: absolute; left: 50%; top: 50%; width: 160%; transform: translate(-50%, -50%) rotate(-7deg); background: #151515; padding: 14px 0; overflow: hidden; z-index: 1; }
.m-diag .m-track span, .m-diag .m-star { color: #2b2b2b; }
/* gold horizontal band on top */
.m-gold { position: relative; z-index: 3; width: 100%; background: var(--gold); padding: 12px 0; overflow: hidden; }
.m-gold .m-track span { color: rgba(255, 255, 255, .95); text-shadow: 0 1px 2px rgba(0, 0, 0, .12); }
.m-gold .m-star { color: #fff; }

/* ---- Our Brands (auto-scrolling white logo cards) ---- */
.brands { background: var(--bg); overflow: hidden; }
.brands-head { text-align: center; margin-bottom: 44px; }
.brands-head .eyebrow { display: block; margin-bottom: 8px; }
.brands-head .cat-heading { margin: 0; }
/* Continuous logo strip. The logo PNGs are artwork made for LIGHT backgrounds
   (12 of 14 have an opaque white bg baked in), so each sits on a white card —
   the baked-in white merges into the card and reads as one clean tile. */
.brands-viewport {
    position: relative;
    overflow: hidden;
    padding: 6px 0 18px;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.brands-track {
    display: flex;
    align-items: center;
    gap: 24px;
    width: max-content;
    animation: brands-scroll 60s linear infinite;
}
.brands-viewport:hover .brands-track { animation-play-state: paused; }
@keyframes brands-scroll { to { transform: translateX(-33.3334%); } }
.brand-item {
    flex: 0 0 218px;
    height: 126px;
    background: #fff;
    border-radius: 12px;
    display: grid;
    place-items: center;
    padding: 22px 26px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .35);
    transition: transform .3s ease, box-shadow .3s ease;
}
.brand-item img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    object-fit: contain;
    filter: saturate(.9);
    transition: filter .3s ease;
}
.brand-item:hover { transform: translateY(-6px); box-shadow: 0 14px 30px rgba(0, 0, 0, .5); }
.brand-item:hover img { filter: saturate(1.05); }
@media (prefers-reduced-motion: reduce) { .brands-track { animation: none; } }

/* ---- Industries We Serve ---- */
.ind-head { margin-bottom: 34px; }
.ind-head .cat-heading { margin: 0; }
.ind-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 1024px) { .ind-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px)  { .ind-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (max-width: 360px)  { .ind-grid { grid-template-columns: 1fr; } }
.ind-card {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 10px;
    isolation: isolate;
}
.ind-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s cubic-bezier(.645, .045, .355, 1);
}
/* scrim keeps the label readable over any photo */
.ind-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .88) 0%, rgba(0, 0, 0, .45) 34%, rgba(0, 0, 0, 0) 62%);
    transition: background .35s ease;
}
.ind-title {
    position: absolute;
    left: 20px;
    right: 16px;
    bottom: 16px;
    margin: 0;
    font-family: var(--font-accent);
    font-size: 19px;
    font-weight: 600;
    color: #fff;
    line-height: 1.25;
    transition: color .3s ease, transform .35s ease;
}
/* gold rule that grows in under the label on hover */
.ind-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -9px;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width .4s cubic-bezier(.645, .045, .355, 1);
}
.ind-card:hover .ind-img { transform: scale(1.08); }
.ind-card:hover .ind-scrim { background: linear-gradient(to top, rgba(0, 0, 0, .92) 0%, rgba(0, 0, 0, .55) 45%, rgba(0, 0, 0, .12) 100%); }
.ind-card:hover .ind-title { color: var(--gold); transform: translateY(-6px); }
.ind-card:hover .ind-title::after { width: 40px; }

/* ---- Why Choose ---- */
/* recurring gold divider motif under section headings — matches the original
   theme's .px-title--divider1: one long dash then two tapering stubs. */
.gold-divider {
    display: block;
    position: relative;
    width: 88px;
    height: 4px;
    margin: 18px 0 22px;
}
.gold-divider::before,
.gold-divider::after,
.gold-divider i {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    height: 4px;
    border-radius: 4px;
    background-color: var(--gold);
}
.gold-divider::before { width: 70px; left: 0; }
.gold-divider::after { width: 8px; left: 73px; }
.gold-divider i { width: 4px; right: 0; }
.gold-divider.center { margin-left: auto; margin-right: auto; }
.why-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 54px; align-items: center; }
.why-media img { width: 100%; border-radius: 10px; }
.why-heading {
    font-family: var(--font-accent);
    font-size: clamp(28px, 3.2vw, 44px);
    font-weight: 600;
    color: var(--white);
    letter-spacing: -.4px;
    margin: 0;
}
.why-copy p { color: var(--muted); line-height: 1.75; text-align: justify; margin: 0; }
.why-list {
    list-style: none;
    padding: 0;
    margin: 28px 0 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 30px;
}
.why-list li { position: relative; padding-left: 27px; color: var(--text); font-size: 15px; font-weight: 500; }
.why-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    top: -1px;
    color: var(--gold);
    font-weight: 700;
    font-size: 15px;
}
/* white tagline band */
.why-tagline { position: relative; background: var(--surface, #161616); padding: 60px 20px; overflow: hidden; border-top: 1px solid rgba(248, 175, 1, .14); border-bottom: 1px solid rgba(248, 175, 1, .14); }
/* faint gold glow behind the badge */
.why-tagline::before { content: ''; position: absolute; top: 50%; left: 50%; width: 320px; height: 320px; transform: translate(-50%, -50%); background: radial-gradient(circle, rgba(248, 175, 1, .10), transparent 65%); pointer-events: none; }
.tagline-inner { position: relative; display: flex; align-items: center; justify-content: center; gap: 34px; flex-wrap: wrap; max-width: 1040px; margin: 0 auto; }
.tagline-quote { font-family: var(--font-accent); font-size: clamp(17px, 1.9vw, 25px); font-weight: 600; color: #d6d6db; margin: 0; flex: 1 1 0; letter-spacing: -.2px; line-height: 1.35; }
.tagline-quote:first-of-type { text-align: right; }
.tagline-quote:last-of-type { text-align: left; }
.tq-hl { color: var(--gold); white-space: nowrap; }
.tagline-badge { position: relative; flex: 0 0 auto; width: 72px; height: 72px; display: grid; place-items: center; border-radius: 50%; color: var(--gold); background: radial-gradient(circle at 50% 32%, rgba(248, 175, 1, .22), rgba(248, 175, 1, .05)); border: 1px solid rgba(248, 175, 1, .38); box-shadow: 0 0 34px rgba(248, 175, 1, .16), inset 0 0 0 1px rgba(255, 255, 255, .04); }
.tagline-badge svg { position: relative; z-index: 1; width: 32px; height: 32px; }
/* rotating gold light sweep around the ring */
.tagline-badge::before { content: ''; position: absolute; inset: -2px; border-radius: 50%; background: conic-gradient(from 0deg, transparent 0deg, rgba(248, 175, 1, .55) 40deg, transparent 90deg); animation: taglineSpin 5.5s linear infinite; -webkit-mask: radial-gradient(circle, transparent 63%, #000 64%); mask: radial-gradient(circle, transparent 63%, #000 64%); }
/* radar pulse ring */
.tagline-badge::after { content: ''; position: absolute; inset: 0; border-radius: 50%; border: 1px solid rgba(248, 175, 1, .5); animation: taglinePulse 2.8s ease-out infinite; }
@keyframes taglineSpin { to { transform: rotate(360deg); } }
@keyframes taglinePulse { 0% { transform: scale(1); opacity: .55; } 75% { transform: scale(1.6); opacity: 0; } 100% { opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .tagline-badge::before, .tagline-badge::after { animation: none; } .tagline-badge::before { opacity: .4; } }
@media (max-width: 700px) {
    .why-tagline { padding: 46px 22px; }
    .tagline-inner { flex-direction: column; gap: 16px; }
    .tagline-quote, .tagline-quote:first-of-type, .tagline-quote:last-of-type { text-align: center; flex: none; font-size: 17px; }
    .tagline-badge { order: -1; }
}
@media (max-width: 860px) {
    .why-grid { grid-template-columns: 1fr; gap: 30px; }
    .why-list { grid-template-columns: 1fr; }
}

/* ---- Clients Testimonial ---- */
.testi-grid { display: grid; grid-template-columns: 400px 1fr; gap: 56px; align-items: center; }
.testi-qr { display: block; border-radius: 8px; overflow: hidden; }
.testi-qr img { width: 100%; display: block; transition: transform .4s ease; }
.testi-qr:hover img { transform: scale(1.03); }
.testi-main .eyebrow { margin: 0 0 10px; }
.testi-main .cat-heading { margin: 0; }
.testi-carousel { position: relative; margin-top: 30px; padding-right: 44px; }
/* all slides share one grid cell so the card height stays put (= tallest
   review) instead of jumping on every autoplay tick */
.testi-slides {
    display: grid;
    overflow: hidden; /* keeps sliding cards from spilling over the QR image */
    cursor: grab;
    touch-action: pan-y; /* keep vertical page scroll, we handle horizontal */
}
.testi-slides.dragging { cursor: grabbing; user-select: none; }
.testi-slides.dragging .testi-slide.active { transition: none; }
.testi-slide {
    grid-area: 1 / 1;
    background: var(--surface);
    padding: 46px 56px 50px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(0);
    transition: opacity .5s ease, transform .55s cubic-bezier(.645, .045, .355, 1), visibility .55s;
}
/* incoming slide is parked off-axis with no transition, then released into place */
.testi-slide.from-right { transform: translateX(80px); transition: none; }
.testi-slide.from-left { transform: translateX(-80px); transition: none; }
.testi-slide.active { opacity: 1; visibility: visible; transform: translateX(0); }
/* outgoing slide keeps rendering while it travels the opposite way */
.testi-slide.leaving { opacity: 0; visibility: visible; }
.testi-slide.leaving.to-left { transform: translateX(-80px); }
.testi-slide.leaving.to-right { transform: translateX(80px); }
@media (prefers-reduced-motion: reduce) {
    .testi-slide, .testi-slide.leaving { transition: opacity .2s ease; transform: none !important; }
}
.testi-stars { display: block; color: var(--gold); font-size: 17px; letter-spacing: 3px; margin-bottom: 20px; }
.testi-text {
    font-family: var(--font-accent);
    font-size: 18px;
    line-height: 1.6;
    letter-spacing: -.012em;
    color: var(--white);
    margin: 0 0 30px;
}
.testi-name { font-size: 20px; font-weight: 700; color: var(--white); margin: 0; }
/* vertical bullet rail on the right, like the original */
.testi-dots {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.testi-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    background: var(--gold);
    opacity: .45;
    cursor: pointer;
    transition: opacity .25s ease, transform .25s ease;
}
.testi-dot:hover { opacity: .8; }
.testi-dot.active { opacity: 1; transform: scale(1.5); }
@media (max-width: 860px) {
    .testi-grid { grid-template-columns: 1fr; gap: 30px; }
    .testi-slide { padding: 32px 26px 36px; }
    .testi-carousel { padding-right: 26px; }
}
@media (max-width: 600px) {
    /* dots below the card (horizontal + centered) instead of the side rail */
    .testi-carousel { padding-right: 0; }
    .testi-dots { position: static; top: auto; right: auto; transform: none; flex-direction: row; justify-content: center; gap: 10px; margin: 18px 0 0; }
    /* smaller testimonial type on phones */
    .testi-slide { padding: 26px 20px 24px; }
    .testi-stars { font-size: 15px; margin-bottom: 14px; }
    .testi-text { font-size: 15px; line-height: 1.65; margin-bottom: 20px; }
    .testi-name { font-size: 16px; }
}

/* ---- Product grid + card (white cards for contrast) ---- */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.product-card { background: #fff; border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: .18s ease; }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.product-card-media { aspect-ratio: 1; background: #fff; display: grid; place-items: center; padding: 16px; }
.product-card-media img { max-height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.product-card-body { padding: 15px 16px 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; border-top: 1px solid #eee; }
.product-card-title { font-size: 15px; font-weight: 700; margin: 0; line-height: 1.35; }
.product-card-title a { color: #1a1a1a; }
.product-card-title a:hover { color: var(--gold-2); }
.product-card-desc { font-size: 13px; color: #777; margin: 0; }
.product-card .btn { margin-top: auto; align-self: flex-start; }

/* ---- CTA band ---- */
.cta-band { background: var(--gold); padding: 54px 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cta-band h2 { color: #171717; font-size: 28px; margin-bottom: 6px; }
.cta-band p { margin: 0; color: #3a2f00; font-weight: 500; }

/* ---- Breadcrumb ---- */
.breadcrumb { background: #111; border-bottom: 1px solid var(--line); font-size: 13px; }
.breadcrumb .container { padding: 16px 20px; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: #444; margin: 0 8px; }
.breadcrumb .current { color: #fff; font-weight: 600; }

/* ---- Download brochures ---- */
.dl-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.dl-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 22px 22px 26px;
    text-decoration: none;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.dl-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(0, 0, 0, .5); border-color: rgba(248, 175, 1, .55); }
/* white plate keeps dark-on-transparent brand logos legible on the dark card */
.dl-logo { width: 100%; height: 150px; display: grid; place-items: center; background: #fff; border-radius: 12px; padding: 18px; margin-bottom: 20px; overflow: hidden; }
.dl-logo img { max-height: 110px; max-width: 80%; width: auto; height: auto; object-fit: contain; }
.dl-name { font-family: var(--font-accent); font-size: 19px; font-weight: 700; color: #fff; margin-bottom: 18px; transition: color .25s ease; }
.dl-card:hover .dl-name { color: var(--gold); }
.dl-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: auto;
    padding: 11px 24px;
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    border-radius: 10px;
    font-family: var(--font);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .4px;
    transition: background .25s ease, color .25s ease;
}
.dl-btn svg { width: 17px; height: 17px; }
.dl-card:hover .dl-btn { background: var(--gold); color: #171717; }
@media (max-width: 860px) { .dl-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .dl-grid { grid-template-columns: 1fr; gap: 18px; } }

/* ---- Contact page ---- */
.contact-info-row { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); margin-bottom: 46px; }
.ci-card { border-right: 1px solid var(--line); }
.ci-card:last-child { border-right: 0; }
.ci-card h3 { display: flex; align-items: center; gap: 12px; margin: 0; padding: 24px 30px; color: var(--gold); font-family: var(--font); font-size: 20px; font-weight: 700; border-bottom: 1px solid var(--line); }
.ci-label { margin: 24px 30px 10px; color: var(--muted); font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; }
.ci-value { display: flex; align-items: flex-start; gap: 12px; margin: 0 30px 28px; color: #fff; font-family: var(--font-accent); font-size: 18px; font-weight: 600; }
.ci-value:hover { color: var(--gold); }
.ci-value--addr { font-size: 15px; line-height: 1.55; font-weight: 500; }
.ci-ic { color: var(--gold); flex: 0 0 auto; margin-top: 2px; }
.ci-ic svg { width: 20px; height: 20px; }
.contact-two { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: stretch; }
.contact-map { min-height: 440px; background: var(--surface); }
.contact-map iframe { width: 100%; height: 100%; min-height: 440px; border: 0; display: block; filter: grayscale(.25) contrast(1.05); }
.contact-panel .eyebrow { margin: 0 0 8px; }
.contact-panel-h { font-family: var(--font-accent); font-size: 30px; font-weight: 600; color: #fff; margin: 0 0 22px; }
@media (max-width: 860px) {
    .contact-info-row { grid-template-columns: 1fr; }
    .ci-card { border-right: 0; border-bottom: 1px solid var(--line); }
    .ci-card:last-child { border-bottom: 0; }
    .contact-two { grid-template-columns: 1fr; }
    .contact-map, .contact-map iframe { min-height: 320px; }
}

/* ---- Image lightbox (certificates etc.) ---- */
.lb-trigger { cursor: zoom-in; }
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: rgba(6, 6, 6, .96);
}
.lightbox.open { display: flex; animation: lb-fade .2s ease both; }
@keyframes lb-fade { from { opacity: 0; } to { opacity: 1; } }
.lightbox-img { max-width: 92vw; max-height: 90vh; width: auto; height: auto; box-shadow: 0 24px 70px rgba(0, 0, 0, .6); cursor: zoom-out; }
.lightbox-close {
    position: absolute;
    top: 24px;
    right: 28px;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    background: var(--gold);
    color: #171717;
    border: 0;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    transition: background .2s ease, transform .2s ease;
}
.lightbox-close:hover { background: #fff; transform: rotate(90deg); }
@media (prefers-reduced-motion: reduce) { .lightbox.open { animation: none; } .lightbox-close:hover { transform: none; } }

/* ---- About: detail columns + certificate ---- */
.about-detail-sec { padding-top: 0; }
.about-detail { display: grid; grid-template-columns: 1.35fr 1fr; gap: 54px; align-items: start; }
.about-h { font-family: var(--font-accent); font-size: clamp(22px, 2.4vw, 30px); font-weight: 600; margin: 0 0 12px; }
.about-detail-copy > .about-h:not(:first-child) { margin-top: 30px; }
.about-detail-copy p { color: var(--muted); line-height: 1.8; text-align: justify; margin: 0; }
.about-cert { position: sticky; top: 100px; background: #fff; padding: 14px; }
.about-cert img { width: 100%; height: auto; display: block; }
@media (max-width: 860px) {
    .about-detail { grid-template-columns: 1fr; gap: 30px; }
    .about-cert { position: static; max-width: 460px; }
}

/* ---- Inner-page hero banner (title + breadcrumb over a dark image) ---- */
.page-hero {
    position: relative;
    background-color: #0d0d0d;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 92px 0 96px;
    text-align: center;
}
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,8,8,.78), rgba(8,8,8,.9)); }
.page-hero > .container { position: relative; }
.page-hero-title {
    font-family: var(--font-accent);
    font-size: clamp(38px, 5vw, 64px);
    font-weight: 600;
    color: #fff;
    letter-spacing: -.5px;
    margin: 0 0 14px;
}
.page-crumbs { display: inline-flex; align-items: center; flex-wrap: wrap; justify-content: center; gap: 4px; font-size: 15px; font-weight: 600; text-transform: uppercase; letter-spacing: .6px; }
.page-crumbs a { color: #fff; }
.page-crumbs a:hover { color: var(--gold); }
.page-crumbs .sep { color: var(--gold); margin: 0 8px; }
.page-crumbs .current { color: var(--gold); }

/* ---- Products landing: category showcase tiles ---- */
.pcat-heading { font-family: var(--font-accent); font-size: clamp(28px, 3.4vw, 44px); font-weight: 600; margin: 0 0 34px; }
.pcat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.pcat-tile {
    position: relative; display: flex; flex-direction: column; overflow: hidden;
    background: var(--surface-2, #1e1e1e);
    border: 1px solid #262626; border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .25);
    transition: transform .35s cubic-bezier(.645,.045,.355,1), box-shadow .35s ease, border-color .3s ease;
}
.pcat-tile:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(0, 0, 0, .45); border-color: rgba(248, 175, 1, .55); }
.pcat-img { position: relative; display: block; aspect-ratio: 4 / 3; overflow: hidden; background: #fff; }
.pcat-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.645,.045,.355,1); }
.pcat-tile:hover .pcat-img img { transform: scale(1.07); }
/* hover overlay + "View" chip on the image */
.pcat-overlay {
    position: absolute; inset: 0; display: grid; place-items: center;
    background: linear-gradient(180deg, rgba(13,13,13,.05), rgba(13,13,13,.55));
    opacity: 0; transition: opacity .35s ease;
}
.pcat-tile:hover .pcat-overlay { opacity: 1; }
.pcat-view {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--gold); color: #15181f;
    font-family: var(--font-accent); font-size: 14px; font-weight: 700;
    letter-spacing: .04em; text-transform: uppercase;
    padding: 10px 18px; border-radius: 30px;
    transform: translateY(10px); transition: transform .35s cubic-bezier(.645,.045,.355,1);
    box-shadow: 0 6px 18px rgba(0,0,0,.35);
}
.pcat-view::after { content: '\2192'; font-size: 15px; }
.pcat-tile:hover .pcat-view { transform: translateY(0); }
/* label is now a clean footer below the image (no longer covers the photo) */
.pcat-label {
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    background: #15181f; color: #fff;
    font-family: var(--font-accent);
    font-size: 17px; font-weight: 600; line-height: 1.3;
    padding: 15px 18px; margin-top: auto;
    transition: background .3s ease, color .3s ease;
}
.pcat-label-main { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.pcat-count {
    font-family: var(--font-body, sans-serif);
    font-size: 12px; font-weight: 600; letter-spacing: .03em;
    color: var(--gold); text-transform: uppercase; opacity: .9;
    transition: color .3s ease;
}
.pcat-tile:hover .pcat-label .pcat-count { color: rgba(21,24,31,.7); }
.pcat-label::after {
    content: '\2192'; flex: 0 0 auto;
    display: grid; place-items: center;
    width: 26px; height: 26px; border-radius: 50%;
    background: var(--gold); color: #15181f;
    font-size: 15px; font-weight: 700;
    transition: transform .3s ease, background .3s ease, color .3s ease;
}
.pcat-tile:hover .pcat-label { background: var(--gold); color: #15181f; }
.pcat-tile:hover .pcat-label::after { background: #15181f; color: var(--gold); transform: translateX(3px); }
@media (max-width: 900px) { .pcat-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (max-width: 560px) { .pcat-grid { grid-template-columns: 1fr; } }

/* category listing: intro + product tiles */
.cat-listing-head { margin-bottom: 34px; }
.cat-listing-head .pcat-heading { margin: 0 0 16px; }
.category-intro { color: var(--muted); line-height: 1.8; text-align: justify; }
.category-intro b, .category-intro strong { color: var(--text); }
.category-intro p { margin: 0 0 12px; }
.subcat-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.subcat-chips .chip { background: var(--surface); border: 1px solid var(--line); color: var(--text); padding: 8px 16px; border-radius: 30px; font-size: 13.5px; font-weight: 600; }
.subcat-chips .chip:hover { background: var(--gold); border-color: var(--gold); color: #171717; }
/* product tiles carry longer names — smaller type, keep the arrow aligned to the top line */
.pcat-tile--product .pcat-label { font-size: 15px; line-height: 1.35; align-items: flex-start; }
.pcat-tile--product .pcat-label::after { margin-top: 1px; }
/* Related products — drag/autoplay slider (reuses .blog-dot + the blog-carousel JS) */
.related-section { margin-top: 66px; padding-top: 58px; border-top: 1px solid #1f232c; }
.related-head { text-align: center; margin-bottom: 36px; }
.related-head .eyebrow { margin: 0 0 8px; }
.related-head .cat-heading { margin: 0 0 14px; }
.related-carousel { position: relative; }
.related-nav { position: absolute; top: calc(50% - 34px); transform: translateY(-50%); width: 48px; height: 48px; border-radius: 50%; border: 1px solid #2c313c; background: #15181f; color: var(--gold); cursor: pointer; display: grid; place-items: center; z-index: 4; box-shadow: 0 8px 22px rgba(0, 0, 0, .5); transition: background .2s ease, color .2s ease, border-color .2s ease, opacity .2s ease; }
.related-nav.prev { left: -18px; }
.related-nav.next { right: -18px; }
.related-nav:hover { background: var(--gold); color: #15181f; border-color: var(--gold); }
.related-nav svg { display: block; }
@media (max-width: 560px) { .related-nav { display: none; } }
.related-track { display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; scrollbar-width: none; -ms-overflow-style: none; cursor: grab; touch-action: pan-y; padding: 4px; margin: -4px; }
.related-track::-webkit-scrollbar { display: none; }
.related-track.dragging { cursor: grabbing; scroll-behavior: auto; scroll-snap-type: none; user-select: none; }
.related-track > .pcat-tile { flex: 0 0 calc((100% - 3 * 24px) / 4); scroll-snap-align: start; }
.related-dots { display: flex; justify-content: center; gap: 9px; margin-top: 28px; }
@media (max-width: 900px) { .related-track > .pcat-tile { flex-basis: calc((100% - 24px) / 2); } }
@media (max-width: 560px) { .related-track > .pcat-tile { flex-basis: 82%; } }

/* ---- Catalog layout ---- */
.catalog-layout { display: grid; grid-template-columns: 270px 1fr; gap: 34px; align-items: start; }
.catalog-sidebar { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; position: sticky; top: 100px; }
.catalog-sidebar h3 { color: #fff; font-size: 16px; margin-bottom: 14px; }
.cat-list { list-style: none; margin: 0; padding: 0; max-height: 68vh; overflow: auto; }
.cat-list li a { display: block; padding: 8px 12px; border-radius: 6px; color: var(--text); font-size: 14px; }
.cat-list li a:hover { background: #1f1f1f; color: var(--gold); }
.cat-list li.active a { background: var(--gold); color: #171717; font-weight: 600; }
.catalog-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 24px; gap: 12px; flex-wrap: wrap; }
.catalog-head h1 { color: #fff; font-size: 28px; margin: 0; }
.result-count { color: var(--muted); font-size: 14px; }
.category-intro { color: var(--muted); margin-bottom: 22px; }
.subcat-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.chip { background: var(--surface); border: 1px solid var(--line); border-radius: 20px; padding: 7px 16px; font-size: 13px; color: var(--text); font-weight: 500; }
.chip:hover { background: var(--gold); color: #171717; border-color: var(--gold); }
.empty { color: var(--muted); padding: 30px 0; }

/* ---- Pagination ---- */
.pagination { display: flex; gap: 6px; justify-content: center; margin-top: 44px; flex-wrap: wrap; }
.pagination a, .pagination span { min-width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 8px; font-weight: 700; font-size: 14px; padding: 0 10px; color: #fff; background: var(--surface); }
.pagination a:hover { border-color: var(--gold); color: var(--gold); }
.pagination .current { background: var(--gold); color: #171717; border-color: var(--gold); }
.pagination .dots { border: 0; background: none; }

/* ---- Product detail ---- */
.product-detail { display: grid; grid-template-columns: 2fr 3fr; gap: 40px; align-items: start; }
/* Tablets (up to 1024): the 2-col image+info split leaves a big empty void under the
   short image next to the tall text — stack it, with the image at a sensible size. */
@media (max-width: 1024px) {
    .product-detail { grid-template-columns: 1fr; gap: 28px; }
    .product-gallery { position: static; top: auto; max-width: 460px; width: 100%; justify-self: center; }
    .product-detail .product-info { padding: 24px 20px; }   /* stacked panel is full-width now → trim the big desktop padding (specificity beats the base rule that follows it in source) */
}
@media (max-width: 560px) {
    .product-gallery { max-width: none; }
    /* tighten the info-panel padding so the copy gets more width (fewer justify gaps) */
    .product-detail .product-info { padding: 18px 13px; border-radius: 16px; }
    .product-short { line-height: 1.7; font-size: 14.5px; }
    .product-tabs .ptab-panels { padding: 18px 14px; }
}
/* only the CONTENT side is a premium panel; the image floats on the page bg */
.product-info {
    background: radial-gradient(130% 120% at 0% 0%, #1b1e26 0%, #121419 55%, #0f1115 100%);
    border: 1px solid #23262f; border-radius: 22px;
    padding: 34px 36px; box-shadow: 0 20px 50px rgba(0, 0, 0, .3);
}
.product-gallery { position: sticky; top: 24px; align-self: start; }
.gallery-main {
    position: relative; border-radius: 18px; aspect-ratio: 1;
    display: grid; place-items: center; padding: 30px;
    background: radial-gradient(120% 120% at 50% 22%, #ffffff 0%, #f2f4f7 78%, #e7eaef 100%);
    box-shadow: 0 14px 40px rgba(0, 0, 0, .45), inset 0 0 0 1px rgba(255, 255, 255, .6);
}
.gallery-main::after { /* subtle gold glow ring */
    content: ''; position: absolute; inset: -1px; border-radius: 18px; pointer-events: none;
    box-shadow: 0 0 0 1px rgba(248, 175, 1, .18), 0 0 34px rgba(248, 175, 1, .06);
}
.gallery-zoom { position: absolute; top: 12px; right: 12px; width: 34px; height: 34px; border-radius: 50%; background: rgba(21,24,31,.9); color: var(--gold); display: grid; place-items: center; pointer-events: none; opacity: 0; transform: scale(.85); transition: opacity .25s ease, transform .25s ease; }
.gallery-main:hover .gallery-zoom { opacity: 1; transform: scale(1); }
.gallery-main img { max-height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.gallery-thumbs { display: flex; gap: 10px; margin-top: 14px; flex-wrap: wrap; }
.gallery-thumb { width: 72px; height: 72px; border: 1px solid var(--line); border-radius: 8px; padding: 6px; background: #fff; cursor: pointer; }
.gallery-thumb.active { border-color: var(--gold); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: contain; }
.product-cats { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; margin-bottom: 12px; }
.product-cats a { font-family: var(--font-accent); font-size: 12px; text-transform: uppercase; letter-spacing: 1px; font-weight: 700; color: var(--gold); }
.pm-brand { background: var(--surface); border: 1px solid var(--line); color: #fff; padding: 4px 12px; border-radius: 20px; font-family: var(--font-accent); font-size: 11px; text-transform: uppercase; letter-spacing: 1px; font-weight: 700; }
.product-info h1, .product-title { color: #fff; font-family: var(--font-accent); font-size: 30px; font-weight: 600; margin: 0 0 12px; }
.product-sku { color: var(--muted); font-size: 13px; margin: 0 0 14px; }
/* meta row: SKU + stock */
.product-meta-row { display: flex; flex-wrap: wrap; gap: 10px 20px; margin: 0 0 22px; font-size: 13px; color: var(--muted); }
.pm-item b { color: var(--text); }
.pm-stock { display: inline-flex; align-items: center; }
.pm-stock .dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: #35c47a; margin-right: 7px; box-shadow: 0 0 0 3px rgba(53,196,122,.18); }
/* key features */
.product-features { margin-bottom: 26px; }
.pf-heading { color: #fff; font-family: var(--font-accent); font-size: 17px; font-weight: 600; margin: 0 0 14px; }
/* uniform spacing for product copy regardless of source markup (<br>, <p>, <ul>) */
.product-short { color: var(--muted); margin: 0 0 18px; font-size: 15px; line-height: 1.85; }
.product-short:last-child { margin-bottom: 0; }
.product-short p { margin: 0 0 12px; }
.product-short p:last-child { margin-bottom: 0; }
.product-short h1, .product-short h2, .product-short h3, .product-short h4, .product-short h5 { color: #fff; font-family: var(--font-accent); font-size: 16px; font-weight: 600; margin: 18px 0 8px; }
.product-short b, .product-short strong { color: var(--text); font-weight: 700; }
.product-short ul, .product-short ol { margin: 0 0 12px; padding-left: 4px; list-style: none; }
.product-short ul li, .product-short ol li { position: relative; padding-left: 24px; margin: 0 0 8px; line-height: 1.65; }
.product-short ul li::before { content: '\2713'; position: absolute; left: 0; top: 0; color: var(--gold); font-weight: 700; }
.product-features .rte ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.product-features .rte ul li { position: relative; padding-left: 30px; color: var(--text); font-size: 14.5px; line-height: 1.6; }
.product-features .rte ul li::before {
    content: '\2713'; position: absolute; left: 0; top: 1px;
    width: 20px; height: 20px; border-radius: 50%;
    background: rgba(248,175,1,.15); color: var(--gold);
    font-size: 11px; font-weight: 700; display: grid; place-items: center;
}
/* CTAs — big Enquire on top, Call + WhatsApp side by side */
.product-actions { display: flex; flex-direction: column; gap: 16px; margin: 4px 0 28px; }
.cta { display: inline-flex; align-items: center; justify-content: center; gap: 9px; height: 54px; padding: 0 24px; border-radius: 12px; font-family: var(--font-accent); font-size: 15.5px; font-weight: 700; letter-spacing: .01em; white-space: nowrap; border: 1px solid transparent; transition: transform .18s ease, box-shadow .25s ease, background .2s ease, color .2s ease, border-color .2s ease; }
.cta svg { flex: 0 0 auto; }
.cta:hover { transform: translateY(-2px); }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-row .cta { flex: 1 1 130px; min-width: 0; height: 50px; font-size: 14.5px; padding: 0 12px; gap: 7px; }
/* shadows kept tight (low blur/no spread) so a hovered button's glow never bleeds into its neighbour */
.cta-enquire { background: var(--gold); color: #15181f; box-shadow: 0 6px 14px rgba(248, 175, 1, .16); }
.cta-enquire:hover { background: #ffbe1a; color: #15181f; box-shadow: 0 8px 18px rgba(248, 175, 1, .26); }
.cta-enquire svg { transition: transform .25s ease; }
.cta-enquire:hover svg { transform: translateX(4px); }
.cta-call { background: #1c1f27; color: #fff; border-color: #2c313c; }
.cta-call:hover { background: #23272f; border-color: var(--gold); color: var(--gold); }
.cta-wa { background: #25d366; color: #fff; }
.cta-wa:hover { background: #1eb457; color: #fff; box-shadow: 0 8px 16px rgba(37, 211, 102, .22); }
/* trust signals — full-width band between the product hero and the tabs */
.trust-band { display: grid; grid-template-columns: repeat(4, 1fr); margin: 40px 0 0; overflow: hidden; background: radial-gradient(130% 220% at 0% 0%, #1b1e26 0%, #131519 70%); border: 1px solid #23262f; border-radius: 18px; }
.trust-item { display: flex; align-items: center; gap: 15px; padding: 22px 26px; border-right: 1px solid #23262f; transition: background .2s ease; }
.trust-item:last-child { border-right: none; }
.trust-item:hover { background: rgba(248, 175, 1, .05); }
.trust-ic { flex: 0 0 auto; width: 48px; height: 48px; border-radius: 12px; background: rgba(248, 175, 1, .12); color: var(--gold); display: grid; place-items: center; }
.trust-ic svg { display: block; }
.trust-txt { color: #fff; font-family: var(--font-accent); font-size: 15px; font-weight: 600; line-height: 1.32; }
@media (max-width: 900px) {
    .trust-band { grid-template-columns: 1fr 1fr; }
    .trust-item:nth-child(2n) { border-right: none; }
    .trust-item { border-bottom: 1px solid #23262f; }
    .trust-item:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 520px) {
    .trust-band { grid-template-columns: 1fr; }
    .trust-item { border-right: none; border-bottom: 1px solid #23262f; }
    .trust-item:last-child { border-bottom: none; }
}
.spec-table { width: 100%; border-collapse: collapse; margin-top: 10px; }
.spec-table caption { text-align: left; font-weight: 800; color: #fff; margin-bottom: 10px; font-size: 16px; }
.spec-table th, .spec-table td { border: 1px solid var(--line); padding: 11px 14px; text-align: left; font-size: 14px; }
.spec-table th { background: var(--surface); width: 40%; color: #fff; }
.product-description { margin-top: 60px; }
.product-description h2 { color: #fff; font-size: 24px; border-bottom: 3px solid var(--gold); display: inline-block; padding-bottom: 8px; margin-bottom: 20px; }
/* ---- Product description tabs ---- */
.product-tabs-wrap { margin-top: 60px; }
.product-tabs { background: radial-gradient(130% 200% at 0% 0%, #1b1e26 0%, #131519 72%); border: 1px solid #23262f; border-radius: 18px; overflow: hidden; box-shadow: 0 16px 44px rgba(0, 0, 0, .28); }
.ptab-nav { display: flex; flex-wrap: wrap; gap: 8px; padding: 14px; background: rgba(0, 0, 0, .22); border-bottom: 1px solid #23262f; }
.ptab-btn {
    appearance: none; border: 1px solid transparent; background: transparent; cursor: pointer;
    color: var(--muted); font-family: var(--font-accent); font-size: 14.5px; font-weight: 600; letter-spacing: .01em;
    padding: 12px 24px; border-radius: 11px; transition: color .2s ease, background .2s ease, box-shadow .25s ease, transform .18s ease;
}
.ptab-btn:hover:not(.active) { color: #fff; background: rgba(255, 255, 255, .05); }
.ptab-btn.active { color: #15181f; background: var(--gold); box-shadow: 0 6px 16px rgba(248, 175, 1, .3); }
.ptab-panels { padding: 32px 36px 36px; }
.ptab-panel { display: none; }
.ptab-panel.active { display: block; animation: ptab-fade .25s ease both; }
@keyframes ptab-fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
/* feature-style bullets inside tab content */
.ptab-panel .rte ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.ptab-panel .rte ul li { position: relative; padding-left: 30px; color: var(--text); line-height: 1.65; }
.ptab-panel .rte ul li::before {
    content: '\2713'; position: absolute; left: 0; top: 1px;
    width: 20px; height: 20px; border-radius: 50%;
    background: rgba(248,175,1,.15); color: var(--gold);
    font-size: 11px; font-weight: 700; display: grid; place-items: center;
}
/* Tabs → clean 2×2 grid on tablet/phone (flex-wrap left the pills mis-aligned) */
@media (max-width: 820px) {
    .ptab-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 10px; }
    .ptab-btn { text-align: center; padding: 12px 10px; font-size: 13.5px; background: rgba(255, 255, 255, .05); }
    .ptab-btn.active { background: var(--gold); }
}
@media (max-width: 560px) { .ptab-btn { font-size: 13px; padding: 11px 8px; } .ptab-panels { padding: 22px 18px; } }
/* FAQ accordion inside the FAQs tab (native <details>, no JS) */
.prod-faq-item { border-bottom: 1px solid #262a33; }
.prod-faq-item:last-child { border-bottom: none; }
.prod-faq-item summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 2px; font-family: var(--font-accent); font-size: 16px; font-weight: 600; color: #fff; }
.prod-faq-item summary::-webkit-details-marker { display: none; }
.prod-faq-item summary:hover { color: var(--gold); }
.prod-faq-ico { position: relative; flex: 0 0 auto; width: 26px; height: 26px; border-radius: 50%; background: rgba(248, 175, 1, .14); transition: transform .25s ease, background .2s ease; }
.prod-faq-ico::before, .prod-faq-ico::after { content: ''; position: absolute; top: 50%; left: 50%; width: 11px; height: 2px; background: var(--gold); transform: translate(-50%, -50%); transition: background .2s ease; }
.prod-faq-ico::after { transform: translate(-50%, -50%) rotate(90deg); }
.prod-faq-item[open] .prod-faq-ico { transform: rotate(135deg); background: var(--gold); }
.prod-faq-item[open] .prod-faq-ico::before, .prod-faq-item[open] .prod-faq-ico::after { background: #15181f; }
.prod-faq-ans { padding: 0 2px 18px; color: var(--muted); font-size: 15px; line-height: 1.7; }
.prod-faq-ans p { margin: 0; }
.product-enquiry { margin-top: 60px; }
.rte { line-height: 1.8; color: var(--text); }
.rte img { border-radius: 8px; margin: 16px 0; }
.rte h2, .rte h3 { color: #fff; margin-top: 1.4em; }
.rte a { color: var(--gold); }
.rte ul, .rte ol { padding-left: 22px; }
/* migrated FAQ block ships with light-theme inline styles — override into a
   proper dark-theme accordion (gold accent, +/- toggle) matching the site. */
.rte .phabf-faq { background: transparent; border: 0 !important; border-top: 1px solid var(--line) !important; border-radius: 0; padding: 34px 0 0 !important; margin-top: 40px !important; }
.rte .phabf-faq .phabf-section-heading,
.rte .phabf-faq > h3 { color: #fff !important; font-family: var(--font-accent) !important; font-size: 26px !important; font-weight: 600 !important; margin: 0 0 22px !important; }
.rte .phabf-faq details {
    background: var(--surface) !important;
    border: 1px solid var(--line) !important;
    border-left: 3px solid var(--gold) !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin: 0 0 12px !important;
    overflow: hidden;
    transition: border-color .2s ease;
}
.rte .phabf-faq summary {
    list-style: none;
    cursor: pointer;
    color: #fff !important;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
    padding: 18px 54px 18px 22px;
    position: relative;
    transition: color .2s ease;
}
.rte .phabf-faq summary::-webkit-details-marker { display: none; }
.rte .phabf-faq summary::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 16px;
    color: var(--gold);
    font-size: 24px;
    font-weight: 400;
    line-height: 1;
}
.rte .phabf-faq summary:hover { color: var(--gold) !important; }
.rte .phabf-faq details[open] > summary { color: var(--gold) !important; }
.rte .phabf-faq details[open] > summary::after { content: '\2212'; }
.rte .phabf-faq details > div { color: var(--muted) !important; margin: 0 !important; padding: 0 22px 20px !important; line-height: 1.75; }
.rte .phabf-faq details > div p { margin: 0 !important; color: var(--muted) !important; }

/* ---- Enquiry form ---- */
.enquiry-form-wrap { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; max-width: 660px; }
.enquiry-form-wrap h3 { color: #fff; font-size: 20px; margin-bottom: 18px; }
.enquiry-form { display: flex; flex-direction: column; gap: 14px; }
.enquiry-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.enquiry-form input, .enquiry-form textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 8px; font: inherit; font-size: 14px; background: #111; color: #fff; }
.enquiry-form input::placeholder, .enquiry-form textarea::placeholder { color: #777; }
.enquiry-form input:focus, .enquiry-form textarea:focus { outline: 2px solid var(--gold); border-color: var(--gold); }
.enquiry-submit { display: inline-flex; align-items: center; justify-content: center; gap: 9px; width: 100%; height: 54px; margin-top: 4px; border: none; border-radius: 12px; background: var(--gold); color: #15181f; font-family: var(--font-accent); font-size: 15.5px; font-weight: 700; letter-spacing: .01em; cursor: pointer; transition: transform .18s ease, box-shadow .25s ease, background .2s ease; }
.enquiry-submit svg { transition: transform .25s ease; }
.enquiry-submit:hover { background: #ffbe1a; transform: translateY(-2px); box-shadow: 0 8px 18px rgba(248, 175, 1, .26); }
.enquiry-submit:hover svg { transform: translateX(4px); }
/* ---- Enquiry popup modal ---- */
.enquiry-modal { position: fixed; inset: 0; z-index: 2000; display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; visibility: hidden; transition: opacity .28s ease, visibility .28s ease; }
.enquiry-modal.open { opacity: 1; visibility: visible; }
.enquiry-modal-backdrop { position: absolute; inset: 0; background: rgba(6, 8, 12, .74); backdrop-filter: blur(4px); }
.enquiry-modal-box { position: relative; width: 100%; max-width: 560px; transform: translateY(18px) scale(.98); transition: transform .3s cubic-bezier(.645,.045,.355,1); }
.enquiry-modal.open .enquiry-modal-box { transform: translateY(0) scale(1); }
.enquiry-modal-box .enquiry-form-wrap { max-width: none; margin: 0; box-shadow: 0 30px 80px rgba(0, 0, 0, .6); border-color: #2a2e38; max-height: 90vh; overflow-y: auto; }
.enquiry-modal-close { position: absolute; top: -14px; right: -14px; width: 38px; height: 38px; border-radius: 50%; border: none; background: var(--gold); color: #15181f; font-size: 24px; line-height: 1; cursor: pointer; display: grid; place-items: center; box-shadow: 0 6px 18px rgba(0, 0, 0, .5); transition: transform .2s ease; z-index: 1; }
.enquiry-modal-close:hover { transform: rotate(90deg); }
@media (max-width: 560px) { .enquiry-modal-close { top: 6px; right: 6px; background: rgba(0,0,0,.5); color: #fff; } }
.alert { padding: 12px 16px; border-radius: 8px; margin-bottom: 16px; font-size: 14px; }
.alert-success { background: #12331f; color: #7fe0a0; border: 1px solid #1c5c33; }
.alert-error { background: #3a1513; color: #f2a19b; border: 1px solid #6a221c; }

/* ---- Contact Now ---- */
.contact-now { padding: 90px 0 100px; background: #0a0a0a; }
.contact-now-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 66px; align-items: start; }
.contact-now-copy .eyebrow { margin: 0 0 10px; }
.contact-now-copy .cat-heading { margin: 0; }
.contact-now-lead { color: var(--muted); line-height: 1.75; margin: 0 0 34px; }

/* real contact details instead of a decorative graphic */
.contact-lines { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 22px; }
.contact-lines li { display: flex; align-items: flex-start; gap: 16px; }
.cl-ic {
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    background: rgba(248, 175, 1, .12);
    color: var(--gold);
    border-radius: 8px;
    transition: background .25s ease, color .25s ease;
}
.cl-ic svg { width: 22px; height: 22px; }
.contact-lines li:hover .cl-ic { background: var(--gold); color: #171717; }
.cl-body { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.cl-body small { color: var(--gold); font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.4px; }
.cl-body a { color: #fff; font-family: var(--font-accent); font-size: 19px; font-weight: 600; }
.cl-body a:hover { color: var(--gold); }
.cl-addr { color: var(--text); font-size: 15px; line-height: 1.6; }

/* form lives in its own raised panel so it reads as a distinct block */
.contact-panel { background: var(--surface); padding: 40px 40px 44px; }
.contact-panel h3 { font-family: var(--font-accent); font-size: 24px; font-weight: 600; color: #fff; margin: 0 0 24px; }
.contact-now-form { display: flex; flex-direction: column; gap: 16px; }
.contact-now-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-now-form input,
.contact-now-form textarea {
    width: 100%;
    padding: 16px 18px;
    border: 1px solid #2e2e2e;
    border-radius: 0;
    background: #101010;
    color: #fff;
    font: inherit;
    font-size: 15px;
    transition: border-color .2s ease;
}
.contact-now-form textarea { resize: vertical; min-height: 130px; }
.contact-now-form input::placeholder,
.contact-now-form textarea::placeholder { color: #7d7d7d; }
.contact-now-form input:focus,
.contact-now-form textarea:focus { outline: none; border-color: var(--gold); }
.btn-block-plus { align-self: flex-start; margin-top: 4px; }

/* ---- Get a brochure (its own section, not attached to Contact Now) ---- */
.brochure { padding: 0 0 90px; background: #0a0a0a; }
.brochure-band {
    position: relative;
    overflow: hidden;
    background: var(--gold);
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 30px;
    padding: 46px 54px 46px;
    min-height: 230px;
}
/* faint diagonal texture so the flat gold has some depth */
.brochure-band::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(115deg, rgba(255, 255, 255, .07) 0 2px, transparent 2px 16px);
    pointer-events: none;
}
.brochure-copy { position: relative; z-index: 1; align-self: center; }
.brochure-lead { color: rgba(255, 255, 255, .92); margin: 10px 0 24px; font-size: 15.5px; max-width: 46ch; line-height: 1.6; }
.brochure-kicker {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 10px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
/* the recurring "///" motif */
/* exact "///" motif from the original theme (3 slanted bars, 70x18 SVG). Uses a
   mask so the colour comes from background-color — white everywhere it's used. */
.slashes {
    display: inline-block;
    width: 44px;
    height: 12px;
    background-color: #fff;
    -webkit-mask: var(--slashes-svg) no-repeat left center / contain;
    mask: var(--slashes-svg) no-repeat left center / contain;
}
.brochure-copy h2 { font-family: var(--font-accent); font-size: clamp(26px, 3vw, 40px); font-weight: 700; color: #fff; margin: 0; text-transform: uppercase; letter-spacing: -.2px; }
/* anchored to the band's bottom-right and clipped by it, rather than floating mid-band */
.brochure-img { position: relative; z-index: 1; align-self: end; max-height: 250px; width: auto; margin-bottom: -46px; }
.btn-brochure { background: #171717; color: #fff; border: 0; }
.btn-brochure::before { content: ''; position: absolute; inset: 0; z-index: -1; background: #fff; transform: translateX(-101%); transition: transform .4s cubic-bezier(.645, .045, .355, 1); }
.btn-brochure:hover::before { transform: translateX(0); }
.btn-brochure:hover { color: #171717; }
.btn-brochure:hover .plus { background: #171717; color: #fff; }
@media (max-width: 980px) {
    .contact-now-grid { grid-template-columns: 1fr; gap: 34px; }
}
@media (max-width: 860px) {
    .contact-now-form .form-row { grid-template-columns: 1fr; }
    .contact-panel { padding: 28px 22px 32px; }
    .brochure-band { grid-template-columns: 1fr; text-align: center; justify-items: center; padding: 32px 24px 0; }
    .brochure-lead { margin-left: auto; margin-right: auto; }
    .brochure-img { max-height: 200px; margin-bottom: 0; }
}

/* ---- Blog ---- */
.blogs-head { text-align: center; margin-bottom: 26px; }
.blogs-head .eyebrow { margin: 0 0 8px; }
.blogs-head .cat-heading { margin: 0; }
.blogs-intro { color: var(--muted); line-height: 1.75; margin: 0 0 38px; }
.blogs-cta { display: flex; justify-content: center; margin-top: 40px; }
/* slider: 3 cards visible, drag to scroll, dot pagination */
.blog-carousel { position: relative; }
.post-track {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    touch-action: pan-y;
}
.post-track::-webkit-scrollbar { display: none; }
/* snapping must be OFF while dragging, otherwise the browser keeps yanking the
   scroll position back to a snap point and the drag feels jerky */
.post-track.dragging {
    cursor: grabbing;
    scroll-behavior: auto;
    scroll-snap-type: none;
    user-select: none;
}
.blog-dots { display: flex; justify-content: center; gap: 9px; margin-top: 30px; }
.blog-dot {
    width: 9px; height: 9px; padding: 0; border: 0;
    background: var(--gold); opacity: .35; cursor: pointer;
    transition: opacity .25s ease, transform .25s ease;
}
.blog-dot:hover { opacity: .7; }
.blog-dot.active { opacity: 1; transform: scale(1.5); }
/* card sits on the darker section bg, so give it a lighter surface */
/* static blog grid (listing page) reuses the same cards as the homepage slider */
.post-grid { display: flex; flex-wrap: wrap; gap: 30px; }
.post-grid .post-card { margin-bottom: 0; }
.post-card {
    flex: 0 0 calc((100% - 2 * 30px) / 3);
    scroll-snap-align: start;
    background: var(--surface-2);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .3s ease, box-shadow .3s ease;
}
.post-card:hover { transform: translateY(-5px); box-shadow: 0 16px 34px rgba(0, 0, 0, .5); }
.post-card-media { position: relative; }
.post-card-media > a { display: block; aspect-ratio: 16/10; overflow: hidden; }
.post-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.645, .045, .355, 1); }
.post-card:hover .post-card-media img { transform: scale(1.06); }
/* vertical gold date ribbon that overhangs the bottom of the photo */
.post-date {
    position: absolute;
    top: 0;
    right: 26px;
    background: var(--gold);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    padding: 18px 5px 34px;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}
.post-date i { font-style: normal; display: block; transform: rotate(180deg); }
.post-card-body { padding: 24px 26px 20px; flex: 1; }
.post-card-body h3 { font-family: var(--font-accent); font-size: 20px; margin: 0; line-height: 1.35; font-weight: 600; }
.post-card-body h3 a { color: #fff; }
.post-card-body h3 a:hover { color: var(--gold); }
.post-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border-top: 1px solid var(--line);
    padding: 14px 26px;
}
.post-author { font-size: 13px; color: #fff; text-transform: uppercase; letter-spacing: .4px; }
.post-author em { font-style: normal; color: var(--gold); font-weight: 700; }
.post-more { color: #fff; font-size: 18px; line-height: 1; transition: color .2s ease, transform .2s ease; }
.post-more:hover { color: var(--gold); transform: translateX(3px); }
.read-more { font-weight: 700; font-family: var(--font-accent); font-size: 13px; text-transform: uppercase; }

/* ---- Article ---- */
.article-narrow { max-width: 820px; }
.article-title { color: #fff; font-size: 34px; }
.article-meta { display: flex; gap: 20px; color: var(--muted); font-size: 14px; margin-bottom: 24px; }
.article-meta em { color: var(--gold); font-style: normal; font-weight: 600; }
.article-hero { width: 100%; border-radius: var(--radius); margin-bottom: 22px; }
.article-cta { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--line); }

/* blog detail: content + related sidebar */
.article-layout { display: grid; grid-template-columns: 1fr 340px; gap: 50px; align-items: start; }
.article-body { font-size: 16px; }
.side-heading { font-family: var(--font-accent); font-size: 24px; font-weight: 600; color: #fff; margin: 0 0 22px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.article-side { position: sticky; top: 100px; }
.related-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 20px; }
.related-item { display: grid; grid-template-columns: 92px 1fr; gap: 14px; align-items: start; }
.related-thumb { display: block; aspect-ratio: 1; overflow: hidden; border-radius: 6px; }
.related-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.related-item:hover .related-thumb img { transform: scale(1.08); }
.related-body { display: flex; flex-direction: column; gap: 6px; }
.related-title { color: #fff; font-size: 14.5px; font-weight: 600; line-height: 1.4; }
.related-title:hover { color: var(--gold); }
.related-date { color: var(--muted); font-size: 12.5px; }
@media (max-width: 860px) {
    .article-layout { grid-template-columns: 1fr; gap: 40px; }
    .article-side { position: static; }
}

/* ---- Contact ---- */
.contact-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 46px; align-items: start; }
.contact-info h1 { color: #fff; }
.contact-list { list-style: none; margin: 24px 0 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.contact-list li { display: flex; flex-direction: column; }
.contact-list strong { font-family: var(--font-accent); text-transform: uppercase; font-size: 12px; letter-spacing: 1px; color: var(--muted); }
.contact-list a { font-size: 17px; font-weight: 700; }

/* ---- Footer ---- */
.site-footer { background: #070707; color: #9a9a9a; margin-top: 0; border-top: 3px solid var(--gold); }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1.15fr 1.45fr; gap: 40px; padding: 66px 20px 56px; }
.footer-brand { display: flex; align-items: center; gap: 22px; margin-bottom: 24px; }
.footer-logo { height: 52px; width: auto; }
.footer-iso { height: 84px; width: auto; }
.footer-about { font-size: 14.5px; line-height: 1.85; color: #cfcfcf; text-align: justify; margin: 0; }
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.footer-social a { width: 44px; height: 44px; border-radius: 0; background: #191919; display: grid; place-items: center; color: #fff; transition: .2s ease; }
.footer-social a:hover { background: var(--gold); color: #171717; transform: translateY(-3px); }
.footer-social svg { width: 17px; height: 17px; }
/* column heads carry the recurring "///" motif */
.footer-col h4 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    color: var(--gold);
    font-family: var(--font);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .6px;
    text-transform: uppercase;
    margin: 0 0 26px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.footer-links a { color: #e2e2e2; font-size: 14.5px; text-transform: uppercase; letter-spacing: .3px; transition: color .2s ease, padding-left .2s ease; }
.footer-links a:hover { color: var(--gold); padding-left: 5px; }
/* contact rows with icons */
.footer-contact li { display: flex; align-items: flex-start; gap: 14px; }
.fc-ic { flex: 0 0 auto; color: var(--gold); margin-top: 3px; }
.fc-ic svg { width: 24px; height: 24px; }
.fc-body { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.fc-body b { font-family: var(--font-accent); color: #fff; font-size: 19px; font-weight: 600; }
.fc-body a { color: #b9b9b9; font-size: 14.5px; line-height: 1.6; }
.fc-body a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid #1c1c1c; padding: 22px 0; font-size: 14px; color: #8a8a8a; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.footer-bottom p { margin: 0; }
.footer-bottom a { color: #fff; font-weight: 600; }
.footer-bottom a:hover { color: var(--gold); }
.footer-visits { display: inline-flex; align-items: center; gap: 8px; color: var(--gold); font-weight: 700; font-size: 15px; white-space: nowrap; }
.footer-visits .fv-ic { display: inline-flex; }
.footer-visits .fv-ic svg { width: 17px; height: 17px; }

.error-page { padding: 110px 20px 120px; text-align: center; }
.err-404 {
    font-family: var(--font-accent);
    font-size: clamp(120px, 20vw, 230px);
    font-weight: 700;
    line-height: 1;
    color: #fff;
    margin: 0;
    letter-spacing: 4px;
    text-shadow: 7px 8px 0 var(--gold);
}
.err-title {
    font-family: var(--font-accent);
    font-size: clamp(30px, 4.4vw, 54px);
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 18px 0 16px;
}
.err-msg { color: var(--muted); font-size: 17px; max-width: 620px; margin: 0 auto 36px; line-height: 1.7; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
    .cat-card { flex-basis: calc((100% - 2 * 26px) / 3); }
    .product-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .welcome-grid { grid-template-columns: 1fr; }
}
/* Touch nav — hover mega-menus don't work on touch, so BOTH phones AND tablets
   (up to 1024px, e.g. iPad landscape) use the tap-drawer instead of the desktop bar. */
@media (max-width: 1024px) {
    .main-nav { position: fixed; inset: 0 0 0 auto; width: min(340px, 86vw); background: #0d0d0d; transform: translateX(100%); transition: transform .25s ease; padding: 84px 18px 34px; overflow-y: auto; box-shadow: var(--shadow); z-index: 1300; }
    body.nav-open .main-nav { transform: translateX(0); }
    /* .site-header is position:sticky z-index:100 → a stacking context that traps the
       drawer. Lift the whole header above the overlay when open so the menu is clickable. */
    body.nav-open .site-header { z-index: 1400; }
    body.nav-open::after { content: ''; position: fixed; inset: 0; background: rgba(0,0,0,.6); z-index: 1250; }
    body.nav-open { overflow: hidden; }
    .nav-toggle { display: flex; position: relative; z-index: 1310; }
    .menu { flex-direction: column; gap: 0; align-items: stretch; }
    .menu > li { width: 100%; border-bottom: 1px solid #1e1e1e; }
    .menu > li:last-child { border-bottom: 0; }
    .menu > li > a { padding: 15px 34px 15px 10px; display: block; position: relative; }
    .menu > li > a::after { display: none; }
    /* expand chevron on items with a submenu (e.g. Products) — rotates up when open */
    .menu > li.has-mega > a::after, .menu > li.has-children > a::after {
        display: block; content: ''; background: none; left: auto; right: 14px; bottom: auto; top: 50%;
        width: 9px; height: 9px; border-right: 2px solid var(--gold); border-bottom: 2px solid var(--gold);
        transform: translateY(-65%) rotate(45deg); transition: transform .25s ease;
    }
    .menu > li.has-mega.open > a::after, .menu > li.has-children.open > a::after { transform: translateY(-30%) rotate(225deg); }
    .iso-badge { display: none; }
    .mega-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border-top: 0; display: none; background: none; max-width: none; width: auto; }
    .menu li.has-mega.open .mega-menu { display: block; }
    .mega-viewall-m { display: block; margin: 2px 0 0; padding: 13px 12px; color: var(--gold); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .4px; border-bottom: 1px solid #1e1e1e; }
    .mega-viewall-m span { margin-left: 4px; }
    .mega-flyout { grid-template-columns: 1fr; min-height: 0; height: auto; max-height: none; }
    .mega-cats { background: none; border-right: 0; padding: 2px 0; overflow: visible; }
    .mega-cat-item > a { padding: 10px 12px; font-size: 13.5px; }
    /* the default-active first item is only for the desktop hover-flyout; in the
       drawer there's no panel to preview, so don't pre-highlight it */
    .mega-cat-item.active > a { background: none; color: #cfcfcf; border-left-color: transparent; }
    .mega-cat-item.active > a .arr { color: #666; }
    .mega-panels { display: none; }
    .header-help { display: none; }
}
@media (max-width: 860px) {
    .product-detail, .catalog-layout, .contact-layout { grid-template-columns: 1fr; }
    .product-detail { padding: 18px; border-radius: 18px; gap: 26px; }
    .product-gallery { position: static; top: auto; }
    .catalog-sidebar { position: static; }
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .post-card { flex-basis: calc((100% - 30px) / 2); }
    .stats-grid { grid-template-columns: 1fr; gap: 18px; }
    .cat-card { flex-basis: calc((100% - 26px) / 2); }
    .hero-inner { padding: 90px 20px; }
}
@media (max-width: 560px) {
    /* social icons don't fit next to the contact line on phones and pushed the
       whole page wider than the viewport — they live in the footer anyway */
    .topbar-social { display: none; }
    .topbar-inner { justify-content: center; }
    .topbar-contact { gap: 12px; font-size: 11px; }
    .product-grid { grid-template-columns: 1fr 1fr; }
    .post-card { flex-basis: 85%; }
    .cat-card { flex-basis: 78%; }
    .cat-prev, .cat-next { display: none; }
    .enquiry-form .form-row { grid-template-columns: 1fr; }
    .section { padding: 50px 0; }
    .section-head { flex-direction: column; align-items: flex-start; }
    /* footer: single column so nothing runs off-screen */
    /* mobile: brand + about full width, the two link lists side-by-side, contact full width */
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px 22px; padding: 46px 22px 38px; text-align: left; }
    .footer-about-col { grid-column: 1 / -1; }
    .footer-grid > .footer-col:last-child { grid-column: 1 / -1; }
    .footer-brand { gap: 16px; }
    .footer-about { text-align: left; }
    .footer-col h4 { margin-bottom: 15px; }
    .footer-col ul { gap: 12px; }
    .footer-links a { font-size: 13.5px; }
    .footer-bottom { text-align: center; }
    .footer-bottom-inner { justify-content: center; }
}











/* Back-to-top button — dark disc with a gold scroll-progress ring */
.back-to-top{
    position:fixed; right:26px; bottom:26px; z-index:1200;
    width:50px; height:50px; display:grid; place-items:center;
    background:#15181f; color:var(--gold,#f8af01); border:none; border-radius:50%;
    cursor:pointer; box-shadow:0 6px 20px rgba(0,0,0,.4);
    opacity:0; visibility:hidden; transform:translateY(14px);
    transition:opacity .3s ease, transform .3s ease, background .2s ease, color .2s ease;
}
.back-to-top.show{ opacity:1; visibility:visible; transform:translateY(0); }
.back-to-top:hover{ background:var(--gold,#f8af01); color:#15181f; }
/* progress ring (rotated so it fills from the top, clockwise) */
.btt-ring{ position:absolute; inset:0; width:100%; height:100%; transform:rotate(-90deg); }
.btt-ring circle{ fill:none; stroke-width:2.5; }
.btt-track{ stroke:rgba(255,255,255,.15); }
.btt-prog{ stroke:var(--gold,#f8af01); stroke-linecap:round; transition:stroke-dashoffset .12s linear; }
.back-to-top:hover .btt-prog{ stroke:#15181f; }
.back-to-top:hover .btt-track{ stroke:rgba(0,0,0,.18); }
.btt-arrow{ position:relative; display:block; }
@media (max-width:560px){ .back-to-top{ right:16px; bottom:16px; width:46px; height:46px; } }
@media (prefers-reduced-motion:reduce){ .back-to-top{ transition:opacity .2s ease; transform:none; } .back-to-top.show{ transform:none; } .btt-prog{ transition:none; } }

/* Category-archive FAQ accordion (dark + gold, matches site theme) */
.cat-faq-section{ background:var(--surface,#161616); border-top:1px solid #212121; }
.cat-faq-head{ text-align:center; max-width:760px; margin:0 auto 34px; }
.cat-faq-head .eyebrow{ color:var(--gold,#f8af01); }
.cat-faq-sub{ color:var(--muted,#999); font-size:15px; margin-top:14px; }
.cat-faq-sub a{ color:var(--gold,#f8af01); }
.cat-faq-list{ max-width:900px; margin:0 auto; }
.cat-faq-item{ background:var(--surface-2,#1e1e1e); border:1px solid #2c2c2c; border-radius:12px; margin:0 0 14px; overflow:hidden; transition:border-color .2s ease, box-shadow .2s ease; }
.cat-faq-item[open]{ border-color:rgba(248,175,1,.5); box-shadow:0 8px 26px rgba(0,0,0,.35); }
.cat-faq-item summary{ list-style:none; cursor:pointer; display:flex; align-items:center; justify-content:space-between; gap:16px; padding:20px 22px; font-family:'Bai Jamjuree',sans-serif; font-size:17px; font-weight:600; color:#fff; user-select:none; }
.cat-faq-item summary::-webkit-details-marker{ display:none; }
.cat-faq-item summary:hover{ color:var(--gold,#f8af01); }
.cat-faq-ico{ position:relative; flex:0 0 auto; width:30px; height:30px; border-radius:50%; background:rgba(248,175,1,.14); transition:transform .25s ease, background .2s ease; }
.cat-faq-ico::before, .cat-faq-ico::after{ content:''; position:absolute; top:50%; left:50%; width:12px; height:2px; background:var(--gold,#f8af01); transform:translate(-50%,-50%); transition:background .2s ease; }
.cat-faq-ico::after{ transform:translate(-50%,-50%) rotate(90deg); }
.cat-faq-item[open] .cat-faq-ico{ transform:rotate(135deg); background:var(--gold,#f8af01); }
.cat-faq-item[open] .cat-faq-ico::before, .cat-faq-item[open] .cat-faq-ico::after{ background:#0d0d0d; }
.cat-faq-ans{ padding:0 22px 22px; color:#b8b8b8; font-size:15.5px; line-height:1.75; }
.cat-faq-ans p{ margin:0; }
@media (max-width:600px){ .cat-faq-item summary{ font-size:15.5px; padding:16px 18px; } .cat-faq-ans{ padding:0 18px 18px; font-size:15px; } }

/* ---- Responsive: contact info stacking + heading/font trims for tablet & phone ---- */
@media (max-width: 780px) {
    .contact-info-row { grid-template-columns: 1fr; }
    .ci-card { border-right: 0; border-bottom: 1px solid var(--line); }
    .ci-card:last-child { border-bottom: 0; }
}
@media (max-width: 560px) {
    .hero h1 { font-size: clamp(21px, 6.6vw, 30px); letter-spacing: -.4px; }  /* scale so "Safety Products and" always fits one line → clean 2-line heading */
    .hero .lead { font-size: 15.5px; }
    /* unify every section heading to one size on phones */
    .welcome-copy h2, .cat-heading, .why-heading, .section-head h2 { font-size: 27px; }
    .welcome-copy h3 { font-size: 18px; }
    /* stats cards (base) stacked on phones with smaller type */
    .stats-band { padding: 34px 0; }
    .stats-grid { grid-template-columns: 1fr; gap: 14px; }
    .stat { padding: 16px 20px; gap: 18px; }
    .stat-ic svg { width: 34px; height: 34px; }
    .stat-copy small { font-size: 12px; margin-bottom: 4px; }
    .stat-num { font-size: 34px; }
    .ci-card h3 { padding: 18px 22px; font-size: 18px; }
    .ci-label { margin-left: 22px; margin-right: 22px; }
    .ci-value { margin-left: 22px; margin-right: 22px; }
    .page-hero-title { font-size: 32px; }
    .article-body { font-size: 15.5px; }
    .ind-title { font-size: 17px; left: 16px; }
}

/* ---- Body copy is justified (client preference); hyphenate so narrow mobile
   columns don't open up big word-gaps ---- */
.welcome-copy p, .why-copy p, .about-detail-copy p, .category-intro, .section-intro,
.product-short, .product-short p, .article-body, .article-body p, .rte p {
    text-align: justify;
    -webkit-hyphens: auto; hyphens: auto;
}

/* ---- Inner-page hero (subheader) + breadcrumb: trim on tablet & phone
   (placed at file end so it wins over the base rules without specificity tricks) ---- */
@media (max-width: 900px) {
    .page-hero { padding: 62px 0 66px; }
    .page-hero-title { font-size: clamp(24px, 5vw, 34px); margin-bottom: 10px; }
    .page-crumbs { font-size: 12px; letter-spacing: .3px; gap: 2px; }
    .page-crumbs .sep { margin: 0 5px; }
}
@media (max-width: 480px) {
    .page-hero { padding: 46px 0 50px; }
    .page-hero-title { font-size: 24px; }
    .page-crumbs { font-size: 10.5px; }
    .page-crumbs .sep { margin: 0 4px; }
}

/* ---- Header/topbar side padding: 48px is too much on small screens ---- */
@media (max-width: 900px) {
    .topbar .container, .site-header .container { padding-left: 24px; padding-right: 24px; }
}
@media (max-width: 560px) {
    .topbar .container, .site-header .container { padding-left: 16px; padding-right: 16px; }
}

/* ==========================================================================
   Premium mobile/tablet nav drawer
   ========================================================================== */
.nav-drawer-foot { display: none; }
@media (max-width: 1024px) {
    .main-nav {
        background: linear-gradient(180deg, #17181c 0%, #0c0c0e 58%, #0a0a0b 100%);
        display: flex; flex-direction: column;
    }
    .main-nav .menu { flex: 0 0 auto; }
    /* nav items: gold left-accent bar + tint on hover / current page */
    .menu > li > a { color: #dcdce0; letter-spacing: .4px; border-radius: 10px;
        transition: color .2s ease, background .2s ease, padding-left .2s ease; }
    .menu > li > a:hover, .menu > li.active > a { color: var(--gold); background: rgba(248, 175, 1, .07); padding-left: 16px; }
    .menu > li > a::before {
        content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
        width: 3px; height: 0; background: var(--gold); border-radius: 0 3px 3px 0; transition: height .22s ease;
    }
    .menu > li.active > a::before, .menu > li > a:hover::before { height: 56%; }

    /* drawer footer (CTA + contact + socials) pinned to the bottom */
    .nav-drawer-foot { display: block; margin-top: auto; padding-top: 22px; border-top: 1px solid #1f2024; margin-top: auto; }
    .nav-cta {
        display: flex; align-items: center; justify-content: center; gap: 8px;
        background: var(--gold); color: #15181f; font-family: var(--font-accent); font-weight: 700;
        padding: 13px 16px; border-radius: 12px; font-size: 14px; letter-spacing: .3px;
        box-shadow: 0 8px 18px rgba(248, 175, 1, .22); transition: background .2s ease, transform .18s ease;
    }
    .nav-cta span { transition: transform .25s ease; }
    .nav-cta:hover { background: #ffbe1a; transform: translateY(-2px); }
    .nav-cta:hover span { transform: translateX(4px); }
    .nav-foot-links { display: flex; flex-direction: column; gap: 12px; margin: 20px 0 18px; }
    .nav-foot-links a { display: flex; align-items: center; gap: 11px; color: #cfcfd4; font-size: 13.5px; font-weight: 500; }
    .nav-foot-links a:hover { color: var(--gold); }
    .nav-foot-links .nf-ic { color: var(--gold); display: inline-flex; }
    .nav-foot-links .nf-ic svg { width: 16px; height: 16px; }
    .nav-foot-social { display: flex; gap: 10px; }
    .nav-foot-social a { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%;
        border: 1px solid #2a2a2f; color: #cfcfd4; transition: background .2s ease, color .2s ease, border-color .2s ease; }
    .nav-foot-social a:hover { background: var(--gold); color: #15181f; border-color: var(--gold); }
    .nav-foot-social svg { width: 15px; height: 15px; }
}

/* ==================== BULK ENQUIRY ==================== */
/* Shared qty stepper (product detail + bulk list rows) */
.qty-stepper, .bulk-qty { display:inline-flex; align-items:center; border:1px solid var(--line); border-radius:10px; overflow:hidden; background:#111; }
.bulk-qty-btn { width:38px; height:44px; border:none; background:transparent; color:var(--gold); font-size:20px; line-height:1; cursor:pointer; transition:background .15s ease; }
.bulk-qty-btn:hover { background:rgba(248,175,1,.12); }
.bulk-qty-input { width:52px; height:44px; border:none; background:transparent; color:#fff; text-align:center; font:inherit; font-weight:700; -moz-appearance:textfield; }
.bulk-qty-input::-webkit-outer-spin-button, .bulk-qty-input::-webkit-inner-spin-button { -webkit-appearance:none; margin:0; }
.bulk-qty-input:focus { outline:none; }

/* Product detail: add-to-bulk row — qty stepper + button stay side-by-side at every width */
.product-bulk-row { display:flex; align-items:stretch; gap:12px; margin-bottom:12px; flex-wrap:nowrap; }
.product-bulk-row .qty-stepper { flex:0 0 auto; }
.cta-bulk { position:relative; background:transparent; color:var(--gold); border:1px solid var(--gold); flex:1 1 auto; min-width:0; padding:0 16px; overflow:hidden; }
.cta-bulk .cta-bulk-label, .cta-bulk .cta-bulk-done { min-width:0; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
@media (max-width:420px) {
    .product-bulk-row { gap:8px; }
    .product-bulk-row .bulk-qty-btn { width:32px; }
    .product-bulk-row .bulk-qty-input { width:40px; }
    .cta-bulk { padding:0 10px; gap:6px; font-size:14px; }
}
.cta-bulk:hover { background:rgba(248,175,1,.12); }
.cta-bulk .cta-bulk-done { display:none; }
.cta-bulk.added { background:#12240f; border-color:#2c5a22; color:#bff0a8; }
.cta-bulk.added .cta-bulk-label { display:none; }
.cta-bulk.added .cta-bulk-done { display:inline; }

/* Small add button on product tiles */
.pcat-bulk { position:absolute; top:10px; right:10px; z-index:3; width:38px; height:38px; display:grid; place-items:center;
    background:rgba(13,13,13,.82); color:var(--gold); border:1px solid rgba(248,175,1,.5); border-radius:50%;
    cursor:pointer; opacity:0; transform:translateY(-6px); transition:opacity .2s ease, transform .2s ease, background .2s ease, color .2s ease; }
.pcat-tile:hover .pcat-bulk, .pcat-bulk:focus-visible { opacity:1; transform:translateY(0); }
.pcat-bulk:hover { background:var(--gold); color:#15181f; }
.pcat-bulk.added { background:#2c5a22; border-color:#2c5a22; color:#fff; opacity:1; transform:translateY(0); }
@media (hover:none) { .pcat-bulk { opacity:1; transform:none; } }

/* Floating action button (bottom-left) */
.bulk-fab { position:fixed; left:26px; bottom:26px; z-index:1200; display:inline-flex; align-items:center; gap:10px;
    height:50px; padding:0 18px 0 14px; background:#15181f; color:var(--gold); border:1px solid rgba(248,175,1,.4);
    border-radius:30px; text-decoration:none; box-shadow:0 6px 20px rgba(0,0,0,.4); font-family:var(--font-accent); font-weight:700; font-size:14.5px;
    transition:background .2s ease, color .2s ease, transform .2s ease, box-shadow .25s ease; }
.bulk-fab:hover { background:var(--gold); color:#15181f; transform:translateY(-2px); box-shadow:0 10px 26px rgba(248,175,1,.28); }
.bulk-fab-ic { display:grid; place-items:center; }
.bulk-fab-badge { position:absolute; top:-6px; left:30px; min-width:20px; height:20px; padding:0 5px; display:grid; place-items:center;
    background:var(--gold); color:#15181f; border-radius:10px; font-size:12px; font-weight:800; line-height:1; box-shadow:0 2px 6px rgba(0,0,0,.4); }
.bulk-fab:hover .bulk-fab-badge { background:#15181f; color:var(--gold); }
.bulk-fab-badge.is-empty { display:none; }
@media (max-width:560px) { .bulk-fab{ left:16px; bottom:16px; height:46px; padding:0 14px 0 12px; } .bulk-fab-text{ display:none; } .bulk-fab-badge{ left:26px; } }

/* Add-to-bulk toast */
.bulk-toast { position:fixed; left:50%; bottom:28px; transform:translate(-50%,20px); z-index:1400; max-width:88vw;
    background:#15181f; color:#fff; border:1px solid var(--gold); border-radius:10px; padding:12px 18px; font-size:14px; font-weight:600;
    box-shadow:0 10px 30px rgba(0,0,0,.5); opacity:0; visibility:hidden; transition:opacity .25s ease, transform .25s ease, visibility .25s; }
.bulk-toast.show { opacity:1; visibility:visible; transform:translate(-50%,0); }

/* Bulk enquiry page */
.bulk-head h1 { margin:0 0 6px; }
.bulk-sub { color:var(--muted); max-width:640px; margin:0 0 26px; }
.bulk-flash { margin-bottom:22px; }
.bulk-layout { display:grid; grid-template-columns:1fr 380px; gap:28px; align-items:start; }
/* the [hidden] attribute must beat the display rules above/below */
.bulk-layout[hidden], .bulk-empty[hidden] { display:none !important; }
.bulk-items-head { display:flex; align-items:center; justify-content:space-between; margin-bottom:14px; gap:12px; }
.bulk-items-head .cat-heading { margin:0; }
.bulk-count { display:inline-grid; place-items:center; min-width:26px; height:26px; padding:0 8px; margin-left:6px;
    background:var(--gold); color:#15181f; border-radius:13px; font-size:14px; font-weight:800; vertical-align:middle; }
.bulk-clear { background:transparent; border:none; color:var(--muted); font-size:13px; cursor:pointer; text-decoration:underline; }
.bulk-clear:hover { color:#ff8a8a; }
.bulk-items { display:flex; flex-direction:column; gap:12px; }
.bulk-item { display:flex; align-items:center; gap:16px; background:var(--surface); border:1px solid var(--line); border-radius:12px; padding:12px 14px; }
.bulk-item-img { flex:0 0 auto; width:66px; height:66px; border-radius:8px; overflow:hidden; background:#fff; display:block; }
.bulk-item-img img { width:100%; height:100%; object-fit:contain; }
.bulk-item-main { flex:1 1 auto; min-width:0; }
.bulk-item-name { display:block; color:#fff; font-weight:600; font-size:15px; text-decoration:none; line-height:1.35; }
.bulk-item-name:hover { color:var(--gold); }
.bulk-item-remove { margin-top:6px; background:transparent; border:none; padding:0; color:var(--muted); font-size:12.5px; cursor:pointer; text-decoration:underline; }
.bulk-item-remove:hover { color:#ff8a8a; }
.bulk-form-card { background:var(--surface); border:1px solid var(--line); border-radius:14px; padding:22px; position:sticky; top:90px; }
.bulk-form-card h3 { margin:0 0 14px; }
.bulk-form .form-row { display:flex; gap:12px; margin-bottom:12px; }
.bulk-form .form-row > * { flex:1; min-width:0; }
.bulk-form textarea { margin-bottom:6px; }
.bulk-empty { text-align:center; padding:56px 20px; background:var(--surface); border:1px solid var(--line); border-radius:14px; }
.bulk-empty-ic { color:var(--gold); margin-bottom:14px; }
.bulk-empty h3 { margin:0 0 8px; }
.bulk-empty p { color:var(--muted); margin:0 0 20px; }
@media (max-width:900px) { .bulk-layout { grid-template-columns:1fr; } .bulk-form-card { position:static; } }
@media (max-width:560px) { .bulk-item { flex-wrap:wrap; } .bulk-item-img { width:54px; height:54px; } .bulk-qty { margin-left:auto; } }

/* Blog "Key Takeaways" box — a fixed, on-brand card so every post looks consistent
   regardless of who wrote it (points come from the admin's Key Takeaways field). */
.ph-key-takeaways { background: var(--surface, #161616); border: 1px solid var(--line, #2a2a2a); border-left: 4px solid var(--gold, #f8af01); border-radius: 12px; padding: 20px 26px; margin: 0 0 28px; }
.ph-key-takeaways h3 { margin: 0 0 12px; font-family: var(--font-accent); font-size: 20px; color: var(--gold, #f8af01); }
.ph-key-takeaways ul { margin: 0; padding-left: 20px; }
.ph-key-takeaways li { margin: 8px 0; color: var(--text, #d7d7d7); line-height: 1.65; }
@media (max-width: 560px) { .ph-key-takeaways { padding: 16px 18px; } }
