/* ============================================================
   SP Global Styles — Steel Pallet Racks B2B Theme
   ============================================================ */

/* --- CSS Variables & Design Tokens --- */
:root:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  --blue:    #1a202c;
  --blue2:   #1f2937;
  --accent:  #f0a500;
  --accent2: #e8920a;
  --text:    #1e2937;
  --muted:   #5a6a80;
  --white:   #ffffff;
  --soft:    #f4f6f9;
  --border:  #dce3ec;
  --radius:  16px;
  --radius-sm: 10px;
  --shadow:  0 12px 32px rgba(0,48,135,.08);
  --shadow-card: 0 6px 20px rgba(0,48,135,.07);
  --tr: .25s ease;
}

/* --- Reset & Base --- */
*:where(:not(.spc,.spc *),.spc-functional,.spc-functional *), *:where(:not(.spc,.spc *),.spc-functional,.spc-functional *)::before, *:where(:not(.spc,.spc *),.spc-functional,.spc-functional *)::after { box-sizing: border-box; margin: 0; padding: 0; }

body:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size-adjust: from-font;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){ max-width: 100%; height: auto; display: block; }
a:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){ text-decoration: none; transition: color .2s; }

.container:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Divider ---------- */
.divider:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    border: none;
    border-top: 2px solid #e4e8ef;
    margin-block: 48px;
}

/* ---------- Typography Helpers ---------- */
.lead:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    font-size: 1.125rem;
    line-height: 1.75;
    color: #4a5568;
    max-width: 680px;
}

.section-tag:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #e8920a;
    margin-bottom: 10px;
}

.section-title:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    line-height: 1.25;
    color: #1b3d6e;
    margin-bottom: 12px;
}

.section-sub:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    font-size: 1rem;
    color: #5a6a82;
    max-width: 620px;
    line-height: 1.7;
}

/* --- Header --- */
.sp-header:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--blue);          /* Slate Dark */
  border-bottom: 3px solid var(--accent);
  box-shadow: 0 2px 12px rgba(26,32,44,0.18);
}

.sp-header__inner:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

/* Logo */
.sp-header__logo:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  max-width: 320px;
}

.sp-header__logo-container:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  display: flex;
  align-items: center;
  gap: 12px;
}

.sp-header__logo-svg:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.15));
  transition: transform var(--tr);
}

.sp-header__logo:hover .sp-header__logo-svg:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  transform: scale(1.05) rotate(1deg);
}

.sp-header__logo-text-group:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sp-header__logo-title:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  font-size: 1.05rem;
  font-weight: 850;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  font-family: "Inter", sans-serif;
}

.sp-header__logo-subtitle:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  font-size: 0.62rem;
  font-weight: 700;
  color: #f0a500;
  line-height: 1.15;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 2px;
  font-family: "Inter", sans-serif;
}

/* Nav */
.sp-nav:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  display: flex;
  align-items: center;
}

.sp-nav__list:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sp-nav__item:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  position: relative;
}

.sp-nav__item a:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  display: block;
  padding: 8px 16px;
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}

.sp-nav__item a:hover:where(:not(.spc,.spc *),.spc-functional,.spc-functional *),
.sp-nav__item.is-active > a:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  background: rgba(255,255,255,0.12);
  color: #fff;
}

/* Multi-level Dropdown Menu Styling */
.menu-item-has-children > a:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  padding-right: 28px !important;
  position: relative;
}

.menu-item-has-children > a:where(:not(.spc,.spc *),.spc-functional,.spc-functional *)::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid rgba(255,255,255,0.7);
  transition: transform 0.2s;
}

.menu-item-has-children:hover > a:where(:not(.spc,.spc *),.spc-functional,.spc-functional *)::after {
  transform: translateY(-50%) rotate(180deg);
  border-top-color: #fff;
}

/* Floating Sub-Menu Card */
.sp-nav__list .sub-menu:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  list-style: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1100;
  min-width: 240px;
  background: var(--blue); /* Slate */
  border: 2px solid var(--accent); /* Gold */
  border-radius: 6px;
  padding: 8px 0;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  
  /* Smooth opacity & transform transition */
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1), transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.25s;
}

/* Show Sub-Menu on Hover */
.sp-nav__item:hover > .sub-menu:where(:not(.spc,.spc *),.spc-functional,.spc-functional *),
.sp-nav__item.sfHover > .sub-menu:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  opacity: 1;
  visibility: visible;
  transform: translateY(4px);
}

/* Sub-Menu Items */
.sp-nav__list .sub-menu li:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  width: 100%;
  position: relative;
}

.sp-nav__list .sub-menu a:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  display: block;
  padding: 10px 20px !important;
  color: rgba(255,255,255,0.9);
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 0;
  background: transparent !important;
  transition: background 0.15s, color 0.15s, padding-left 0.15s;
}

.sp-nav__list .sub-menu a:hover:where(:not(.spc,.spc *),.spc-functional,.spc-functional *),
.sp-nav__list .sub-menu li.is-active > a:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  background: rgba(255,255,255,0.08) !important;
  color: #fff;
  padding-left: 24px !important; /* Premium indent micro-animation */
}

/* Second-level nested sub-menus (3rd tier) */
.sp-nav__list .sub-menu .sub-menu:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  top: 0;
  left: 100%;
  transform: translateX(12px);
}

.sp-nav__list .sub-menu li:hover > .sub-menu:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  transform: translateX(0);
}

/* CTA Button */
.sp-nav__item--cta a.btn.btn-primary:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  background: #f0a500;
  color: var(--blue);
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 6px;
  border: none;
  transition: background 0.2s, transform 0.15s;
}

.sp-nav__item--cta a.btn.btn-primary:hover:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  background: #ffc107;
  transform: translateY(-1px);
}

/* --- Hamburger Toggle (mobile) --- */
.sp-nav__toggle:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.sp-nav__toggle span:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  display: block;
  width: 100%;
  height: 3px;
  background: #fff;
  border-radius: 3px;
  transition: transform 0.3s, opacity 0.3s;
}

/* Hamburger → X when open */
.sp-nav__toggle[aria-expanded="true"] span:nth-child(1):where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  transform: translateY(8.5px) rotate(45deg);
}
.sp-nav__toggle[aria-expanded="true"] span:nth-child(2):where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  opacity: 0;
}
.sp-nav__toggle[aria-expanded="true"] span:nth-child(3):where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  transform: translateY(-8.5px) rotate(-45deg);
}

/* --- Mobile breakpoint --- */
@media  (max-width: 768px) {
  .sp-nav__toggle:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){ display: flex; }

  .sp-nav:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--blue);
    border-top: 2px solid var(--accent);
    padding: 16px 24px 20px;
    display: none;                /* JS toggles to flex */
    flex-direction: column;
    align-items: flex-start;
  }

  .sp-nav.is-open:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){ display: flex; }

  .sp-nav__list:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 4px;
  }

  .sp-nav__item:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){ width: 100%; }

  .sp-nav__item a:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    width: 100%;
    padding: 12px 8px;
    font-size: 1rem;
  }

  .sp-nav__item--cta a.btn.btn-primary:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    width: 100%;
    text-align: center;
  }

  /* Mobile Dropdown Rules */
  .sp-nav__list .sub-menu:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    position: static;
    opacity: 1;
    visibility: visible;
    display: none;
    transform: none !important;
    min-width: 100%;
    background: rgba(0,0,0,0.15);
    border: none;
    border-left: 2px solid rgba(255,255,255,0.2);
    border-radius: 0;
    box-shadow: none;
    padding: 4px 0 4px 12px;
    margin-top: 4px;
    margin-bottom: 4px;
  }

  .sp-nav__item.menu-item-has-children:hover > .sub-menu:where(:not(.spc,.spc *),.spc-functional,.spc-functional *),
  .sp-nav__item.is-open-mobile > .sub-menu:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    display: block;
  }

  .menu-item-has-children > a:where(:not(.spc,.spc *),.spc-functional,.spc-functional *)::after {
    right: 16px;
  }
}

/* --- Shared Button Styles --- */
.btn:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s, border-color 0.2s;
}

.btn-primary:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  background: #f0a500;
  color: var(--blue);
  border: 2px solid transparent;
  padding: 12px 28px;
}

.btn-primary:hover:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  background: #ffc107;
  transform: translateY(-2px);
}

.btn-outline-w:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.7);
  padding: 12px 28px;
}

.btn-outline-w:hover:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  background: rgba(255,255,255,0.12);
  border-color: #fff;
}

/* --- Footer (basic industrial) --- */
.sp-footer:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  background: #0d1117;          /* Slate Dark Footer */
  color: rgba(255,255,255,0.75);
  padding: 80px 0 30px;
  font-size: 0.9rem;
  border-top: 4px solid var(--accent);
}

.sp-footer a:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.25s ease, transform 0.2s ease;
}

.sp-footer a:hover:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  color: #f0a500;
}

.sp-footer__grid:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 48px;
}

.sp-footer__col:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sp-footer__col--brand .sp-footer__logo:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  display: flex;
  margin-bottom: 8px;
}

.sp-footer__tagline:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
}

.sp-footer__heading:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  position: relative;
  padding-bottom: 8px;
}

.sp-footer__heading:where(:not(.spc,.spc *),.spc-functional,.spc-functional *)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 2px;
  background: #f0a500;
}

.sp-footer__links:where(:not(.spc,.spc *),.spc-functional,.spc-functional *),
.sp-footer__contact:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sp-footer__links a:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  display: inline-block;
}
.sp-footer__links a:hover:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  transform: translateX(4px);
}

.sp-footer__contact li:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}

.sp-footer__contact svg:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  color: #f0a500;
  flex-shrink: 0;
  margin-top: 3px;
}

.sp-footer__col--cta p:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.65);
  margin-bottom: 8px;
}

.sp-footer__social:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.sp-footer__social-link:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: #ffffff;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.sp-footer__social-link:hover:where(:not(.spc,.spc *),.spc-functional,.spc-functional *),
.sp-footer__social-link:focus-visible:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  transform: translateY(-2px);
  background: #f0a500;
  border-color: #f0a500;
  color: #ffffff !important;
}

.sp-footer__social-link svg:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  width: 18px;
  height: 18px;
}

.sp-footer__col--cta .btn.btn-primary:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  align-self: flex-start;
  padding: 12px 24px;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(240, 165, 0, 0.2);
}

.sp-footer__bottom:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 56px;
  padding-top: 24px;
  color: rgba(255,255,255,0.45);
  font-size: 0.85rem;
}

.sp-footer__bottom-inner:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.sp-footer__copy a:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  color: rgba(255,255,255,0.6);
  font-weight: 600;
}
.sp-footer__copy a:hover:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  color: #f0a500;
}

.sp-footer__legal:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
}

.sp-footer__legal a:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  color: rgba(255,255,255,0.45);
}
.sp-footer__legal a:hover:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  color: #f0a500;
}

@media  (max-width: 992px) {
  .sp-footer__grid:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media  (max-width: 576px) {
  .sp-footer:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    padding: 60px 0 30px;
  }
  .sp-footer__grid:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .sp-footer__bottom-inner:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  .sp-footer__legal:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    justify-content: center;
  }
}

/* ============================================================
   SHARED COMPONENTS — Categories & Products Grid System
   ============================================================ */

/* --- Button Extensions --- */
.btn-white:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  background: var(--white);
  color: var(--blue);
  border: 2px solid transparent;
  padding: 12px 28px;
}
.btn-white:hover:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  background: var(--soft);
  color: var(--blue2);
  transform: translateY(-2px);
}
.btn-outline:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
  padding: 12px 28px;
}
.btn-outline:hover:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

/* --- Category Sections & Headers --- */
.cat-section:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--white);
}
.cat-section.alt:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  background: var(--soft);
}
.cat-header:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 36px;
  gap: 24px;
}
.cat-label-pill:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(0, 48, 135, 0.08);
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
}

/* --- Categories Grid & Cards --- */
.cat-grid:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.cat-card:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  cursor: pointer;
  transition: transform var(--tr), box-shadow var(--tr);
}
.cat-card:hover:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(0,48,135,.14);
}
.cat-bg:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .55s ease;
}
.cat-card:hover .cat-bg:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  transform: scale(1.06);
}
.cat-overlay:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,24,70,.92) 0%,
    rgba(0,24,70,.52) 50%,
    rgba(0,24,70,.12) 100%
  );
  transition: opacity var(--tr);
}
.cat-card:hover .cat-overlay:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  opacity: .88;
}
.cat-body:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding: 24px 22px;
  color: var(--white);
}
.cat-icon:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  font-size: 2rem;
  margin-bottom: 10px;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.3));
}
.cat-body h3:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1.25;
}
.cat-body p:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  color: rgba(255,255,255,.82);
  font-size: .88rem;
  line-height: 1.6;
  margin-bottom: 14px;
}
.cat-link:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: .85rem;
  font-weight: 700;
  text-decoration: none;
  transition: background var(--tr), transform var(--tr);
}
.cat-link:hover:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  background: #d99200;
  color: #fff;
  transform: translateX(2px);
}

/* --- Products Grid & Cards --- */
.products-grid:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.product-card:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-card);
  transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr);
  display: flex;
  flex-direction: column;
}
.product-card:hover:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  transform: translateY(-5px);
  border-color: rgba(0,48,135,.18);
  box-shadow: 0 16px 36px rgba(0,48,135,.11);
}
.prod-img:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--soft);
}
.prod-img a:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  display: block;
  width: 100%;
  height: 100%;
}
.prod-img img:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  display: block;
}
.product-card:hover .prod-img img:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  transform: scale(1.06);
}
.prod-badge:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  z-index: 2;
}
.prod-body:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  padding: 18px 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.prod-body h4:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  margin: 0 0 8px;
  color: var(--blue);
  font-size: .98rem;
  font-weight: 800;
  line-height: 1.3;
}
.prod-body h4 a:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  color: inherit;
  text-decoration: none;
  transition: color var(--tr);
}
.prod-body h4 a:hover:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  color: var(--accent);
}
.prod-body p:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  flex: 1;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.6;
}
.prod-link:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  display: inline-flex;
  align-items: center;
  color: var(--accent2);
  font-size: .88rem;
  font-weight: 800;
  text-decoration: none;
  transition: color var(--tr), letter-spacing var(--tr);
}
.prod-link:hover:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  color: var(--blue);
  letter-spacing: .02em;
}

/* --- Responsive Media Queries for Grids --- */
@media  (max-width: 1024px) {
  .cat-grid:where(:not(.spc,.spc *),.spc-functional,.spc-functional *),
  .products-grid:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }
}

@media  (max-width: 768px) {
  .cat-header:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .cat-header .btn:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    align-self: flex-start;
  }
}

@media  (max-width: 576px) {
  .cat-grid:where(:not(.spc,.spc *),.spc-functional,.spc-functional *),
  .products-grid:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
}

/* ============================================================
   B2B SYSTEM FORM STYLES (GLOBAL CONTACT FORM 7 RESETS)
   ============================================================ */
.wpcf7-form:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

/* Form Grid */
.sp-b2b-form-grid:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
}

.sp-b2b-form-field:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    width: 100%;
}

.sp-b2b-form-field.full-width:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    grid-column: span 2;
}

/* Resilient to CF7 autop wrap */
.sp-b2b-form-field p:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    margin: 0 !important;
    padding: 0 !important;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.sp-b2b-form-field p br:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    display: none !important;
}

/* Global Labels styling */
.wpcf7-form label:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #475569; /* Soft slate dark */
    margin-bottom: 0px;
    width: 100%;
    text-transform: none;
    letter-spacing: 0.01em;
    transition: color 0.2s ease;
}

.sp-b2b-form-field:focus-within label:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    color: #f0a500 !important;
}

/* Global Inputs reset */
.wpcf7-form input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):where(:not(.spc,.spc *),.spc-functional,.spc-functional *),
.wpcf7-form select:where(:not(.spc,.spc *),.spc-functional,.spc-functional *),
.wpcf7-form textarea:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    display: block;
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    background-color: #f8fafc;
    color: #0f172a;
    font-family: inherit;
    font-size: 0.95rem;
    line-height: 1.5;
    transition: all 0.2s ease;
    box-sizing: border-box;
    outline: none;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.02);
}

.wpcf7-form textarea:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    min-height: 120px;
    resize: vertical;
}

/* Hover & Focus states (Light theme default) */
.wpcf7-form input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):hover:where(:not(.spc,.spc *),.spc-functional,.spc-functional *),
.wpcf7-form select:hover:where(:not(.spc,.spc *),.spc-functional,.spc-functional *),
.wpcf7-form textarea:hover:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    border-color: #94a3b8;
    background-color: #f1f5f9;
}

.wpcf7-form input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):focus:where(:not(.spc,.spc *),.spc-functional,.spc-functional *),
.wpcf7-form select:focus:where(:not(.spc,.spc *),.spc-functional,.spc-functional *),
.wpcf7-form textarea:focus:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    border-color: #f0a500;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(240, 165, 0, 0.15);
}

/* Global Submit wrap */
.sp-b2b-form-submit-wrap:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 10px;
}

.sp-b2b-form-submit-wrap p:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    margin: 0 !important;
    width: 100%;
}

/* Submit button styling */
.wpcf7-form input[type="submit"]:where(:not(.spc,.spc *),.spc-functional,.spc-functional *),
.wpcf7-form .wpcf7-submit:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    appearance: none;
    -webkit-appearance: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 52px;
    padding: 14px 32px;
    border: none;
    border-radius: 30px;
    background: linear-gradient(135deg, #f0a500 0%, #e8920a 100%);
    color: #000000 !important;
    font-family: inherit;
    font-size: 1.05rem;
    font-weight: 750;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 20px rgba(240, 165, 0, 0.2);
    box-sizing: border-box;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.wpcf7-form input[type="submit"]:hover:where(:not(.spc,.spc *),.spc-functional,.spc-functional *),
.wpcf7-form .wpcf7-submit:hover:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    background: linear-gradient(135deg, #ffc107 0%, #f0a500 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(240, 165, 0, 0.3);
}

.wpcf7-form input[type="submit"]:active:where(:not(.spc,.spc *),.spc-functional,.spc-functional *),
.wpcf7-form .wpcf7-submit:active:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    transform: translateY(0);
    box-shadow: 0 6px 15px rgba(240, 165, 0, 0.2);
}

.wpcf7-form.sp-is-submitting input[type="submit"]:where(:not(.spc,.spc *),.spc-functional,.spc-functional *),
.wpcf7-form.sp-is-submitting .wpcf7-submit:where(:not(.spc,.spc *),.spc-functional,.spc-functional *),
.wpcf7-form input[type="submit"][disabled]:where(:not(.spc,.spc *),.spc-functional,.spc-functional *),
.wpcf7-form .wpcf7-submit[disabled]:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    cursor: progress;
    opacity: 0.78;
    transform: none !important;
    box-shadow: 0 6px 15px rgba(240, 165, 0, 0.2);
}

.wpcf7 .wpcf7-spinner:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    display: inline-block;
    vertical-align: middle;
    margin: 12px auto 0;
}

.wpcf7 form.submitting .wpcf7-spinner:where(:not(.spc,.spc *),.spc-functional,.spc-functional *),
.wpcf7-form.sp-is-submitting .wpcf7-spinner:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    visibility: visible;
}

/* ── Light B2B background container overrides (PDP & Solutions) ── */
.spr-quote-form:where(:not(.spc,.spc *),.spc-functional,.spc-functional *),
.sp-pdp-inquiry__box:where(:not(.spc,.spc *),.spc-functional,.spc-functional *),
.sp-solution-inquiry__box:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    background: #ffffff !important;
    border: 1px solid #edf2f7 !important;
    border-radius: 16px !important;
    padding: 3rem !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04) !important;
    position: relative;
    overflow: hidden;
}

.spr-quote-form:where(:not(.spc,.spc *),.spc-functional,.spc-functional *)::before,
.sp-pdp-inquiry__box:where(:not(.spc,.spc *),.spc-functional,.spc-functional *)::before,
.sp-solution-inquiry__box:where(:not(.spc,.spc *),.spc-functional,.spc-functional *)::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #f0a500 !important;
}

.spr-quote-form h3:where(:not(.spc,.spc *),.spc-functional,.spc-functional *),
.sp-pdp-inquiry__box h3:where(:not(.spc,.spc *),.spc-functional,.spc-functional *),
.sp-solution-inquiry__box h3:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    font-size: 1.6rem !important;
    font-weight: 800 !important;
    color: #1e293b !important;
    text-align: center !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0 !important;
    margin-bottom: 2.2rem !important;
    border-bottom: none !important;
    padding-bottom: 0 !important;
    background: none !important;
    -webkit-text-fill-color: initial !important;
}

/* Labels under light theme */
.spr-quote-form .wpcf7-form label:where(:not(.spc,.spc *),.spc-functional,.spc-functional *),
.sp-pdp-inquiry .wpcf7-form label:where(:not(.spc,.spc *),.spc-functional,.spc-functional *),
.sp-solution-inquiry__box .wpcf7-form label:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    color: #475569 !important;
}

/* Inputs under light theme */
.spr-quote-form .wpcf7-form input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):where(:not(.spc,.spc *),.spc-functional,.spc-functional *),
.spr-quote-form .wpcf7-form textarea:where(:not(.spc,.spc *),.spc-functional,.spc-functional *),
.sp-pdp-inquiry .wpcf7-form input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):where(:not(.spc,.spc *),.spc-functional,.spc-functional *),
.sp-pdp-inquiry .wpcf7-form textarea:where(:not(.spc,.spc *),.spc-functional,.spc-functional *),
.sp-solution-inquiry__box .wpcf7-form input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):where(:not(.spc,.spc *),.spc-functional,.spc-functional *),
.sp-solution-inquiry__box .wpcf7-form textarea:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    background-color: #ffffff !important;
    border: 1px solid #cbd5e1 !important;
    color: #0f172a !important;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.02) !important;
}

.spr-quote-form .wpcf7-form input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):hover:where(:not(.spc,.spc *),.spc-functional,.spc-functional *),
.spr-quote-form .wpcf7-form textarea:hover:where(:not(.spc,.spc *),.spc-functional,.spc-functional *),
.sp-pdp-inquiry .wpcf7-form input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):hover:where(:not(.spc,.spc *),.spc-functional,.spc-functional *),
.sp-pdp-inquiry .wpcf7-form textarea:hover:where(:not(.spc,.spc *),.spc-functional,.spc-functional *),
.sp-solution-inquiry__box .wpcf7-form input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):hover:where(:not(.spc,.spc *),.spc-functional,.spc-functional *),
.sp-solution-inquiry__box .wpcf7-form textarea:hover:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    border-color: #94a3b8 !important;
    background-color: #f1f5f9 !important;
}

.spr-quote-form .wpcf7-form input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):focus:where(:not(.spc,.spc *),.spc-functional,.spc-functional *),
.spr-quote-form .wpcf7-form textarea:focus:where(:not(.spc,.spc *),.spc-functional,.spc-functional *),
.sp-pdp-inquiry .wpcf7-form input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):focus:where(:not(.spc,.spc *),.spc-functional,.spc-functional *),
.sp-pdp-inquiry .wpcf7-form textarea:focus:where(:not(.spc,.spc *),.spc-functional,.spc-functional *),
.sp-solution-inquiry__box .wpcf7-form input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):focus:where(:not(.spc,.spc *),.spc-functional,.spc-functional *),
.sp-solution-inquiry__box .wpcf7-form textarea:focus:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    border-color: #f0a500 !important;
    background-color: #ffffff !important;
    box-shadow: 0 0 0 3px rgba(240, 165, 0, 0.15) !important;
}

.spr-quote-form:where(:not(.spc,.spc *),.spc-functional,.spc-functional *)::placeholder,
.sp-pdp-inquiry:where(:not(.spc,.spc *),.spc-functional,.spc-functional *)::placeholder,
.sp-solution-inquiry__box:where(:not(.spc,.spc *),.spc-functional,.spc-functional *)::placeholder {
    color: #94a3b8 !important;
}

/* Submit under light theme */
.spr-quote-form .wpcf7-submit:where(:not(.spc,.spc *),.spc-functional,.spc-functional *),
.sp-pdp-inquiry .wpcf7-submit:where(:not(.spc,.spc *),.spc-functional,.spc-functional *),
.sp-solution-inquiry__box .wpcf7-submit:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    box-shadow: 0 8px 20px rgba(240, 165, 0, 0.2) !important;
}

/* Response messaging */
.wpcf7-response-output:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    font-size: 14px;
    padding: 14px 18px;
    border-radius: 8px;
    margin-top: 15px;
    box-sizing: border-box;
    text-align: center;
}

.wpcf7-not-valid-tip:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    color: #ef4444;
    font-size: 12px;
    margin-top: 6px;
    font-weight: 500;
}

@media  (max-width: 768px) {
    .sp-b2b-form-grid:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .sp-b2b-form-field.full-width:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
        grid-column: span 1;
    }
    
    .spr-quote-form:where(:not(.spc,.spc *),.spc-functional,.spc-functional *),
    .sp-pdp-inquiry__box:where(:not(.spc,.spc *),.spc-functional,.spc-functional *),
    .sp-solution-inquiry__box:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
        padding: 2rem !important;
    }
}

/* --- Visual Fixes: Page Hero Gap & Logo Image styles --- */
.page-hero:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  margin-top: 0 !important;
}

.sp-header__logo-img:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  max-height: 24px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1); /* Renders the black logo in clean white */
  transition: opacity var(--tr);
}

.sp-header__logo:hover .sp-header__logo-img:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  opacity: 0.85;
}

/* Contact Us nav item styled as CTA button */
.sp-nav__list > li:last-child > a:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  background: #f0a500;
  color: var(--blue);
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 6px;
  border: none;
  transition: background 0.2s, transform 0.15s;
}
.sp-nav__list > li:last-child > a:hover:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
  background: #ffc107;
  transform: translateY(-1px);
}

/* ============================================================
   PRODUCT PAGE OVERRIDES — B2B Premium Theme
   ============================================================ */

.sp-prod-wrap:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    background-color: #ffffff;
    font-family: "Inter", sans-serif;
    color: #1e293b;
}

/* ---------- Breadcrumbs ---------- */
.breadcrumb-bar:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    padding: 14px 0;
}
.breadcrumb-inner:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.85rem;
    color: #64748b;
}
.breadcrumb-inner a:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    color: #003087;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
.breadcrumb-inner a:hover:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    color: #f0a500;
}
.breadcrumb-inner .sep:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    color: #94a3b8;
    margin: 0 4px;
    font-size: 0.8rem;
}
.breadcrumb-inner span:last-child:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    color: #64748b;
    font-weight: 400;
}

/* ---------- Page Hero ---------- */
.page-hero:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    background: linear-gradient(135deg, #001f5c 0%, #000c25 100%);
    padding: 72px 0 60px;
    color: #ffffff;
    text-align: center;
    border-bottom: 4px solid #0057d9;
}
.page-hero-inner:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}
.page-hero-inner .badge:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    display: inline-block;
    background: linear-gradient(135deg, #f0a500 0%, #e8920a 100%);
    color: #001135;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 6px 16px;
    border-radius: 99px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(240, 165, 0, 0.25);
}
.page-hero-inner h1:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 850;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}
.page-hero-inner h1 em:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    font-style: normal;
    color: #f0a500;
    background: linear-gradient(120deg, #f0a500 0%, #ffc107 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.page-hero-inner p:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    font-size: 1.1rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
    max-width: 700px;
    margin: 0 auto;
}

/* ---------- Sticky Filter Bar ---------- */
.filter-bar:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    position: sticky;
    top: 68px; /* Sticky below header */
    z-index: 999;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    padding: 12px 0;
}
.filter-inner:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: center;
    gap: 12px;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
}
.filter-inner:where(:not(.spc,.spc *),.spc-functional,.spc-functional *)::-webkit-scrollbar {
    display: none;
}
.filter-tab:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    font-family: "Inter", sans-serif;
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    color: #334155;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 99px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    user-select: none;
}
.filter-tab:hover:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    background: #e2e8f0;
    color: #003087;
    border-color: #94a3b8;
    transform: translateY(-1px);
}
.filter-tab.active:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    background: #003087;
    color: #ffffff;
    border-color: #003087;
    box-shadow: 0 4px 12px rgba(0, 48, 135, 0.25);
}

/* ---------- Category Sections ---------- */
.cat-section:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    padding: 80px 0;
    border-bottom: 1px solid #f1f5f9;
}
.cat-section.alt:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    background-color: #f8fafc;
}
.cat-section .container:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}
.cat-header:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
    gap: 24px;
}
.cat-label-pill:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    display: inline-block;
    background: rgba(0, 48, 135, 0.08);
    color: #003087;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 12px;
}
.cat-header h2.section-title:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    font-size: clamp(1.6rem, 3.5vw, 2.25rem);
    font-weight: 800;
    color: #001f5c;
    line-height: 1.2;
    margin: 0;
}
.cat-header h2.section-title span:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    color: #f0a500;
    background: linear-gradient(135deg, #f0a500 0%, #e8920a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.cat-header .btn-outline:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    font-family: "Inter", sans-serif;
    border: 2px solid #003087;
    color: #003087;
    background: transparent;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 10px 24px;
    border-radius: 6px;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
}
.cat-header .btn-outline:hover:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    background: #003087;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 48, 135, 0.15);
}

/* ---------- Products Grid ---------- */
.products-grid:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.product-card:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card:hover:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    border-color: #cbd5e1;
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0, 31, 92, 0.08);
}
.prod-img:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    background: #f8fafc;
    position: relative;
    aspect-ratio: 1 / 1;
    padding-top: 0;
    overflow: hidden;
    border-bottom: 1px solid #f1f5f9;
}
.prod-img a:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.prod-img img:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    width: auto !important;
    height: auto !important;
    max-width: 88%;
    max-height: 88%;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: transform 0.4s ease;
}
.product-card:hover .prod-img img:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    transform: scale(1.05);
}
.prod-badge:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    position: absolute;
    top: 12px;
    left: 12px;
    background: #003087;
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 3px 10px;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 48, 135, 0.2);
}
.prod-body:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.prod-body h4:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 10px;
    line-height: 1.4;
}
.prod-body h4 a:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}
.prod-body h4 a:hover:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    color: var(--accent);
}
.prod-body p:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    font-size: 0.88rem;
    color: #475569;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 2.65rem;
}
.prod-link:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    font-size: 0.88rem;
    font-weight: 700;
    color: #003087;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
    margin-top: auto;
}
.prod-link:hover:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    color: #f0a500;
    gap: 10px;
}

/* ---------- Features Band (Why Steelpallet) ---------- */
.features-band:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    background: linear-gradient(135deg, #001f5c 0%, #000c25 100%);
    padding: 88px 0;
    color: #ffffff;
    border-top: 4px solid #0057d9;
    border-bottom: 4px solid #003087;
}
.features-band .container:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}
.features-band .section-tag:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    color: #f0a500;
    font-size: 0.8rem;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.features-band h2.section-title:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 56px;
    text-align: center;
}
.features-band h2.section-title span:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    color: #f0a500;
    background: linear-gradient(135deg, #f0a500 0%, #ffc107 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.features-grid:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.feat-card:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 36px 28px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.feat-card:hover:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(240, 165, 0, 0.6);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}
.feat-icon:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    font-size: 2.2rem;
    margin-bottom: 20px;
    display: block;
}
.feat-card h4:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}
.feat-card p:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
}

/* ---------- Contact/Quote Section ---------- */
.contact-band:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    background-color: #f8fafc;
    padding: 96px 0;
}
.contact-band .container:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}
.contact-inner:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    max-width: 720px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 12px;
    padding: 56px 48px;
    box-shadow: 0 24px 64px rgba(0, 31, 92, 0.06);
    border: 1px solid #e2e8f0;
}
.contact-inner .section-tag:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    color: #f0a500;
    font-size: 0.8rem;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 12px;
}
.contact-inner h2.section-title:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    font-size: clamp(1.6rem, 3.5vw, 2.25rem);
    font-weight: 800;
    color: #001f5c;
    text-align: center;
    line-height: 1.25;
    margin-bottom: 14px;
}
.contact-inner h2.section-title span:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    color: #f0a500;
    background: linear-gradient(135deg, #f0a500 0%, #e8920a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.contact-inner p:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    text-align: center;
    color: #475569;
    font-size: 1rem;
    margin-bottom: 36px;
}
.wpcf7-form:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.wpcf7-form p:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    text-align: left;
    margin: 0;
    width: 100%;
}
.wpcf7-form label:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 6px;
    width: 100%;
}
.wpcf7-form label span.required:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    color: #ef4444;
    font-weight: bold;
    margin-left: 2px;
}
.wpcf7-form input[type="text"]:where(:not(.spc,.spc *),.spc-functional,.spc-functional *),
.wpcf7-form input[type="email"]:where(:not(.spc,.spc *),.spc-functional,.spc-functional *),
.wpcf7-form textarea:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    font-family: "Inter", sans-serif;
    font-size: 0.95rem;
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #cbd5e1;
    border-radius: 6px;
    background-color: #ffffff;
    color: #0f172a;
    transition: all 0.2s ease;
    outline: none;
}
.wpcf7-form input[type="text"]:where(:not(.spc,.spc *),.spc-functional,.spc-functional *)::placeholder,
.wpcf7-form input[type="email"]:where(:not(.spc,.spc *),.spc-functional,.spc-functional *)::placeholder,
.wpcf7-form textarea:where(:not(.spc,.spc *),.spc-functional,.spc-functional *)::placeholder {
    color: #94a3b8;
}
.wpcf7-form input[type="text"]:focus:where(:not(.spc,.spc *),.spc-functional,.spc-functional *),
.wpcf7-form input[type="email"]:focus:where(:not(.spc,.spc *),.spc-functional,.spc-functional *),
.wpcf7-form textarea:focus:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    border-color: #003087;
    box-shadow: 0 0 0 3px rgba(0, 48, 135, 0.12);
    background-color: #ffffff;
}
.wpcf7-form textarea:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    resize: vertical;
    min-height: 120px;
}
.wpcf7-submit:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #001135 !important;
    background: linear-gradient(135deg, #f0a500 0%, #e8920a 100%) !important;
    border: none !important;
    border-radius: 6px !important;
    padding: 14px 28px !important;
    width: 100% !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    box-shadow: 0 4px 12px rgba(240, 165, 0, 0.25) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
}
.wpcf7-submit:hover:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    background: linear-gradient(135deg, #ffc107 0%, #f0a500 100%) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 6px 16px rgba(240, 165, 0, 0.35) !important;
}
.wpcf7-submit:active:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    transform: translateY(0) !important;
}

/* ---------- RESPONSIVE OVERRIDES ---------- */
@media  (max-width: 1200px) {
    .products-grid:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    .features-grid:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media  (max-width: 992px) {
    .filter-bar:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
        top: 68px; /* Sticky below header */
    }
    .cat-header:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 32px;
    }
    .cat-header .btn-outline:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
        width: 100%;
        text-align: center;
    }
}

@media  (max-width: 768px) {
    .page-hero:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
        padding: 56px 0;
    }
    .products-grid:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .contact-inner:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
        padding: 36px 24px;
    }
    .features-band:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
        padding: 64px 0;
    }
    .contact-band:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
        padding: 64px 0;
    }
    .breadcrumb-inner:where(:not(.spc,.spc *),.spc-functional,.spc-functional *), .hero-inner:where(:not(.spc,.spc *),.spc-functional,.spc-functional *), .spr-content-container:where(:not(.spc,.spc *),.spc-functional,.spc-functional *), .spr-quote-form:where(:not(.spc,.spc *),.spc-functional,.spc-functional *), .sp-solution-article:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
        padding-left: 83.2px !important;
    }
}

@media  (max-width: 576px) {
    .products-grid:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .features-grid:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .page-hero-inner h1:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
        font-size: 1.85rem;
    }
    .page-hero-inner p:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
        font-size: 0.95rem;
    }
}

/* ============================================================
   SINGLE PRODUCT PAGE STYLES — Professional B2B Details
   ============================================================ */

/* --- Dual Column Page Hero --- */
.page-hero-inner:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    max-width: 1280px !important;
    margin: 0 auto;
    padding: 0 24px;
}

.hero-inner:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
    text-align: left;
}

.hero-content:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    color: #ffffff;
}

.hero-content .badge:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    display: inline-block;
    background: linear-gradient(135deg, #f0a500 0%, #e8920a 100%);
    color: #001135;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 6px 16px;
    border-radius: 99px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(240, 165, 0, 0.25);
}

.hero-content h1:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 850;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}

.hero-content h1 em:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    font-style: normal;
    color: #f0a500;
    background: linear-gradient(120deg, #f0a500 0%, #ffc107 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    font-size: 1.1rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
    max-width: 600px;
    margin-bottom: 32px;
}

.hero-actions:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 36px;
}

.hero-actions .btn:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 6px;
}

.hero-actions .btn-primary:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    background: linear-gradient(135deg, #f0a500 0%, #e8920a 100%);
    color: #001135;
    box-shadow: 0 4px 12px rgba(240, 165, 0, 0.25);
}

.hero-actions .btn-white:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    background: #ffffff;
    color: #003087;
}

.hero-actions .btn-white:hover:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    background: #f8fafc;
}

/* Stats Ribbon in Hero */
.hero-stats:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    display: flex;
    gap: 32px;
    margin-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 24px;
}

.hero-stats .stat-item:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    display: flex;
    flex-direction: column;
}

.hero-stats .stat-num:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    font-size: 2.25rem;
    font-weight: 850;
    color: #f0a500;
    line-height: 1;
    margin-bottom: 4px;
}

.hero-stats .stat-label:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Hero Media Image Box */
.hero-media:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    position: relative;
    width: 100%;
}

.hero-img-wrap:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
    aspect-ratio: 4 / 3;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-img-wrap img:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    mix-blend-mode: normal !important;
}

.hero-badge-float:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    position: absolute;
    bottom: 20px;
    left: -20px;
    background: linear-gradient(135deg, #f0a500 0%, #e8920a 100%);
    color: #001135;
    padding: 10px 20px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(240, 165, 0, 0.3);
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.hero-badge-float strong:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    font-size: 1.5rem;
    font-weight: 850;
    line-height: 1.1;
}

.hero-badge-float span:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* --- Specs Band Under Hero --- */
.specs-band:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    background: #f8fafc;
    border-bottom: 1.5px solid #e2e8f0;
    padding: 24px 0;
}

.specs-grid:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.specs-grid .spec-item:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    padding: 8px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.specs-grid .spec-icon:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.specs-grid .spec-value:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    font-size: 1.05rem;
    font-weight: 700;
    color: #001f5c;
    margin-bottom: 2px;
}

.specs-grid .spec-label:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
}

/* --- Overview Section --- */
.overview-section:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    padding: clamp(60px, 8vw, 100px) 0;
    background: #ffffff;
}

.overview-grid:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.overview-content .section-tag:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    display: inline-block;
    background: rgba(0, 48, 135, 0.08);
    color: #003087;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.overview-content h2.section-title:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: #001f5c;
    line-height: 1.2;
    margin-bottom: 18px;
}

.overview-content h2.section-title span:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    color: #f0a500;
}

.overview-content p.lead:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    font-size: 1.15rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 16px;
}

.overview-content p:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    font-size: 0.98rem;
    color: #64748b;
    line-height: 1.65;
    margin-bottom: 24px;
}

.feature-list:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-list li:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    font-size: 0.95rem;
    color: #1e293b;
    font-weight: 500;
    position: relative;
    padding-left: 28px;
}

.feature-list li:where(:not(.spc,.spc *),.spc-functional,.spc-functional *)::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: -1px;
    width: 20px;
    height: 20px;
    background: rgba(0, 48, 135, 0.08);
    color: #003087;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
}

.overview-gallery:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.overview-gallery .main-img:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    grid-column: 1 / 3;
    border-radius: 12px;
    overflow: hidden;
    border: 1.5px solid #e2e8f0;
    aspect-ratio: 4 / 3;
    background: #f8fafc;
}

.overview-gallery .main-img img:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    display: block !important;
}

.overview-gallery .thumb:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    border-radius: 8px;
    overflow: hidden;
    border: 1.5px solid #e2e8f0;
    aspect-ratio: 4 / 3;
    background: #f8fafc;
}

.overview-gallery .thumb img:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    display: block !important;
}

/* --- Variants Section --- */
.variants-section:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    padding: clamp(60px, 8vw, 100px) 0;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.variants-section .section-tag:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    display: inline-block;
    background: rgba(0, 48, 135, 0.08);
    color: #003087;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.variants-section h2.section-title:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: #001f5c;
    line-height: 1.2;
    margin-bottom: 36px;
}

.variants-section h2.section-title span:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    color: #f0a500;
}

.variants-grid:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.variant-card:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 48, 135, 0.03);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.variant-card:hover:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    transform: translateY(-6px);
    border-color: rgba(0, 48, 135, 0.2);
    box-shadow: 0 16px 36px rgba(0, 48, 135, 0.08);
}

.variant-img:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    position: relative;
    aspect-ratio: 4 / 3;
    background: #f8fafc;
    overflow: hidden;
    border-bottom: 1px solid #e2e8f0;
}

.variant-img img:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    display: block !important;
}

.variant-tag:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    position: absolute;
    top: 12px;
    left: 12px;
    background: #003087;
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 10px;
    border-radius: 4px;
}

.variant-body:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.variant-body h4:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    font-size: 1.15rem;
    font-weight: 700;
    color: #001f5c;
    margin-bottom: 8px;
}

.variant-body p:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 20px;
}

.variant-specs:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.spec-pill:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    font-size: 0.75rem;
    font-weight: 600;
    color: #475569;
    background: #f1f5f9;
    padding: 4px 12px;
    border-radius: 99px;
    border: 1px solid #e2e8f0;
}

.variant-link:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    font-size: 0.9rem;
    font-weight: 700;
    color: #003087;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
    margin-top: auto;
}

.variant-link:hover:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    color: #f0a500;
    gap: 10px;
}

/* --- Why Choose Us (Single Product) --- */
.why-section:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    background: linear-gradient(135deg, #001f5c 0%, #000c25 100%);
    padding: clamp(60px, 8vw, 100px) 0;
    color: #ffffff;
}

.why-section .section-tag:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    color: #f0a500;
}

.why-section h2.section-title:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    color: #ffffff;
    margin-bottom: 40px;
}

.why-section h2.section-title span:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    color: #f0a500;
}

.why-grid:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 24px !important;
}

.why-card:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    background: rgba(255, 255, 255, 0.03);
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 32px 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-card:hover:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(240, 165, 0, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.why-icon:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    font-size: 2.2rem;
    margin-bottom: 16px;
    display: block;
}

.why-card h4:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.why-card p:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

/* --- Order Process --- */
.process-section:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    padding: clamp(60px, 8vw, 100px) 0;
    background: #ffffff;
}

.process-section .section-tag:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    display: inline-block;
    background: rgba(0, 48, 135, 0.08);
    color: #003087;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.process-section h2.section-title:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: #001f5c;
    line-height: 1.2;
    margin-bottom: 48px;
}

.process-section h2.section-title span:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    color: #f0a500;
}

.process-steps:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.step-item:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    position: relative;
    padding: 24px;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
}

.step-num:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #003087;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    box-shadow: 0 4px 10px rgba(0, 48, 135, 0.25);
}

.step-item h4:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    font-size: 1.1rem;
    font-weight: 700;
    color: #001f5c;
    margin-bottom: 8px;
}

.step-item p:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    font-size: 0.9rem;
    line-height: 1.55;
    color: #64748b;
    margin: 0;
}

/* --- FAQ Section --- */
.faq-section:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    padding: clamp(60px, 8vw, 100px) 0;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.faq-section .section-tag:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    display: inline-block;
    background: rgba(0, 48, 135, 0.08);
    color: #003087;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.faq-section h2.section-title:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: #001f5c;
    line-height: 1.2;
    margin-bottom: 48px;
}

.faq-section h2.section-title span:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    color: #f0a500;
}

.faq-grid:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.faq-item:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    padding: 24px;
    transition: all 0.3s ease;
}

.faq-item:hover:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    border-color: rgba(0, 48, 135, 0.15);
    box-shadow: 0 6px 18px rgba(0, 48, 135, 0.03);
}

.faq-q:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    font-size: 1.05rem;
    font-weight: 700;
    color: #001f5c;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-a:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    font-size: 0.92rem;
    color: #475569;
    line-height: 1.6;
}

/* --- Responsive Media Queries for Single Product --- */
@media  (max-width: 1200px) {
    .variants-grid:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .why-grid:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .process-steps:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media  (max-width: 992px) {
    .hero-inner:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
        grid-template-columns: 1.1fr 0.9fr;
        gap: 32px;
    }
    .overview-grid:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
        gap: 40px;
    }
    .faq-grid:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
        grid-template-columns: 1fr;
    }
}

@media  (max-width: 768px) {
    .hero-inner:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .hero-content p:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
        margin-inline: auto;
    }
    .hero-actions:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
        justify-content: center;
    }
    .hero-stats:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
        justify-content: center;
    }
    .hero-img-wrap:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
        max-width: 500px;
        margin: 0 auto;
    }
    .hero-badge-float:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
        left: 20px;
    }
    .specs-grid:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .overview-grid:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
        grid-template-columns: 1fr;
    }
    .overview-gallery:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
        max-width: 500px;
        margin: 0 auto;
    }
}

@media  (max-width: 576px) {
    .variants-grid:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
        grid-template-columns: 1fr;
    }
    .why-grid:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
        grid-template-columns: 1fr !important;
    }
    .process-steps:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
        grid-template-columns: 1fr;
    }
    .hero-stats:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
        flex-direction: column;
        gap: 16px;
    }
    }
}
/* ==========================================================================
   SteelPallet Premium B2B Styling Components (Antigravity Global Fallback)
   ========================================================================== */
.spr-pain-box:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    background: #fffdf6;
    border-left: 5px solid #d99b00;
    padding: 1.8rem 2rem;
    margin: 2.2rem 0;
    border-radius: 0 12px 12px 0;
    box-shadow: 0 4px 15px rgba(217,155,0,0.06);
    transition: all 0.3s cubic-bezier(0.165,0.84,0.44,1);
}
.spr-pain-box:hover:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(217,155,0,0.12);
}
.spr-pain-box strong:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    color: #b07d00;
    font-size: 1.25rem;
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
}
.spr-pain-box p:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    margin: 0;
    line-height: 1.7;
    color: #4a4a4a;
    font-size: 1.05rem;
}

.spr-expert-block:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-left: 5px solid #5c6370;
    padding: 1.8rem 2rem 1.8rem 2.8rem;
    margin: 2.2rem 0;
    position: relative;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}
.spr-expert-block p:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    margin: 0;
    line-height: 1.7;
    color: #4f5d75;
    font-size: 1.05rem;
}
.spr-expert-block strong:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    color: #2c3e50;
    font-size: 1.15rem;
}
.spr-expert-block:where(:not(.spc,.spc *),.spc-functional,.spc-functional *)::before {
    content: "\"";
    font-size: 5.5rem;
    color: #5c6370;
    position: absolute;
    top: -8px;
    left: 8px;
    line-height: 1;
    font-family: Georgia, serif;
    opacity: 0.12;
    pointer-events: none;
}

.spr-table-wrapper:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 2.5rem 0;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
    position: relative;
}
.spr-table-wrapper:where(:not(.spc,.spc *),.spc-functional,.spc-functional *)::after {
    content: "↔ Swipe horizontally to view full metrics";
    display: block;
    text-align: right;
    font-size: 0.8rem;
    color: #a0aec0;
    padding: 8px 12px 0 0;
    font-style: italic;
}
@media  (min-width: 769px) {
    .spr-table-wrapper:where(:not(.spc,.spc *),.spc-functional,.spc-functional *)::after {
        display: none;
    }
}
.spr-data-table:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    width: 100% !important;
    border-collapse: collapse;
    margin: 0 !important;
    font-size: 1.02rem;
    overflow: hidden;
}
.spr-data-table th:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    background: #d99b00;
    color: #ffffff;
    padding: 15px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 1.08rem;
    white-space: nowrap;
    text-transform: uppercase;
}
.spr-data-table td:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    padding: 15px 20px;
    border-bottom: 1px solid #dee2e6;
    color: #4a4a4a;
    transition: background-color 0.2s ease;
}
.spr-data-table tr:last-child td:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    border-bottom: none;
}
.spr-data-table tr:nth-child(even):where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    background: #fffdf9;
}
.spr-data-table tr:hover td:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    background-color: #fffaf0;
}

.spr-cta-btn:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    display: inline-block;
    background: linear-gradient(135deg, #ff5722 0%, #e64a19 100%);
    color: #ffffff !important;
    padding: 15px 38px;
    text-decoration: none !important;
    font-weight: 700;
    border-radius: 35px;
    margin: 1.8rem 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 6px 16px rgba(255, 87, 34, 0.3);
    border: none;
    text-align: center;
    font-size: 1.02rem;
}
.spr-cta-btn:hover:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    transform: translateY(-3px);
    box-shadow: 0 10px 22px rgba(255, 87, 34, 0.48);
    color: #ffffff !important;
}

.spr-grid:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    display: flex;
    gap: 2.5rem;
    margin: 2.5rem 0;
    align-items: center;
}
.spr-grid-reverse:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    display: flex;
    gap: 2.5rem;
    margin: 2.5rem 0;
    align-items: center;
    flex-direction: row-reverse;
}
.spr-col:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    flex: 1;
    min-width: 0;
}
.spr-col img:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    width: 100% !important;
    height: auto !important;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    display: block;
    transition: transform 0.3s ease;
}
.spr-col img:hover:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    transform: scale(1.02);
}
.spr-grid > p:where(:not(.spc,.spc *),.spc-functional,.spc-functional *), .spr-grid-reverse > p:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    display: none !important;
}
@media  (max-width: 768px) {
    .spr-grid:where(:not(.spc,.spc *),.spc-functional,.spc-functional *), .spr-grid-reverse:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
        flex-direction: column !important;
    }
}

.spr-faq-item:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    border-bottom: 1px solid #edf2f7;
    padding: 1.25rem 0;
}
.spr-faq-item:last-child:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    border-bottom: none;
}
.spr-faq-question:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    font-weight: 600;
    color: #1a1a1a;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}
.spr-faq-answer:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    color: #4a5568;
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Redundant .spr-quote-form removed to prevent styling conflicts with global.css */

/* ==========================================================================
   B2B Product Detail Page (PDP) Tabs & Funnel Premium Styling
   ========================================================================== */

/* ── PDP Specifications Tabs ────────────────────────────────────────────── */
.sp-pdp-tabs:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    margin-top: 48px;
    margin-bottom: 60px;
}

.sp-pdp-tabs__nav:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    border-bottom: 2px solid #e2e8f0;
    margin-bottom: 32px;
    padding-bottom: 0;
}

.sp-pdp-tabs__btn:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    background: none !important;
    border: none !important;
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    color: #4a5568 !important;
    cursor: pointer;
    padding: 12px 24px !important;
    border-bottom: 3px solid transparent !important;
    margin-bottom: -2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    outline: none !important;
    position: relative;
}

.sp-pdp-tabs__btn:where(:not(.spc,.spc *),.spc-functional,.spc-functional *)::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #f0a500;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.sp-pdp-tabs__btn:hover:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    color: #f0a500 !important;
}

.sp-pdp-tabs__btn:hover:where(:not(.spc,.spc *),.spc-functional,.spc-functional *)::after {
    transform: scaleX(0.5);
}

.sp-pdp-tabs__btn.is-active:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    color: #1a202c !important;
    font-weight: 800 !important;
}

.sp-pdp-tabs__btn.is-active:where(:not(.spc,.spc *),.spc-functional,.spc-functional *)::after {
    transform: scaleX(1);
    background-color: #f0a500;
}

.sp-pdp-tabs__panel:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    display: none;
    animation: fadeIn 0.4s ease forwards;
}

.sp-pdp-tabs__panel.is-active:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    display: block !important;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Technical Data Tables ──────────────────────────────────────────────── */
.sp-pdp-tabs__panel table:where(:not(.spc,.spc *),.spc-functional,.spc-functional *),
.spr-content-container table:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    width: 100% !important;
    border-collapse: separate !important;
    border-spacing: 0 !important;
    margin: 24px 0 32px !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02) !important;
}

.sp-pdp-tabs__panel th:where(:not(.spc,.spc *),.spc-functional,.spc-functional *),
.spr-content-container th:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    background-color: #1a202c !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    padding: 14px 20px !important;
    font-size: 0.95rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    border-bottom: 2px solid #f0a500 !important;
    text-align: left !important;
}

.sp-pdp-tabs__panel td:where(:not(.spc,.spc *),.spc-functional,.spc-functional *),
.spr-content-container td:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    padding: 14px 20px !important;
    border-bottom: 1px solid #edf2f7 !important;
    border-right: 1px solid #edf2f7 !important;
    color: #4a5568 !important;
    font-size: 0.98rem !important;
    background-color: #ffffff;
    transition: background-color 0.2s ease;
}

.sp-pdp-tabs__panel td:last-child:where(:not(.spc,.spc *),.spc-functional,.spc-functional *),
.spr-content-container td:last-child:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    border-right: none !important;
}

.sp-pdp-tabs__panel tr:last-child td:where(:not(.spc,.spc *),.spc-functional,.spc-functional *),
.spr-content-container tr:last-child td:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    border-bottom: none !important;
}

.sp-pdp-tabs__panel tr:nth-child(even) td:where(:not(.spc,.spc *),.spc-functional,.spc-functional *),
.spr-content-container tr:nth-child(even) td:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    background-color: #f8fafc;
}

.sp-pdp-tabs__panel tr:hover td:where(:not(.spc,.spc *),.spc-functional,.spc-functional *),
.spr-content-container tr:hover td:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    background-color: rgba(240, 165, 0, 0.04) !important;
}

/* ── Content Image CLS Correction & Styling ───────────────────────────── */
.spr-content-container img:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
    margin: 24px auto !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05) !important;
    border: 1px solid #e2e8f0 !important;
    transition: transform 0.3s ease !important;
}

.spr-content-container img:hover:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    transform: scale(1.01);
}

/* ── Legacy Page Builder (Gdlr Core) Overrides ─────────────────────────── */
.spr-content-container .gdlr-core-portfolio-item-holder:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 32px !important;
    margin: 40px 0 !important;
    padding: 0 !important;
}

.spr-content-container .gdlr-core-item-list:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    background: #ffffff !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04) !important;
    overflow: hidden !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border: 1px solid #e2e8f0 !important;
    display: flex !important;
    flex-direction: column !important;
    margin: 0 !important;
    padding: 0 !important;
}

.spr-content-container .gdlr-core-item-list:hover:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    transform: translateY(-6px) !important;
    box-shadow: 0 12px 30px rgba(240, 165, 0, 0.12) !important;
    border-color: #f0a500 !important;
}

/* Force consistent layout rendering: Image on top, Content on bottom */
.spr-content-container .gdlr-core-portfolio-thumbnail-wrap:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    order: 1 !important;
}

.spr-content-container .gdlr-content-container .gdlr-core-portfolio-content-wrap:where(:not(.spc,.spc *),.spc-functional,.spc-functional *),
.spr-content-container .gdlr-core-portfolio-content-wrap:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    order: 2 !important;
    padding: 24px !important;
    display: flex !important;
    flex-direction: column !important;
    flex-grow: 1 !important;
    box-sizing: border-box !important;
}

.spr-content-container .gdlr-core-portfolio-content:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    color: #475569 !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
    font-weight: 500 !important;
}

.spr-content-container .gdlr-core-item-list img:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    width: 100% !important;
    height: 220px !important;
    object-fit: cover !important;
    border-bottom: 3px solid #f0a500 !important;
    margin: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    order: 1 !important;
}

/* ── Hero B2B Actions (Add to Quote & CAD Buttons) styling updates ────── */
.sp-rfq-qty-selector button:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    transition: background-color 0.2s, color 0.2s;
}
.sp-rfq-qty-selector button:hover:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    background-color: #f1f5f9;
    color: #f0a500;
}

#sp-rfq-add-to-quote-btn:hover:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    background-color: #f0a500 !important;
    color: #1a202c !important;
    box-shadow: 0 4px 14px rgba(240, 165, 0, 0.35);
}

.sp-cad-download-trigger:hover:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    border-color: #f0a500 !important;
    color: #f0a500 !important;
    background-color: rgba(240, 165, 0, 0.02) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* ── Product Gallery Layout Override ── */
.spr-content-container .product-gallery:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(200px, 320px)) !important;
    gap: 20px !important;
    justify-content: center !important;
    margin: 30px 0 !important;
}

.spr-content-container .gallery-item:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    border: 1px solid #e2e8f0 !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    background: #ffffff !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03) !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

.spr-content-container .gallery-item:hover:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08) !important;
}

.spr-content-container .gallery-item img:where(:not(.spc,.spc *),.spc-functional,.spc-functional *){
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    margin: 0 !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

/*# sourceURL=steelpallet-critical-inline-inline-css */