/* =========================================================
   IGD Subcategory Page CSS (single-source-of-truth)
   - Light grey page area, 80% width container
   - Category header + banner
   - Filters (black bar + pills)
   - Product grid + cards (white panels, IGD green CTA)
   - ONE sticky stack wrapper (NO jitter)
   ========================================================= */

:root{
  --igd-green:#1aada3;
  --page-bg:#fafafa;
  --text:#111;
  --muted:#555;
  --card-shadow: 0 12px 35px rgba(0,0,0,0.08);
}

/* Base */
*{ box-sizing:border-box; }
body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  line-height:1.55;
}

/* Skip link */
.igd-skip-link{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.igd-skip-link:focus{
  left:12px; top:12px; width:auto; height:auto;
  padding:10px 12px; background:#fff; border:2px solid #000;
  border-radius:8px; z-index:999999;
}

/* =========================================================
   ONE sticky stack (kills scroll jitter)
   This wrapper is added in subcategory.php around site-menu + filters
   ========================================================= */

.igd-sticky-stack{
  position: sticky;
  top: 0;
  z-index: 1000000;
}

/* Everything inside the stack must NOT be sticky/fixed */
.igd-topstrip,
.wsmobileheader,
nav.wsmenu,
.igd-subcat-filters{
  position: static !important;
  top: auto !important;
}

/* Remove any gap BETWEEN topstrip/menu/filters */
.igd-topstrip,
.wsmobileheader,
nav.wsmenu,
.wsmainfull,
.wsmenucontainer,
.igd-subcat-filters{
  margin: 0 !important;
}

/* Defensive: some WebSlideMenu layouts add spacing */
.wsmainfull{
  padding-bottom: 0 !important;
}

/* Hide the extra WebSlideMenu mobile logo (prevents “second logo”) */
.wsmobileheader .smllogo{ display:none !important; }

/* =========================================================
   Main content area
   ========================================================= */

.igd-main{
  width:100%;
  background: var(--page-bg);
  color: var(--text);
}

/* 80% width container */
.igd-wrap{
  width: 80%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 22px 0 50px;
}
@media (max-width: 768px){
  .igd-wrap{
    width: 96%;
    margin: 0 2%;
    padding-bottom: 30px;
  }
}

.igd-section{ margin-top: 18px; }

/* =========================================================
   Category header
   ========================================================= */

.shop-category-header{
  text-align: center;
  margin: 20px 0 25px 0;
}

.shop-category-title{
  margin: 0 0 10px 0;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.12;
  color: var(--text);
}

/* Full width within container */
.shop-category-text{
  width: 100%;
  margin: 0 0 20px 0;
  color: var(--muted);
}
.shop-category-text p{ margin: 0.75em 0 0; }
.shop-category-text p:first-child{ margin-top: 0; }

/* Banner */
.shop-subcat-top,
.shop-subcat-top-mobile{
  margin: 20px 0 30px 0;
}

.shop-subcat-image{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

/* Desktop vs mobile banner swap */
.shop-subcat-top-mobile{ display:none; }
@media (max-width: 768px){
  .shop-subcat-top{ display:none; }
  .shop-subcat-top-mobile{ display:block; }

  .shop-category-header{ margin: 14px 0 18px 0; }
  .shop-category-text{ margin-bottom: 14px; }
}

/* =========================================================
   Filters (black bar + pills)
   Output class from include: .igd-subcat-filters
   ========================================================= */

.igd-subcat-filters{
  width: 100%;
  background: #000;
  padding: 10px 0;
  /* keep space BELOW filters before grid/header content */
  margin: 0 0 18px 0;
}

/* Single row; scroll on small screens instead of wrapping */
.igd-subcat-filter-list{
  list-style: none;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;

  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  justify-content: center;
  align-items: center;

  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.igd-subcat-filter-list::-webkit-scrollbar{ display:none; }

@media (max-width: 820px){
  .igd-subcat-filter-list{ justify-content: flex-start; }
}

.igd-subcat-filter-link{
  display: inline-flex;
  align-items: center;
  white-space: nowrap;

  padding: 7px 12px;
  font-size: 11px;
  line-height: 1;
  border-radius: 9999px;

  background: #111;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
  text-decoration: none;

  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (hover:hover){
  .igd-subcat-filter-link:hover{
    background: var(--igd-green);
    border-color: var(--igd-green);
    color: #fff;
  }
}

/* =========================================================
   Product grid + cards
   ========================================================= */

.igd-subcat-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

@media (max-width: 1100px){
  .igd-subcat-grid{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 820px){
  .igd-subcat-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
}
@media (max-width: 460px){
  .igd-subcat-grid{ grid-template-columns: 1fr; }
}

/* Kill any legacy float layout */
.igd-subcat-grid > *{
  float:none;
  clear:none;
  width:auto;
  max-width:none;
  min-width:0;
  position:relative;
}

/* Cards */
.igd-subcat-grid .modern-shop-card{
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--card-shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.igd-subcat-grid .modern-shop-card-link{
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 14px 14px 16px;
  text-decoration: none;
  color: var(--text);
}

/* Image panel: white + padded (images slightly smaller) */
.igd-subcat-grid .modern-shop-card-image-wrapper{
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  padding: 10px;
}

.igd-subcat-grid .modern-shop-card-img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

/* Hover image stacking */
.igd-subcat-grid .modern-shop-card-img.img-hover{
  position: absolute;
  inset: 10px;
  opacity: 0;
}

@media (hover:hover){
  .igd-subcat-grid .modern-shop-card-link:hover .modern-shop-card-img{
    transform: scale(1.04);
  }
  .igd-subcat-grid .modern-shop-card.has-hover-image
  .modern-shop-card-link:hover .modern-shop-card-img.img-main{ opacity: 0; }

  .igd-subcat-grid .modern-shop-card.has-hover-image
  .modern-shop-card-link:hover .modern-shop-card-img.img-hover{ opacity: 1; }
}

/* Text */
.igd-subcat-grid .modern-shop-card-title{
  margin: 8px 0 4px 0;
  font-size: 1rem;
  font-weight: 600;
}
.igd-subcat-grid .modern-shop-card-note{
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}
.igd-subcat-grid .modern-shop-card-price{
  margin-top: 4px;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text);
}

/* CTA (IGD green) */
.igd-subcat-grid .modern-shop-card-cta{
  margin-top: 10px;
  display: block;
}
.igd-subcat-grid .modern-shop-card-cta a,
.igd-subcat-grid .modern-shop-card-cta button,
.igd-subcat-grid .modern-shop-card-cta span{
  display: inline-block;
  padding: 10px 14px;
  border-radius: 9999px;
  background: var(--igd-green);
  color: #fff;
  border: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}
@media (hover:hover){
  .igd-subcat-grid .modern-shop-card-cta a:hover,
  .igd-subcat-grid .modern-shop-card-cta button:hover{
    filter: brightness(0.92);
  }
}

/* Quickview/icon bar */
.igd-subcat-grid .shop-card-icon-bar{
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
}

/* =========================================================
   Top strip + icons (inside site-menu.php)
   ========================================================= */

/* Screen-reader only text */
.sr-only{
  position:absolute;
  width:1px; height:1px;
  padding:0; margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

.igd-topstrip{
  background:#000;
  border-bottom:1px solid rgba(255,255,255,0.12);
}

.igd-topstrip-inner{
  max-width: 95%;
  margin: 0 auto;
  height: 56px;            /* visual height only; not used for sticky math */
  padding: 0 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
}

.igd-topstrip-logo img{
  display:block;
  height:34px;
  width:auto;
}

/* Icons block (from inc.header-icons.php) */
.igd-header-icons{
  display:flex;
  align-items:center;
  gap:12px;
}

.igd-header-icons a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  text-decoration:none;
}

.igd-header-icons i{
  font-size:16px;
  line-height:1;
  color:#fff;
}

.igd-header-icons img{ display:block; }

.igd-discount-pill{
  display:inline-flex;
  align-items:center;
  border:1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.10);
  color:#fff;
  border-radius:9999px;
  padding: 6px 10px;
  font-weight:800;
  letter-spacing:0.06em;
  text-transform:uppercase;
  font-size:11px;
}

.igd-pill-short{ display:none; }
@media (max-width: 520px){
  .igd-pill-long{ display:none; }
  .igd-pill-short{ display:inline; }
}
/* Discount pill — restore yellow background */
.igd-discount-pill{
  background: #ffd54a !important;   /* warm yellow */
  border-color: rgba(0,0,0,0.18) !important;
  color: #111 !important;
}

/* If the pill is an <a> link, ensure link states stay correct */
a.igd-discount-pill,
.igd-discount-pill:visited{
  color: #111 !important;
  text-decoration: none;
}

@media (hover:hover){
  a.igd-discount-pill:hover{
    background: #ffcc2e !important; /* slightly deeper on hover */
  }
}
/* =========================================================
   Quick View overlay: ensure it sits ABOVE sticky header stack
   ========================================================= */

/* This targets your Alpine modal overlay div */
.igd-subcategory-page div[x-show][x-cloak]{
  z-index: 2000001 !important;  /* higher than .igd-sticky-stack (1000000) */
}

/* Extra safety: enforce centering (in case any other CSS interferes) */
.igd-subcategory-page div[x-show][x-cloak]{
  position: fixed !important;
  inset: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
/* =========================================================
   FINAL: Mobile filters bar position + width alignment
   ========================================================= */

/* Stop any legacy sticky/fixed positioning affecting the filters */
body .igd-sticky-stack .igd-subcat-filters{
  position: static !important;
  top: auto !important;
  bottom: auto !important;
  left: auto !important;
  right: auto !important;
  transform: none !important;
}

/* Keep the black bar full width, constrain the pills to page width */
body .igd-subcat-filters .igd-subcat-filter-list{
  width: 100% !important;
  max-width: 1400px !important;
  margin: 0 auto !important;
  padding: 0 16px !important;
}

/* Match your mobile container (96% with 2% gutters) */
@media (max-width: 768px){
  body .igd-subcat-filters .igd-subcat-filter-list{
    max-width: none !important;
    width: 96% !important;
    margin-left: 2% !important;
    margin-right: 2% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* Ensure pills start at left and scroll nicely */
  body .igd-subcat-filters .igd-subcat-filter-list{
    justify-content: flex-start !important;
    gap: 8px !important;
  }
}
/* =========================================================
   TEMP: Remove WebSlideMenu on mobile (Navik will replace it)
   Desktop unchanged
   ========================================================= */

@media (max-width: 991px){

  /* Hide WebSlideMenu mobile header + nav */
  .wsmobileheader,
  nav.wsmenu{
    display: none !important;
  }

  /* Ensure filters sit directly under top strip */
  .igd-subcat-filters{
    position: static !important;
    margin: 0 0 14px 0 !important;
  }
}
/* =========================================================
   MOBILE: visual cue that filters scroll horizontally
   (fade edges + subtle chevron)
   ========================================================= */

@media (max-width: 991px){

  /* Make the black bar a positioning context for overlays */
  .igd-subcat-filters{
    position: relative;
  }

  /* Edge fade (works in modern browsers) */
  .igd-subcat-filter-list{
    /* keep your horizontal scroll as-is */
    -webkit-mask-image: linear-gradient(to right,
      transparent 0,
      #000 18px,
      #000 calc(100% - 42px),
      transparent 100%);
    mask-image: linear-gradient(to right,
      transparent 0,
      #000 18px,
      #000 calc(100% - 42px),
      transparent 100%);
  }

  /* Subtle right-side chevron to indicate "more" */
  .igd-subcat-filters::after{
    content: "›";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.75);
    font-size: 22px;
    line-height: 1;
    pointer-events: none;
  }

  /* Optional: also hint on the left (less necessary) */
  .igd-subcat-filters::before{
    content: "‹";
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.25);
    font-size: 22px;
    line-height: 1;
    pointer-events: none;
  }
}
/* =========================================================
   MOBILE: bigger, centered text + CTA on 1-up cards
   ========================================================= */

@media (max-width: 460px){

  /* Center the card content */
  .igd-subcat-grid .modern-shop-card-link{
    text-align: center;
  }

  .igd-subcat-grid .modern-shop-card-body{
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Title bigger */
  .igd-subcat-grid .modern-shop-card-title{
    font-size: 1.12rem;
    line-height: 1.2;
    margin: 12px 0 6px 0;
  }

  /* Note / category label bigger */
  .igd-subcat-grid .modern-shop-card-note{
    font-size: 0.95rem;
    margin: 0 0 6px 0;
  }

  /* Price bigger + clearer */
  .igd-subcat-grid .modern-shop-card-price{
    font-size: 1.08rem;
    margin-top: 2px;
  }

  /* CTA larger, centered, full-width-ish */
  .igd-subcat-grid .modern-shop-card-cta{
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 12px;
  }

  .igd-subcat-grid .modern-shop-card-cta a,
  .igd-subcat-grid .modern-shop-card-cta button,
  .igd-subcat-grid .modern-shop-card-cta span{
    width: min(360px, 100%);
    padding: 14px 18px;
    font-size: 13px;
    letter-spacing: 0.10em;
    border-radius: 9999px;
  }
}
/* =========================================================
   MOBILE: Larger filter pills + larger chevron cue (same line)
   ========================================================= */

@media (max-width: 991px){

  /* Give the bar a bit more height so pills + chevron sit comfortably */
  .igd-subcat-filters{
    padding: 12px 0 !important;
    position: relative; /* anchor chevron */
  }

  /* Bigger pills */
  .igd-subcat-filter-link{
    padding: 10px 14px !important;
    font-size: 12px !important;
    letter-spacing: 0.07em !important;
  }

  /* Slightly bigger spacing between pills */
  .igd-subcat-filter-list{
    gap: 10px !important;
  }

  /* Bigger, clearer chevron on the SAME line (vertically centered) */
  .igd-subcat-filters::after{
    content: "›";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;                 /* bigger */
    line-height: 1;
    color: rgba(255,255,255,0.85);
    pointer-events: none;
  }

  /* Optional: faint left hint */
  .igd-subcat-filters::before{
    content: "‹";
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 26px;
    line-height: 1;
    color: rgba(255,255,255,0.20);
    pointer-events: none;
  }
}
/* =========================================================
   MOBILE: stronger chevron cue, aligned with filter row
   ========================================================= */

@media (max-width: 991px){

  /* Make the bar the positioning context */
  .igd-subcat-filters{
    position: relative !important;
  }

  /* Reserve space on the right so chevron never overlaps the last pill */
  .igd-subcat-filter-list{
    padding-right: 52px !important;
  }

  /* Stronger, clearer chevron (same line = vertically centered) */
  .igd-subcat-filters::after{
    content: "›" !important;
    position: absolute !important;
    right: 12px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;

    font-size: 34px !important;
    font-weight: 900 !important;
    line-height: 1 !important;

    color: #ffffff !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.45) !important;

    opacity: 0.95 !important;
    pointer-events: none !important;
    z-index: 5 !important;
  }
}
/* =========================================================
   MOBILE: indicate horizontal scroll both ways (no JS)
   - strong right chevron
   - subtle left chevron
   - edge fades
   ========================================================= */

@media (max-width: 991px){

  .igd-subcat-filters{
    position: relative !important;
  }

  /* Space so chevrons never overlap pills */
  .igd-subcat-filter-list{
    padding-left: 44px !important;
    padding-right: 52px !important;
  }

  /* Edge fade to hint overflow */
  .igd-subcat-filter-list{
    -webkit-mask-image: linear-gradient(to right,
      transparent 0,
      #000 26px,
      #000 calc(100% - 42px),
      transparent 100%);
    mask-image: linear-gradient(to right,
      transparent 0,
      #000 26px,
      #000 calc(100% - 42px),
      transparent 100%);
  }

  /* Right chevron (strong) */
  .igd-subcat-filters::after{
    content: "›" !important;
    position: absolute !important;
    right: 12px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    font-size: 34px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    color: #fff !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.45) !important;
    opacity: 0.95 !important;
    pointer-events: none !important;
    z-index: 5 !important;
  }

  /* Left chevron (subtle, indicates you can scroll back) */
  .igd-subcat-filters::before{
    content: "‹" !important;
    position: absolute !important;
    left: 10px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    font-size: 30px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    color: #fff !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.35) !important;
    opacity: 0.35 !important; /* subtle */
    pointer-events: none !important;
    z-index: 5 !important;
  }
}
@media (max-width: 991px){
  .igd-subcat-filters::before{
    opacity: 0.95 !important;
    font-size: 32px !important;
    text-shadow: 0 2px 12px rgba(0,0,0,0.55) !important;
  }
}
/* =========================================================
   MOBILE: reserve black space for Navik ABOVE filters (no white bar)
   ========================================================= */

:root{
  --igd-navik-gap: 56px; /* adjust later when Navik is live */
}

@media (max-width: 991px){

  /* Make the filters bar taller so the "gap" stays BLACK */
  .igd-subcat-filters{
    background: #000 !important;
    padding-top: var(--igd-navik-gap) !important; /* space for Navik */
    position: relative !important;                /* anchor chevrons */
  }

  /* Keep the chevrons aligned with the PILLS line (not the padded top gap) */
  .igd-subcat-filters::before,
  .igd-subcat-filters::after{
    top: calc(var(--igd-navik-gap) + 50%) !important;
    transform: translateY(-50%) !important;
  }
}
@media (max-width: 991px){

  .igd-subcat-filter-list{
    padding-left: 44px !important;
    padding-right: 52px !important; /* leave room for chevrons */
  }

  .igd-subcat-filters::after{
    content: "›" !important;
    position: absolute !important;
    right: 12px !important;
    font-size: 34px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    color: #fff !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.45) !important;
    opacity: 0.95 !important;
    pointer-events: none !important;
    z-index: 5 !important;
  }

  .igd-subcat-filters::before{
    content: "‹" !important;
    position: absolute !important;
    left: 10px !important;
    font-size: 34px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    color: #fff !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.45) !important;
    opacity: 0.95 !important;
    pointer-events: none !important;
    z-index: 5 !important;
  }
}
/* =========================================================
   MOBILE: force CTA to stay green (beats inline hover quirks)
   ========================================================= */

:root{
  --igd-green:#1aada3;
  --igd-green-hover:#158a83;
}

@media (max-width: 991px), (hover: none){

  /* Prevent hover colour getting "stuck" on touch */
  :root{
    --igd-green-hover: var(--igd-green);
  }

  /* Force CTA backgrounds */
  .igd-subcat-grid .modern-shop-card-cta a,
  .igd-subcat-grid .modern-shop-card-cta button,
  .igd-subcat-grid .modern-shop-card-cta span{
    background: var(--igd-green) !important;
    color: #fff !important;
    filter: none !important;
  }
}
/* =========================================================
   MOBILE: Navik gap + chevrons aligned to pills row + green pills
   ========================================================= */

:root{
  --igd-navik-gap: 56px;        /* reserved black area for Navik */
  --igd-filters-row-h: 44px;    /* height of the pills row */
}

@media (max-width: 991px){

  /* Keep the reserved Navik area BLACK (no white bar) */
  .igd-subcat-filters{
    background:#000 !important;
    padding-top: var(--igd-navik-gap) !important;
    padding-bottom: 12px !important;
    position: relative !important;
  }

  /* Make the pills row a known height so we can align chevrons perfectly */
  .igd-subcat-filter-list{
    min-height: var(--igd-filters-row-h) !important;
    align-items: center !important;
    padding-left: 44px !important;   /* space for left chevron */
    padding-right: 52px !important;  /* space for right chevron */
  }

  /* Chevrons: lock to the vertical center of the pills row */
  .igd-subcat-filters::before,
  .igd-subcat-filters::after{
    top: calc(var(--igd-navik-gap) + (var(--igd-filters-row-h) / 2)) !important;
    transform: translateY(-50%) !important;
    font-size: 34px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    color: #fff !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.45) !important;
    opacity: 0.95 !important;
    pointer-events: none !important;
    position: absolute !important;
    z-index: 5 !important;
  }

  .igd-subcat-filters::before{
    content: "‹" !important;
    left: 10px !important;
  }

  .igd-subcat-filters::after{
    content: "›" !important;
    right: 12px !important;
  }

  /* GREEN filter pills (all links) */
  .igd-subcat-filter-link{
    background: var(--igd-green) !important;
    border-color: var(--igd-green) !important;
    color: #fff !important;
  }
}
/* =========================================================
   NAVIK SLOT (mobile only): centered in black bar
   ========================================================= */

:root{
  --igd-navik-h: 56px;
}

.igd-navik-slot{
  display: none; /* default: off on desktop */
}

@media (max-width: 991px){
  .igd-navik-slot{
    display: flex !important;
    height: var(--igd-navik-h);
    background: #000;
    border-bottom: 1px solid rgba(255,255,255,0.12);

    align-items: center;
    justify-content: center; /* centered in the black bar */
    padding: 0 12px;
  }

  /* Filters bar should NOT have "reserved" top padding anymore */
  .igd-subcat-filters{
    padding-top: 10px !important;
    background: #000 !important;
    position: relative !important; /* for chevrons */
  }
}
/* =========================================================
   MOBILE: Navik placeholder bar (black) between top strip and filters
   ========================================================= */

:root{
  --igd-navik-h: 56px; /* adjust later when Navik exists */
}

.igd-navik-slot{
  display: none;
}

@media (max-width: 991px){

  /* Hide WebSlideMenu on mobile (as you already found works best) */
  .wsmobileheader,
  nav.wsmenu{
    display: none !important;
  }

  /* Show the placeholder black bar */
  .igd-navik-slot{
    display: block;
    height: var(--igd-navik-h);
    background: #000;
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }

  /* Filters stay black and sit directly under the placeholder */
  .igd-subcat-filters{
    background: #000 !important;
  }
}
/* =========================================================
   MOBILE: Navik placeholder bar (black) above filters
   ========================================================= */

:root{
  --igd-navik-h: 56px; /* adjust later */
}

.igd-navik-slot{
  display: none;
}

@media (max-width: 991px){

  /* show the bar on mobile */
  .igd-navik-slot{
    display: block !important;
    height: var(--igd-navik-h) !important;
    background: #000 !important;
    border-bottom: 1px solid rgba(255,255,255,0.12) !important;
  }

  /* ensure no accidental collapse from parent flex rules */
  .igd-navik-slot::before{
    content: "";
    display: block;
    height: 1px;
  }

  /* keep filters black under it */
  .igd-subcat-filters{
    background: #000 !important;
  }
}
/* HARD TEST: Navik slot must be visible */
.igd-navik-slot{
  display: block !important;
  height: 56px !important;
  background: #000 !important;
  border-bottom: 1px solid rgba(255,255,255,0.12) !important;
}
/* =========================================================
   MOBILE: Navik placeholder bar (visible black bar)
   ========================================================= */

:root{
  --igd-navik-h: 56px;
}

.igd-navik-slot{ display:none; }

@media (max-width: 991px){

  .igd-navik-slot{
    display: block !important;
    height: var(--igd-navik-h) !important;
    background: #000 !important;

    /* Make it visibly its own bar */
    border-top: 1px solid rgba(255,255,255,0.10);
    border-bottom: 1px solid rgba(255,255,255,0.12);

    position: relative !important;
    z-index: 3000000 !important;
  }

  /* Optional: tiny inner sheen so it reads as a separate strip */
  .igd-navik-slot::before{
    content:"";
    position:absolute;
    left:0; right:0; top:0;
    height: 1px;
    background: rgba(255,255,255,0.06);
  }
}
@media (max-width: 991px){
  .igd-navik-slot{
    display: flex !important;
    align-items: center;
    justify-content: center;
    height: 56px;
    background: #000;
    border-top: 1px solid rgba(255,255,255,0.10);
    border-bottom: 1px solid rgba(255,255,255,0.12);
    padding: 0 12px;
  }
}
/* =========================================================
   NAVIK + FILTERS FINAL BLOCK (drop-in)
   - Navik: mobile only, right-aligned, slightly lower
   - WebSlideMenu: hidden on mobile (Navik replaces it)
   - Filters: no chevrons, normal padding (no reserved chevron space)
   ========================================================= */

/* MOBILE */
@media (max-width: 991px){

  /* Hide WebSlideMenu on mobile */
  .wsmobileheader,
  nav.wsmenu{
    display: none !important;
  }

  /* Navik bar (mobile only) */
  .igd-navik-slot{
    display: flex !important;
    justify-content: flex-end !important; /* right aligned */
    align-items: flex-end !important;     /* sit lower */
    height: 62px !important;
    padding: 0 12px 8px !important;       /* bottom padding lowers Navik */
    background: #000 !important;
    border-top: 1px solid rgba(255,255,255,0.10);
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }

  /* Remove chevrons completely */
  .igd-subcat-filters::before,
  .igd-subcat-filters::after{
    content: none !important;
    display: none !important;
  }

  /* Normal, clean padding for the scroll row */
  .igd-subcat-filter-list{
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
}

/* DESKTOP (remove Navik completely) */
@media (min-width: 992px){
  .igd-navik-slot{
    display: none !important;
  }
}
/* =========================================================
   MOBILE: reduce the black space ABOVE filters (Navik slot height)
   ========================================================= */
@media (max-width: 991px){
  .igd-navik-slot{
    height: 30px !important;     /* reduce from whatever it is now */
    padding: 0 !important;
    margin: 0 !important;
  }
}
/* =========================================================
   MOBILE: control Navik TOP position + size (correct selector)
   ========================================================= */
@media (max-width: 991px){

  /* Move Navik down from the top */
  .navik-header-overlay .burger-menu{
    top: 45px !important;   /* ← THIS is the vertical control */
  }
}
@media (max-width: 991px){

  .navik-menu-overlay > ul > li > .menu-overlay-link a{
    font-size: 24px !important;
  }

  .navik-menu-overlay > ul ul li a{
    font-size: 18px !important;
  }
}
/* IGD discount pill: center text + slightly bolder */
.igd-discount-pill{
  justify-content: center !important;
  text-align: center !important;
  font-weight: 900 !important;     /* a little bolder */
  line-height: 1.1 !important;
}
/* FINAL: drop ONLY the filters down ~25px, keep gap black */
@media (max-width: 991px){
  .igd-subcat-filters{
    background: #000 !important;
    padding-top: 30px !important;   /* creates black space inside the bar */
  }
}



