/* ============================================================
   Optikmash — Theme skin
   Black Friday demo layout: dark header/footer, light body
   Primary: #0275B2  |  Body: #f9f9f9  |  Text: #333
   Fonts: Hind 600 (headings), Raleway 400 (secondary)
============================================================ */

/* ---- Fonts & reset ---- */
@import url('https://fonts.googleapis.com/css2?family=Hind:wght@400;600;700&family=Raleway:wght@400;500;600&display=swap');

:root {
  --accent:   #0275B2;
  --accent-d: #025a8a;
  /* legacy aliases — remove once all inline styles updated */
  --green:    #0275B2;
  --green-d:  #025a8a;
  --om-green: #0275B2;
  /* dark-band tokens used by about/product/footer dark sections (were undefined → broke contrast) */
  --om-dark2:  #212121;
  --om-border: rgba(255,255,255,.1);
  --om-muted:  #888888;
  --dark:     #1a1a1a;
  --dark2:    #212121;
  --border-d: #333;
  --text:     #333333;
  --muted:    #888888;
  --body-bg:  #f9f9f9;
  --card-bg:  #ffffff;
}

/* Override WoodMart style.min.css: .whb-header { margin-bottom: 40px } */
.whb-header { margin-bottom: 0 !important; }

html { scroll-behavior: smooth; }

*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  padding: 0;
  background: var(--body-bg);
  color: var(--text);
  font-family: 'Hind', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ============================================================
   SKELETON PLACEHOLDERS (header + footer while partials load)
============================================================ */
@keyframes om-skel-shimmer {
  from { background-position: 200% 0; }
  to   { background-position: -200% 0; }
}
.om-skel-bar {
  border-radius: 3px;
  background: linear-gradient(90deg, #e0e0e0 25%, #ebebeb 50%, #e0e0e0 75%);
  background-size: 200% 100%;
  animation: om-skel-shimmer 1.4s infinite linear;
}
.om-skel-bar-dark {
  border-radius: 3px;
  background: linear-gradient(90deg, rgba(255,255,255,.06) 25%, rgba(255,255,255,.11) 50%, rgba(255,255,255,.06) 75%);
  background-size: 200% 100%;
  animation: om-skel-shimmer 1.4s infinite linear;
}
/* Announcement bar */
.om-header-skel-ann {
  height: 40px;
  background: var(--green);
}
/* Top bar — desktop only */
.om-header-skel-top {
  display: none;
  height: 42px;
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,.07);
  align-items: center;
}
@media (min-width: 992px) {
  .om-header-skel-top { display: flex; }
}
/* Main header row */
.om-header-skel-main {
  height: 90px;
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,.08);
  display: flex;
  align-items: center;
}
.om-header-skel-top .om-container,
.om-header-skel-main .om-container {
  display: flex;
  align-items: center;
  gap: 16px;
}
/* Footer skeleton */
.om-footer-skel {
  background: var(--dark2);
  border-top: 1px solid var(--border-d);
}
.om-footer-skel-body {
  max-width: 1400px;
  margin: 0 auto;
  padding: 56px 20px 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.om-footer-skel-col { display: flex; flex-direction: column; gap: 10px; }
.om-footer-skel-bottom {
  border-top: 1px solid var(--border-d);
  height: 55px;
}
@media (max-width: 1199px) {
  .om-footer-skel-body { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 767px) {
  .om-footer-skel-body { grid-template-columns: 1fr; gap: 24px; padding: 36px 20px; }
}

/* WoodMart sets .website-wrapper { overflow:hidden } which breaks position:sticky */
.website-wrapper { overflow: visible !important; background: var(--body-bg); }

[hidden] { display: none !important; }
a { color: var(--green); }
a:hover { color: var(--green-d); }
img { max-width: 100%; height: auto; }

/* ============================================================
   HEADER — WoodMart whb-* structure, light mode
   Rows use whb-color-dark: WoodMart gives #FFF bg + dark text.
   We add green hover/active, set heights, fix sizes.
============================================================ */

/* Sticky header wrapper */
.whb-header {
  position: sticky;
  top: 0;
  z-index: 9000;
  isolation: isolate;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}

/* Container override: 1400px site width */
.whb-header .container,
.whb-header .container-fluid {
  max-width: 1400px;
  padding: 0 20px;
  box-sizing: border-box;
}
/* Reset WoodMart's scrollbar padding-right on rows */
.whb-header .whb-row { padding-right: 0; }

/* ---- Row 1: Top bar (42px, hidden mobile) ---- */
.whb-top-bar-inner { height: 42px; border-bottom: 1px solid rgba(0,0,0,.07); }
/* ---- Availability status chip ---- */
.om-topbar-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: #666;
  letter-spacing: .03em;
}
.om-topbar-hours {
  font-size: 12px;
  color: #999;
  font-weight: 400;
}
.om-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ccc;
  flex-shrink: 0;
}
.om-status-online .om-status-dot {
  background: #22c55e;
  animation: hero-blink 2s infinite;
}
.om-status-offline .om-status-dot { background: #aaa; }

.om-topbar-links { display: flex; align-items: center; }
.om-topbar-links a {
  font-size: 13px;
  color: #555;
  text-decoration: none;
  padding: 0 12px;
  border-right: 1px solid rgba(0,0,0,.1);
  line-height: 1;
  transition: color .2s;
}
.om-topbar-links a:last-child { border-right: 1px solid rgba(0,0,0,.1); padding-right: 12px; }
.om-topbar-links > :last-child { border-right: none !important; padding-right: 0; }
.om-topbar-links a:hover { color: var(--green); }

/* WhatsApp link */
.om-topbar-wa { display: inline-flex; align-items: center; gap: 5px; }
.om-topbar-wa svg { fill: #25d366; flex-shrink: 0; }

/* ---- Row 2: Logo + Nav + Actions (90px) ---- */
.whb-general-header { border-bottom: 1px solid rgba(0,0,0,.08); }
.whb-general-header-inner { height: 90px; }
/* Middle column (nav) expands to fill available space */
.whb-general-header .whb-flex-row > .whb-column:nth-child(2) { flex: 1; }

/* ---- Logo ---- */
.om-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.om-logo-img {
  height: 36px;
  width: auto;
  display: block;
}
.om-logo-img-footer {
  height: 32px;
}

/* ---- Main nav (underline style) ---- */
.woodmart-navigation.main-nav {
  display: flex;
  align-items: center;
  margin-left: 40px;   /* breathing room between logo and first menu item */
}
.woodmart-navigation.main-nav .menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
}
.woodmart-navigation.main-nav .item-level-0 > .woodmart-nav-link {
  display: flex;
  align-items: center;
  height: 90px;
  padding: 0 18px;
  font-family: 'Hind', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #333;
  text-decoration: none;
  transition: color .2s;
  white-space: nowrap;
}
.woodmart-navigation.main-nav .item-level-0:hover > .woodmart-nav-link,
.woodmart-navigation.main-nav .item-level-0.current-menu-item > .woodmart-nav-link {
  color: var(--green) !important;
}
/* Nav-link-text underline animation color */
.woodmart-navigation.main-nav .nav-link-text::after { background-color: var(--green) !important; }

/* Chevron indicator on items with dropdowns */
.woodmart-navigation.main-nav .item-level-0.menu-item-has-children > .woodmart-nav-link::after {
  content: '▾';
  font-size: 11px;
  margin-left: 3px;
  color: #aaa;
  line-height: 1;
}
.woodmart-navigation.main-nav .item-level-0.menu-item-has-children:hover > .woodmart-nav-link::after,
.woodmart-navigation.main-nav .item-level-0.menu-item-has-children.current-menu-item > .woodmart-nav-link::after {
  color: var(--green);
}

/* Divider before "View All" in dropdown */
.sub-menu-view-all { border-top: 1px solid rgba(0,0,0,.07) !important; margin-top: 4px; padding-top: 4px; }

/* Dropdown in main nav */
.woodmart-navigation.main-nav .item-level-0 { position: relative; }
.woodmart-navigation.main-nav .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.1);
  border-top: 2px solid var(--green);
  list-style: none;
  padding: 8px 0;
  margin: 0;
  z-index: 9999;
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
}
.woodmart-navigation.main-nav .item-level-0:hover .sub-menu { display: block; }
.woodmart-navigation.main-nav .sub-menu .woodmart-nav-link {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  color: #555;
  text-decoration: none;
  height: auto;
  border-bottom: none;
  transition: color .2s, padding-left .2s;
}
.woodmart-navigation.main-nav .sub-menu li:hover > .woodmart-nav-link {
  color: var(--green);
  padding-left: 26px;
}

/* ---- Products mega-panel (groups left, categories right) ---- */
.woodmart-navigation.main-nav .sub-menu.om-has-mega { padding: 0; min-width: 0; }
.om-mega-panel {
  display: grid;
  grid-template-columns: 240px 1fr;
  width: 620px;
  list-style: none;
}
.om-mega-groups {
  list-style: none;
  margin: 0;
  padding: 8px 0;
  background: #f7f8f9;
  border-right: 1px solid rgba(0,0,0,.08);
}
.om-mega-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 8px;
  background: none;
  border: none;
  padding: 10px 18px;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  color: #444;
  text-align: left;
  cursor: pointer;
  transition: background .15s, color .15s;
}
.om-mega-group:hover, .om-mega-group.active {
  background: #fff;
  color: var(--green);
}
.om-mega-chev { color: #bbb; font-size: 16px; line-height: 1; }
.om-mega-group.active .om-mega-chev { color: var(--green); }
.om-mega-cats {
  padding: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  align-content: start;
}
.om-mega-cat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 9px 12px;
  font-size: 13px;
  color: #555;
  text-decoration: none;
  border-radius: 4px;
  transition: background .15s, color .15s;
}
.om-mega-cat:hover { background: rgba(2,117,178,.07); color: var(--green); }
.om-mega-cat-count {
  font-size: 10px;
  color: #999;
  background: rgba(0,0,0,.06);
  padding: 1px 7px;
  border-radius: 10px;
  flex-shrink: 0;
}

/* ---- Header actions (row 2 right) ---- */
.om-header-actions {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}
.om-header-actions .btn-om { padding: 6px 16px; }


/* ---- Mobile burger ---- */
.om-mobile-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.om-mobile-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #333;
  transition: all .3s;
}
@media (max-width: 1110px) {
  /* Kill WoodMart hover-based sub-menu on all touch/mobile widths */
  .woodmart-navigation.main-nav .item-level-0 > .sub-menu { display: none !important; }
  .woodmart-navigation.main-nav.nav-open .item-level-0.sub-open > .sub-menu { display: block !important; }
  /* Products uses a full-screen overlay — never show its sub-menu inline */
  .woodmart-navigation.main-nav .item-level-0[data-page="products.html"] > .sub-menu { display: none !important; }

  .om-mobile-burger { display: flex; }
  .woodmart-navigation.main-nav { display: none; }

  /* Mobile nav open state */
  .woodmart-navigation.main-nav.nav-open {
    display: flex;
    flex-direction: column;
    margin-left: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid rgba(0,0,0,.08);
    box-shadow: 0 8px 16px rgba(0,0,0,.08);
    z-index: 8999;
    padding: 8px 0;
  }
  .woodmart-navigation.main-nav.nav-open .menu { flex-direction: column; width: 100%; }
  .woodmart-navigation.main-nav.nav-open .item-level-0 > .woodmart-nav-link { height: auto; padding: 14px 20px; color: #333; border-bottom: 1px solid rgba(0,0,0,.07); }
  .woodmart-navigation.main-nav.nav-open .sub-menu { display: none; position: static; box-shadow: none; border: none; background: #f9f9f9; }
  .woodmart-navigation.main-nav.nav-open .item-level-0.sub-open > .sub-menu { display: block; }
  .woodmart-navigation.main-nav.nav-open .sub-menu .woodmart-nav-link { padding: 10px 32px; color: #555; }
  /* Mega-panel stacks vertically on mobile */
  .om-mega-panel { display: block; width: auto; }
  .om-mega-groups { background: transparent; border-right: none; padding: 0; }
  .om-mega-group { padding: 12px 32px; }
  .om-mega-cats { grid-template-columns: 1fr; padding: 4px 0 8px; }
  .om-mega-cat { padding: 10px 40px; }
}

/* ============================================================
   BUTTONS
============================================================ */
.btn-om {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Hind', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 10px 24px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, color .2s, border-color .2s;
  line-height: 1;
  white-space: nowrap;
  box-sizing: border-box;
}
.btn-om-primary { background: var(--green); color: #fff; }
.btn-om-primary:hover { background: var(--green-d); color: #fff; }
.btn-om-outline { background: transparent; color: var(--green); border: 2px solid var(--green); }
.btn-om-outline:hover { background: var(--green); color: #fff; }
.btn-om-dark { background: var(--dark2); color: #fff; border: 1px solid var(--border-d); }
.btn-om-dark:hover { background: #333; color: #fff; }
.btn-om-sm { padding: 8px 18px; font-size: 12px; }
.btn-om-lg { padding: 14px 36px; font-size: 14px; }

/* ============================================================
   LAYOUT HELPERS
============================================================ */
.om-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}
.om-section      { padding: 72px 0; }
.om-section-sm   { padding: 40px 0; }

.om-section-head { margin-bottom: 44px; }
.om-section-head.centered { text-align: center; }
.om-section-tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}
.om-section-title {
  font-family: 'Hind', sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 3vw, 34px);
  color: #111;
  line-height: 1.2;
  margin-bottom: 10px;
}
.om-section-sub {
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  color: var(--muted);
  max-width: 520px;
}
.om-section-head.centered .om-section-sub { margin: 0 auto; }
.om-divider-line {
  width: 40px;
  height: 3px;
  background: var(--green);
  margin: 12px 0 0;
}
.centered .om-divider-line { margin: 12px auto 0; }

/* ============================================================
   ANNOUNCEMENT BAR
============================================================ */
.om-announcement {
  background: var(--green);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  padding: 9px 20px;
  letter-spacing: .04em;
}

/* ============================================================
   HEADER: desktop inline search + mobile icon trigger
============================================================ */

/* Desktop inline search — hidden on mobile */
.om-header-search {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f2f2f2;
  border: none;
  border-radius: 6px;
  padding: 5px 10px;
  min-width: 360px;
  transition: background .2s;
}
.om-header-search:focus-within { background: #ebebeb; }
.om-header-search-icon { width: 16px; height: 16px; fill: #aaa; flex-shrink: 0; }
.om-header-search-input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: 'Hind', sans-serif;
  font-size: 13px;
  color: var(--text);
  min-width: 0;
  -webkit-appearance: none;
  appearance: none;
}
.om-header-search-input::placeholder { color: #aaa; }
.om-header-search-results {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  left: auto;
  min-width: 520px;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  z-index: 9999;
  max-height: 420px;
  overflow-y: auto;
}

/* Result rows */
.om-hs-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid #f2f2f2;
  transition: background .12s;
}
.om-hs-row:last-child { border-bottom: none; }
.om-hs-row:hover { background: #f7f9fb; }
.om-hs-thumb { width: 48px; height: 40px; flex-shrink: 0; border-radius: 5px; overflow: hidden; background: #f4f4f4; }
.om-hs-thumb img { width: 100%; height: 100%; object-fit: contain; }
.om-hs-thumb-ph { width: 100%; height: 100%; background: #ebebeb; }
.om-hs-name { font-size: 13px; font-weight: 600; color: var(--text); line-height: 1.3; }
.om-hs-meta { font-size: 11px; color: var(--muted); margin-top: 2px; }
.om-hs-price { font-size: 13px; font-weight: 700; color: var(--accent); margin-left: auto; flex-shrink: 0; }
.om-hs-empty { padding: 14px; font-size: 13px; color: var(--muted); }
.om-hs-all {
  display: block;
  padding: 10px 14px;
  font-size: 12px;
  color: var(--accent);
  text-decoration: none;
  border-top: 1px solid #eee;
  text-align: center;
}
.om-hs-all:hover { background: #f0f7fc; }

/* Search + Get a Quote merged group */
.om-header-search-group {
  display: flex;
  align-items: stretch;
  border-radius: 6px;
  overflow: visible;
}
.om-header-search-group .om-header-search {
  border-radius: 6px 0 0 6px;
  border-right: 1px solid rgba(0,0,0,.1);
  min-width: 300px;
}
.om-header-search-group .btn-om {
  border-radius: 0 6px 6px 0;
  align-self: stretch;
  height: auto;
  padding-top: 0;
  padding-bottom: 0;
}

/* Mobile icon trigger — hidden on desktop */
.om-search-trigger {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: none;
  align-items: center;
  justify-content: center;
}
.om-search-trigger svg { width: 20px; height: 20px; fill: #555; }

@media (max-width: 991px) {
  .om-header-search-group { display: none; }
  .om-search-trigger { display: flex; }
}

/* Mobile language globe trigger */
.om-lang-trigger {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  align-items: center;
  justify-content: center;
  color: #555;
  position: relative;
}
.om-lang-trigger svg { fill: #555; }
@media (max-width: 991px) {
  .om-lang-trigger { display: flex; }
}

/* Mobile lang dropdown — opens downward from the button */
.om-lang-trigger { position: relative; }
.om-mob-lang-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  min-width: 140px;
  z-index: 10001;
  overflow: hidden;
  padding:0;
}
.om-mob-lang-menu li { list-style: none; margin: 0; padding: 0; }
.om-mob-lang-menu .om-lang-option {
  display: block;
  width: 100%;
  padding: 12px 16px;
  background: none;
  border: none;
  border-bottom: 1px solid #f2f2f2;
  font-size: 14px;
  font-family: 'Hind', sans-serif;
  color: var(--text);
  cursor: pointer;
  text-align: left;
}
.om-mob-lang-menu li:last-child .om-lang-option { border-bottom: none; }
.om-mob-lang-menu .om-lang-option.active { color: var(--accent); font-weight: 600; }
.om-mob-lang-menu .om-lang-option:hover { background: #f7f9fb; }

/* Overlay */
body.om-search-open { overflow: hidden; }

.om-search-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transition: opacity .2s ease;
}
.om-search-overlay.active { opacity: 1; }

.om-search-overlay-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.om-search-overlay-inner {
  position: relative;
  background: #fff;
  box-shadow: 0 12px 48px rgba(0,0,0,.18);
  max-height: 75vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: omSearchSlideDown .25s ease;
}
@keyframes omSearchSlideDown {
  from { transform: translateY(-20px); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}

.om-search-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 0 16px;
  border-bottom: 2px solid var(--accent);
}
.om-search-bar-icon {
  width: 24px;
  height: 24px;
  fill: var(--accent);
  flex-shrink: 0;
}
#om-search-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 22px;
  font-family: 'Hind', sans-serif;
  font-weight: 400;
  background: transparent;
  color: var(--text);
  caret-color: var(--accent);
}
#om-search-input::placeholder { color: #bbb; }
.om-search-hint {
  font-size: 11px;
  padding: 2px 6px;
  border: 1px solid #ddd;
  border-radius: 4px;
  color: #aaa;
  font-family: 'Hind', sans-serif;
  background: #f8f8f8;
  line-height: 1;
}
.om-search-close {
  background: none;
  border: none;
  font-size: 32px;
  color: #aaa;
  cursor: pointer;
  line-height: 1;
  padding: 0 4px;
  transition: color .15s;
}
.om-search-close:hover { color: var(--text); }

/* Results */
.om-search-results {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-bottom: 8px;
}
.om-search-result-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 8px;
  border-bottom: 1px solid #f0f0f0;
  text-decoration: none;
  color: var(--text);
  transition: background .12s;
  border-radius: 4px;
}
.om-search-result-item:hover,
.om-search-result-item.highlighted {
  background: rgba(2,117,178,.05);
}
.om-search-result-thumb {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 6px;
  overflow: hidden;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.om-search-result-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.om-search-result-placeholder svg {
  width: 24px;
  height: 24px;
  fill: #ccc;
}
.om-search-result-body { flex: 1; min-width: 0; }
.om-search-result-name {
  font-weight: 600;
  font-size: 15px;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.om-search-result-meta {
  display: flex;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
}
.om-search-result-meta span + span::before {
  content: '\00b7';
  margin-right: 8px;
}
.om-search-result-price {
  font-weight: 600;
  font-size: 14px;
  color: var(--accent);
  white-space: nowrap;
  text-align: right;
  flex-shrink: 0;
}
.om-search-view-all {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 16px;
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: background .12s;
  border-radius: 4px;
}
.om-search-view-all:hover { background: rgba(2,117,178,.05); }
.om-search-view-all svg { fill: currentColor; }

.om-search-empty {
  padding: 32px 16px;
  text-align: center;
  color: var(--muted);
}
.om-search-empty p { margin-bottom: 8px; }
.om-search-contact-link {
  font-size: 13px;
  color: var(--accent);
}
.om-search-hint-text {
  padding: 20px 8px;
  color: #bbb;
  font-size: 14px;
}
.om-search-loading {
  display: flex;
  justify-content: center;
  padding: 32px;
}
.om-search-spinner {
  width: 24px;
  height: 24px;
  border: 2px solid #eee;
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: omSpin .6s linear infinite;
}
@keyframes omSpin { to { transform: rotate(360deg); } }

/* Search default state (before typing) */
.om-search-default { padding: 16px 0 8px; }
.om-search-default-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #bbb;
  margin-bottom: 12px;
}
.om-search-cat-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.om-search-cat-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border: 1.5px solid #e4e4e4;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  color: #444;
  text-decoration: none;
  transition: border-color .15s, background .15s, color .15s;
  white-space: nowrap;
}
.om-search-cat-chip:hover {
  border-color: var(--accent);
  background: rgba(2,117,178,.05);
  color: var(--accent);
}
.om-search-popular-list { display: flex; flex-direction: column; gap: 2px; margin-bottom: 8px; }
.om-search-popular-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 8px;
  border-radius: 6px;
  text-decoration: none;
  color: var(--text);
  transition: background .12s;
}
.om-search-popular-item::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ddd;
  flex-shrink: 0;
}
.om-search-popular-item:hover { background: rgba(2,117,178,.05); }
.om-search-popular-name { font-weight: 500; font-size: 14px; flex: 1; }
.om-search-popular-brand { font-size: 12px; color: var(--muted); flex-shrink: 0; }

/* Currency alt price */
.om-price-alt {
  font-size: 0.82em;
  color: var(--muted);
  font-weight: 400;
}

@media (max-width: 768px) {
  .om-search-overlay-inner { max-height: 100vh; max-height: 100dvh; }
  #om-search-input { font-size: 16px; }
  .om-search-result-thumb { width: 44px; height: 44px; }
  .om-search-hint { display: none; }
  .om-search-result-price { display: none; }
}

/* ============================================================
   HERO BANNER
============================================================ */
.om-hero {
  position: relative;
  overflow: hidden;
  height: 520px;
  border-bottom: 1px solid #e2e5e8;
}
.om-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #eef0f2 100%);
}
.om-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 75% 50%, rgba(2,117,178,.05) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(100,120,140,.04) 0%, transparent 60%);
  pointer-events: none;
}

.om-hero-layout {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: stretch;
  max-width: 1400px;
  margin: 0 auto;
  height: 100%;
}

/* ---- Left: category sidebar ---- */
.om-hero-cats {
  width: 210px;
  flex-shrink: 0;
  background: rgba(0,0,0,.03);
  border-right: 1px solid rgba(0,0,0,.07);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  scrollbar-width: none;        /* Firefox — hide scrollbar for the marquee look */
  -ms-overflow-style: none;     /* old Edge/IE */
}
.om-hero-cats::-webkit-scrollbar { width: 0; height: 0; display: none; }
.om-cat-item {
  display: flex;
  align-items: center;
  padding: 11px 16px;
  color: #555;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  gap: 8px;
  border-bottom: 1px solid rgba(0,0,0,.05);
  border-left: 3px solid transparent;
  transition: background .35s ease, color .35s ease, border-left-color .35s ease;
  cursor: pointer;
}
.om-cat-item:hover, .om-cat-item.active {
  background: rgba(2,117,178,.06);
  border-left-color: var(--green);
  color: #222;
}
.om-cat-item-name { flex: 1; }
.om-cat-item .om-cat-count {
  font-size: 10px;
  color: #999;
  background: rgba(0,0,0,.06);
  padding: 2px 7px;
  border-radius: 10px;
  flex-shrink: 0;
}

/* ---- Center: headline + product info ---- */
.om-hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 40px 56px 48px;
  min-width: 0;
}
.om-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}
.om-hero-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: hero-blink 2s infinite;
}
@keyframes hero-blink { 0%,100%{opacity:1} 50%{opacity:.3} }
.om-hero-title {
  font-family: 'Hind', sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 3vw, 38px);
  color: #111;
  line-height: 1.15;
  margin: 0 0 10px;
  letter-spacing: -.02em;
  transition: color .2s;
}
.om-hero-title em {
  font-style: normal;
  color: var(--green);
}
.om-hero-product-name-link:hover .om-hero-title { color: var(--green); }

/* Product info — displayed below headline */
.om-hero-product-info {
  margin-bottom: 24px;
}
.om-hero-product-info.hero-fade-out {
  animation: hero-fade-out .28s ease forwards;
}
.om-hero-product-info.hero-fade-in {
  animation: hero-fade-in .4s ease forwards;
}
.om-hero-product-cat {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green);
  margin-top: 4px;
  margin-bottom: 6px;
}
.om-hero-product-name-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.om-hero-product-name-link:hover .om-hero-product-name {
  color: var(--green);
}
.om-hero-product-name {
  font-family: 'Hind', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #111;
  line-height: 1.25;
  margin: 0 0 3px;
  transition: color .2s;
}
.om-hero-mfr-logo {
  max-height: 60px;
  max-width: 160px;
  width: auto;
  object-fit: contain;
  margin-bottom: 12px;
  display: block;
}
.om-hero-product-brand {
  font-size: 14px;
  color: #888;
  min-height: 1.3em;
}
.om-hero-product-price {
  font-family: 'Hind', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--green);
  margin: 6px 0 12px;
  min-height: 1.2em;
}
.om-hero-product-price .hero-price-req {
  font-size: 15px;
  font-weight: 600;
  color: #666;
}
.om-hero-product-desc {
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #666;
  max-width: 440px;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
/* Actions bar — sits inside content on desktop, separate element on mobile */
.om-hero-actions-bar {
  display: none; /* hidden on desktop — content area not used */
}
.om-hero-content .om-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ---- Right: product image ---- */
.om-hero-product-scene {
  width: 420px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 40px 32px 0;
  position: relative;
}
.om-hero-img-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.om-hero-product-img {
  max-width: 100%;
  max-height: 380px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,.12));
  transition: transform .2s ease;
}
.om-hero-img-link:hover .om-hero-product-img {
  transform: scale(1.03);
}

/* Smooth crossfade animation — shared keyframes, no transition conflict */
@keyframes hero-fade-out {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(8px); }
}
@keyframes hero-fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.om-hero-product-scene.hero-fade-out .om-hero-product-img {
  animation: hero-fade-out .28s ease forwards;
}
.om-hero-product-scene.hero-fade-in .om-hero-product-img {
  animation: hero-fade-in .4s ease forwards;
}

/* ============================================================
   USP STRIP
============================================================ */
.om-usp-strip {
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
  padding: 24px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.om-usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.om-usp-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 24px;
  border-right: 1px solid #e8e8e8;
}
.om-usp-item:last-child { border-right: none; }
.om-usp-icon {
  width: 38px; height: 38px;
  background: rgba(2,117,178,.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.om-usp-icon svg { width: 20px; height: 20px; fill: var(--green); }
.om-usp-title { font-weight: 600; font-size: 14px; color: #111; margin-bottom: 2px; }
.om-usp-desc  { font-size: 12px; color: var(--muted); line-height: 1.4; }

/* ============================================================
   CATEGORY CARDS
============================================================ */
.om-categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.om-cat-card {
  background: var(--card-bg);
  border: 1px solid #e8e8e8;
  padding: 32px 24px;
  text-decoration: none;
  display: block;
  transition: border-color .25s, transform .25s, box-shadow .25s;
  position: relative;
  overflow: hidden;
}
.om-cat-card:hover {
  border-color: var(--green);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
  color: inherit;
}
.om-cat-thumb-wrap {
  width: 100%; height: 110px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; margin-bottom: 4px;
}
.om-cat-thumb { max-width: 100%; max-height: 110px; object-fit: contain; }
.om-cat-icon {
  width: 48px; height: 48px;
  background: rgba(2,117,178,.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  transition: background .25s;
}
.om-cat-card:hover .om-cat-icon { background: rgba(2,117,178,.18); }
.om-cat-icon svg { width: 24px; height: 24px; fill: var(--green); }
.om-cat-name { font-weight: 600; font-size: 15px; color: #111; margin-bottom: 6px; }
.om-cat-count { font-size: 13px; color: var(--muted); }
.om-cat-arrow {
  position: absolute; right: 20px; top: 50%;
  transform: translateY(-50%) translateX(6px);
  opacity: 0; transition: opacity .25s, transform .25s;
  color: var(--green); font-size: 18px;
}
.om-cat-card:hover .om-cat-arrow { opacity: 1; transform: translateY(-50%) translateX(0); }

/* ============================================================
   PRODUCT CARDS
============================================================ */
.om-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.om-products-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }

.om-product-card {
  background: var(--card-bg);
  border: 1px solid #e8e8e8;
  transition: border-color .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
  min-width: 0;
  position: relative;
}
.om-product-card:hover {
  border-color: var(--green);
  box-shadow: 0 6px 24px rgba(0,0,0,.09);
}

/* Admin quick-edit button — revealed on hover, only when logged into admin */
.om-card-edit {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(2,117,178,.95);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  padding: 5px 9px;
  border-radius: 4px;
  text-decoration: none;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity .15s, transform .15s;
  pointer-events: none;
}
.om-product-card:hover .om-card-edit {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.om-card-edit:hover { background: var(--green-d); }
.om-product-image {
  position: relative;
  background: #f5f5f5;
  overflow: hidden;
  aspect-ratio: 1;
  display: block;
}
.om-product-image img {
  width: 100%; height: 100%;
  object-fit: contain;
  transform: scale(1.08);
  transition: filter .5s ease, transform .5s ease;
  will-change: filter, transform;
/* padding: 4px 2px 3px 3px; */
padding-top: 2px;
padding-bottom: 2px;
padding-left: 1px;
padding-right: 4px;
}
.om-product-image img.om-sharp {
  filter: none;
  transform: scale(1);
}
.om-product-card:hover .om-product-image img.om-sharp { transform: scale(1.04); }
.om-product-image-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.om-product-image-placeholder svg { width: 56px; height: 56px; fill: #ccc; }
.om-product-badges {
  position: absolute;
  top: 10px; left: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  z-index: 2;
}
/* ===== Unified badge system — marketplace + status (namespaced om-badge to
   avoid clashing with Bootstrap/WoodMart generic class names) ===== */
.om-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  line-height: 1;
  text-decoration: none;
  user-select: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
  font-weight: 500;
}
.om-badge:active { transform: translateY(0); }
a.om-badge { cursor: pointer; }

/* Marketplace variants */
.om-badge.marketplace .om-badge-logo { font-weight: 900; line-height: 1; }
.om-badge.marketplace.ebay    .om-badge-logo { font-style: italic; letter-spacing: -1px; }
.om-badge.marketplace.allegro .om-badge-logo { font-style: normal; letter-spacing: -.5px; }
/* eBay SVG logo inside badge chip and button */
.om-badge-ebay-logo { height: 14px; width: auto; display: block; }
.om-btn-ebay { display: inline-flex; align-items: center; justify-content: center; min-width: 80px; }
.om-btn-ebay-logo { height: 20px; width: auto; display: block; }
.om-badge.marketplace.light { border: 1px solid #e5e5e5; color: #333; box-shadow: 0 2px 6px rgba(0,0,0,.08); }
.om-badge.marketplace.light .om-badge-logo { color: #000; }
.om-badge.marketplace.light:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,0,0,.12); background: #fafafa; }
.om-badge.marketplace.dark { background: #111; border: 1px solid #222; color: #eee; }
.om-badge.marketplace.dark .om-badge-logo { color: #fff; }
.om-badge.marketplace.dark:hover { transform: translateY(-1px); background: #1d1d1d; box-shadow: 0 4px 12px rgba(0,0,0,.35); }

/* Sizes */
.om-badge.size-badge   { gap: 5px;  padding: 4px 10px;  font-size: 11px; }
.om-badge.size-badge   .om-badge-logo { font-size: 14px; }
.om-badge.size-mobile  { gap: 7px;  padding: 9px 16px;  font-size: 14px; min-height: 40px; box-sizing: border-box; }
.om-badge.size-mobile  .om-badge-logo { font-size: 19px; }
.om-badge.size-desktop { gap: 8px;  padding: 10px 20px; font-size: 16px; }
.om-badge.size-desktop .om-badge-logo { font-size: 22px; }
.om-badge.size-cta     { gap: 12px; padding: 16px 32px; font-size: 19px; border-radius: 14px; }
.om-badge.size-cta     .om-badge-logo { font-size: 30px; }

/* Status variants */
.om-badge.status { padding: 5px 12px; font-size: 12px; letter-spacing: .3px; text-transform: uppercase; }
.om-badge.status.lg { padding: 7px 16px; font-size: 13px; }
.om-badge.status.new  { background: var(--accent); color: #fff; border: 1px solid var(--accent); }
.om-badge.status.new:hover  { background: var(--accent-d); transform: translateY(-1px); box-shadow: 0 4px 10px rgba(2,117,178,.28); }
.om-badge.status.sale { background: #d97706; color: #fff; border: 1px solid #d97706; }
.om-badge.status.sale:hover { background: #b45309; transform: translateY(-1px); box-shadow: 0 4px 10px rgba(217,119,6,.28); }
.om-badge.status.oos  { background: #475569; color: #fff; border: 1px solid #475569; }
.om-badge.status.oos:hover  { background: #334155; transform: translateY(-1px); box-shadow: 0 4px 10px rgba(71,85,105,.3); }

/* Marketplace availability chips — overlaid on the card photo, bottom-right */
.om-product-mk {
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
  z-index: 2;
  width: 80px;
backdrop-filter: blur(15px);
border-radius: 999px;
}

.om-product-info { padding: 18px; display: flex; flex-direction: column; flex: 1; }
.om-product-cat  { font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--green); }
.om-product-name {
  font-family: 'Hind', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #111;
  line-height: 1.4;
  margin-bottom: 6px;
  text-decoration: none;
  display: block;
}
.om-product-name:hover { color: var(--green); }
.om-product-sku  { font-size: 12px; color: var(--muted); margin-bottom: 10px; }
.om-product-price {
  font-size: 17px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 14px;
  margin-top: auto;
}
.om-product-price .price-label { font-size: 12px; font-weight: 400; color: var(--muted); margin-right: 4px; }
.om-price-old {
  text-decoration: line-through;
  color: var(--muted);
  font-weight: 400;
  font-size: 14px;
  margin-right: 6px;
}
.om-price-sale { color: #c62828; }

/* Lazy image placeholder */
img.om-lazy {
  background: #f0f0f0;
  min-height: 180px;
}
.om-product-actions { display: flex; gap: 8px; }
.om-product-actions .btn-om { flex: 1; justify-content: center; }

/* ============================================================
   SKELETONS — shimmer loading placeholders
============================================================ */
@keyframes om-shimmer {
  0%   { background-position: -600px 0; }
  100% { background-position:  600px 0; }
}
/* Shimmer base — applied to leaf skeleton elements */
.om-skeleton-img,
.om-skeleton-line,
.om-skeleton-gallery-main,
.om-skeleton-thumb,
.om-skeleton-filter-item {
  background: linear-gradient(90deg,
    rgba(255,255,255,.05) 25%,
    rgba(255,255,255,.12) 50%,
    rgba(255,255,255,.05) 75%);
  background-size: 600px 100%;
  animation: om-shimmer 1.6s infinite linear;
  border-radius: 4px;
  display: block;
}
/* Product card skeleton wrapper */
.om-skeleton {
  padding: 0;
}
.om-skeleton-img {
  width: 100%;
  padding-bottom: 100%;
  margin-bottom: 14px;
}
.om-skeleton-line {
  height: 13px;
  margin-bottom: 10px;
  width: 100%;
}
.om-skeleton-line.short  { width: 55%; }
.om-skeleton-line.medium { width: 78%; }

/* Sidebar category filter skeletons */
.om-skeleton-filter-item {
  height: 36px;
  margin-bottom: 4px;
  width: 100%;
}

/* Product detail page skeleton */
.om-skeleton-product-gallery {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.om-skeleton-gallery-main {
  width: 100%;
  padding-bottom: 65%;
  border-radius: 6px;
}
.om-skeleton-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.om-skeleton-thumb {
  padding-bottom: 100%;
}
.om-skeleton-product-info {
  display: flex;
  flex-direction: column;
}

/* ============================================================
   VALUES
============================================================ */
.om-values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.om-value-card {
  background: var(--card-bg);
  border: 1px solid #e8e8e8;
  border-top: 3px solid var(--green);
  padding: 28px;
}
.om-value-icon {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(2,117,178,.1);
  margin-bottom: 14px;
}
.om-value-icon svg { width: 22px; height: 22px; fill: var(--green); }
.om-value-title { font-weight: 700; font-size: 16px; color: #111; margin-bottom: 8px; }
.om-value-desc  { font-family: 'Raleway', sans-serif; font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ============================================================
   CTA BANNER (dark section)
============================================================ */
.om-cta-banner {
  background: var(--dark2);
  padding: 64px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.om-cta-banner::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(2,117,178,.1) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
}
.om-cta-banner h2 { font-size: clamp(24px,4vw,40px); font-weight: 700; color: #fff; margin-bottom: 14px; }
.om-cta-banner p  { font-family: 'Raleway', sans-serif; font-size: 17px; color: rgba(255,255,255,.6); margin-bottom: 28px; }
.om-cta-actions   { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   SHOP — product listing
============================================================ */
.om-shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  align-items: start;
}
.om-sidebar {
  background: var(--card-bg);
  border: 1px solid #e8e8e8;
  padding: 24px;
  position: sticky;
  top: 150px;
  max-height: calc(100vh - 180px);
  overflow-y: auto;
}
.om-sidebar-title {
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e8e8e8;
}
.om-filter-list { list-style: none; margin: 0; padding: 0; }
.om-filter-list li { border-bottom: 1px solid #f0f0f0; }
.om-filter-list li:last-child { border-bottom: none; }
.om-filter-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  color: #555;
  font-size: 14px;
  text-decoration: none;
  transition: color .2s;
}
.om-filter-list a:hover, .om-filter-list a.active { color: var(--green); }
.om-filter-count {
  background: #f4f4f4;
  color: var(--muted);
  font-size: 11px;
  padding: 2px 7px;
  border-radius: 10px;
}
.om-filter-list a.active .om-filter-count { background: rgba(2,117,178,.12); color: var(--green); }

/* ---- Dynamic spec filters ---- */
.om-spec-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 0;
  cursor: pointer;
  font-size: 13px;
  color: #444;
  line-height: 1.4;
}
.om-spec-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: var(--accent);
  cursor: pointer;
  flex-shrink: 0;
}
.om-spec-checkbox span {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
}
.om-spec-checkbox:hover { color: var(--accent); }
.om-spec-values { margin-top: 4px; }
.om-spec-values li { border-bottom: none !important; }
.om-spec-toggle {
  display: flex;
  gap: 0;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
  margin-top: 6px;
}
.om-toggle-btn {
  flex: 1;
  padding: 6px 0;
  border: none;
  background: #fff;
  color: #666;
  font-size: 13px;
  cursor: pointer;
  transition: all 150ms;
  border-right: 1px solid #ddd;
}
.om-toggle-btn:last-child { border-right: none; }
.om-toggle-btn:hover { background: #f5f5f5; }
.om-toggle-btn.active {
  background: var(--accent);
  color: #fff;
}
.om-spec-range {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}
.om-spec-range input {
  width: 80px;
  padding: 6px 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 13px;
}
.om-spec-range input:focus {
  outline: none;
  border-color: var(--accent);
}
.om-spec-range span { color: var(--muted); }

/* ---- Filter drawer (mobile) ---- */
.om-filter-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 9800;
  opacity: 0;
  transition: opacity .25s;
}
.om-filter-overlay.active {
  display: block;
  opacity: 1;
}
.om-filter-drawer-header,
.om-filter-drawer-footer { display: none; }
.om-filter-drawer-body { padding: 0; }

.om-filter-toggle {
  display: none;
  align-items: center;
  gap: 7px;
  background: #fff;
  border: 1px solid #e0e0e0;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Hind', sans-serif;
  color: var(--text);
  cursor: pointer;
  border-radius: 2px;
}
.om-filter-toggle svg { width: 16px; height: 16px; fill: currentColor; }
.om-filter-toggle:hover { border-color: var(--accent); color: var(--accent); }

.om-filter-badge {
  display: none;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  padding: 3px 6px;
  border-radius: 10px;
  min-width: 18px;
  text-align: center;
}
.om-filter-badge.visible { display: inline-block; }

.om-toolbar-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.om-shop-toolbar {
  display: flex; align-items: center;
  margin-bottom: 20px; padding-bottom: 14px;
  border-bottom: 1px solid #e8e8e8;
  gap: 10px;
}
.om-shop-count { font-size: 13px; color: var(--muted); }
.om-shop-sort select {
  background: #fff;
  border: 1px solid #e8e8e8;
  color: #333;
  font-size: 13px;
  font-family: 'Hind', sans-serif;
  padding: 8px 32px 8px 12px;
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23888' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  outline: none;
}

.om-load-sentinel {
  height: 1px;
  margin-top: 40px;
}
.om-load-more-spinner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 32px 0;
  color: var(--text-muted);
  font-size: 14px;
  grid-column: 1 / -1;
}
.om-load-more-spinner .spinner {
  width: 22px; height: 22px;
  border: 2px solid #ddd;
  border-top-color: var(--green);
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.om-load-end {
  text-align: center;
  padding: 28px 0 8px;
  color: var(--text-muted);
  font-size: 13px;
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}
.om-load-end-help { font-size: 12px; color: var(--muted); }
.om-load-end-help a { color: var(--green); text-decoration: underline; }
.om-load-end-help a:hover { text-decoration: none; }

/* ============================================================
   LIGHTBOX
============================================================ */
.om-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}
.om-lightbox[hidden] { display: none; }
.om-lightbox-img {
  max-width: min(94vw, 1200px);
  max-height: 92vh;
  object-fit: contain;
  display: block;
  border-radius: 2px;
  box-shadow: 0 8px 48px rgba(0,0,0,.6);
}
.om-lightbox-close {
  position: fixed;
  top: 18px;
  right: 22px;
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,.12);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s;
}
.om-lightbox-close:hover { background: rgba(255,255,255,.22); }
.om-lightbox-close svg { width: 22px; height: 22px; fill: #fff; }
.om-lightbox-prev,
.om-lightbox-next {
  position: fixed;
  top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  background: rgba(255,255,255,.12);
  border: none; border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
  z-index: 10001;
}
.om-lightbox-prev { left: 18px; }
.om-lightbox-next { right: 18px; }
.om-lightbox-prev:hover,
.om-lightbox-next:hover { background: rgba(255,255,255,.28); }
.om-lightbox-prev svg,
.om-lightbox-next svg { width: 26px; height: 26px; fill: #fff; }

/* ============================================================
   INQUIRY MODAL
============================================================ */
.om-inquiry-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.om-inquiry-modal[hidden] { display: none; }
.om-inquiry-modal-box {
  background: #fff;
  border-radius: 8px;
  padding: 32px;
  width: 100%;
  max-width: 580px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 16px 48px rgba(0,0,0,.3);
}
.om-inquiry-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}
.om-inquiry-modal-title {
  font-family: 'Hind', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #111;
  margin: 0;
}
.om-inquiry-modal-close {
  width: 34px;
  height: 34px;
  background: #f4f4f4;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}
.om-inquiry-modal-close:hover { background: #e8e8e8; }
.om-inquiry-modal-close svg { width: 18px; height: 18px; fill: #555; }
.om-inquiry-modal-product {
  font-size: 13px;
  color: var(--green);
  font-weight: 600;
  margin: 0 0 20px;
}
.om-inquiry-modal-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.om-inquiry-modal-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 14px;
}
.om-inquiry-modal-field label {
  font-size: 12px;
  font-weight: 600;
  color: #555;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.om-inquiry-modal-field input,
.om-inquiry-modal-field textarea {
  border: 1px solid #d8d8d8;
  border-radius: 4px;
  padding: 9px 12px;
  font-size: 14px;
  font-family: 'Hind', sans-serif;
  color: #111;
  transition: border-color .2s;
  width: 100%;
  box-sizing: border-box;
}
.om-inquiry-modal-field input:focus,
.om-inquiry-modal-field textarea:focus {
  outline: none;
  border-color: var(--green);
}
.om-inquiry-modal-field textarea { resize: vertical; min-height: 90px; }
.om-inquiry-modal-footer {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}
.om-inquiry-modal-msg {
  margin-top: 14px;
  padding: 10px 14px;
  border-radius: 4px;
  font-size: 14px;
}
.om-inquiry-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
  color: #25a366;
  text-decoration: none;
}
.om-inquiry-wa svg { fill: #25d366; flex-shrink: 0; }
.om-inquiry-wa:hover { color: #1d8a52; text-decoration: underline; }
.om-inquiry-modal-success { background: #eaf7ef; color: #2a7a4a; border: 1px solid #b8e5ca; }
.om-inquiry-modal-error   { background: #fdf0f0; color: #9b2c2c; border: 1px solid #f5c0c0; }
@media (max-width: 520px) {
  .om-inquiry-modal-row { grid-template-columns: 1fr; }
  .om-inquiry-modal-box { padding: 22px 18px; }
}

/* ============================================================
   SINGLE PRODUCT
============================================================ */
.om-product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.om-gallery-main {
  background: transparent;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: zoom-in;
  position: relative;
}
.om-gallery-main img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: opacity .3s ease;
}
.om-gallery-main img.om-gallery-fade {
  opacity: 0;
}

/* Arrows */
.om-gallery-arrow {
  position: absolute;
  top: 50%;
  box-sizing: border-box;
  width: 44px; height: 44px;
  padding: 0;
  margin-top: -22px;            /* vertical centering without transform (kept stable) */
  background: rgba(255,255,255,.92);
  border: 1px solid #e0e0e0;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  line-height: 0;
  cursor: pointer;
  opacity: 0;
  transition: opacity .2s, background .2s, box-shadow .2s;
  z-index: 3;
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
}
.om-gallery-arrow:hover { background: #fff; box-shadow: 0 4px 16px rgba(0,0,0,.18); }
.om-gallery-arrow svg { width: 22px; height: 22px; fill: #333; display: block; }
.om-gallery-prev { left: 12px; }
.om-gallery-next { right: 12px; }
.om-gallery-arrow[hidden] { display: none; }
.om-gallery-main:hover .om-gallery-arrow:not([hidden]) { opacity: 1; }

/* Dots — now below the image (own flow element, no overlap) */
.om-gallery-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 12px;
}
.om-gallery-dots:empty { display: none; }
.om-gallery-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(0,0,0,.22);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .2s, transform .2s;
}
.om-gallery-dot.active {
  background: var(--green);
  transform: scale(1.3);
}
.om-gallery-thumbs { display: grid; grid-template-columns: repeat(5,1fr); gap: 8px; margin-top: 8px; }
.om-gallery-thumb {
  background: #fff; border: 1px solid transparent;
  overflow: hidden; aspect-ratio: 1; cursor: pointer;
  transition: border-color .2s;
}
.om-gallery-thumb img { width:100%; height:100%; object-fit:cover; padding:4px; }
.om-gallery-thumb.active, .om-gallery-thumb:hover { border-color: var(--green); }

.om-product-mfr-logo {
  display: block;
  max-height: 40px;
  max-width: 160px;
  object-fit: contain;
  margin-bottom: 14px;
}
.om-product-sku-badge {
  display: inline-block; font-size: 11px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; color: var(--muted);
  border: 1px solid #e8e8e8; padding: 3px 10px; margin-bottom: 14px;
}
.om-product-title {
  font-family: 'Hind', sans-serif; font-weight: 700;
  font-size: clamp(22px, 3vw, 30px); color: #111;
  line-height: 1.2; margin-bottom: 14px;
}
.om-product-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }
.om-meta-item { font-size: 13px; color: var(--muted); }
.om-meta-item strong { color: #111; }
.om-meta-separator { color: #ddd; }

.om-product-price-box {
  background: #f9f9f9;
  border: 1px solid #e8e8e8;
  border-left: 3px solid var(--green);
  padding: 18px 20px;
  margin-bottom: 20px;
}
.om-product-price-label { font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.om-product-price-value { font-size: 26px; font-weight: 700; color: var(--green); }
.om-product-price-note { font-size: 12px; color: var(--muted); margin-top: 4px; }
.om-shipping-badges { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.om-shipping-badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 10px;
  background: #f0f8f4; border: 1px solid #cce8d8;
  border-radius: 20px; font-size: 12px; color: var(--green);
  font-weight: 500;
}

.om-product-short-desc { font-family: 'Raleway', sans-serif; font-size: 15px; color: #555; line-height: 1.7; margin-bottom: 24px; }

.om-inquiry-merged {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid #e0e0e0;
}
.om-inquiry-merged p { font-size: 13px; color: var(--muted); margin-bottom: 14px; line-height: 1.6; }
.om-inquiry-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.om-marketplace-links { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 10px; }

.om-specs-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.om-specs-table tr { border-bottom: 1px solid #f0f0f0; }
.om-specs-table tr:last-child { border-bottom: none; }
.om-specs-table th { width: 40%; padding: 11px 16px; font-weight: 600; color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .06em; background: #f9f9f9; text-align: left; }
.om-specs-table td { padding: 11px 16px; color: #333; background: #fff; }

.om-tabs { margin-top: 52px; }
.om-tab-nav { display: flex; border-bottom: 1px solid #e8e8e8; }
.om-tab-btn {
  padding: 12px 24px;
  font-family: 'Hind', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  border: none;
  background: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color .2s, border-color .2s;
}
.om-tab-btn:hover { color: #111; }
.om-tab-btn.active { color: var(--green); border-bottom-color: var(--green); }
.om-tab-panel { display: none; padding: 28px 0; }
.om-tab-panel.active { display: block; }

/* ============================================================
   BREADCRUMB
============================================================ */
.om-breadcrumb { padding: 14px 0; border-bottom: 1px solid #e8e8e8; margin-bottom: 28px; }
.om-breadcrumb-list { list-style: none; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.om-breadcrumb-list li { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); }
.om-breadcrumb-list li:not(:last-child)::after { content: '/'; opacity: .4; }
.om-breadcrumb-list a { color: var(--muted); text-decoration: none; transition: color .2s; }
.om-breadcrumb-list a:hover { color: var(--green); }
.om-breadcrumb-list li:last-child { color: #111; }

/* ============================================================
   PAGE TITLE
============================================================ */
.om-page-title-section {
  background: linear-gradient(180deg, #f0f0f0 0%, var(--body-bg) 100%);
  border-bottom: 1px solid #e8e8e8;
  padding: 40px 0;
}
.om-page-title { font-size: clamp(26px,4vw,40px); font-weight: 700; color: #111; margin-bottom: 6px; }
.om-page-subtitle { font-family: 'Raleway', sans-serif; font-size: 15px; color: var(--muted); }

/* ============================================================
   CONTACT
============================================================ */
.om-contact-layout { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; }
.om-contact-form-card { background: #fff; border: 1px solid #e8e8e8; padding: 36px; }
.om-form-title { font-weight: 700; font-size: 22px; color: #111; margin-bottom: 6px; }
.om-form-sub { font-size: 14px; color: var(--muted); margin-bottom: 24px; }
.om-form-group { margin-bottom: 18px; }
.om-form-label { display: block; font-size: 13px; font-weight: 600; color: #333; margin-bottom: 7px; }
.om-form-label .required { color: var(--green); }
.om-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.om-form-control {
  width: 100%;
  background: #fff;
  border: 1px solid #ddd;
  color: #333;
  font-family: 'Hind', sans-serif;
  font-size: 14px;
  padding: 11px 14px;
  outline: none;
  transition: border-color .2s;
  -webkit-appearance: none;
}
.om-form-control:focus { border-color: var(--green); }
textarea.om-form-control { resize: vertical; min-height: 130px; }
.om-form-notice { background: rgba(2,117,178,.06); border: 1px solid rgba(2,117,178,.2); padding: 12px 16px; font-size: 13px; color: #555; margin-bottom: 22px; line-height: 1.5; }
.om-form-success { background: rgba(2,117,178,.1); border: 1px solid var(--green); padding: 20px; color: #2d7050; font-weight: 600; text-align: center; display: none; }
.om-form-error { font-size: 12px; color: #c0392b; margin-top: 5px; }
.om-form-hint { font-size: 12.5px; color: var(--muted); margin: -10px 0 18px; }
.om-optional { font-weight: 400; color: var(--muted); font-size: 12px; }

/* Searchable product picker (contact form) */
.om-product-search { position: relative; }
.om-product-search-results {
  position: absolute; left: 0; right: 0; top: 100%; z-index: 30;
  background: #fff; border: 1px solid #e0e0e0; border-top: none;
  max-height: 300px; overflow-y: auto; box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
.om-product-search-item {
  display: flex; align-items: center; gap: 10px; width: 100%;
  padding: 8px 12px; background: none; border: none; border-bottom: 1px solid #f0f0f0;
  text-align: left; cursor: pointer; font: inherit; color: var(--text);
}
.om-product-search-item:last-child { border-bottom: none; }
.om-product-search-item:hover { background: #f5f8fa; }
.om-product-search-item img { width: 34px; height: 34px; object-fit: contain; flex-shrink: 0; background: #fafafa; border: 1px solid #eee; }
.om-product-search-name { flex: 1; font-size: 13.5px; }
.om-product-search-brand { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; }

/* Inquiry modal contact hint */
.om-inquiry-modal-hint { font-size: 12.5px; color: var(--muted); margin: 2px 0 14px; }

.om-contact-info { display: flex; flex-direction: column; gap: 16px; }
.om-contact-info-card { background: #fff; border: 1px solid #e8e8e8; padding: 22px; }
.om-contact-info-title { font-weight: 600; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.om-contact-detail { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.om-contact-detail:last-child { margin-bottom: 0; }
.om-contact-detail-icon { width: 32px; height: 32px; background: rgba(2,117,178,.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.om-contact-detail-icon svg { width: 15px; height: 15px; fill: var(--green); }
.om-contact-detail-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin-bottom: 2px; }
.om-contact-detail-value { font-size: 14px; color: #111; }

/* ============================================================
   ABOUT
============================================================ */
.om-about-hero {
  background: var(--dark2);
  border-bottom: 1px solid #000;
  padding: 72px 0;
  text-align: center;
}
.om-about-hero h1 { font-size: clamp(28px,5vw,48px); font-weight: 700; color: #fff; margin-bottom: 14px; }
.om-about-hero p { font-family: 'Raleway', sans-serif; font-size: 17px; color: rgba(255,255,255,.6); max-width: 580px; margin: 0 auto; line-height: 1.7; }
/* Breadcrumb sits on the dark about hero — force light text (default last-child is #111) */
.om-about-hero .om-breadcrumb-list li,
.om-about-hero .om-breadcrumb-list a { color: rgba(255,255,255,.6); }
.om-about-hero .om-breadcrumb-list li:last-child { color: #fff; }
.om-about-hero .om-breadcrumb-list a:hover { color: #fff; }

/* Light about hero variant */
.om-about-hero.om-about-hero-light {
  background: #fff;
  border-bottom: 1px solid #e9ecef;
}
.om-about-hero.om-about-hero-light h1 { color: var(--text); }
.om-about-hero.om-about-hero-light p { color: var(--om-muted); }
.om-about-hero.om-about-hero-light .om-breadcrumb-list li,
.om-about-hero.om-about-hero-light .om-breadcrumb-list a { color: #888; }
.om-about-hero.om-about-hero-light .om-breadcrumb-list li:last-child { color: var(--text); }
.om-about-hero.om-about-hero-light .om-breadcrumb-list a:hover { color: var(--accent); }

/* About page story layout */
.om-about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.om-about-body-text {
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  color: var(--om-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Photo placeholders */
.om-about-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.om-about-photo-placeholder {
  aspect-ratio: 4/3;
  background: #f0f0f0;
  border-radius: 8px;
  border: 2px dashed #d0d0d0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #bbb;
  font-size: 12px;
  font-family: 'Raleway', sans-serif;
}
.om-about-photo-placeholder svg { fill: #ccc; }

/* Stats grid — light */
.om-about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 16px;
}
.om-about-stat-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-top: 3px solid var(--accent);
  padding: 32px 24px;
  text-align: center;
  border-radius: 4px;
}
.om-about-stat-num {
  font-size: 44px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.om-about-stat-plus { color: var(--accent); }
.om-about-stat-unit { font-size: 28px; color: var(--accent); }
.om-about-stat-label {
  font-size: 13px;
  color: var(--om-muted);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* Equipment range — light cards */
.om-range-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  padding: 24px;
  display: flex;
  gap: 16px;
}
.om-range-num {
  font-size: 28px;
  line-height: 1;
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}
.om-range-title { font-weight: 700; color: var(--text); margin-bottom: 6px; }
.om-range-desc { font-size: 14px; color: var(--om-muted); line-height: 1.6; margin: 0; }

@media (max-width: 768px) {
  .om-about-story-grid { grid-template-columns: 1fr; gap: 32px; }
  .om-about-stats-grid { grid-template-columns: repeat(2,1fr); }
}

/* Sections explicitly placed on a dark band need a light title (default .om-section-title is #111) */
.om-section-dark .om-section-title { color: #fff; }
.om-section-dark .om-section-sub   { color: rgba(255,255,255,.6); }

/* ============================================================
   FOOTER (dark)
============================================================ */
.om-footer { background: var(--dark2); border-top: 1px solid var(--border-d); margin-top: auto; }
.om-footer-widgets {
  padding: 56px 0 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.om-footer-brand .om-logo { margin-bottom: 18px; }
.om-footer-brand p { font-family: 'Raleway', sans-serif; font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.7; margin-bottom: 20px; }
.om-footer-social { display: flex; gap: 8px; }
.om-social-btn {
  width: 34px; height: 34px;
  background: rgba(255,255,255,.08); border: 1px solid var(--border-d);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5); text-decoration: none;
  transition: all .2s;
}
.om-social-btn:hover { background: var(--green); border-color: var(--green); color: #fff; }
.om-social-btn svg { width: 15px; height: 15px; fill: currentColor; }

.om-footer-widget-title { font-family: 'Hind', sans-serif; font-weight: 600; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: #fff; margin-bottom: 18px; }
.om-footer-links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.om-footer-links a { font-size: 14px; color: rgba(255,255,255,.5); text-decoration: none; transition: color .2s; }
.om-footer-links a:hover { color: var(--green); }

.om-footer-bottom { border-top: 1px solid var(--border-d); padding: 18px 0; text-align: center; }
.om-footer-bottom p { font-size: 13px; color: rgba(255,255,255,.4); }
.om-footer-bottom a { color: var(--green); }

/* ============================================================
   MISC
============================================================ */
.om-notice { padding: 12px 16px; font-size: 14px; border-left: 3px solid; margin-bottom: 18px; }
.om-notice-info    { background: rgba(42,127,197,.07);  border-color: #2a7fc5; color: #333; }
.om-notice-success { background: rgba(2,117,178,.07);  border-color: var(--green); color: #333; }
.om-notice-error   { background: rgba(192,57,43,.07);   border-color: #c0392b; color: #333; }

.om-empty-state { text-align: center; padding: 60px 20px; color: var(--muted); }
.om-empty-state svg { width: 56px; height: 56px; fill: #ddd; margin: 0 auto 16px; display: block; }
.om-empty-state h3 { font-size: 18px; color: #333; margin-bottom: 8px; }

.om-spinner { display: flex; justify-content: center; padding: 60px; }
.om-spinner::after {
  content: ''; width: 34px; height: 34px;
  border: 3px solid #e8e8e8; border-top-color: var(--green);
  border-radius: 50%; animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.hidden { display: none !important; }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1200px) {
  .om-products-grid { grid-template-columns: repeat(3,1fr); }
  .om-footer-widgets { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 992px) {
  .om-shop-layout { grid-template-columns: 1fr; }
  .om-product-layout { grid-template-columns: 1fr; gap: 28px; }
  .om-contact-layout { grid-template-columns: 1fr; }
  .om-usp-grid { grid-template-columns: repeat(2,1fr); }
  .om-usp-item:nth-child(2) { border-right: none; }
  .om-values-grid { grid-template-columns: 1fr 1fr; }
  .om-categories-grid { grid-template-columns: repeat(2,1fr); }
  .om-hero-cats { display: none; }
  .om-hero-product-scene { width: 320px; padding: 24px 24px 24px 0; }
  .om-hero-content { padding: 40px 24px 40px 32px; }

  /* Filter drawer */
  .om-filter-toggle { display: inline-flex; }
  .om-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100dvh;
    max-height: 100dvh;
    width: min(320px, 88vw);
    z-index: 9900;
    transform: translateX(-100%);
    transition: transform .28s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border-radius: 0;
    border: none;
    border-right: 1px solid #e8e8e8;
    padding: 0;
  }
  .om-sidebar.drawer-open { transform: translateX(0); }
  body.filters-open { overflow: hidden; }

  .om-filter-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    border-bottom: 1px solid #e8e8e8;
    flex-shrink: 0;
    background: #fff;
  }
  .om-filter-drawer-title {
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .om-filter-drawer-actions {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .om-filter-clear-btn {
    font-size: 12px;
    color: var(--muted);
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px 6px;
    font-family: 'Hind', sans-serif;
  }
  .om-filter-clear-btn:hover { color: var(--accent); }
  .om-filter-close-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4f4f4;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    flex-shrink: 0;
  }
  .om-filter-close-btn svg { width: 16px; height: 16px; fill: #555; }
  .om-filter-close-btn:hover { background: #e8e8e8; }

  .om-filter-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px 18px;
    -webkit-overflow-scrolling: touch;
  }

  .om-filter-drawer-footer {
    display: flex;
    gap: 10px;
    padding: 14px 18px;
    border-top: 1px solid #e8e8e8;
    flex-shrink: 0;
    background: #fff;
  }
}
@media (max-width: 768px) {
  .om-products-grid,
  .om-products-grid.cols-3 { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .om-categories-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .om-section { padding: 48px 0; }
  .om-footer-widgets { grid-template-columns: 1fr; gap: 24px; padding: 36px 0; }
  .om-usp-grid { grid-template-columns: 1fr; }
  .om-usp-item { border-right: none; border-bottom: 1px solid #e8e8e8; padding: 14px 0; }
  .om-usp-item:last-child { border-bottom: none; }
  .om-values-grid { grid-template-columns: 1fr; }
  .om-form-row { grid-template-columns: 1fr; }
  .om-hero { height: auto; }
  .om-hero-layout { flex-direction: column; flex-wrap: wrap; height: auto; }
  .om-hero-content { order: 1; padding: 32px 24px 16px; width: 100%; }
  .om-hero-product-scene { order: 2; width: 100%; padding: 0 24px 16px; justify-content: center; }
  .om-hero-product-img { max-height: 240px; }
  .om-hero-title { font-size: 24px; margin-bottom: 16px; }
  /* Show the action bar below the image on mobile */
  .om-hero-actions-bar { order: 3; display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; padding: 0 24px 28px; width: 100%; box-sizing: border-box; }
  .om-gallery-thumbs { grid-template-columns: repeat(4,1fr); }
  .om-header-actions .btn-om-primary { display: none; }
}
@media (max-width: 480px) {
  .om-products-grid,
  .om-products-grid.cols-3 { grid-template-columns: 1fr; }
}

/* =====================================================
   Language switcher
   ===================================================== */
.om-lang-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-left: 12px;
  border-left: 1px solid rgba(0,0,0,.1);
  line-height: 1;
}

.om-lang-btn {
  background: none;
  border: none;
  color: #555;
  cursor: pointer;
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .03em;
  line-height: 1;
  padding: 0;
  transition: color .2s;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
}
.om-lang-btn:hover {
  color: var(--green);
}

.om-lang-menu {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  right: 0;
  list-style: none;
  margin: 0;
  min-width: 120px;
  padding: 4px 0;
  position: absolute;
  top: calc(100% + 6px);
  z-index: 9999;
}

.om-lang-menu li { margin: 0; padding: 0; }

.om-lang-option {
  background: none;
  border: none;
  color: #555;
  cursor: pointer;
  display: block;
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .03em;
  line-height: 1;
  padding: 10px 14px;
  text-align: left;
  transition: background 0.12s, color 0.12s;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.om-lang-option:hover { background: #f5f5f5; color: var(--green); }
.om-lang-option.active { color: var(--green); font-weight: 600; }

/* ============================================================
   CUSTOMER REVIEWS SLIDER
============================================================ */
.om-reviews {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}
.om-reviews-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 6px 2px 10px;
  flex: 1;
  scrollbar-width: none;
}
.om-reviews-track::-webkit-scrollbar { display: none; }
.om-review-card {
  flex: 0 0 360px;
  max-width: 85vw;
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-top: 3px solid var(--green);
  padding: 26px 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.om-review-stars { color: #f5a623; font-size: 15px; letter-spacing: 2px; }
.om-review-text {
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  margin: 0;
  flex: 1;
}
.om-review-author { border-top: 1px solid #eee; padding-top: 12px; }
.om-review-name { font-weight: 700; font-size: 14px; color: #111; }
.om-review-role { font-size: 12px; color: var(--muted); margin-top: 2px; }
.om-reviews-arrow {
  box-sizing: border-box;
  width: 42px; height: 42px;
  flex-shrink: 0;
  padding: 0;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  line-height: 0;
  cursor: pointer;
  transition: background .2s, box-shadow .2s;
}
.om-reviews-arrow:hover { background: var(--green); box-shadow: 0 4px 14px rgba(2,117,178,.25); }
.om-reviews-arrow svg { width: 22px; height: 22px; fill: #333; display: block; }
.om-reviews-arrow:hover svg { fill: #fff; }
.om-reviews-dots { display: flex; justify-content: center; gap: 8px; margin-top: 18px; }
.om-reviews-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(0,0,0,.18);
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.om-reviews-dot.active { background: var(--green); transform: scale(1.3); }
@media (max-width: 768px) {
  .om-reviews-arrow { display: none; }
  .om-review-card { flex-basis: 86vw; }
}

/* ============================================================
   BROWSE BY MANUFACTURER
============================================================ */
.om-mfr-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.om-mfr-card {
  flex: 0 0 auto;
  width: 160px;
}
.om-mfr-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #e8e8e8;
  padding: 24px 18px;
  min-height: 96px;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.om-mfr-card:hover {
  border-color: var(--green);
  box-shadow: 0 6px 18px rgba(0,0,0,.07);
  transform: translateY(-2px);
}
.om-mfr-logo {
  max-width: 100%;
  max-height: 52px;
  object-fit: contain;
  /* greyscale at rest, full colour on hover — keeps the wall visually calm */
  filter: grayscale(100%);
  opacity: .75;
  transition: filter .2s, opacity .2s;
}
.om-mfr-card:hover .om-mfr-logo { filter: grayscale(0); opacity: 1; }
@media (max-width: 768px) {
  .om-mfr-grid { gap: 8px; }
  .om-mfr-card { width: calc(33.333% - 6px); padding: 14px 10px; min-height: 68px; }
  .om-mfr-logo { max-height: 36px; }
}

/* ============================================================
   HOME PAGE SEARCH
   ============================================================ */
.om-home-search {
  background: #fff;
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
  padding: 20px 0;
}
.om-home-search-wrap {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}
.om-home-search-input {
  width: 100%;
  font-size: 17px;
  font-family: 'Hind', sans-serif;
  padding: 13px 20px;
  border: 2px solid var(--accent);
  border-radius: 8px;
  outline: none;
  box-sizing: border-box;
  background: #fff;
  color: var(--text);
  transition: box-shadow .18s;
}
.om-home-search-input:focus {
  box-shadow: 0 0 0 4px rgba(2,117,178,.12);
}
.om-home-search-results {
  position: absolute;
  top: calc(100% + 4px);
  left: 0; right: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 12px 32px rgba(0,0,0,.1);
  z-index: 200;
  max-height: 480px;
  overflow-y: auto;
}
.om-home-search-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid #f0f0f0;
  transition: background .15s;
}
.om-home-search-row:hover { background: #f7f9fb; }
.om-home-search-thumb { width: 56px; height: 48px; flex-shrink: 0; border-radius: 6px; overflow: hidden; background: #f4f4f4; }
.om-home-search-thumb img { width: 100%; height: 100%; object-fit: contain; }
.om-search-thumb-placeholder { width: 100%; height: 100%; background: #e8e8e8; }
.om-home-search-name { font-size: 14px; font-weight: 600; color: var(--text); line-height: 1.3; }
.om-home-search-meta { font-size: 12px; color: var(--muted); margin-top: 3px; }
.om-home-search-price { color: var(--accent); font-weight: 600; }
.om-home-search-empty { padding: 16px 18px; font-size: 13px; color: var(--muted); }
.om-home-search-all {
  display: block;
  padding: 11px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  border-top: 1px solid #eee;
}
.om-home-search-all:hover { background: #f0f7fc; }

/* ============================================================
   MOBILE CATEGORY SECTIONS (hidden on desktop, replaces hero layout on mobile)
   ============================================================ */
.om-hero-mobile-grid { display: none; }
@media (max-width: 768px) {
  .om-hero-bg,
  .om-hero-layout,
  .om-hero-actions-bar { display: none !important; }
  .om-hero-mobile-grid {
    display: block;
    background: #f4f4f4;
    padding-bottom: 8px;
  }
}

/* Product cards inside mobile horizontal scroll — ~80% of visible width so next card peeks */
.om-mob-pscroll .om-product-card {
  flex: 0 0 calc(72vw - 14px);
  min-width: 0;
}

/* Category section with horizontal product scroll */
.om-mob-section {
  padding: 16px 0 4px;
  border-bottom: 1px solid #e8e8e8;
}
.om-mob-section:last-child { border-bottom: none; }
.om-mob-section-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px 10px;
}
.om-mob-section-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}
.om-mob-section-link {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}
.om-mob-pscroll {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 0 14px 12px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.om-mob-pscroll::-webkit-scrollbar { display: none; }
.om-mob-pcard {
  flex: 0 0 130px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.om-mob-pcard-photo {
  width: 130px;
  height: 100px;
  background: #f4f4f4;
  overflow: hidden;
}
.om-mob-pcard-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
  box-sizing: border-box;
}
.om-mob-pcard-name {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 8px 2px;
  line-height: 1.3;
  color: var(--text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.om-mob-pcard-price {
  font-size: 11px;
  color: var(--accent);
  font-weight: 600;
  padding: 2px 8px 8px;
}

/* Global horizontal overflow prevention */
body { overflow-x: hidden; }

/* Mobile overflow fixes */
@media (max-width: 768px) {
  .om-hero-content, .om-hero-product-scene { min-width: 0; }
}

/* ============================================================
   MOBILE STEP-BASED PRODUCTS MENU OVERLAY
   ============================================================ */
.om-mob-prod-overlay {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.om-mob-prod-overlay[hidden] { display: none; }
.om-mob-prod-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid #e8e8e8;
  font-weight: 600;
  font-size: 16px;
  color: var(--text);
  background: #fafafa;
  min-height: 52px;
}
.om-mob-prod-close {
  background: none; border: none; padding: 4px 8px;
  font-size: 22px; color: var(--muted); cursor: pointer; line-height: 1;
}
.om-mob-prod-back {
  background: none; border: none; padding: 4px 0;
  font-size: 14px; font-weight: 600; color: var(--accent); cursor: pointer;
}
.om-mob-prod-body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.om-mob-prod-all {
  display: flex;
  align-items: center;
  padding: 16px 18px;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid #f0f0f0;
}
.om-mob-prod-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 15px 18px;
  background: none;
  border: none;
  border-bottom: 1px solid #f0f0f0;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  text-align: left;
}
.om-mob-prod-group:hover { background: #f7f9fb; }
.om-mob-chev { color: var(--muted); font-size: 18px; }
.om-mob-prod-cat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  text-decoration: none;
  color: var(--text);
  border-bottom: 1px solid #f0f0f0;
  font-size: 14px;
}
.om-mob-prod-cat:hover { background: #f7f9fb; }
.om-mob-prod-count {
  font-size: 12px;
  color: var(--muted);
  background: #f0f0f0;
  border-radius: 999px;
  padding: 2px 8px;
}

/* ============================================================
   BRAND LOGO ON PRODUCT CARDS
   ============================================================ */
.om-product-info-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.om-product-info-header .om-product-cat { margin-bottom: 0; flex: 1; }
.om-product-card-logo {
  flex-shrink: 0;
  max-width: 64px;
  max-height: 28px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* ============================================================
   BRAND PAGE HERO (products.html?brand=X)
   ============================================================ */
.om-page-title-section.om-brand-mode {
  background: #fff;
  text-align: center;
}
.om-page-title-section.om-brand-mode .om-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.om-brand-hero-logo {
  max-height: 100px;
  max-width: 280px;
  object-fit: contain;
}
.om-brand-hero-name {
  font-size: 32px;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}
.om-brand-hero-desc {
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  color: var(--muted);
  max-width: 560px;
  margin: 0;
  line-height: 1.7;
}
.om-brand-hero-count {
display: inline-block;
/* background: var(--accent); */
color: #000;
font-size: 12px;
font-weight: 600;
padding: 4px 12px;
border-radius: 999px;
letter-spacing: .5px;
border-color: var(--accent);
border-width: 2px;
border-style: outset;
}
