/** Shopify CDN: Minification failed

Line 444:0 All "@import" rules must come first

**/
/* =====================================================================
   Products mega menu — WordPress-style tabbed panel (v5)
   JS hover-driven, 1180px wide, matches WordPress reference
   ===================================================================== */

.mega-menu__content--products {
  padding: 0;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.10);
  border-top: 1px solid rgba(var(--color-foreground), 0.08);
  text-align: left;
}

/* Use site font, not Dawn's default body font */
.mega-menu__content--products .mp,
.mega-menu__content--products .mp * {
  font-family: inherit;
}

/* ---- OUTER container: 1180px, centered ---- */
.mega-menu__content--products,
body .mega-menu__content--products {
  width: 1180px !important;
  max-width: calc(100vw - 40px) !important;
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%) !important;
  margin: 0 !important;
}

/* ---- INNER grid: sidebar | image | product list ---- */
.mega-menu__content--products .mp,
.mega-menu__content.mega-menu__content--products .mp {
  display: grid !important;
  grid-template-columns: 260px 300px 1fr !important;
  width: 100% !important;
  margin: 0 !important;
  min-height: 400px !important;
  padding: 0 !important;
  text-align: left !important;
}

/* Defeat any inherited text-align: right */
.mega-menu__content--products .mp,
.mega-menu__content--products .mp *,
.mega-menu__content--products .mp__panel,
.mega-menu__content--products .mp__list,
.mega-menu__content--products .mp__group,
.mega-menu__content--products .mp__group-title,
.mega-menu__content--products .mp__link {
  text-align: left !important;
}

/* ---- Left rail ---- */
.mp__rail {
  background: #fff;
  border-right: 1px solid rgba(var(--color-foreground), 0.08);
  padding: 2rem 0;
}

.mp__rail-title {
  font-size: 1.6rem !important;
  font-weight: 700 !important;
  color: #111 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase;
  margin: 0 0 1.4rem 0 !important;
  padding: 0 2rem !important;
  text-align: left !important;
}

.mp__rail-list {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mp__rail-list li { margin: 0; padding: 0; }

.mega-menu__content--products .mp__rail-item {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
  padding: 1.2rem 2rem !important;
  font-size: 1.4rem !important;
  font-weight: 400 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: #1a1a1a !important;
  background: transparent !important;
  border: none !important;
  cursor: pointer !important;
  user-select: none !important;
  text-align: left !important;
  font-family: inherit !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  line-height: 1.2 !important;
  min-height: 44px !important;
  transition: background 0.15s ease, color 0.15s ease;
}

.mega-menu__content--products .mp__rail-item:hover,
.mega-menu__content--products .mp__rail-item.is-active {
  background: #1a1a1a !important;
  color: #fff !important;
  font-weight: 400 !important;
}

.mp__chevron {
  font-size: 1.6rem;
  opacity: 0.4;
  margin-left: 0.8rem;
  transition: opacity 0.15s ease;
}

.mp__rail-item:hover .mp__chevron,
.mp__rail-item.is-active .mp__chevron {
  opacity: 1;
}

/* ---- Panels container ---- */
.mp__panels {
  display: contents;
}

.mp__panel {
  display: none !important;
  grid-column: 2 / 4 !important;
  grid-template-columns: 300px 1fr !important;
  gap: 0 !important;
}

.mp__panel.is-active {
  display: grid !important;
}

/* ---- Center feature image + overlay ---- */
.mp__feature {
  position: relative;
  background: #1a1a1a;
  overflow: hidden;
  min-height: 400px;
}

.mp__feature-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mp__feature-img--placeholder {
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
}

.mp__feature::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0) 100%);
  z-index: 1;
}

.mp__feature-overlay {
  position: absolute;
  left: 2rem;
  top: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  color: #fff;
  z-index: 2;
  text-align: left;
}

.mp__feature-title {
  font-size: 2rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.15 !important;
  color: #fff !important;
}

.mp__feature-cta {
  display: inline-block;
  padding: 0.8rem 2rem !important;
  border: 1px solid #fff !important;
  background: transparent;
  color: #fff !important;
  font-size: 1.1rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.25em !important;
  text-transform: uppercase;
  text-decoration: none;
  margin-top: 0.8rem !important;
  transition: background 0.15s ease, color 0.15s ease;
}

.mp__feature-cta:hover {
  background: #fff;
  color: #1a1a1a !important;
}

/* ---- Right product list — CSS multi-column ---- */
.mega-menu__content--products .mp__list {
  display: block !important;
  column-count: 2 !important;
  column-gap: 3rem !important;
  column-fill: balance !important;
  padding: 2.5rem 3rem !important;
  width: auto !important;
}

.mega-menu__content--products .mp__group {
  display: block !important;
  break-inside: avoid !important;
  -webkit-column-break-inside: avoid !important;
  page-break-inside: avoid !important;
  margin-bottom: 2rem !important;
  min-width: 0 !important;
  max-width: 100% !important;
}

.mega-menu__content--products .mp__group-title {
  font-size: 1.4rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase;
  color: #111 !important;
  margin: 0 0 1rem 0 !important;
  line-height: 1.25 !important;
  text-align: left;
}

.mp__group-list {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mp__group-list li { margin: 0; padding: 0; }

.mega-menu__content--products .mp__link {
  display: block !important;
  padding: 0.4rem 0 !important;
  font-size: 1.3rem !important;
  font-weight: 400 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  line-height: 1.5 !important;
  color: #2a2a2a !important;
  text-decoration: none;
  text-align: left;
  transition: color 0.15s ease;
}

.mega-menu__content--products .mp__link:hover,
.mega-menu__content--products .mp__link:focus-visible {
  color: #c41e2e !important;
}

/* ---- Mobile ---- */
@media screen and (max-width: 989px) {
  .mega-menu__content--products,
  body .mega-menu__content--products {
    width: 100% !important;
    left: 0 !important;
    transform: none !important;
  }
  .mega-menu__content--products .mp,
  .mega-menu__content.mega-menu__content--products .mp {
    grid-template-columns: 1fr !important;
    width: 100% !important;
    min-height: 0 !important;
  }
  .mp__panel {
    grid-template-columns: 1fr !important;
  }
  .mp__feature {
    min-height: 180px;
  }
  .mega-menu__content--products .mp__list {
    column-count: 1 !important;
    padding: 1.6rem !important;
  }
}

/* ============================================
   v6 — Final polish: EXPLORE button, alignment, sizing
   ============================================ */

/* --- 1. EXPLORE button — force visible border --- */
.mega-menu__content--products .mp__feature-cta,
.mega-menu__content--products a.mp__feature-cta {
  display: inline-block !important;
  padding: 9px 18px !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  color: #fff !important;
  background: transparent !important;
  background-color: transparent !important;
  border: 1px solid #fff !important;
  border-radius: 0 !important;
  text-decoration: none !important;
  text-shadow: none !important;
  box-shadow: none !important;
  line-height: 1 !important;
  margin-top: 12px !important;
  transition: all 0.15s ease !important;
}

.mega-menu__content--products .mp__feature-cta:hover {
  background: #fff !important;
  background-color: #fff !important;
  color: #000 !important;
}

/* --- 2. Force feature title + EXPLORE to left-align --- */
.mega-menu__content--products .mp__feature-overlay {
  align-items: flex-start !important;
  text-align: left !important;
  left: 24px !important;
  top: 24px !important;
  right: 24px !important;
}

.mega-menu__content--products .mp__feature-title {
  text-align: left !important;
  margin: 0 !important;
}

/* --- 3. Fix huge space under Accessories ---
   Make sidebar background fill the entire panel height */
.mega-menu__content--products .mp__rail {
  align-self: stretch !important;
  height: auto !important;
  min-height: 100% !important;
}

/* --- 4. Pixel-exact font sizes to match WordPress ---
   Override rem-based sizing with explicit pixels */
.mega-menu__content--products .mp__rail-title {
  font-size: 16px !important;       /* MACHINES */
  letter-spacing: 1.5px !important;
}

.mega-menu__content--products .mp__rail-item {
  font-size: 14px !important;       /* CO2 LASERS, UV/CO2 etc */
  letter-spacing: 0.5px !important;
  padding: 14px 22px !important;
  min-height: 48px !important;
}

.mega-menu__content--products .mp__feature-title {
  font-size: 22px !important;       /* CO2 LASERS overlay */
  letter-spacing: 1px !important;
}

.mega-menu__content--products .mp__group-title {
  font-size: 13px !important;       /* ENTRY LEVEL, MID-RANGE */
  letter-spacing: 1.2px !important;
  margin-bottom: 8px !important;
}

.mega-menu__content--products .mp__link {
  font-size: 12px !important;       /* EVO DESKTOP, LS 1420 */
  letter-spacing: 0.8px !important;
  padding: 6px 0 !important;
}

/* ============================================
   v7 — Sidebar height fix + font weights
   ============================================ */

/* --- 1. Sidebar fills panel exactly (no extra space) --- */
.mega-menu__content--products .mp {
  align-items: stretch !important;
}

.mega-menu__content--products .mp__rail {
  padding: 24px 0 0 0 !important;  /* top padding only — no bottom padding */
  align-self: stretch !important;
  display: flex !important;
  flex-direction: column !important;
}

.mega-menu__content--products .mp__rail-list {
  flex: 1 !important;  /* list grows to fill remaining height */
}

/* --- 3. Font weights — match WordPress reference --- */

/* MACHINES heading — BOLD */
.mega-menu__content--products .mp__rail-title {
  font-weight: 700 !important;
}

/* Sidebar tabs (CO2 LASERS, etc.) — REGULAR */
.mega-menu__content--products .mp__rail-item,
.mega-menu__content--products .mp__rail-item:hover,
.mega-menu__content--products .mp__rail-item.is-active {
  font-weight: 400 !important;
}

/* Feature title — BOLD */
.mega-menu__content--products .mp__feature-title {
  font-weight: 700 !important;
}

/* Subheadings (ENTRY LEVEL, MID-RANGE) — BOLD */
.mega-menu__content--products .mp__group-title {
  font-weight: 700 !important;
}

/* Product links (EVO DESKTOP, etc.) — REGULAR */
.mega-menu__content--products .mp__link {
  font-weight: 400 !important;
}

/* ============================================
   v8 — Match WordPress fonts + kill bottom gap
   ============================================ */

/* --- 1. Load Sofia Pro from Typekit to match WordPress --- */
@import url("https://use.typekit.net/obs3fmz.css");

/* Override ALL mega menu text to use Sofia Pro */
.mega-menu__content--products .mp,
.mega-menu__content--products .mp *,
.mega-menu__content--products .mp__rail-title,
.mega-menu__content--products .mp__rail-item,
.mega-menu__content--products .mp__feature-title,
.mega-menu__content--products .mp__feature-cta,
.mega-menu__content--products .mp__group-title,
.mega-menu__content--products .mp__link {
  font-family: "sofia-pro", "Helvetica Neue", Helvetica, Arial, sans-serif !important;
}

/* --- 2. Kill the bottom gap under last sidebar item --- */
.mega-menu__content--products .mp__rail {
  padding: 0 !important;
  align-self: stretch !important;
  display: block !important;
}

.mega-menu__content--products .mp__rail-title {
  padding: 24px 22px 14px !important;
  margin: 0 !important;
}

.mega-menu__content--products .mp__rail-list {
  flex: none !important;
  display: block !important;
}

/* --- 3. Weight corrections to match WordPress exactly ---
   Looking at WP reference:
   - Subheadings (TUBE & POWER SUPPLIES) = regular weight 500
   - Items (DESIGN SOFTWARE) = regular weight 500
   - Both are similar weight, just slightly different sizes */
.mega-menu__content--products .mp__group-title {
  font-weight: 600 !important;     /* slightly heavier than items */
  font-size: 13px !important;
  letter-spacing: 1px !important;
  color: #2a2a2a !important;
}

.mega-menu__content--products .mp__link {
  font-weight: 500 !important;
  font-size: 13px !important;
  letter-spacing: 0.8px !important;
  color: #2a2a2a !important;
}

/* MACHINES heading — clearly bolder than items */
.mega-menu__content--products .mp__rail-title {
  font-weight: 700 !important;
  font-size: 14px !important;
  letter-spacing: 1.5px !important;
  color: #111 !important;
}

/* Sidebar tab items — slightly heavier than products */
.mega-menu__content--products .mp__rail-item {
  font-weight: 500 !important;
  font-size: 13px !important;
  letter-spacing: 0.8px !important;
}

/* ============================================
   v9 — FINAL: kill sidebar stretch (gap fix)
   ============================================ */
.mega-menu__content--products .mp {
  align-items: start !important;
}

.mega-menu__content--products .mp__rail {
  align-self: start !important;
  height: auto !important;
  min-height: 0 !important;
}

/* ============================================
   v10 — Force sidebar shrink + heavier hierarchy
   ============================================ */

/* Remove all min-height pressure on the grid */
.mega-menu__content--products .mp,
.mega-menu__content.mega-menu__content--products .mp {
  min-height: 0 !important;
  align-items: start !important;
}

/* Rail — only as tall as content */
.mega-menu__content--products .mp__rail {
  align-self: start !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
}

/* Feature image column — let it be tall, that's fine, but don't propagate up */
.mega-menu__content--products .mp__feature {
  min-height: 360px !important;
  align-self: start !important;
}

.mega-menu__content--products .mp__panel {
  align-self: start !important;
}

/* --- TYPOGRAPHY: Heavier hierarchy --- */

/* Subheadings: bolder + slightly bigger to stand apart from products */
.mega-menu__content--products .mp__group-title {
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 1.5px !important;
  color: #1a1a1a !important;
  margin-bottom: 12px !important;
}

/* Product links: lighter weight to create contrast vs subheadings */
.mega-menu__content--products .mp__link {
  font-size: 13px !important;
  font-weight: 400 !important;
  letter-spacing: 0.5px !important;
  color: #2a2a2a !important;
  padding: 7px 0 !important;
}

/* Sidebar tabs: clearly visible weight */
.mega-menu__content--products .mp__rail-item {
  font-weight: 500 !important;
  font-size: 14px !important;
  letter-spacing: 0.5px !important;
}

/* MACHINES heading: distinctly heavier */
.mega-menu__content--products .mp__rail-title {
  font-size: 14px !important;
  font-weight: 800 !important;
  letter-spacing: 1.5px !important;
  color: #111 !important;
}