/** Shopify CDN: Minification failed

Line 301:15 Unexpected "{"
Line 301:26 Expected ":"
Line 301:30 Unexpected "{"
Line 310:15 Unexpected "{"
Line 310:26 Expected ":"
Line 326:15 Unexpected "{"
Line 326:26 Expected ":"
Line 335:15 Unexpected "{"
Line 335:26 Expected ":"
Line 358:17 Unexpected "{"
... and 14 more hidden warnings

**/
/* ================================================================
   VM³ PUREFIER — GLOBAL CSS
   Omega Supplies UK Ltd | Shopify Theme
   ================================================================ */

/* Google Fonts fallback: Barlow Condensed + Source Sans 3 */




  .hero__trust-item {
    font-size: 18px !important;
    line-height: 28px !important;
    color: #fff !important;
  }

  .hero__trust-icon {
    background: none !important;
    font-size: 25px !important;
  }


.hero__title {
    font-size: clamp(44px, 6.5vw, 70px) !important;
}


.pdp__trust-item.hero__trust-item  {
  color: #676767 !important;
}

:root {
  /* ── Brand Colours ── */
  --blue:         #1a8fd1;
  --blue-dark:    #0b4f80;
  --blue-deep:    #063657;
  --blue-mid:     #2aa3e8;
  --blue-light:   #cee8f7;
  --blue-xlight:  #eaf5fc;
  --green:        #00a651;
  --green-dark:   #007339;
  --green-light:  #d4f0e3;
  --gold:         #369b47;

  /* ── Neutrals ── */
  --charcoal:     #084d78;
  --ink:          #2d3748;
  --slate:        #4a5568;
  --mist:         #718096;
  --smoke:        #e8edf4;
  --ghost:        #f2f6fa;
  --white:        #ffffff;

  /* ── Typography ── */
  --font-heading: 'Barlow Condensed', sans-serif;
  --font-body:    'Source Sans 3', sans-serif;

  /* ── Spacing Scale ── */
  --sp-1:   4px;
  --sp-2:   8px;
  --sp-3:   12px;
  --sp-4:   16px;
  --sp-5:   20px;
  --sp-6:   24px;
  --sp-8:   32px;
  --sp-10:  40px;
  --sp-12:  48px;
  --sp-16:  64px;
  --sp-20:  80px;
  --sp-24:  96px;

  /* ── Border Radius ── */
  --r-sm:   4px;
  --r-md:   8px;
  --r-lg:   12px;
  --r-pill: 40px;

  /* ── Shadows ── */
  --shadow-sm:  0 1px 4px rgba(0, 0, 0, 0.06);
  --shadow-md:  0 2px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg:  0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-blue: 0 8px 24px rgba(26, 143, 209, 0.20);

  /* ── Transitions ── */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  /* ── Layout ── */
  --max-width: 1260px;
  --gutter:    28px;
}

/* ── Reset ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }
input, select, textarea {
  font-family: var(--font-body);
  font-size: 1rem;
}

/* ── Focus Styles (Accessibility) ── */
:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
  border-radius: var(--r-sm);
}

/* ── Screen Reader Only ── */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

/* ── Layout Container ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ── Section Base ── */
.section { padding: var(--sp-20) 0; }

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.section-eyebrow--green { color: var(--green); }

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -1px;
  line-height: 1.0;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.section-title--white { color: var(--white); }

.section-intro {
  font-size: 17px;
  color: var(--slate);
  line-height: 1.65;
  max-width: 600px;
}
.section-intro--white { color: rgba(255, 255, 255, 0.78); }

/* ── Grids ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ── Toast ── */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(16px);
  background: var(--charcoal);
  color: var(--white);
  padding: 13px 22px;
  border-radius: var(--r-md);
  font-size: 15px;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 600;
  white-space: nowrap;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 10px;
}
.toast.is-active {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.toast-check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}
.product-card__body a.product-card__title{
  padding-left: 0!important
}
/* ── Animations ── */
@keyframes vm3-fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0);    }
}
.animate-fade-up {
  animation: vm3-fade-up 0.5s ease both;
}
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }

/* ── Utilities ── */
.text-center { text-align: center; }
.text-blue   { color: var(--blue); }
.text-green  { color: var(--green); }
.text-white  { color: var(--white); }
.text-muted  { color: var(--mist); }
.bg-ghost    { background: var(--ghost); }
.bg-charcoal { background: var(--charcoal); }
.bg-blue-deep { background: var(--blue-deep); }
.visually-hidden { @extend .sr-only; }

/* ── Stars Rating ── */
.stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 2px;
}

/* ── Skip Link (Accessibility) ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--sp-4);
  background: var(--blue-dark);
  color: var(--white);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--r-sm);
  z-index: 999;
  font-weight: 700;
}
.skip-link:focus { top: var(--sp-4); }

/* Navigation menu links */
.ai-nav-links-{{ ai_gen_id }} {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ai-nav-links-{{ ai_gen_id }} a {
   display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 13px!important;
  font-family: var(--hf);
  font-size: 15px;
  font-weight: 700!important;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: #2d3748;
  border-radius: 4px;
  transition: background .15s,color .15s;
  
}

.ai-nav-links-{{ ai_gen_id }} a:hover {
  background: none;
  
}
li.ai-nav-menu-avzrydmhkeujjqxlznaigenblock5cd8d82wf3fak{
  padding: 2px 3px;
}

/* Dropdown arrow */
.ai-nav-links-{{ ai_gen_id }} .has-dropdown > a::after {
  content: ' ▾';
  font-size: 10px;
}
.main-nav a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 13px;
  font-family: var(--hf);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--ink);
  border-radius: 4px;
  transition: background .15s,color .15s;
  white-space: nowrap;
}
.ai-nav-dropdown-mainheader{
      min-width: 270px!important;
}
/* Custom footer link styling */
.ai-footer-link-{{ ai_gen_id }} {
  color: rgba(255, 255, 255, 0.48);
  text-decoration: none;
  font-size: {{ block.settings.link_font_size }}px;
  transition: color 0.3s ease;
  margin-top: 5px;
  margin-bottom: 5px;
  display: block;
}

.ai-footer-link-{{ ai_gen_id }}:hover {
  
}
/* Mobile overflow fix */
html, body {
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
}
.ai-nav-quote-btn-{{ ai_gen_id }} {
  display: none;
}


@media (max-width: 768px) {
  .hero__inner {
    padding: 60px 20px;
    display: block!important;
    width: 100%;
  }
  .hero__product-content h3{font-size:13px!important;}
  .ai-nav-quote-btn-{{ ai_gen_id }} {
  display: none;
}

  .ai_gen_block_5cd8d82_WF3FAK,
.ai_gen_block_fbb0c1f_VbH8cx {
  width: 100%;
  margin-left: 0 !important;
  margin-right: 0 !important;
  overflow-x: hidden;
}
.ai-nav-quote-btn-avzrydmhkeujjqxlznaigenblock5cd8d82wf3fak{display:none;}
}
