/* ============================================================================
   ISBANETEKNIKK — WOOCOMMERCE LIVE REDESIGN
   Premium B2B product system. Loaded ONLY on Woo templates (see functions.php).
   Palette per master brief: blue #0057C8 / marine #071A33 / dark #081523.
   Builds ON TOP of the existing quote system (isbat_child_product_requires_quote).
   Scope: everything is namespaced under body.isbat-shop-redesign /
   body.isbat-product-redesign so it never leaks into non-Woo pages.
   ============================================================================ */

/* ----------------------------------------------------------------------------
   1. DESIGN TOKENS
   ---------------------------------------------------------------------------- */
:root {
  /* brand — tuned to the premium B2B mockup (brighter, airier) */
  --iwc-blue:       #1e63d6;   /* primary action blue (mockup) */
  --iwc-blue-600:   #1a57bf;   /* hover */
  --iwc-blue-700:   #16489c;
  --iwc-blue-ink:   #0f3c8c;   /* deep blue for accents/links on light */
  --iwc-blue-glow:  rgba(30, 99, 214, .28);
  --iwc-navy:       #0e2233;   /* dark trust bar / footer strip */
  --iwc-navy-2:     #14304a;
  --iwc-ice:        #eaf2fe;   /* light blue tint (chips/hover) */
  --iwc-grey:       #f4f7fb;   /* page background */

  /* surfaces (light, airy) */
  --iwc-bg:         #ffffff;
  --iwc-surface:    #ffffff;
  --iwc-surface-2:  #f4f7fb;
  --iwc-line:       #e8edf3;   /* soft hairline */
  --iwc-line-strong:#d6deea;

  /* text */
  --iwc-ink:        #16202e;   /* near-black headings */
  --iwc-ink-soft:   #44546a;   /* body */
  --iwc-ink-muted:  #7a8699;   /* meta */
  --iwc-on-dark:    #eef4fb;
  --iwc-on-dark-mut:#9fb2cb;

  /* legacy alias kept so existing rules referencing --iwc-marine still work */
  --iwc-marine:     var(--iwc-navy);
  --iwc-dark:       var(--iwc-navy);
  --iwc-dark-2:     var(--iwc-navy-2);

  /* type */
  --iwc-font: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  /* radii + shadow (softer, smaller — mockup uses ~10-14px cards) */
  --iwc-r-sm: 8px;
  --iwc-r:    12px;
  --iwc-r-lg: 16px;
  --iwc-r-pill: 999px;
  --iwc-shadow:    0 1px 2px rgba(16, 32, 51, .04), 0 6px 18px rgba(16, 32, 51, .06);
  --iwc-shadow-md: 0 10px 30px rgba(16, 32, 51, .10);
  --iwc-shadow-lg: 0 20px 48px rgba(16, 32, 51, .14);
  --iwc-glow:      0 0 0 1px var(--iwc-blue), 0 12px 30px var(--iwc-blue-glow);

  /* motion */
  --iwc-ease: cubic-bezier(.22, .61, .36, 1);
  --iwc-ease-emph: cubic-bezier(.2, .9, .2, 1);

  /* layout */
  --iwc-wrap: 1280px;
  --iwc-gap:  clamp(16px, 2vw, 26px);
}

/* ----------------------------------------------------------------------------
   2. SHARED PRIMITIVES (only inside redesigned Woo body)
   ---------------------------------------------------------------------------- */
/* Force a LIGHT B2B surface on the CONTENT region of every redesigned Woo page.
   The legacy mx-dark-skin sets body bg to #040816; we light-ify the content frame
   only — NOT body/header/footer — so the dark footer/nav keep their own design
   while the light-surface product/cart text renders correctly. */
body.isbat-shop-redesign .site-content,
body.isbat-product-redesign .site-content,
body.isbat-cart-redesign .site-content,
body.isbat-checkout-redesign .site-content,
body.isbat-account-redesign .site-content,
body.isbat-shop-redesign .content-area,
body.isbat-product-redesign .content-area,
body.isbat-cart-redesign .content-area,
body.isbat-checkout-redesign .content-area,
body.isbat-account-redesign .content-area,
body.isbat-product-redesign .inside-article,
body.isbat-product-redesign .entry-content,
body.isbat-product-redesign div.product {
  background: var(--iwc-bg) !important;
}
body.isbat-shop-redesign .iwc *,
body.isbat-product-redesign .iwc * { box-sizing: border-box; }

.iwc-wrap { max-width: var(--iwc-wrap); margin-inline: auto; padding-inline: clamp(16px, 4vw, 40px); }

.iwc-eyebrow {
  display: inline-flex; align-items: center; gap: .5em;
  font-size: .78rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--iwc-blue);
}
.iwc-eyebrow--on-dark { color: #7fb2ff; }

.iwc-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  font-family: var(--iwc-font); font-weight: 600; font-size: .98rem; line-height: 1;
  padding: .92em 1.6em; border-radius: var(--iwc-r-pill); border: 1px solid transparent;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: transform .24s var(--iwc-ease), box-shadow .24s var(--iwc-ease),
              background .24s var(--iwc-ease), border-color .24s var(--iwc-ease), color .24s var(--iwc-ease);
}
.iwc-btn--primary { background: var(--iwc-blue); color: #fff; box-shadow: 0 10px 26px var(--iwc-blue-glow); }
.iwc-btn--primary:hover { background: var(--iwc-blue-600); color: #fff; transform: translateY(-2px); box-shadow: 0 16px 34px var(--iwc-blue-glow); }
.iwc-btn--ghost { background: transparent; color: var(--iwc-ink); border-color: var(--iwc-line-strong); }
.iwc-btn--ghost:hover { border-color: var(--iwc-blue); color: var(--iwc-blue); transform: translateY(-2px); }
.iwc-btn--on-dark { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.28); backdrop-filter: blur(6px); }
.iwc-btn--on-dark:hover { background: rgba(255,255,255,.18); color: #fff; transform: translateY(-2px); }

/* ----------------------------------------------------------------------------
   2B. LIGHT MOCKUP HEADER (Woo pages) + hide the dark nav/GP header there
   ---------------------------------------------------------------------------- */
/* hide the site's dark custom nav + GP header on Woo pages (light header replaces them) */
body.iwc-has-light-header .isbat-simple-nav,
body.iwc-has-light-header .isbat-nav,
body.iwc-has-light-header .site-header,
body.iwc-has-light-header #masthead { display: none !important; }
/* also hide the top contact strip if present */
body.iwc-has-light-header .isbat-topbar,
body.iwc-has-light-header .mx-top-strip { display: none !important; }
body.iwc-has-light-header .isbat-floating-cart { display: none !important; }
body.iwc-has-light-header #page { margin-top: -48px; }

.iwc-hdr {
  position: sticky; top: 0; z-index: 1000;
  background: #fff; border-bottom: 1px solid var(--iwc-line);
  box-shadow: 0 1px 0 rgba(16,32,51,.02);
}
.iwc-hdr__in { display: flex; align-items: center; gap: 24px; height: 70px; }
.iwc-hdr__brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; flex: 0 0 auto; }
.iwc-hdr__flake { color: var(--iwc-blue); flex: 0 0 auto; }
.iwc-hdr__name { font-family: var(--iwc-font); font-weight: 800; font-size: 1.12rem; letter-spacing: .02em; color: var(--iwc-ink); }
.iwc-hdr__name b { font-weight: 800; color: var(--iwc-blue); }
.iwc-hdr__nav { display: flex; align-items: center; gap: clamp(14px, 2vw, 30px); margin-left: 18px; }
.iwc-hdr__nav a {
  font-size: .95rem; font-weight: 500; color: var(--iwc-ink-soft); text-decoration: none;
  padding: 6px 2px; position: relative; transition: color .2s var(--iwc-ease);
}
.iwc-hdr__nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--iwc-blue); transform: scaleX(0); transition: transform .2s var(--iwc-ease); }
.iwc-hdr__nav a:hover { color: var(--iwc-ink); }
.iwc-hdr__nav a:hover::after { transform: scaleX(1); }
.iwc-hdr__tools { display: flex; align-items: center; gap: 6px; margin-left: auto; }
.iwc-hdr__icon {
  display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 10px;
  color: var(--iwc-ink-soft); text-decoration: none; font-size: 1.02rem; position: relative;
  transition: background .15s var(--iwc-ease), color .15s var(--iwc-ease);
}
.iwc-hdr__icon:hover { background: var(--iwc-surface-2); color: var(--iwc-blue); }
.iwc-hdr__cartn {
  position: absolute; top: 3px; right: 3px; min-width: 16px; height: 16px; padding: 0 4px;
  border-radius: 999px; background: var(--iwc-blue); color: #fff; font-size: .66rem; font-weight: 700;
  display: grid; place-items: center; line-height: 1;
}
.iwc-hdr__cartn[hidden] { display: none; }
.iwc-hdr__burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; margin-left: auto; }
.iwc-hdr__burger span { display: block; width: 22px; height: 2px; background: var(--iwc-ink); margin: 4px 0; border-radius: 2px; transition: transform .25s var(--iwc-ease), opacity .2s; }
.iwc-hdr__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.iwc-hdr__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.iwc-hdr__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
body.iwc-has-light-header .iwc-hdr__burger {
  place-items: center !important;
  width: 40px !important;
  min-width: 40px !important;
  max-width: 40px !important;
  height: 40px !important;
  min-height: 40px !important;
  max-height: 40px !important;
  flex: 0 0 40px;
  padding: 0 !important;
  background: transparent !important;
  color: var(--iwc-ink) !important;
  border: 0 !important;
  border-radius: 10px !important;
  box-shadow: none !important;
  line-height: 1 !important;
  box-sizing: border-box !important;
  appearance: none;
  -webkit-appearance: none;
}
body.iwc-has-light-header .iwc-hdr__burger span { margin: 3px 0 !important; }

@media (min-width: 881px) {
  body.iwc-has-light-header .iwc-hdr__burger { display: none !important; }
}

@media (max-width: 880px) {
  .iwc-hdr__burger { display: block; order: 3; }
  body.iwc-has-light-header .iwc-hdr__burger { display: inline-grid !important; }
  .iwc-hdr__tools { order: 2; margin-left: auto; }
  .iwc-hdr__nav {
    order: 4; position: absolute; left: 0; right: 0; top: 70px;
    flex-direction: column; align-items: stretch; gap: 0; margin: 0;
    background: #fff; border-bottom: 1px solid var(--iwc-line); box-shadow: var(--iwc-shadow-md);
    max-height: 0; overflow: hidden; transition: max-height .3s var(--iwc-ease);
  }
  .iwc-hdr__nav.is-open { max-height: 60vh; }
  .iwc-hdr__nav a { padding: 14px 20px; border-top: 1px solid var(--iwc-line); }
  .iwc-hdr__in { flex-wrap: wrap; }
}

/* ----------------------------------------------------------------------------
   3. HIDE BREADCRUMBS VISUALLY (keep schema in DOM for SEO — brief requirement)
   ---------------------------------------------------------------------------- */
body.isbat-shop-redesign .woocommerce-breadcrumb,
body.isbat-product-redesign .woocommerce-breadcrumb {
  position: absolute !important;
  width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ----------------------------------------------------------------------------
   4. PAGE TITLE / DEFAULT WOO CHROME RESET on redesigned templates
   ---------------------------------------------------------------------------- */
body.isbat-shop-redesign .woocommerce-products-header,
body.isbat-shop-redesign .woocommerce-result-count,
body.isbat-shop-redesign .woocommerce-ordering { /* superseded by our hero/toolbar */ }

/* GeneratePress content frame: let our heroes go full-bleed.
   Uses viewport-centering (left:50% + translateX) which is immune to the
   parent column being offset inside GP's flex .site-content. */
body.isbat-shop-redesign .iwc-bleed,
body.isbat-product-redesign .iwc-bleed {
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin-left: 0;
  margin-right: 0;
}

/* Force GP content column to full width on redesigned Woo archives so the
   grid + sidebar use the whole page (GP's .site-content is display:flex). */
body.isbat-shop-redesign .site-content { display: block; }
body.isbat-shop-redesign .content-area,
body.isbat-shop-redesign .site-main,
body.isbat-shop-redesign .inside-article,
body.isbat-shop-redesign .entry-content {
  width: 100%; max-width: 100%; float: none; margin: 0;
}
/* keep the inner sections within a readable max-width via .iwc-wrap */

/* ----------------------------------------------------------------------------
   5. ACCESSIBILITY / MOTION
   ---------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  body.isbat-shop-redesign *,
  body.isbat-product-redesign * { transition: none !important; animation: none !important; }
}

.iwc-sr { position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0; }

/* GLOBAL: kill the legacy gradient-text effect (background-clip:text + transparent
   fill) on headings inside any redesigned Woo content, so solid colors stay visible.
   Scoped to content area so the dark footer/nav headings are untouched. */
body.isbat-shop-redesign .content-area h1, body.isbat-shop-redesign .content-area h2, body.isbat-shop-redesign .content-area h3,
body.isbat-product-redesign .content-area h1, body.isbat-product-redesign .content-area h2, body.isbat-product-redesign .content-area h3,
body.isbat-cart-redesign .content-area h1, body.isbat-cart-redesign .content-area h2, body.isbat-cart-redesign .content-area h3,
body.isbat-checkout-redesign .content-area h1, body.isbat-checkout-redesign .content-area h2, body.isbat-checkout-redesign .content-area h3,
body.isbat-account-redesign .content-area h1, body.isbat-account-redesign .content-area h2, body.isbat-account-redesign .content-area h3 {
  -webkit-text-fill-color: currentColor;
}
/* but keep our intentional cyan/blue <em>/accents working — they set their own color */

/* body scroll-lock when the mobile filter drawer is open */
html.iwc-noscroll { overflow: hidden; }

/* ============================================================================
   SHOP ARCHIVE
   ============================================================================ */

/* ---- Hero (LIGHT, mockup style: heading + lead left, image right) -------- */
.iwc-archero {
  position: relative;
  background: var(--iwc-grey);
  border-bottom: 1px solid var(--iwc-line);
  padding: clamp(28px, 4vw, 56px) 0 clamp(28px, 4vw, 52px);
}
.iwc-archero__inner {
  width: 100%;
  display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(24px, 4vw, 56px);
  align-items: center;
}
.iwc-archero__text { min-width: 0; }
/* breadcrumbs sit above the hero columns */
.iwc-archero__crumbs { grid-column: 1 / -1; margin-bottom: 4px; }
.iwc-archero__crumbs, .iwc-archero__crumbs a {
  font-size: .82rem; color: var(--iwc-ink-soft); text-decoration: none;
}
.iwc-archero__crumbs a:hover { color: var(--iwc-blue); }
.iwc-archero__crumbs span { margin: 0 .4em; opacity: .5; }
.iwc-archero__title {
  color: var(--iwc-ink); font-family: var(--iwc-font); font-weight: 800;
  font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1.06; letter-spacing: -.02em;
  margin: 0 0 .35em; max-width: 18ch; text-wrap: balance;
}
.iwc-archero__lead {
  color: var(--iwc-ink-soft); font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.6; max-width: 56ch; margin: 0;
}
.iwc-archero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.iwc-archero__media { justify-self: end; max-width: 100%; }
.iwc-archero__media img {
  width: 100%; max-width: 420px; height: auto; object-fit: contain;
  filter: drop-shadow(0 18px 30px rgba(16,32,51,.16));
}
/* eyebrow on the light hero is blue text */
.iwc-archero .iwc-eyebrow { color: var(--iwc-blue); }
.iwc-archero .iwc-eyebrow--on-dark { color: var(--iwc-blue); }

/* ---- Trust bar (dark navy strip — matches mockup) ------------------------ */
.iwc-trust {
  background: var(--iwc-navy);
}
.iwc-trust__row {
  display: flex; flex-wrap: wrap; gap: clamp(16px, 3vw, 40px);
  align-items: center; justify-content: space-between;
  padding-block: 18px;
}
.iwc-trust__item {
  display: inline-flex; align-items: center; gap: .7em;
  color: var(--iwc-on-dark); font-size: .9rem; font-weight: 500; white-space: nowrap;
}
.iwc-trust__item i { color: #5fa0ff; font-size: 1.05em; }
/* small subtitle under each trust item (mockup shows two lines) */
.iwc-trust__item small { display: block; color: var(--iwc-on-dark-mut); font-size: .8em; font-weight: 400; }

/* ---- Shop tools (chips + filter/sort bar) -------------------------------- */
.iwc-shoptools { padding-top: clamp(28px, 4vw, 48px); scroll-margin-top: 90px; }
.iwc-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.iwc-chip {
  display: inline-flex; align-items: center; gap: .5em;
  padding: .52em 1em; border-radius: var(--iwc-r-pill);
  background: var(--iwc-surface-2); border: 1px solid var(--iwc-line);
  color: var(--iwc-ink-soft); font-size: .9rem; font-weight: 500; text-decoration: none;
  transition: all .2s var(--iwc-ease);
}
.iwc-chip:hover { border-color: var(--iwc-blue); color: var(--iwc-blue); transform: translateY(-1px); }
.iwc-chip.is-current { background: var(--iwc-blue); border-color: var(--iwc-blue); color: #fff; }
.iwc-chip__n { font-size: .76em; opacity: .7; }
.iwc-chip.is-current .iwc-chip__n { opacity: .9; }

.iwc-shoptools__bar {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding-bottom: 18px; border-bottom: 1px solid var(--iwc-line); margin-bottom: 24px;
}
.iwc-filtertoggle { display: none; }   /* shown only on mobile */
.iwc-shoptools__sort .orderby,
.iwc-shoptools__sort select {
  border: 1px solid var(--iwc-line-strong); border-radius: var(--iwc-r-pill);
  padding: .6em 2.2em .6em 1.1em; font: inherit; font-size: .92rem; color: var(--iwc-ink-soft);
  background: var(--iwc-surface); cursor: pointer;
}
.iwc-shoptools__sort form { margin: 0; }

@media (max-width: 560px) {
  .iwc-shoptools__bar {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .iwc-filtertoggle,
  .iwc-shoptools__sort,
  .iwc-shoptools__sort form,
  .iwc-shoptools__sort .orderby,
  .iwc-shoptools__sort select {
    width: 100%;
    max-width: 100%;
  }
}

/* ---- Layout: sidebar + main --------------------------------------------- */
.iwc-shoplayout {
  display: grid; grid-template-columns: 264px minmax(0, 1fr);
  gap: clamp(24px, 3vw, 44px); align-items: start;
  padding-bottom: clamp(48px, 7vw, 96px);
}
.iwc-shoplayout__main { min-width: 0; }

/* ---- Filter sidebar ------------------------------------------------------ */
.iwc-filters {
  position: sticky; top: 90px;
  background: var(--iwc-surface); border: 1px solid var(--iwc-line);
  border-radius: var(--iwc-r); box-shadow: var(--iwc-shadow);
  overflow: hidden;
}
.iwc-filters__head {
  display: none; /* header only used in mobile drawer */
  align-items: center; justify-content: space-between;
  padding: 16px 18px; border-bottom: 1px solid var(--iwc-line); font-weight: 700; color: var(--iwc-ink);
}
.iwc-filters__close { background: none; border: 0; font-size: 1.6rem; line-height: 1; cursor: pointer; color: var(--iwc-ink-muted); }
.iwc-filters__body { padding: 8px; }
.iwc-acc { border-bottom: 1px solid var(--iwc-line); }
.iwc-acc:last-child { border-bottom: 0; }
.iwc-acc__head {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  padding: 14px 12px; font: inherit; font-weight: 600; font-size: .95rem; color: var(--iwc-ink);
  display: flex; align-items: center; justify-content: space-between;
}
.iwc-acc__head::after { content: "+"; color: var(--iwc-ink-muted); font-size: 1.1rem; }
.iwc-acc__head[aria-expanded="true"]::after { content: "–"; }
.iwc-acc__panel { max-height: 0; overflow: hidden; transition: max-height .3s var(--iwc-ease); }
.iwc-acc__panel.is-open { } /* max-height set inline by JS */
.iwc-filterlist { list-style: none; margin: 0; padding: 0 12px 12px; }
.iwc-filterlist li { margin: 0; }
.iwc-filterlist a {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  padding: 7px 8px; border-radius: 8px; text-decoration: none;
  color: var(--iwc-ink-soft); font-size: .9rem; transition: background .15s var(--iwc-ease), color .15s var(--iwc-ease);
}
.iwc-filterlist a:hover { background: var(--iwc-ice); color: var(--iwc-blue); }
.iwc-filterlist a span { color: var(--iwc-ink-soft); font-size: .82em; }
.iwc-filters__help { padding: 16px 12px; border-top: 1px solid var(--iwc-line); }
.iwc-filters__help p { margin: 0 0 10px; font-size: .9rem; color: var(--iwc-ink-soft); }
.iwc-filters__help .iwc-btn { width: 100%; }
.iwc-filters__scrim { display: none; }

/* ============================================================================
   PRODUCT GRID  (re-skins native ul.products li.product — quote CTAs preserved)
   ============================================================================ */
body.isbat-shop-redesign .iwc-shoplayout__main ul.products {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--iwc-gap); margin: 0; padding: 0; list-style: none;
}
body.isbat-shop-redesign ul.products::before,
body.isbat-shop-redesign ul.products::after { content: none !important; }

body.isbat-shop-redesign ul.products li.product {
  margin: 0 !important; width: auto !important; float: none !important; padding: 0 !important;
  display: flex; flex-direction: column;
  background: var(--iwc-surface); border: 1px solid var(--iwc-line);
  border-radius: var(--iwc-r); overflow: hidden; box-shadow: var(--iwc-shadow);
  transition: transform .3s var(--iwc-ease-emph), box-shadow .3s var(--iwc-ease), border-color .3s var(--iwc-ease);
}
body.isbat-shop-redesign ul.products li.product:hover {
  transform: translateY(-6px);
  border-color: var(--iwc-blue);
  box-shadow: var(--iwc-glow);
}
/* image */
body.isbat-shop-redesign ul.products li.product > a img,
body.isbat-shop-redesign ul.products li.product img.attachment-woocommerce_thumbnail {
  width: 100%; aspect-ratio: 4/3; object-fit: cover; margin: 0 !important;
  background: var(--iwc-surface-2); transition: transform .5s var(--iwc-ease);
}
body.isbat-shop-redesign ul.products li.product:hover img { transform: scale(1.05); }
/* title — !important to beat the dark-skin white text override on white cards */
body.isbat-shop-redesign ul.products li.product .woocommerce-loop-product__title,
body.isbat-shop-redesign ul.products li.product h2,
body.isbat-shop-redesign ul.products li.product h3 {
  font-size: 1.05rem; font-weight: 700; color: var(--iwc-ink) !important; line-height: 1.3;
  padding: 16px 16px 4px; margin: 0;
}
/* category eyebrow (injected via hook below) */
body.isbat-shop-redesign ul.products li.product .iwc-card__cat {
  padding: 14px 16px 0; font-size: .74rem; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--iwc-blue);
}
/* price / quote */
body.isbat-shop-redesign ul.products li.product .price {
  padding: 0 16px; margin: 4px 0 0; color: var(--iwc-ink); font-weight: 700; font-size: 1.05rem;
}
body.isbat-shop-redesign ul.products li.product .price del { color: var(--iwc-ink-muted); font-weight: 400; }
body.isbat-shop-redesign ul.products li.product .isbat-price-on-request,
body.isbat-shop-redesign ul.products li.product .isbat-order-by-request { color: var(--iwc-blue); }
/* CTA button (loop add-to-cart / quote button) — pinned to card bottom.
   !important + .woocommerce prefix to beat the legacy red .button rule. */
body.isbat-shop-redesign ul.products li.product .button,
body.isbat-shop-redesign.woocommerce ul.products li.product a.button,
body.isbat-shop-redesign.woocommerce ul.products li.product .isbat-quote-button,
body.isbat-shop-redesign ul.products li.product .iwc-card__cta {
  margin: 14px 16px 16px; margin-top: auto; display: inline-flex; align-items: center; justify-content: center;
  background: var(--iwc-blue) !important; color: #fff !important; border-radius: var(--iwc-r-pill) !important;
  padding: .72em 1.2em; font-weight: 600; font-size: .92rem; text-decoration: none; border: 0;
  transition: background .2s var(--iwc-ease), transform .2s var(--iwc-ease);
  box-shadow: none;
}
body.isbat-shop-redesign ul.products li.product .button:hover,
body.isbat-shop-redesign.woocommerce ul.products li.product a.button:hover,
body.isbat-shop-redesign.woocommerce ul.products li.product .isbat-quote-button:hover,
body.isbat-shop-redesign ul.products li.product .iwc-card__cta:hover {
  background: var(--iwc-blue-600) !important; color: #fff !important; transform: translateY(-1px);
}
body.isbat-shop-redesign ul.products li.product .added_to_cart {
  margin: 0 16px 16px; color: var(--iwc-blue); font-weight: 600; font-size: .85rem;
}

/* pagination */
body.isbat-shop-redesign .woocommerce-pagination ul { border: 0; margin-top: 32px; display: flex; gap: 8px; justify-content: center; }
body.isbat-shop-redesign .woocommerce-pagination ul li { border: 0; }
body.isbat-shop-redesign .woocommerce-pagination a,
body.isbat-shop-redesign .woocommerce-pagination span {
  border: 1px solid var(--iwc-line); border-radius: 10px; padding: .5em .9em; color: var(--iwc-ink-soft);
}
body.isbat-shop-redesign .woocommerce-pagination .current { background: var(--iwc-blue); color: #fff; border-color: var(--iwc-blue); }

/* The hero renders INSIDE .woocommerce-products-header (via the
   woocommerce_archive_description hook) — so DON'T hide the header itself.
   Hide only its default children: page title, result count, native ordering. */
body.isbat-shop-redesign .woocommerce-products-header > .woocommerce-products-header__title,
body.isbat-shop-redesign .woocommerce-products-header > .page-title,
body.isbat-shop-redesign .woocommerce-products-header > .woocommerce-result-count,
body.isbat-shop-redesign .woocommerce-products-header > .woocommerce-ordering { display: none !important; }
body.isbat-shop-redesign .woocommerce-products-header { margin: 0; padding: 0; border: 0 !important; background: none !important; }
/* kill the legacy 3px cyan→red gradient accent line on the products-header */
body.isbat-shop-redesign .woocommerce-products-header::before,
body.isbat-shop-redesign .woocommerce-products-header::after { content: none !important; display: none !important; }
/* hide GP's own archive/page title (our hero carries the H1) + any legacy accent rule */
body.isbat-shop-redesign .page-header,
body.isbat-shop-redesign .entry-header .entry-title,
body.isbat-shop-redesign > .site .page-title,
body.isbat-shop-redesign .inside-article > .entry-header { display: none !important; }
body.isbat-shop-redesign .iwc-archero { border: 0 !important; outline: 0 !important; }
body.isbat-shop-redesign .iwc-archero::before { content: none !important; }
/* kill the ghost Woo/GP archive H1 in every form */
body.isbat-shop-redesign .woocommerce-products-header__title,
body.isbat-shop-redesign h1.page-title { display: none !important; }
/* remove any legacy top accent border on the content wrappers (the thin line) */
body.isbat-shop-redesign .inside-article,
body.isbat-shop-redesign .entry-content,
body.isbat-shop-redesign .woocommerce-archive-wrapper { border: 0 !important; }
body.isbat-shop-redesign .inside-article::before,
body.isbat-shop-redesign .entry-content::before { content: none !important; }
/* the result-count that sits with the loop (not in header) — keep subtle */
body.isbat-shop-redesign .iwc-shoplayout__main .woocommerce-result-count { color: var(--iwc-ink-muted); font-size: .88rem; margin-bottom: 12px; }
body.isbat-shop-redesign .woocommerce-no-products-found { padding: 40px 0; }

/* ============================================================================
   RESPONSIVE — shop archive
   ============================================================================ */
@media (max-width: 1024px) {
  .iwc-shoplayout { grid-template-columns: 1fr; }
  .iwc-filters {
    position: fixed; top: 0; right: 0; bottom: 0; left: auto; z-index: 1000;
    width: min(360px, 88vw); border-radius: 0; box-shadow: var(--iwc-shadow-lg);
    transform: translateX(100%); transition: transform .32s var(--iwc-ease-emph);
    display: flex; flex-direction: column; max-height: 100vh; overflow-y: auto;
  }
  .iwc-filters.is-open { transform: translateX(0); }
  .iwc-filters__head { display: flex; }
  .iwc-filtertoggle { display: inline-flex; }
  .iwc-filters__scrim {
    display: block; position: fixed; inset: 0; z-index: 999;
    background: rgba(7,26,51,.5); opacity: 0; pointer-events: none; transition: opacity .3s var(--iwc-ease);
  }
  .iwc-filters.is-open ~ .iwc-filters__scrim,
  .iwc-filters.is-open + .iwc-filters__scrim { opacity: 1; pointer-events: auto; }
  body.isbat-shop-redesign .iwc-shoplayout__main ul.products { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 860px) {
  .iwc-archero__inner { grid-template-columns: 1fr; }
  .iwc-archero__media { display: none; }   /* hide hero image on small screens */
  .iwc-trust__row { justify-content: flex-start; gap: 18px 28px; }
}
@media (max-width: 560px) {
  body.isbat-shop-redesign .iwc-shoplayout__main ul.products { grid-template-columns: 1fr; }
  .iwc-trust__item { font-size: .84rem; }
  .iwc-trust__item small { display: none; }
}

/* ============================================================================
   SINGLE PRODUCT
   ============================================================================ */
body.isbat-product-redesign .site-content { display: block; }
body.isbat-product-redesign .content-area,
body.isbat-product-redesign .site-main,
body.isbat-product-redesign .inside-article,
body.isbat-product-redesign .entry-content { width: 100%; max-width: 100%; float: none; margin: 0; }
body.isbat-product-redesign .page-header,
body.isbat-product-redesign .entry-header .entry-title { display: none; }

/* force the redesign font everywhere in the product area (legacy skin used mono on price) */
body.isbat-product-redesign div.product,
body.isbat-product-redesign div.product *,
body.isbat-shop-redesign .iwc,
body.isbat-shop-redesign .iwc * { font-family: var(--iwc-font) !important; }

/* DEFAULT DARK TEXT on the now-light product surface.
   The legacy mx-dark-skin sets --text-primary white (assumes dark bg); since we
   forced the surface light, set readable dark text for everything in the product
   area, then let specific accent rules (blue eyebrow/price) override below. */
body.isbat-product-redesign div.product,
body.isbat-product-redesign div.product p,
body.isbat-product-redesign div.product li,
body.isbat-product-redesign div.product span,
body.isbat-product-redesign div.product td,
body.isbat-product-redesign div.product th,
body.isbat-product-redesign div.product a,
body.isbat-product-redesign .summary,
body.isbat-product-redesign .summary * ,
body.isbat-product-redesign .woocommerce-tabs,
body.isbat-product-redesign .woocommerce-tabs * {
  color: var(--iwc-ink-soft);
}
/* restore the intended accents/strong colors on the light surface.
   The legacy skin uses gradient-text (background-clip:text + transparent fill) on
   headings — reset that so our solid dark color is actually visible. */
body.isbat-product-redesign .product_title.entry-title,
body.isbat-product-redesign .summary h1,
body.isbat-product-redesign .summary h2,
body.isbat-product-redesign .summary h3,
body.isbat-product-redesign .woocommerce-Tabs-panel h2,
body.isbat-product-redesign .related.products h2,
body.isbat-product-redesign .iwc-expert h3 {
  color: var(--iwc-ink) !important;
  -webkit-text-fill-color: var(--iwc-ink) !important;
  background: none !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
}
/* expert card heading is on dark → white */
body.isbat-product-redesign .iwc-expert h3 { color: #fff !important; -webkit-text-fill-color: #fff !important; }
body.isbat-product-redesign .iwc-psum__cat,
body.isbat-product-redesign .summary .price,
body.isbat-product-redesign .summary .price .woocommerce-Price-amount,
body.isbat-product-redesign .product_meta a,
body.isbat-product-redesign .posted_in a,
body.isbat-product-redesign .tagged_as a { color: var(--iwc-blue) !important; }
/* the expert card sits on a dark gradient → its text stays light */
body.isbat-product-redesign .iwc-expert,
body.isbat-product-redesign .iwc-expert * { color: var(--iwc-on-dark); }
body.isbat-product-redesign .iwc-expert h3 { color: #fff !important; }
body.isbat-product-redesign .iwc-expert p { color: var(--iwc-on-dark-mut); }

/* legacy light/cyan leftovers on the light surface → readable dark/blue */
body.isbat-product-redesign .woocommerce-price-suffix,
body.isbat-product-redesign .posted_in,
body.isbat-product-redesign .tagged_as,
body.isbat-product-redesign .product_meta { color: var(--iwc-ink-soft) !important; }
body.isbat-product-redesign .posted_in a,
body.isbat-product-redesign .tagged_as a { color: var(--iwc-blue) !important; }
/* tab labels: never cyan — dark on light pills, white on active blue pill */
body.isbat-product-redesign .woocommerce-tabs ul.tabs li a { color: var(--iwc-ink-soft) !important; -webkit-text-fill-color: var(--iwc-ink-soft) !important; }
body.isbat-product-redesign .woocommerce-tabs ul.tabs li.active a { color: #fff !important; -webkit-text-fill-color: #fff !important; }

/* tab PANEL content: all text dark + headings/strong visible (kill gradient-text
   & light colors the legacy skin applied to description headings/labels). */
body.isbat-product-redesign .woocommerce-Tabs-panel,
body.isbat-product-redesign .woocommerce-Tabs-panel p,
body.isbat-product-redesign .woocommerce-Tabs-panel li,
body.isbat-product-redesign .woocommerce-Tabs-panel span,
body.isbat-product-redesign .woocommerce-Tabs-panel td,
body.isbat-product-redesign .woocommerce-Tabs-panel th { color: var(--iwc-ink-soft) !important; -webkit-text-fill-color: var(--iwc-ink-soft) !important; }
body.isbat-product-redesign .woocommerce-Tabs-panel h1,
body.isbat-product-redesign .woocommerce-Tabs-panel h2,
body.isbat-product-redesign .woocommerce-Tabs-panel h3,
body.isbat-product-redesign .woocommerce-Tabs-panel h4,
body.isbat-product-redesign .woocommerce-Tabs-panel strong,
body.isbat-product-redesign .woocommerce-Tabs-panel b {
  color: var(--iwc-ink) !important; -webkit-text-fill-color: var(--iwc-ink) !important;
  background: none !important; -webkit-background-clip: border-box !important; background-clip: border-box !important;
}

/* two-column product layout */
body.isbat-product-redesign div.product {
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(28px, 4vw, 60px); align-items: start;
  max-width: var(--iwc-wrap); margin: clamp(24px,4vw,48px) auto; padding-inline: clamp(16px,4vw,40px);
}
body.isbat-product-redesign div.product::before,
body.isbat-product-redesign div.product::after { content: none !important; }

/* gallery (left) */
body.isbat-product-redesign .woocommerce-product-gallery {
  position: sticky; top: 90px; width: 100% !important; margin: 0; float: none;
  opacity: 1 !important;
}
body.isbat-product-redesign .woocommerce-product-gallery,
body.isbat-product-redesign .woocommerce-product-gallery__wrapper,
body.isbat-product-redesign .woocommerce-product-gallery__image,
body.isbat-product-redesign .woocommerce-product-gallery__image--placeholder {
  background: #fff !important;   /* kill the legacy dark overlay covering the image */
}
body.isbat-product-redesign .woocommerce-product-gallery__wrapper {
  position: relative !important;
  width: 100% !important;
  max-width: 100% !important;
  transform: none !important;
  aspect-ratio: 1 / 1;
  border-radius: var(--iwc-r-lg);
  overflow: hidden;
  box-shadow: var(--iwc-shadow);
  border: 1px solid var(--iwc-line);
  background:
    radial-gradient(circle at 50% 45%, rgba(30, 99, 214, .08), transparent 56%),
    linear-gradient(180deg, #fff, #f7faff) !important;
}
body.isbat-product-redesign .woocommerce-product-gallery__wrapper > .woocommerce-product-gallery__image,
body.isbat-product-redesign .woocommerce-product-gallery__wrapper > .woocommerce-product-gallery__image--placeholder {
  position: absolute !important;
  inset: 0;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  overflow: hidden !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s var(--iwc-ease);
}
body.isbat-product-redesign .woocommerce-product-gallery__wrapper:not(.iwc-gallery-ready) > .woocommerce-product-gallery__image:first-child,
body.isbat-product-redesign .woocommerce-product-gallery__wrapper.iwc-gallery-ready > .woocommerce-product-gallery__image.is-iwc-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
}
body.isbat-product-redesign .woocommerce-product-gallery__image a {
  display: grid !important;
  place-items: center;
  width: 100% !important;
  height: 100% !important;
}
body.isbat-product-redesign .woocommerce-product-gallery img:not(.zoomImg) {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  object-fit: contain !important;
  padding: clamp(18px, 3vw, 42px);
  border-radius: 0;
}
body.isbat-product-redesign .woocommerce-product-gallery .zoomImg { display: none !important; }
body.isbat-product-redesign .flex-control-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(68px, 1fr));
  gap: 10px;
  margin: 12px 0 0;
  padding: 0;
}
body.isbat-product-redesign .flex-control-thumbs li { width: auto !important; margin: 0 !important; }
body.isbat-product-redesign .flex-control-thumbs img {
  width: 100% !important;
  height: 72px !important;
  object-fit: contain !important;
  padding: 7px;
  border-radius: 10px;
  border: 1px solid var(--iwc-line);
  background: #fff;
  opacity: .62;
  cursor: pointer;
  transition: opacity .2s, border-color .2s, box-shadow .2s;
}
body.isbat-product-redesign .flex-control-thumbs img:hover,
body.isbat-product-redesign .flex-control-thumbs img:focus-visible,
body.isbat-product-redesign .flex-control-thumbs .flex-active,
body.isbat-product-redesign .flex-control-thumbs .is-iwc-active-thumb {
  opacity: 1;
  border-color: var(--iwc-blue);
  box-shadow: 0 0 0 3px var(--iwc-blue-glow);
}

/* summary (right) */
body.isbat-product-redesign .summary.entry-summary {
  width: 100% !important; margin: 0; float: none; padding: 0;
}
body.isbat-product-redesign .iwc-psum__cat {
  display: inline-block; font-size: .76rem; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--iwc-blue); text-decoration: none; margin-bottom: 10px;
}
body.isbat-product-redesign .product_title.entry-title {
  font-size: clamp(1.7rem, 3vw, 2.5rem); font-weight: 800; line-height: 1.1; letter-spacing: -.02em;
  color: var(--iwc-ink) !important; margin: 0 0 14px;
}
body.isbat-product-redesign .summary .price {
  font-size: 1.6rem; font-weight: 800; color: var(--iwc-ink); margin: 0 0 18px;
}
body.isbat-product-redesign .summary .price del { color: var(--iwc-ink-muted); font-weight: 400; font-size: .7em; }
body.isbat-product-redesign .summary .price .isbat-price-on-request,
body.isbat-product-redesign .summary .price .woocommerce-Price-amount { color: var(--iwc-blue); }
body.isbat-product-redesign .woocommerce-product-details__short-description {
  color: var(--iwc-ink-soft); font-size: 1.02rem; line-height: 1.6; margin-bottom: 22px;
}
body.isbat-product-redesign .woocommerce-product-details__short-description p { color: var(--iwc-ink-soft); }

/* add-to-cart / quote CTA in summary */
body.isbat-product-redesign .summary form.cart { margin: 0 0 18px; display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
body.isbat-product-redesign .summary .quantity { background: none !important; }
body.isbat-product-redesign .summary .quantity input,
body.isbat-product-redesign .summary .quantity input.qty {
  width: 72px !important; height: 52px; padding: .7em !important; text-align: center;
  border: 1px solid var(--iwc-line-strong) !important; border-radius: var(--iwc-r-sm) !important;
  background: #fff !important; color: var(--iwc-ink) !important; -webkit-text-fill-color: var(--iwc-ink) !important;
  font: inherit; font-weight: 600; -moz-appearance: textfield;
}
body.isbat-product-redesign .summary form.cart .button,
body.isbat-product-redesign.woocommerce div.product form.cart .single_add_to_cart_button,
body.isbat-product-redesign.woocommerce-page div.product form.cart button.single_add_to_cart_button,
body.isbat-product-redesign .summary .single_add_to_cart_button,
body.isbat-product-redesign .summary .isbat-quote-button {
  background: var(--iwc-blue) !important; color: #fff !important; border: 0 !important;
  border-radius: var(--iwc-r-pill) !important; padding: .9em 1.8em !important; font-weight: 600 !important;
  font-size: 1rem !important; box-shadow: 0 10px 26px var(--iwc-blue-glow);
  transition: background .2s var(--iwc-ease), transform .2s var(--iwc-ease);
}
body.isbat-product-redesign .summary form.cart .button:hover,
body.isbat-product-redesign.woocommerce div.product form.cart .single_add_to_cart_button:hover,
body.isbat-product-redesign .summary .single_add_to_cart_button:hover,
body.isbat-product-redesign .summary .isbat-quote-button:hover {
  background: var(--iwc-blue-600) !important; transform: translateY(-2px);
}

/* existing quote panel — re-skin to blue */
body.isbat-product-redesign .isbat-product-quote-panel {
  border: 1px solid rgba(0,87,200,.18); background: var(--iwc-ice); border-radius: var(--iwc-r);
  padding: 18px; margin: 0 0 18px;
}
body.isbat-product-redesign .isbat-product-quote-panel,
body.isbat-product-redesign .isbat-product-quote-panel p { color: var(--iwc-marine); }

/* properties / meta */
body.isbat-product-redesign .product_meta {
  font-size: .9rem; color: var(--iwc-ink-muted); border-top: 1px solid var(--iwc-line); padding-top: 16px; margin-top: 6px;
}
body.isbat-product-redesign .product_meta > span { display: block; margin-bottom: 6px; }
body.isbat-product-redesign .product_meta a { color: var(--iwc-blue); text-decoration: none; }

/* spec checklist (mockup ✓ list under short description) */
.iwc-speclist { list-style: none; margin: 0 0 22px; padding: 0; display: grid; gap: 10px; }
.iwc-speclist li { display: flex; align-items: baseline; gap: .6em; color: var(--iwc-ink-soft); font-size: .98rem; line-height: 1.4; }
.iwc-speclist i { color: var(--iwc-blue); font-size: .85em; flex: 0 0 auto; }
.iwc-speclist__k { font-weight: 600; color: var(--iwc-ink); }
.iwc-speclist__v { color: var(--iwc-ink-soft); }

/* compare link */
.iwc-compare { margin: 12px 0 4px; }
.iwc-compare a { display: inline-flex; align-items: center; gap: .5em; color: var(--iwc-ink-muted); font-size: .9rem; font-weight: 500; text-decoration: none; transition: color .15s var(--iwc-ease); }
.iwc-compare a:hover { color: var(--iwc-blue); }

/* trust strip */
.iwc-ptrust { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px; margin: 6px 0 20px; padding: 16px 0; border-top: 1px solid var(--iwc-line); border-bottom: 1px solid var(--iwc-line); }
.iwc-ptrust li { display: flex; align-items: center; gap: .55em; color: var(--iwc-ink-soft); font-size: .92rem; font-weight: 500; margin: 0; }
.iwc-ptrust i { color: var(--iwc-blue); }

/* expert card */
.iwc-expert {
  display: flex; gap: 16px; align-items: flex-start; margin-top: 8px;
  padding: 20px; border-radius: var(--iwc-r); border: 1px solid var(--iwc-line);
  background: linear-gradient(135deg, var(--iwc-marine), var(--iwc-blue-700));
}
.iwc-expert__media { flex: 0 0 auto; width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.12); color: #fff; font-size: 1.2rem; }
.iwc-expert__body h3 { color: #fff; margin: 0 0 4px; font-size: 1.15rem; font-weight: 700; }
.iwc-expert__body p { color: var(--iwc-on-dark-mut); margin: 0 0 14px; font-size: .94rem; line-height: 1.5; }
.iwc-expert__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.iwc-expert .iwc-btn--ghost { color: #fff; border-color: rgba(255,255,255,.3); }
.iwc-expert .iwc-btn--ghost:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,.1); }

/* ---- tabs ---------------------------------------------------------------- */
body.isbat-product-redesign .woocommerce-tabs {
  grid-column: 1 / -1; max-width: var(--iwc-wrap); margin: clamp(32px,5vw,64px) auto 0; padding-inline: clamp(16px,4vw,40px);
}
body.isbat-product-redesign .woocommerce-tabs ul.tabs {
  display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 24px; padding: 0; border: 0;
}
body.isbat-product-redesign .woocommerce-tabs ul.tabs::before { display: none; }
body.isbat-product-redesign .woocommerce-tabs ul.tabs li {
  background: var(--iwc-surface-2); border: 1px solid var(--iwc-line); border-radius: var(--iwc-r-pill);
  margin: 0; padding: 0;
}
body.isbat-product-redesign .woocommerce-tabs ul.tabs li::before,
body.isbat-product-redesign .woocommerce-tabs ul.tabs li::after { display: none; }
body.isbat-product-redesign .woocommerce-tabs ul.tabs li a {
  padding: .6em 1.2em; color: var(--iwc-ink-soft); font-weight: 600; font-size: .92rem; text-decoration: none; display: block;
}
body.isbat-product-redesign .woocommerce-tabs ul.tabs li.active { background: var(--iwc-blue); border-color: var(--iwc-blue); }
body.isbat-product-redesign .woocommerce-tabs ul.tabs li.active a { color: #fff; }
body.isbat-product-redesign .woocommerce-Tabs-panel {
  color: var(--iwc-ink-soft); font-size: 1rem; line-height: 1.65; max-width: 80ch;
}
body.isbat-product-redesign .woocommerce-Tabs-panel h2 { color: var(--iwc-ink); font-size: 1.4rem; margin: 0 0 14px; }
body.isbat-product-redesign .woocommerce-Tabs-panel table { width: 100%; border-collapse: collapse; }
body.isbat-product-redesign .woocommerce-Tabs-panel table th,
body.isbat-product-redesign .woocommerce-Tabs-panel table td { padding: 10px 12px; border-bottom: 1px solid var(--iwc-line); text-align: left; }
.iwc-checklist { list-style: none; padding: 0; margin: 14px 0; }
.iwc-checklist li { position: relative; padding-left: 28px; margin-bottom: 8px; color: var(--iwc-ink-soft); }
.iwc-checklist li::before { content: "\2713"; position: absolute; left: 0; color: var(--iwc-blue); font-weight: 700; }
.iwc-doclist { list-style: none; padding: 0; margin: 8px 0 16px; display: grid; gap: 10px; }
.iwc-doclist a { display: inline-flex; align-items: center; gap: .6em; padding: 12px 16px; border: 1px solid var(--iwc-line); border-radius: var(--iwc-r-sm); background: var(--iwc-surface); color: var(--iwc-ink); font-weight: 600; text-decoration: none; transition: border-color .2s var(--iwc-ease), background .2s var(--iwc-ease); }
.iwc-doclist a:hover { border-color: var(--iwc-blue); background: var(--iwc-ice); color: var(--iwc-blue); }
.iwc-doclist i { color: var(--iwc-blue); }
.iwc-doc-help { font-size: .92rem; color: var(--iwc-ink-muted); }
.iwc-doc-help a { color: var(--iwc-blue); }
.iwc-faq details { border: 1px solid var(--iwc-line); border-radius: var(--iwc-r-sm); padding: 14px 16px; margin-bottom: 10px; background: var(--iwc-surface); }
.iwc-faq summary { cursor: pointer; font-weight: 600; color: var(--iwc-ink); }
.iwc-faq p { margin: 10px 0 0; color: var(--iwc-ink-soft); }

/* ---- related products carousel ------------------------------------------ */
body.isbat-product-redesign .related.products,
body.isbat-product-redesign .upsells.products {
  grid-column: 1 / -1; max-width: var(--iwc-wrap); margin: clamp(40px,6vw,72px) auto 0; padding-inline: clamp(16px,4vw,40px);
}
body.isbat-product-redesign .related.products > h2,
body.isbat-product-redesign .upsells.products > h2 {
  font-size: clamp(1.4rem,2.4vw,1.9rem); font-weight: 800; color: var(--iwc-ink); margin: 0 0 20px;
}
body.isbat-product-redesign .related.products ul.products,
body.isbat-product-redesign .upsells.products ul.products {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(240px, 1fr);
  gap: var(--iwc-gap); overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 12px; margin: 0; scrollbar-width: thin;
}
body.isbat-product-redesign .related.products ul.products li.product,
body.isbat-product-redesign .upsells.products ul.products li.product {
  scroll-snap-align: start; width: auto !important; margin: 0 !important;
  display: flex; flex-direction: column;
  background: var(--iwc-surface); border: 1px solid var(--iwc-line); border-radius: var(--iwc-r); overflow: hidden;
  box-shadow: var(--iwc-shadow); transition: transform .3s var(--iwc-ease), box-shadow .3s var(--iwc-ease), border-color .3s var(--iwc-ease);
}
body.isbat-product-redesign .related.products ul.products li.product:hover { transform: translateY(-4px); border-color: var(--iwc-blue); box-shadow: var(--iwc-glow); }
body.isbat-product-redesign .related.products li.product img { aspect-ratio: 4/3; object-fit: cover; width: 100%; margin: 0; }
body.isbat-product-redesign .related.products li.product .woocommerce-loop-product__title { padding: 14px 14px 4px; font-size: 1rem; font-weight: 700; color: var(--iwc-ink) !important; }
body.isbat-product-redesign .related.products li.product .price { padding: 0 14px; color: var(--iwc-ink); font-weight: 700; }
body.isbat-product-redesign .related.products li.product .button,
body.isbat-product-redesign.woocommerce .related.products li.product a.button { margin: 12px 14px 14px !important; margin-top: auto !important; background: var(--iwc-blue) !important; color: #fff !important; border-radius: var(--iwc-r-pill) !important; text-align: center; }

/* ---- sticky mobile CTA --------------------------------------------------- */
.iwc-stickycta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 900;
  display: none; align-items: center; justify-content: space-between; gap: 16px;
  padding: 12px clamp(16px, 4vw, 28px);
  background: rgba(255,255,255,.96); backdrop-filter: blur(10px);
  border-top: 1px solid var(--iwc-line); box-shadow: 0 -8px 24px rgba(7,26,51,.1);
  transform: translateY(110%); transition: transform .3s var(--iwc-ease-emph);
}
.iwc-stickycta.is-visible { transform: translateY(0); }
.iwc-stickycta__info { display: flex; flex-direction: column; min-width: 0; }
.iwc-stickycta__name { font-weight: 700; color: var(--iwc-ink); font-size: .92rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.iwc-stickycta__price { color: var(--iwc-blue); font-weight: 700; font-size: .9rem; }
.iwc-stickycta .iwc-btn { white-space: nowrap; }

/* ---- responsive: single product ----------------------------------------- */
@media (max-width: 900px) {
  body.isbat-product-redesign div.product { grid-template-columns: 1fr; }
  body.isbat-product-redesign .woocommerce-product-gallery { position: static !important; top: auto !important; }
  .iwc-stickycta { display: flex; }
}
@media (max-width: 480px) {
  .iwc-ptrust { grid-template-columns: 1fr; }
}

/* ============================================================================
   CART / CHECKOUT / ACCOUNT / SEARCH  — clean B2B skin of standard Woo markup
   ============================================================================ */

/* DEFAULT DARK TEXT on the now-light cart/checkout/account surfaces.
   The legacy mx-dark-skin sets text white (assumes dark bg) → invisible on white.
   Force readable dark text in the content area; accents/buttons override below. */
body.isbat-cart-redesign .content-area, body.isbat-cart-redesign .content-area *,
body.isbat-checkout-redesign .content-area, body.isbat-checkout-redesign .content-area *,
body.isbat-account-redesign .content-area, body.isbat-account-redesign .content-area * {
  color: var(--iwc-ink-soft);
  -webkit-text-fill-color: currentColor;
}
/* headings + strong → full dark, kill gradient-text */
body.isbat-cart-redesign .content-area h1, body.isbat-cart-redesign .content-area h2, body.isbat-cart-redesign .content-area h3, body.isbat-cart-redesign .content-area th, body.isbat-cart-redesign .content-area strong,
body.isbat-checkout-redesign .content-area h1, body.isbat-checkout-redesign .content-area h2, body.isbat-checkout-redesign .content-area h3, body.isbat-checkout-redesign .content-area th, body.isbat-checkout-redesign .content-area strong, body.isbat-checkout-redesign .content-area label,
body.isbat-account-redesign .content-area h1, body.isbat-account-redesign .content-area h2, body.isbat-account-redesign .content-area h3, body.isbat-account-redesign .content-area th, body.isbat-account-redesign .content-area strong {
  color: var(--iwc-ink) !important; -webkit-text-fill-color: var(--iwc-ink) !important;
  background: none !important; -webkit-background-clip: border-box !important; background-clip: border-box !important;
}
/* keep our blue accents (links, prices, "På forespørsel", account active nav, buttons) */
body.isbat-cart-redesign .content-area a:not(.button):not(.checkout-button):not(.remove):not(.iwc-btn), body.isbat-cart-redesign .iwc-poa,
body.isbat-checkout-redesign .content-area a:not(.button):not(#place_order):not(.iwc-btn), body.isbat-checkout-redesign .iwc-poa,
body.isbat-account-redesign .content-area .woocommerce-MyAccount-navigation a:hover { color: var(--iwc-blue) !important; -webkit-text-fill-color: var(--iwc-blue) !important; }
body.isbat-account-redesign .woocommerce-MyAccount-navigation li.is-active a { color: #fff !important; -webkit-text-fill-color: #fff !important; }

/* shared: full-width content column + readable wrap */
body.isbat-cart-redesign .site-content,
body.isbat-checkout-redesign .site-content,
body.isbat-account-redesign .site-content { display: block; }
body.isbat-cart-redesign .content-area,
body.isbat-checkout-redesign .content-area,
body.isbat-account-redesign .content-area,
body.isbat-cart-redesign .inside-article,
body.isbat-checkout-redesign .inside-article,
body.isbat-account-redesign .inside-article,
body.isbat-cart-redesign .entry-content,
body.isbat-checkout-redesign .entry-content,
body.isbat-account-redesign .entry-content { width: 100%; max-width: 100%; float: none; margin: 0; }

body.isbat-cart-redesign .woocommerce,
body.isbat-checkout-redesign .woocommerce,
body.isbat-account-redesign .woocommerce {
  max-width: var(--iwc-wrap); margin-inline: auto; padding-inline: clamp(16px,4vw,40px);
}
/* hide GP/page title; we keep WooCommerce notices */
body.isbat-cart-redesign .entry-header,
body.isbat-checkout-redesign .entry-header,
body.isbat-account-redesign .entry-header { display: none; }

body.isbat-cart-redesign .isbat-woo-pagetitle,
body.isbat-checkout-redesign .isbat-woo-pagetitle,
body.isbat-account-redesign .isbat-woo-pagetitle {
  display: none !important;
}

/* notices */
body.isbat-cart-redesign .woocommerce-message,
body.isbat-checkout-redesign .woocommerce-message,
body.isbat-account-redesign .woocommerce-info,
.woocommerce-info, .woocommerce-message, .woocommerce-error {
  border-top-color: var(--iwc-blue);
}

/* ---- CART ---------------------------------------------------------------- */
body.isbat-cart-redesign .woocommerce {
  display: grid; grid-template-columns: minmax(0,1fr) 360px; gap: clamp(24px,3vw,40px); align-items: start;
}
body.isbat-cart-redesign .woocommerce-notices-wrapper { grid-column: 1 / -1; }
body.isbat-cart-redesign form.woocommerce-cart-form { grid-column: 1; min-width: 0; }
body.isbat-cart-redesign .cart-collaterals { grid-column: 2; }
body.isbat-cart-redesign table.shop_table {
  border: 1px solid var(--iwc-line); border-radius: var(--iwc-r); border-collapse: separate; overflow: hidden; background: var(--iwc-surface);
}
body.isbat-cart-redesign table.shop_table th { background: var(--iwc-surface-2) !important; color: var(--iwc-ink-muted) !important; -webkit-text-fill-color: var(--iwc-ink-muted) !important; font-weight: 600; font-size: .82rem; text-transform: uppercase; letter-spacing: .04em; padding: 14px 16px; border: 0; }
body.isbat-cart-redesign table.shop_table td { padding: 16px; border-top: 1px solid var(--iwc-line); vertical-align: middle; color: var(--iwc-ink-soft); background: #fff !important; }
body.isbat-cart-redesign table.shop_table img { width: 64px; border-radius: 10px; }
body.isbat-cart-redesign .product-name a,
body.isbat-cart-redesign td.product-name a { color: var(--iwc-ink) !important; -webkit-text-fill-color: var(--iwc-ink) !important; font-weight: 600; text-decoration: none; }
body.isbat-cart-redesign .product-name a:hover { color: var(--iwc-blue) !important; -webkit-text-fill-color: var(--iwc-blue) !important; }
body.isbat-cart-redesign .product-remove a { color: var(--iwc-ink-muted) !important; background: var(--iwc-surface-2); }
body.isbat-cart-redesign .quantity { background: none !important; }
body.isbat-cart-redesign .quantity input,
body.isbat-cart-redesign .quantity input.qty {
  width: 64px !important; height: 44px; padding: .5em !important; text-align: center;
  border: 1px solid var(--iwc-line-strong) !important; border-radius: var(--iwc-r-sm) !important;
  background: #fff !important; color: var(--iwc-ink) !important; -webkit-text-fill-color: var(--iwc-ink) !important;
  font-weight: 600; -moz-appearance: textfield;
}
/* update-cart button cleaner */
body.isbat-cart-redesign .button[name="update_cart"] { background: var(--iwc-surface-2) !important; color: var(--iwc-ink-soft) !important; -webkit-text-fill-color: var(--iwc-ink-soft) !important; }
body.isbat-cart-redesign .cart-collaterals .cart_totals {
  width: 100% !important; float: none; position: sticky; top: 90px;
  background: var(--iwc-surface); border: 1px solid var(--iwc-line); border-radius: var(--iwc-r);
  box-shadow: var(--iwc-shadow); padding: 20px;
}
body.isbat-cart-redesign .cart_totals h2 { font-size: 1.15rem; color: var(--iwc-ink) !important; -webkit-text-fill-color: var(--iwc-ink) !important; margin: 0 0 14px; }
body.isbat-cart-redesign .cart_totals table { border: 0; background: none !important; }
body.isbat-cart-redesign .cart_totals td, body.isbat-cart-redesign .cart_totals th { border-top: 1px solid var(--iwc-line) !important; padding: 12px 0 !important; background: none !important; color: var(--iwc-ink-soft) !important; -webkit-text-fill-color: var(--iwc-ink-soft) !important; }
body.isbat-cart-redesign .cart_totals th { color: var(--iwc-ink) !important; -webkit-text-fill-color: var(--iwc-ink) !important; font-weight: 600; }
body.isbat-cart-redesign .cart_totals .order-total th, body.isbat-cart-redesign .cart_totals .order-total td { border-top: 2px solid var(--iwc-line-strong) !important; padding-top: 14px !important; }
body.isbat-cart-redesign .cart_totals tr.tax-total,
body.isbat-cart-redesign .cart_totals tr.tax-rate,
body.isbat-checkout-redesign #order_review tr.tax-total,
body.isbat-checkout-redesign #order_review tr.tax-rate {
  display: none !important;
}
body.isbat-cart-redesign .wc-proceed-to-checkout .checkout-button,
body.isbat-cart-redesign.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  background: var(--iwc-blue) !important; color: #fff !important; border-radius: var(--iwc-r-pill) !important;
  padding: 1em 1.6em !important; font-weight: 700 !important; font-size: 1.05rem !important; width: 100%; text-align: center;
  box-shadow: 0 10px 26px var(--iwc-blue-glow);
}
body.isbat-cart-redesign .button[name="update_cart"] { background: var(--iwc-surface-2) !important; color: var(--iwc-ink) !important; border: 1px solid var(--iwc-line-strong) !important; border-radius: var(--iwc-r-pill) !important; }

body.isbat-cart-redesign .iwc-emptycart {
  margin-top: 22px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid var(--iwc-line);
  border-radius: var(--iwc-r);
  background: var(--iwc-surface);
  box-shadow: var(--iwc-shadow);
  max-width: 760px;
}
body.isbat-cart-redesign .iwc-emptycart h2 {
  margin: 0 0 8px;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  color: var(--iwc-ink) !important;
  -webkit-text-fill-color: var(--iwc-ink) !important;
}
body.isbat-cart-redesign .iwc-emptycart p {
  margin: 0;
  color: var(--iwc-ink-soft) !important;
  -webkit-text-fill-color: var(--iwc-ink-soft) !important;
  line-height: 1.6;
  max-width: 58ch;
}
body.isbat-cart-redesign .iwc-emptycart__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}
body.isbat-cart-redesign .iwc-emptycart .iwc-btn--primary {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}

/* "På forespørsel" price placeholders in the quote cart */
.iwc-poa { color: var(--iwc-blue); font-weight: 600; font-style: normal; }

/* ---- CHECKOUT ------------------------------------------------------------ */
body.isbat-checkout-redesign .woocommerce {
  display: grid; grid-template-columns: minmax(0,1fr) 400px; gap: clamp(24px,3vw,44px); align-items: start;
}
body.isbat-checkout-redesign .woocommerce-notices-wrapper,
body.isbat-checkout-redesign .woocommerce-form-coupon-toggle { grid-column: 1 / -1; }
body.isbat-checkout-redesign form.checkout { display: contents; }
body.isbat-checkout-redesign #customer_details { grid-column: 1; min-width: 0; }
body.isbat-checkout-redesign #order_review_heading,
body.isbat-checkout-redesign #order_review { grid-column: 2; }
body.isbat-checkout-redesign .col2-set .col-1,
body.isbat-checkout-redesign .col2-set .col-2 { width: 100%; float: none; }
/* card-ify the form sections */
body.isbat-checkout-redesign #customer_details > div,
body.isbat-checkout-redesign .woocommerce-billing-fields,
body.isbat-checkout-redesign .woocommerce-shipping-fields,
body.isbat-checkout-redesign .woocommerce-additional-fields {
  background: var(--iwc-surface); border: 1px solid var(--iwc-line); border-radius: var(--iwc-r);
  padding: 22px; margin-bottom: 20px; box-shadow: var(--iwc-shadow);
}
body.isbat-checkout-redesign h3 { font-size: 1.15rem; color: var(--iwc-ink); margin: 0 0 16px; }
/* big fields */
body.isbat-checkout-redesign .form-row input.input-text,
body.isbat-checkout-redesign .form-row textarea,
body.isbat-checkout-redesign .form-row select,
body.isbat-checkout-redesign .select2-container .select2-selection {
  padding: .85em 1em !important; border: 1px solid var(--iwc-line-strong) !important; border-radius: var(--iwc-r-sm) !important;
  font-size: 1rem !important; min-height: 48px; background: var(--iwc-surface); color: var(--iwc-ink);
}
body.isbat-checkout-redesign .form-row label { font-weight: 600; color: var(--iwc-ink-soft); margin-bottom: 6px; }
body.isbat-checkout-redesign input:focus, body.isbat-checkout-redesign textarea:focus, body.isbat-checkout-redesign select:focus {
  outline: 0; border-color: var(--iwc-blue) !important; box-shadow: 0 0 0 3px var(--iwc-blue-glow) !important;
}
/* sticky order review */
body.isbat-checkout-redesign #order_review {
  position: sticky; top: 90px; background: var(--iwc-surface); border: 1px solid var(--iwc-line);
  border-radius: var(--iwc-r); box-shadow: var(--iwc-shadow-md); padding: 22px;
}
body.isbat-checkout-redesign #order_review table.shop_table { border: 0; }
/* order-review line items (product name + qty) → readable dark */
body.isbat-checkout-redesign #order_review .product-name,
body.isbat-checkout-redesign #order_review .product-total,
body.isbat-checkout-redesign #order_review td,
body.isbat-checkout-redesign #order_review th { color: var(--iwc-ink) !important; -webkit-text-fill-color: var(--iwc-ink) !important; }
body.isbat-checkout-redesign #order_review .product-quantity,
body.isbat-checkout-redesign #order_review .product-name .product-quantity { color: var(--iwc-ink-soft) !important; -webkit-text-fill-color: var(--iwc-ink-soft) !important; }
body.isbat-checkout-redesign #order_review th, body.isbat-checkout-redesign #order_review td { border-top: 1px solid var(--iwc-line); padding: 12px 0; }
/* high specificity to beat legacy `body.woocommerce-checkout form.checkout button#place_order` red rule */
body.isbat-checkout-redesign #place_order,
body.isbat-checkout-redesign.woocommerce-checkout form.checkout button#place_order,
body.isbat-checkout-redesign.woocommerce-checkout form.checkout input#place_order {
  background: var(--iwc-blue) !important; color: #fff !important; border: 0 !important; border-radius: var(--iwc-r-pill) !important;
  padding: 1.05em 1.8em !important; font-weight: 700 !important; font-size: 1.1rem !important; width: 100%;
  box-shadow: 0 12px 30px var(--iwc-blue-glow); margin-top: 10px;
}
body.isbat-checkout-redesign.woocommerce-checkout form.checkout button#place_order:hover { background: var(--iwc-blue-600) !important; }
/* quote-request intro (checkout) */
.iwc-quote-intro { grid-column: 1 / -1; margin: 0 0 18px; }
.iwc-quote-intro h2 { font-size: clamp(1.5rem,3vw,2.1rem); font-weight: 800; color: var(--iwc-ink); margin: 0 0 .35em; }
.iwc-quote-intro p { color: var(--iwc-ink-soft); font-size: 1.02rem; line-height: 1.6; max-width: 70ch; margin: 0; }

/* step indicator (decorative, injected via hook) */
.iwc-steps { grid-column: 1 / -1; display: flex; gap: 8px; margin: 0 0 28px; padding: 0; list-style: none; flex-wrap: wrap; }
.iwc-steps li { display: flex; align-items: center; gap: .55em; color: var(--iwc-ink-muted); font-weight: 600; font-size: .92rem; padding: .5em 1em; border-radius: var(--iwc-r-pill); background: var(--iwc-surface-2); border: 1px solid var(--iwc-line); }
.iwc-steps li .iwc-steps__n { display: grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; background: var(--iwc-blue); color: #fff; font-size: .8rem; }

/* ---- MY ACCOUNT ---------------------------------------------------------- */
/* The MyAccount nav + content are direct children of .woocommerce. Target it
   directly (the .woocommerce-account class sits on <body>, not a wrapper). */
body.isbat-account-redesign.woocommerce-account .woocommerce,
body.isbat-account-redesign .woocommerce:has(> .woocommerce-MyAccount-navigation) {
  display: grid; grid-template-columns: 240px minmax(0,1fr); gap: clamp(20px,3vw,40px); align-items: start;
}
body.isbat-account-redesign .woocommerce-MyAccount-navigation {
  width: 100% !important; float: none !important; position: sticky; top: 90px;
  grid-column: 1 !important; order: 0 !important;
  background: var(--iwc-surface); border: 1px solid var(--iwc-line); border-radius: var(--iwc-r); box-shadow: var(--iwc-shadow); overflow: hidden;
}
body.isbat-account-redesign .woocommerce-MyAccount-navigation ul { list-style: none; margin: 0; padding: 8px; }
body.isbat-account-redesign .woocommerce-MyAccount-navigation li { margin: 0; }
body.isbat-account-redesign .woocommerce-MyAccount-navigation li a {
  display: block; padding: 11px 14px; border-radius: 10px; color: var(--iwc-ink-soft); text-decoration: none; font-weight: 600; font-size: .94rem;
}
body.isbat-account-redesign .woocommerce-MyAccount-navigation li.is-active a,
body.isbat-account-redesign .woocommerce-MyAccount-navigation li a:hover { background: var(--iwc-ice); color: var(--iwc-blue); }
body.isbat-account-redesign .woocommerce-MyAccount-navigation li.is-active a { background: var(--iwc-blue); color: #fff; }
body.isbat-account-redesign .woocommerce-MyAccount-content {
  width: 100% !important; float: none !important; grid-column: 2 !important; order: 1 !important;
  background: var(--iwc-surface); border: 1px solid var(--iwc-line);
  border-radius: var(--iwc-r); box-shadow: var(--iwc-shadow); padding: clamp(20px,3vw,32px);
}
body.isbat-account-redesign .woocommerce-MyAccount-content h2,
body.isbat-account-redesign .woocommerce-MyAccount-content h3 { color: var(--iwc-ink); }
body.isbat-account-redesign .woocommerce-MyAccount-content table { width: 100%; border-collapse: collapse; }
body.isbat-account-redesign .woocommerce-MyAccount-content table th,
body.isbat-account-redesign .woocommerce-MyAccount-content table td { padding: 13px 12px; border-bottom: 1px solid var(--iwc-line); text-align: left; }
body.isbat-account-redesign .woocommerce-MyAccount-content table th { color: var(--iwc-ink-muted) !important; -webkit-text-fill-color: var(--iwc-ink-muted) !important; font-size: .78rem; text-transform: uppercase; letter-spacing: .04em; font-weight: 600; }
/* order status badges (mockup: colored pills) */
body.isbat-account-redesign .woocommerce-orders-table__cell-order-status,
body.isbat-account-redesign td[data-title="Status"] {
  font-weight: 600; font-size: .82rem;
}
body.isbat-account-redesign .woocommerce-orders-table__cell-order-status mark,
body.isbat-account-redesign td[data-title="Status"] mark { background: none; }
body.isbat-account-redesign td[data-title="Status"] {
  color: var(--iwc-ink-soft) !important; -webkit-text-fill-color: var(--iwc-ink-soft) !important;
}
/* the "Vis"/View button in orders table */
body.isbat-account-redesign .woocommerce-orders-table .woocommerce-button.button {
  padding: .5em 1.1em !important; font-size: .85rem !important;
}
body.isbat-account-redesign .woocommerce-Button,
body.isbat-account-redesign .woocommerce-MyAccount-content .button {
  background: var(--iwc-blue) !important; color: #fff !important; border-radius: var(--iwc-r-pill) !important; border: 0 !important; padding: .8em 1.5em !important; font-weight: 600 !important;
}
/* login/register forms */
body.isbat-account-redesign .woocommerce form.login,
body.isbat-account-redesign .woocommerce form.register,
body.isbat-account-redesign .u-column1, body.isbat-account-redesign .u-column2 {
  background: var(--iwc-surface); border: 1px solid var(--iwc-line); border-radius: var(--iwc-r); padding: 26px; box-shadow: var(--iwc-shadow);
}
body.isbat-account-redesign .woocommerce form .input-text {
  padding: .85em 1em !important;
  border: 1px solid var(--iwc-line-strong) !important;
  border-radius: var(--iwc-r-sm) !important;
  min-height: 46px;
  background: #fff !important;
  color: var(--iwc-ink) !important;
  -webkit-text-fill-color: var(--iwc-ink) !important;
  box-shadow: none !important;
}
body.isbat-account-redesign .woocommerce form .input-text:focus {
  border-color: var(--iwc-blue) !important;
  box-shadow: 0 0 0 3px var(--iwc-blue-glow) !important;
  outline: 0;
}
body.isbat-account-redesign .woocommerce-form-login__submit,
body.isbat-account-redesign .woocommerce-form-register__submit,
body.isbat-account-redesign .woocommerce button.button {
  background: var(--iwc-blue) !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  border: 0 !important;
  border-radius: var(--iwc-r-pill) !important;
  padding: .85em 1.6em !important;
  font-weight: 700 !important;
  box-shadow: 0 10px 26px var(--iwc-blue-glow) !important;
}
body.isbat-account-redesign .woocommerce-form-login__submit:hover,
body.isbat-account-redesign .woocommerce-form-register__submit:hover,
body.isbat-account-redesign .woocommerce button.button:hover {
  background: var(--iwc-blue-600) !important;
  color: #fff !important;
}
body.isbat-account-redesign .show-password-input {
  background: transparent !important;
  box-shadow: none !important;
  color: var(--iwc-blue) !important;
  -webkit-text-fill-color: var(--iwc-blue) !important;
}

/* ---- SEARCH RESULTS ------------------------------------------------------ */
body.isbat-shop-redesign.search .iwc-shoplayout { grid-template-columns: 1fr; }

/* ---- responsive: cart/checkout/account ----------------------------------- */
@media (max-width: 900px) {
  body.isbat-cart-redesign .woocommerce,
  body.isbat-checkout-redesign .woocommerce { grid-template-columns: 1fr; }
  body.isbat-cart-redesign form.woocommerce-cart-form,
  body.isbat-cart-redesign .cart-collaterals,
  body.isbat-checkout-redesign #customer_details,
  body.isbat-checkout-redesign #order_review_heading,
  body.isbat-checkout-redesign #order_review { grid-column: 1; }
  body.isbat-cart-redesign .cart_totals,
  body.isbat-checkout-redesign #order_review { position: static; }
  body.isbat-account-redesign .woocommerce-account .woocommerce { grid-template-columns: 1fr; }
  body.isbat-account-redesign .woocommerce-MyAccount-navigation { position: static; }
}

/* ============================================================================
   2026-06-06 CATEGORY ARCHIVE ICE PASS
   Scope: WooCommerce product categories only.
   Goal: lighter ice surface, stronger category hierarchy, tighter mobile UX.
   ============================================================================ */
body.tax-product_cat.isbat-shop-redesign {
  --iwc-blue: #2f9bff;
  --iwc-blue-600: #187ed8;
  --iwc-blue-700: #105da8;
  --iwc-blue-ink: #0b4e91;
  --iwc-blue-glow: rgba(47, 155, 255, .24);
  --iwc-red: #e30613;
  --iwc-navy: #06101f;
  --iwc-navy-2: #0c1f36;
  --iwc-ice: #e9f8ff;
  --iwc-grey: #f4faff;
  --iwc-bg: #f7fbff;
  --iwc-surface: #ffffff;
  --iwc-surface-2: #edf6fd;
  --iwc-line: rgba(12, 31, 54, .10);
  --iwc-line-strong: rgba(12, 31, 54, .18);
  --iwc-ink: #071326;
  --iwc-ink-soft: #40536a;
  --iwc-ink-muted: #6f8195;
  --iwc-r-sm: 8px;
  --iwc-r: 8px;
  --iwc-r-lg: 8px;
  --iwc-shadow: 0 14px 36px rgba(6, 16, 31, .08);
  --iwc-shadow-md: 0 22px 54px rgba(6, 16, 31, .12);
  --iwc-shadow-lg: 0 28px 70px rgba(6, 16, 31, .16);
  background: var(--iwc-bg) !important;
  color: var(--iwc-ink);
}

body.tax-product_cat.isbat-shop-redesign .site-content,
body.tax-product_cat.isbat-shop-redesign .content-area,
body.tax-product_cat.isbat-shop-redesign .inside-article,
body.tax-product_cat.isbat-shop-redesign .entry-content,
body.tax-product_cat.isbat-shop-redesign .woocommerce-archive-wrapper {
  background: linear-gradient(180deg, #f8fcff 0%, #eef7fd 58%, #f8fcff 100%) !important;
}

body.tax-product_cat.isbat-shop-redesign .iwc-hdr {
  background: rgba(255, 255, 255, .92);
  border-bottom-color: rgba(12, 31, 54, .10);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

body.tax-product_cat.isbat-shop-redesign .iwc-btn {
  border-radius: 8px;
  font-weight: 800;
  letter-spacing: 0;
}

body.tax-product_cat.isbat-shop-redesign .iwc-btn--primary,
body.tax-product_cat.isbat-shop-redesign.woocommerce ul.products li.product a.button,
body.tax-product_cat.isbat-shop-redesign ul.products li.product .iwc-card__cta {
  background: var(--iwc-blue) !important;
  color: #fff !important;
  box-shadow: 0 16px 34px var(--iwc-blue-glow);
}

body.tax-product_cat.isbat-shop-redesign .iwc-btn--primary:hover,
body.tax-product_cat.isbat-shop-redesign.woocommerce ul.products li.product a.button:hover,
body.tax-product_cat.isbat-shop-redesign ul.products li.product .iwc-card__cta:hover {
  background: var(--iwc-blue-600) !important;
  color: #fff !important;
}

body.tax-product_cat.isbat-shop-redesign .iwc-archero {
  overflow: hidden;
  padding: 46px 0 54px;
  background:
    linear-gradient(120deg, rgba(255,255,255,.94) 0%, rgba(235,248,255,.92) 45%, rgba(247,251,255,.96) 100%),
    linear-gradient(90deg, rgba(47,155,255,.08) 0 1px, transparent 1px),
    linear-gradient(180deg, rgba(47,155,255,.06) 0 1px, transparent 1px);
  background-size: auto, 72px 72px, 72px 72px;
  border-bottom: 1px solid var(--iwc-line) !important;
}

body.tax-product_cat.isbat-shop-redesign .iwc-archero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--iwc-blue), #5fd0ff 64%, var(--iwc-red));
}

body.tax-product_cat.isbat-shop-redesign .iwc-archero__inner {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 470px);
  gap: 56px;
  align-items: center;
}

body.tax-product_cat.isbat-shop-redesign .iwc-archero__crumbs,
body.tax-product_cat.isbat-shop-redesign .iwc-archero__crumbs a {
  color: var(--iwc-ink-muted);
  font-weight: 700;
  letter-spacing: 0;
}

body.tax-product_cat.isbat-shop-redesign .iwc-archero__crumbs a:hover {
  color: var(--iwc-blue-ink);
}

body.tax-product_cat.isbat-shop-redesign .iwc-archero .iwc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  padding: 8px 12px;
  border: 1px solid rgba(47, 155, 255, .28);
  border-radius: 8px;
  background: rgba(47, 155, 255, .10);
  color: var(--iwc-blue-ink);
  font-size: .86rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: none;
}

body.tax-product_cat.isbat-shop-redesign .iwc-archero .iwc-eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5fd0ff;
  box-shadow: 0 0 0 5px rgba(95, 208, 255, .18);
}

body.tax-product_cat.isbat-shop-redesign .iwc-archero__title {
  max-width: 13ch;
  margin: 18px 0 18px;
  color: var(--iwc-ink) !important;
  font-size: 4.55rem;
  line-height: .95;
  font-weight: 950;
  letter-spacing: 0;
}

body.tax-product_cat.isbat-shop-redesign .iwc-archero__lead {
  max-width: 62ch;
  color: var(--iwc-ink-soft);
  font-size: 1.16rem;
  line-height: 1.68;
}

body.tax-product_cat.isbat-shop-redesign .iwc-archero__cta {
  gap: 10px;
  margin-top: 26px;
}

body.tax-product_cat.isbat-shop-redesign .iwc-archero__media {
  position: relative;
  justify-self: stretch;
  padding: 14px;
  border: 1px solid rgba(12, 31, 54, .12);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255,255,255,.92), rgba(229,247,255,.72));
  box-shadow: var(--iwc-shadow-lg);
}

body.tax-product_cat.isbat-shop-redesign .iwc-archero__media img {
  width: 100%;
  max-width: none;
  height: 320px;
  object-fit: contain;
  border-radius: 6px;
  background: #fff;
  filter: none;
}

body.tax-product_cat.isbat-shop-redesign .iwc-trust {
  background: var(--iwc-navy);
  border-bottom: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 18px 40px rgba(6, 16, 31, .18);
}

body.tax-product_cat.isbat-shop-redesign .iwc-trust__row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding-block: 18px;
}

body.tax-product_cat.isbat-shop-redesign .iwc-trust__item {
  min-width: 0;
  white-space: normal;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 8px;
  background: rgba(255,255,255,.055);
  color: #fff;
}

body.tax-product_cat.isbat-shop-redesign .iwc-trust__item i {
  color: #5fd0ff;
}

body.tax-product_cat.isbat-shop-redesign .iwc-trust__item small {
  color: rgba(248, 251, 255, .68);
}

body.tax-product_cat.isbat-shop-redesign .iwc-shoptools {
  padding-top: 34px;
}

body.tax-product_cat.isbat-shop-redesign .iwc-chips {
  gap: 8px;
  margin-bottom: 16px;
  padding: 10px;
  border: 1px solid var(--iwc-line);
  border-radius: 8px;
  background: rgba(255,255,255,.72);
  box-shadow: var(--iwc-shadow);
}

body.tax-product_cat.isbat-shop-redesign .iwc-chip {
  min-height: 42px;
  border-radius: 8px;
  background: #fff;
  border-color: rgba(12, 31, 54, .10);
  color: var(--iwc-ink-soft);
  font-weight: 760;
  letter-spacing: 0;
}

body.tax-product_cat.isbat-shop-redesign .iwc-chip:hover {
  border-color: rgba(47, 155, 255, .46);
  background: var(--iwc-ice);
  color: var(--iwc-blue-ink);
}

body.tax-product_cat.isbat-shop-redesign .iwc-chip.is-current {
  background: var(--iwc-blue);
  border-color: var(--iwc-blue);
  color: #fff;
  box-shadow: 0 12px 26px var(--iwc-blue-glow);
}

body.tax-product_cat.isbat-shop-redesign .iwc-chip__n {
  display: inline-grid;
  min-width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 999px;
  background: rgba(12, 31, 54, .07);
  color: inherit;
  font-size: .76rem;
  font-weight: 900;
  opacity: 1;
}

body.tax-product_cat.isbat-shop-redesign .iwc-chip.is-current .iwc-chip__n {
  background: rgba(255,255,255,.18);
}

body.tax-product_cat.isbat-shop-redesign .iwc-chips {
  scrollbar-width: none;
}

body.tax-product_cat.isbat-shop-redesign .iwc-chips::-webkit-scrollbar {
  display: none;
}

body.tax-product_cat.isbat-shop-redesign .iwc-shoptools__bar {
  margin-bottom: 20px;
  padding: 12px;
  border: 1px solid var(--iwc-line);
  border-radius: 8px;
  background: rgba(255,255,255,.82);
  box-shadow: var(--iwc-shadow);
}

body.tax-product_cat.isbat-shop-redesign .iwc-shoptools__sort .orderby,
body.tax-product_cat.isbat-shop-redesign .iwc-shoptools__sort select,
body.tax-product_cat.isbat-shop-redesign .woocommerce-ordering select,
body.tax-product_cat.isbat-shop-redesign .woocommerce-ordering select.orderby {
  min-height: 44px;
  border: 1px solid var(--iwc-line-strong) !important;
  border-radius: 8px !important;
  color: var(--iwc-ink) !important;
  background-color: #fff !important;
  font-weight: 760;
  box-shadow: none !important;
}

body.tax-product_cat.isbat-shop-redesign .iwc-shoptools__sort select:focus,
body.tax-product_cat.isbat-shop-redesign .woocommerce-ordering select:focus {
  border-color: rgba(47, 155, 255, .72) !important;
  box-shadow: 0 0 0 3px rgba(47,155,255,.14) !important;
}

body.tax-product_cat.isbat-shop-redesign .iwc-shoplayout {
  grid-template-columns: 276px minmax(0, 1fr);
  gap: 20px;
  padding-bottom: 88px;
}

body.tax-product_cat.isbat-shop-redesign .iwc-filters {
  top: 88px;
  border-radius: 8px;
  border-color: var(--iwc-line);
  background: rgba(255,255,255,.88);
  box-shadow: var(--iwc-shadow);
}

body.tax-product_cat.isbat-shop-redesign .iwc-acc__head {
  color: var(--iwc-ink);
  letter-spacing: 0;
}

body.tax-product_cat.isbat-shop-redesign .iwc-filterlist a {
  min-height: 38px;
  border-radius: 8px;
}

body.tax-product_cat.isbat-shop-redesign .iwc-filters__help {
  margin: 8px;
  border: 1px solid rgba(95, 208, 255, .24);
  border-radius: 8px;
  background: linear-gradient(180deg, #f8fdff, #eaf8ff);
}

body.tax-product_cat.isbat-shop-redesign .iwc-filters__help p {
  color: var(--iwc-ink);
  font-weight: 800;
}

body.tax-product_cat.isbat-shop-redesign .iwc-shoplayout__main .woocommerce-result-count {
  color: var(--iwc-ink-muted) !important;
  font-weight: 760;
  letter-spacing: 0;
}

body.tax-product_cat.isbat-shop-redesign .iwc-shoplayout__main ul.products {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

body.tax-product_cat.isbat-shop-redesign ul.products li.product {
  min-height: 100%;
  border-radius: 8px;
  border-color: rgba(12, 31, 54, .12);
  background: #fff;
  box-shadow: var(--iwc-shadow);
}

body.tax-product_cat.isbat-shop-redesign ul.products li.product::before {
  opacity: 1;
  transform: none;
  height: 3px;
  background: linear-gradient(90deg, var(--iwc-blue), #5fd0ff 68%, var(--iwc-red));
}

body.tax-product_cat.isbat-shop-redesign ul.products li.product:hover {
  transform: translateY(-4px);
  border-color: rgba(47, 155, 255, .45);
  box-shadow: var(--iwc-shadow-md), 0 0 0 1px rgba(47,155,255,.18);
}

body.tax-product_cat.isbat-shop-redesign ul.products li.product > a img,
body.tax-product_cat.isbat-shop-redesign ul.products li.product img.attachment-woocommerce_thumbnail {
  height: 232px !important;
  aspect-ratio: auto !important;
  object-fit: cover;
  background: linear-gradient(180deg, #ffffff, #eef8ff);
}

body.tax-product_cat.isbat-shop-redesign ul.products li.product .iwc-card__cat {
  display: inline-flex;
  width: max-content;
  max-width: calc(100% - 28px);
  margin: 14px 14px 0;
  padding: 6px 9px;
  border: 1px solid rgba(47,155,255,.20);
  border-radius: 8px;
  background: rgba(47,155,255,.08);
  color: var(--iwc-blue-ink);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: none;
}

body.tax-product_cat.isbat-shop-redesign ul.products li.product .woocommerce-loop-product__title,
body.tax-product_cat.isbat-shop-redesign ul.products li.product h2,
body.tax-product_cat.isbat-shop-redesign ul.products li.product h3 {
  min-height: 2.65em;
  padding: 14px 16px 6px !important;
  color: var(--iwc-ink) !important;
  font-size: 1.06rem;
  line-height: 1.26;
  letter-spacing: 0;
}

body.tax-product_cat.isbat-shop-redesign ul.products li.product .price {
  padding: 0 16px 6px !important;
  color: var(--iwc-blue-ink) !important;
  font-family: var(--iwc-font) !important;
  letter-spacing: 0;
}

body.tax-product_cat.isbat-shop-redesign ul.products li.product .button,
body.tax-product_cat.isbat-shop-redesign.woocommerce ul.products li.product a.button,
body.tax-product_cat.isbat-shop-redesign ul.products li.product .iwc-card__cta {
  width: auto;
  min-height: 42px;
  margin: auto 16px 16px !important;
  padding: 10px 14px !important;
  border-radius: 8px !important;
  font-size: .92rem !important;
  letter-spacing: 0;
}

@media (max-width: 1080px) {
  body.tax-product_cat.isbat-shop-redesign .iwc-archero__inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  body.tax-product_cat.isbat-shop-redesign .iwc-archero__title {
    font-size: 3.6rem;
  }
  body.tax-product_cat.isbat-shop-redesign .iwc-archero__media {
    max-width: 620px;
    justify-self: start;
  }
  body.tax-product_cat.isbat-shop-redesign .iwc-shoplayout {
    grid-template-columns: 1fr;
  }
  body.tax-product_cat.isbat-shop-redesign .iwc-shoplayout__main ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  body.tax-product_cat.isbat-shop-redesign .iwc-wrap {
    padding-inline: 14px;
  }
  body.tax-product_cat.isbat-shop-redesign .iwc-archero {
    padding: 24px 0 30px;
    background-size: auto, 48px 48px, 48px 48px;
  }
  body.tax-product_cat.isbat-shop-redesign .iwc-archero__crumbs {
    display: none;
  }
  body.tax-product_cat.isbat-shop-redesign .iwc-archero__title {
    max-width: 10ch;
    margin: 14px 0 14px;
    font-size: 2.72rem;
    line-height: .98;
  }
  body.tax-product_cat.isbat-shop-redesign .iwc-archero__lead {
    font-size: 1.02rem;
    line-height: 1.62;
  }
  body.tax-product_cat.isbat-shop-redesign .iwc-archero__cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  body.tax-product_cat.isbat-shop-redesign .iwc-archero__cta .iwc-btn {
    width: 100%;
    padding-inline: 10px;
  }
  body.tax-product_cat.isbat-shop-redesign .iwc-archero__media {
    display: none;
  }
  body.tax-product_cat.isbat-shop-redesign .iwc-trust__row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding-block: 12px;
  }
  body.tax-product_cat.isbat-shop-redesign .iwc-trust__item {
    padding: 10px;
    font-size: .88rem;
  }
  body.tax-product_cat.isbat-shop-redesign .iwc-trust__item small {
    display: none;
  }
  body.tax-product_cat.isbat-shop-redesign .iwc-shoptools {
    padding-top: 18px;
  }
  body.tax-product_cat.isbat-shop-redesign .iwc-chips {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 8px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }
  body.tax-product_cat.isbat-shop-redesign .iwc-chip {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }
  body.tax-product_cat.isbat-shop-redesign .iwc-shoptools__bar {
    align-items: stretch;
  }
  body.tax-product_cat.isbat-shop-redesign .iwc-filtertoggle,
  body.tax-product_cat.isbat-shop-redesign .iwc-shoptools__sort,
  body.tax-product_cat.isbat-shop-redesign .iwc-shoptools__sort form,
  body.tax-product_cat.isbat-shop-redesign .iwc-shoptools__sort select {
    width: 100%;
  }
  body.tax-product_cat.isbat-shop-redesign .iwc-shoplayout__main ul.products {
    grid-template-columns: 1fr;
  }
  body.tax-product_cat.isbat-shop-redesign ul.products li.product > a img,
  body.tax-product_cat.isbat-shop-redesign ul.products li.product img.attachment-woocommerce_thumbnail {
    height: 220px !important;
  }
}

@media (max-width: 360px) {
  body.tax-product_cat.isbat-shop-redesign .iwc-archero__title {
    font-size: 2.38rem;
  }
  body.tax-product_cat.isbat-shop-redesign .iwc-archero__cta {
    grid-template-columns: 1fr;
  }
}

/* ============================================================================
   2026-06-06 WOO STABILITY PASS
   Header without menu, visible breadcrumbs, equal cards, cart request form,
   working compare feedback.
   ============================================================================ */

body.iwc-has-light-header #page {
  margin-top: 0 !important;
}

.iwc-hdr {
  background:
    linear-gradient(135deg, rgba(6, 16, 31, .98), rgba(7, 29, 52, .96) 58%, rgba(2, 9, 18, .98)) !important;
  border-bottom: 1px solid rgba(95, 208, 255, .24) !important;
  box-shadow: 0 14px 40px rgba(2, 9, 18, .28) !important;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.iwc-hdr__in {
  min-height: 82px;
  height: auto;
  padding-block: 10px;
  gap: 18px;
}

.iwc-hdr__brand {
  min-width: 0;
  max-width: min(430px, 42vw);
  gap: 14px;
}

.iwc-hdr__logo {
  display: block;
  width: clamp(48px, 5vw, 60px);
  height: clamp(48px, 5vw, 60px);
  max-width: 60px;
  max-height: 60px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 0 0 1px rgba(95,208,255,.18), 0 12px 30px rgba(0,0,0,.32);
}

.iwc-hdr__identity {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.iwc-hdr__as {
  color: #fff;
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  font-weight: 900;
  line-height: 1.05;
  white-space: nowrap;
}

.iwc-hdr__sub {
  color: rgba(238, 248, 255, .74);
  font-size: .78rem;
  font-weight: 650;
  line-height: 1.2;
  white-space: nowrap;
}

.iwc-hdr__trust {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 7px;
  flex: 1 1 auto;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.iwc-hdr__trust::-webkit-scrollbar {
  display: none;
}

.iwc-hdr__trust span,
.iwc-hdr__shop {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid rgba(95, 208, 255, .22);
  background: rgba(95, 208, 255, .08);
  color: #eaf8ff;
  font-size: .78rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.iwc-hdr__shop:hover {
  background: rgba(95, 208, 255, .18);
  color: #fff;
  box-shadow: 0 0 0 3px rgba(95, 208, 255, .10);
}

.iwc-hdr__tools {
  gap: 8px;
}

.iwc-hdr__icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid rgba(95, 208, 255, .20);
  background: rgba(255,255,255,.06);
  color: #eaf8ff;
}

.iwc-hdr__icon:hover {
  background: rgba(95, 208, 255, .16);
  color: #fff;
}

.iwc-hdr__cartn {
  background: #e30613;
  color: #fff;
  box-shadow: 0 0 0 2px rgba(6,16,31,.95);
}

.iwc-sitecrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  max-width: var(--iwc-wrap);
  margin: 18px auto 0;
  padding-inline: clamp(16px,4vw,40px);
  color: var(--iwc-ink-muted);
  font-size: .86rem;
  font-weight: 750;
}

.iwc-sitecrumbs a {
  color: var(--iwc-blue-ink);
  text-decoration: none;
}

.iwc-sitecrumbs a:hover {
  color: var(--iwc-blue);
}

.iwc-sitecrumbs span {
  color: var(--iwc-ink-muted);
  opacity: .65;
}

.iwc-sitecrumbs strong {
  color: var(--iwc-ink);
  font-weight: 850;
}

.iwc-sitecrumbs--cart,
.iwc-cart-hero,
.iwc-cart-request {
  grid-column: 1 / -1;
}

body.isbat-product-redesign div.product {
  margin-top: clamp(18px, 3vw, 34px);
}

body.isbat-shop-redesign ul.products li.product,
body.isbat-product-redesign .related.products ul.products li.product,
body.isbat-product-redesign .upsells.products ul.products li.product {
  height: 100%;
  min-height: 0;
}

body.isbat-shop-redesign ul.products li.product a.woocommerce-LoopProduct-link,
body.isbat-shop-redesign ul.products li.product.product-category > a,
body.isbat-product-redesign .related.products li.product a.woocommerce-LoopProduct-link,
body.isbat-product-redesign .upsells.products li.product a.woocommerce-LoopProduct-link {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
  text-decoration: none;
}

body.isbat-shop-redesign ul.products li.product .woocommerce-loop-product__title,
body.isbat-product-redesign .related.products li.product .woocommerce-loop-product__title,
body.isbat-product-redesign .upsells.products li.product .woocommerce-loop-product__title {
  min-height: 3.15em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

body.isbat-shop-redesign ul.products li.product .button,
body.isbat-product-redesign .related.products li.product .button,
body.isbat-product-redesign .upsells.products li.product .button {
  width: calc(100% - 32px);
  white-space: nowrap;
}

body.isbat-product-redesign .related.products ul.products,
body.isbat-product-redesign .upsells.products ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: row !important;
  grid-auto-columns: unset !important;
  align-items: stretch;
  overflow: visible !important;
  scroll-snap-type: none !important;
  padding-bottom: 0 !important;
}

body.isbat-product-redesign .related.products ul.products li.product,
body.isbat-product-redesign .upsells.products ul.products li.product {
  min-height: 410px;
}

body.isbat-product-redesign .related.products li.product img,
body.isbat-product-redesign .upsells.products li.product img {
  width: 100% !important;
  height: 210px !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  padding: 12px;
  margin: 0 !important;
  background: linear-gradient(180deg, #ffffff, #eef8ff);
}

body.isbat-product-redesign .related.products li.product .price,
body.isbat-product-redesign .upsells.products li.product .price {
  min-height: 2.2em;
  color: var(--iwc-blue-ink) !important;
}

.iwc-cart-hero {
  margin: 0 0 18px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--iwc-line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(6,16,31,.96), rgba(10,40,70,.94)),
    linear-gradient(90deg, rgba(95,208,255,.12), transparent);
  box-shadow: var(--iwc-shadow-md);
}

.iwc-cart-hero h1 {
  margin: 0 0 8px;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.05;
}

body.isbat-cart-redesign .iwc-cart-hero h1,
body.isbat-checkout-redesign .iwc-cart-hero h1 {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  background: none !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
}

body.isbat-cart-redesign .iwc-cart-hero p,
body.isbat-checkout-redesign .iwc-cart-hero p {
  color: rgba(238,248,255,.78) !important;
  -webkit-text-fill-color: rgba(238,248,255,.78) !important;
}

.iwc-cart-hero p {
  margin: 0;
  max-width: 68ch;
  color: rgba(238,248,255,.78) !important;
  -webkit-text-fill-color: rgba(238,248,255,.78) !important;
  font-size: 1.02rem;
  line-height: 1.55;
}

.iwc-cart-request {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 30px);
  margin-top: 22px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(47,155,255,.18);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #f2faff);
  box-shadow: var(--iwc-shadow);
  scroll-margin-top: 104px;
}

.iwc-cart-request__copy h2 {
  margin: 10px 0 8px;
  color: var(--iwc-ink) !important;
  -webkit-text-fill-color: var(--iwc-ink) !important;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
}

.iwc-cart-request__copy p {
  margin: 0 0 16px;
  color: var(--iwc-ink-soft) !important;
  -webkit-text-fill-color: var(--iwc-ink-soft) !important;
  line-height: 1.58;
}

.iwc-cart-request__items {
  list-style: none;
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.iwc-cart-request__items li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(47,155,255,.08);
  color: var(--iwc-ink);
  font-weight: 750;
}

.iwc-cart-request__items strong {
  color: var(--iwc-blue-ink) !important;
  -webkit-text-fill-color: var(--iwc-blue-ink) !important;
  white-space: nowrap;
}

.iwc-cart-request__form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.iwc-cart-request__form label {
  display: grid;
  gap: 7px;
  color: var(--iwc-ink) !important;
  -webkit-text-fill-color: var(--iwc-ink) !important;
  font-weight: 800;
  font-size: .92rem;
}

.iwc-cart-request__form input,
.iwc-cart-request__form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--iwc-line-strong);
  border-radius: 8px;
  background: #fff;
  color: var(--iwc-ink) !important;
  -webkit-text-fill-color: var(--iwc-ink) !important;
  padding: 12px 14px;
  font: inherit;
  box-shadow: none;
}

.iwc-cart-request__form textarea {
  resize: vertical;
  min-height: 128px;
}

.iwc-cart-request__form input:focus,
.iwc-cart-request__form textarea:focus {
  outline: 0;
  border-color: rgba(47,155,255,.72);
  box-shadow: 0 0 0 3px rgba(47,155,255,.14);
}

.iwc-cart-request__wide,
.iwc-cart-request__submit {
  grid-column: 1 / -1;
}

.iwc-cart-request__submit {
  width: 100%;
  border-radius: 8px;
  min-height: 50px;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}

.iwc-comparebar {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 1200;
  width: min(760px, calc(100vw - 28px));
  transform: translate(-50%, calc(100% + 34px));
  opacity: 0;
  pointer-events: none;
  transition: transform .28s var(--iwc-ease-emph), opacity .2s var(--iwc-ease);
}

.iwc-comparebar.is-open {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}

.iwc-comparebar__panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(95,208,255,.28);
  border-radius: 8px;
  background: rgba(6,16,31,.96);
  color: #fff;
  box-shadow: 0 20px 60px rgba(2,9,18,.36);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.iwc-comparebar__items {
  display: flex;
  gap: 8px;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: thin;
}

.iwc-comparebar__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  max-width: 240px;
  padding: 7px 9px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: .82rem;
  font-weight: 750;
}

.iwc-comparebar__item img {
  width: 34px;
  height: 34px;
  border-radius: 6px;
  object-fit: contain;
  background: #fff;
}

.iwc-comparebar__item a {
  color: #fff;
  text-decoration: none;
}

.iwc-comparebar__remove,
.iwc-comparebar__clear {
  border: 0;
  background: rgba(255,255,255,.10);
  color: #fff;
  border-radius: 8px;
  min-height: 34px;
  padding: 7px 10px;
  cursor: pointer;
  font-weight: 850;
}

.iwc-comparebar__clear {
  background: rgba(95,208,255,.14);
  color: #eaf8ff;
  white-space: nowrap;
}

@media (max-width: 1180px) {
  .iwc-hdr__identity {
    display: none;
  }
  .iwc-hdr__trust {
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .iwc-hdr__trust::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 820px) {
  .iwc-hdr__in {
    min-height: 72px;
    gap: 10px;
  }
  .iwc-hdr__brand {
    max-width: calc(100% - 132px);
  }
  .iwc-hdr__logo {
    width: 52px;
    height: 52px;
    max-width: 52px;
    max-height: 52px;
  }
  .iwc-hdr__trust {
    display: none;
  }
  .iwc-hdr__shop {
    display: none;
  }
  .iwc-hdr__tools {
    margin-left: auto;
  }
  .iwc-sitecrumbs {
    margin-top: 14px;
    font-size: .8rem;
  }
  body.isbat-product-redesign .related.products ul.products,
  body.isbat-product-redesign .upsells.products ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  body.isbat-product-redesign .related.products ul.products li.product,
  body.isbat-product-redesign .upsells.products ul.products li.product {
    min-height: 360px;
  }
  body.isbat-product-redesign .related.products li.product img,
  body.isbat-product-redesign .upsells.products li.product img {
    height: 170px !important;
  }
  .iwc-cart-request {
    grid-template-columns: 1fr;
  }
  .iwc-cart-request__form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .iwc-hdr__icon {
    width: 38px;
    height: 38px;
  }
  .iwc-hdr__brand {
    max-width: calc(100% - 94px);
  }
  .iwc-hdr__logo {
    width: 48px;
    height: 48px;
    max-width: 48px;
    max-height: 48px;
  }
  .iwc-hdr__tools a[aria-label="Min konto"] {
    display: none;
  }
  body.isbat-product-redesign .related.products ul.products,
  body.isbat-product-redesign .upsells.products ul.products {
    grid-template-columns: 1fr;
  }
  body.isbat-product-redesign .related.products ul.products li.product,
  body.isbat-product-redesign .upsells.products ul.products li.product {
    min-height: 0;
  }
  .iwc-comparebar__panel {
    grid-template-columns: 1fr;
  }
  .iwc-comparebar__clear {
    width: 100%;
  }
}


/* ISBAT 2026 service request and product contrast polish */
body.isbat-cart-redesign .iwc-cart-request__copy {
  padding: 22px;
  border-radius: 8px;
  background: linear-gradient(135deg, #313b48, #182231 58%, #0f1a28) !important;
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}
body.isbat-cart-redesign .iwc-cart-request__copy h2,
body.isbat-cart-redesign .iwc-cart-request__copy p {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}
body.isbat-cart-redesign .iwc-cart-request__copy .iwc-eyebrow {
  color: #8fe8ff !important;
  -webkit-text-fill-color: #8fe8ff !important;
}
body.isbat-cart-redesign .iwc-cart-request__items li {
  background: rgba(255, 255, 255, .09) !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  border: 1px solid rgba(255, 255, 255, .1);
}
body.isbat-cart-redesign .iwc-cart-request__items strong {
  color: #8fe8ff !important;
  -webkit-text-fill-color: #8fe8ff !important;
}
body.isbat-product-redesign .summary.entry-summary {
  padding: clamp(18px, 2.4vw, 28px) !important;
  border: 1px solid rgba(47, 155, 255, .16);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f6fbff) !important;
  box-shadow: 0 20px 56px rgba(7, 24, 48, .1);
}
body.isbat-product-redesign .isbat-product-quote-panel {
  background: linear-gradient(180deg, #edf7ff, #dcefff) !important;
  border-color: rgba(47, 155, 255, .28) !important;
}
body.isbat-product-redesign .isbat-product-quote-panel,
body.isbat-product-redesign .isbat-product-quote-panel p,
body.isbat-product-redesign .product_meta,
body.isbat-product-redesign .iwc-compare a {
  color: #1f334c !important;
  -webkit-text-fill-color: #1f334c !important;
}
body.isbat-product-redesign .summary .price .isbat-price-on-request,
body.isbat-product-redesign .summary .price .woocommerce-Price-amount {
  color: #006bd6 !important;
  -webkit-text-fill-color: #006bd6 !important;
}
body.isbat-product-redesign .summary .single_add_to_cart_button,
body.isbat-product-redesign .summary .isbat-quote-button {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}
