/** Shopify CDN: Minification failed

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

**/
/* =============================================================================
   MightyGenerators.com — Custom Styles
   ============================================================================= */

/* -----------------------------------------------------------------------------
   Meganav — Column Heading Word Wrap Fix
   Prevents long headings like "Emergency Preparedness" from bleeding into
   the adjacent column.
   ----------------------------------------------------------------------------- */
.mega-nav__list-title,
.mega-nav__list-heading,
.mega-nav__sublist-link--heading,
.mega-nav [class*="heading"],
.mega-nav [class*="title"] {
  white-space: normal !important;
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

/* -----------------------------------------------------------------------------
   CSS Custom Properties (Design Tokens)
   ----------------------------------------------------------------------------- */
:root {
  --mg-navy:     #0D1B2A;
  --mg-steel:    #1B4965;
  --mg-orange:   #E86F3A;
  --mg-offwhite: #F8F9FA;
  --mg-gray:     #EDF2F4;
  --mg-green:    #2D6A4F;
  --mg-red:      #C1292E;
  --mg-gold:     #F5A623;
  --mg-white:    #FFFFFF;
  --font-heading: 'Oswald', sans-serif;
  --font-body:    'Inter', sans-serif;
  --mg-radius:   8px;
  --mg-radius-lg: 16px;
  --mg-radius-full: 9999px;
  --mg-transition: 0.2s ease;
  --mg-shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --mg-shadow-md: 0 4px 20px rgba(0,0,0,0.12);
}

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@500;600;700&family=Inter:wght@400;500;600&display=swap');

/* -----------------------------------------------------------------------------
   MG Email Capture Section
   ----------------------------------------------------------------------------- */
.mg-email-capture {
  font-family: var(--font-body, 'Inter', sans-serif);
}

.mg-email-capture .mg-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.mg-email-capture__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.mg-email-capture__eyebrow {
  font-family: var(--font-heading, 'Montserrat', sans-serif);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mg-orange, #E86F3A);
  margin-bottom: 16px;
}

.mg-email-capture {
  border-top: 4px solid var(--mg-orange, #E86F3A);
}

.mg-email-capture__heading {
  font-family: var(--font-heading, 'Montserrat', sans-serif);
  font-weight: 700;
  font-size: clamp(28px, 3vw, 40px);
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.mg-email-capture__heading span { color: #E86F3A; }

.mg-email-capture__desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
  margin-bottom: 24px;
}

.mg-email-capture__bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mg-email-capture__bullet {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
}

.mg-email-capture__bullet::before {
  content: '✓';
  width: 20px;
  height: 20px;
  background: var(--mg-green, #2D6A4F);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #ffffff;
  flex-shrink: 0;
  text-align: center;
  line-height: 20px;
}

.mg-email-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mg-email-form__input {
  width: 100%;
  padding: 16px 20px;
  border-radius: var(--mg-radius, 8px);
  border: 2px solid rgba(0,15,82,0.2);
  background: #ffffff;
  color: #000f52;
  font-size: 16px;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.mg-email-form__input::placeholder { color: #999999; }
.mg-email-form__input:focus {
  outline: none;
  border-color: #E86F3A;
}

.mg-email-form__submit {
  padding: 16px 32px;
  background: var(--mg-orange, #E86F3A);
  color: #ffffff;
  border: none;
  border-radius: var(--mg-radius, 8px);
  font-family: var(--font-heading, 'Montserrat', sans-serif);
  font-weight: 700;
  font-size: 17px;
  cursor: pointer;
  transition: background 0.2s;
}
.mg-email-form__submit:hover { background: #d05e2a; }

.mg-email-form__disclaimer {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .mg-email-capture__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* -----------------------------------------------------------------------------
   MG Social Proof Bar
   ----------------------------------------------------------------------------- */
.mg-spb__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.mg-spb__item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  justify-content: center;
  padding: 0 16px;
}

.mg-spb__icon {
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
}

.mg-spb__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mg-spb__number {
  font-family: var(--font-heading, 'Montserrat', sans-serif);
  font-weight: 700;
  font-size: 18px;
  color: #E86F3A;
  line-height: 1.1;
  white-space: nowrap;
}

.mg-spb__label {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  line-height: 1.3;
  white-space: nowrap;
}

.mg-spb__divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .mg-spb__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 0 16px;
  }
  .mg-spb__divider { display: none; }
  .mg-spb__item {
    justify-content: flex-start;
    padding: 8px 12px;
    border-radius: 8px;
    background: rgba(255,255,255,0.05);
  }
  .mg-spb__number { font-size: 15px; }
  .mg-spb__label { font-size: 11px; white-space: normal; }
}

/* -----------------------------------------------------------------------------
   MG Value Props
   ----------------------------------------------------------------------------- */
.mg-vp__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.mg-vp__header {
  text-align: center;
  margin-bottom: 48px;
}

.mg-vp__eyebrow {
  font-family: var(--font-heading, 'Montserrat', sans-serif);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mg-orange, #E86F3A);
  margin-bottom: 10px;
}

.mg-vp__heading {
  font-family: var(--font-heading, 'Montserrat', sans-serif);
  font-weight: 700;
  font-size: clamp(24px, 2.5vw, 34px);
  color: #000f52;
  line-height: 1.2;
}

.mg-vp__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.mg-vp__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px 24px;
  background: #ffffff;
  border-radius: var(--mg-radius-lg, 16px);
  box-shadow: var(--mg-shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mg-vp__item:hover {
  transform: translateY(-3px);
  box-shadow: var(--mg-shadow-md);
}

.mg-vp__icon-wrap {
  width: 72px;
  height: 72px;
  background: rgba(232, 111, 58, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--mg-orange, #E86F3A);
  flex-shrink: 0;
}

.mg-vp__title {
  font-family: var(--font-heading, 'Montserrat', sans-serif);
  font-weight: 700;
  font-size: 17px;
  color: #000f52;
  margin-bottom: 10px;
  line-height: 1.3;
}

.mg-vp__desc {
  font-size: 14px;
  color: #555555;
  line-height: 1.65;
  margin: 0 0 14px;
  flex: 1;
}

.mg-vp__link {
  font-family: var(--font-heading, 'Montserrat', sans-serif);
  font-weight: 600;
  font-size: 13px;
  color: var(--mg-orange, #E86F3A);
  text-decoration: none;
  border-bottom: 1px solid rgba(232, 111, 58, 0.3);
  transition: border-color 0.2s;
}

.mg-vp__link:hover {
  border-color: var(--mg-orange, #E86F3A);
}

@media (max-width: 1024px) {
  .mg-vp__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .mg-vp__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .mg-vp__item {
    padding: 28px 20px;
  }
}

/* -----------------------------------------------------------------------------
   MG How It Works
   ----------------------------------------------------------------------------- */
.mg-hiw__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.mg-hiw__header {
  text-align: center;
  margin-bottom: 56px;
}

.mg-hiw__eyebrow {
  font-family: var(--font-heading, 'Montserrat', sans-serif);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mg-orange, #E86F3A);
  margin-bottom: 12px;
}

.mg-hiw__heading {
  font-family: var(--font-heading, 'Montserrat', sans-serif);
  font-weight: 700;
  font-size: clamp(26px, 3vw, 38px);
  color: #000f52;
  margin-bottom: 12px;
  line-height: 1.2;
}

.mg-hiw__subheading {
  font-size: 17px;
  color: #555555;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

.mg-hiw__steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.mg-hiw__step {
  flex: 1;
  max-width: 320px;
  text-align: center;
  padding: 40px 32px;
  background: #F8F9FA;
  border-radius: var(--mg-radius-lg, 16px);
  position: relative;
}

.mg-hiw__step-number {
  width: 52px;
  height: 52px;
  background: var(--mg-orange, #E86F3A);
  color: #ffffff;
  font-family: var(--font-heading, 'Montserrat', sans-serif);
  font-weight: 700;
  font-size: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.mg-hiw__step-icon {
  font-size: 36px;
  margin-bottom: 16px;
  line-height: 1;
}

.mg-hiw__step-title {
  font-family: var(--font-heading, 'Montserrat', sans-serif);
  font-weight: 700;
  font-size: 20px;
  color: #000f52;
  margin-bottom: 12px;
  line-height: 1.25;
}

.mg-hiw__step-desc {
  font-size: 15px;
  color: #555555;
  line-height: 1.65;
  margin: 0;
}

.mg-hiw__connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  margin-top: 60px;
  flex-shrink: 0;
}

.mg-hiw__cta {
  text-align: center;
  margin-top: 48px;
}

.mg-hiw__cta-btn {
  display: inline-block;
  padding: 16px 40px;
  background: var(--mg-orange, #E86F3A);
  color: #ffffff;
  font-family: var(--font-heading, 'Montserrat', sans-serif);
  font-weight: 700;
  font-size: 16px;
  border-radius: var(--mg-radius-full, 9999px);
  text-decoration: none;
  transition: background 0.2s;
}

.mg-hiw__cta-btn:hover {
  background: #d05e2a;
}

@media (max-width: 768px) {
  .mg-hiw__steps {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .mg-hiw__step {
    max-width: 100%;
    width: 100%;
  }
  .mg-hiw__connector {
    margin-top: 0;
    transform: rotate(90deg);
  }
}

/* -----------------------------------------------------------------------------
   MG Use-Case Grid
   ----------------------------------------------------------------------------- */
.mg-ucg__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.mg-ucg__header {
  text-align: center;
  margin-bottom: 48px;
}

.mg-ucg__eyebrow {
  font-family: var(--font-heading, 'Montserrat', sans-serif);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mg-orange, #E86F3A);
  margin-bottom: 12px;
}

.mg-ucg__heading {
  font-family: var(--font-heading, 'Montserrat', sans-serif);
  font-weight: 700;
  font-size: clamp(26px, 3vw, 38px);
  color: #000f52;
  margin-bottom: 12px;
  line-height: 1.2;
}

.mg-ucg__subheading {
  font-size: 17px;
  color: #555555;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

.mg-ucg__grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}

.mg-ucg__card {
  display: block;
  position: relative;
  border-radius: var(--mg-radius-lg, 16px);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mg-ucg__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.2);
}

.mg-ucg__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 15, 82, 0.88) 0%,
    rgba(0, 15, 82, 0.45) 50%,
    rgba(0, 15, 82, 0.15) 100%
  );
  transition: background 0.3s ease;
}

.mg-ucg__card:hover .mg-ucg__card-overlay {
  background: linear-gradient(
    to top,
    rgba(0, 15, 82, 0.95) 0%,
    rgba(0, 15, 82, 0.6) 55%,
    rgba(0, 15, 82, 0.2) 100%
  );
}

.mg-ucg__card-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.mg-ucg__card-icon {
  font-size: 32px;
  margin-bottom: 10px;
  line-height: 1;
}

.mg-ucg__card-title {
  font-family: var(--font-heading, 'Montserrat', sans-serif);
  font-weight: 700;
  font-size: clamp(17px, 1.6vw, 22px);
  color: #ffffff;
  margin-bottom: 6px;
  line-height: 1.25;
}

.mg-ucg__card-tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
  margin-bottom: 8px;
}

.mg-ucg__card-price {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.05em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.mg-ucg__card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading, 'Montserrat', sans-serif);
  font-weight: 700;
  font-size: 13px;
  color: #ffffff;
  background: var(--mg-orange, #E86F3A);
  padding: 8px 16px;
  border-radius: var(--mg-radius-full, 9999px);
  transition: background 0.2s;
  width: fit-content;
}

.mg-ucg__card:hover .mg-ucg__card-cta {
  background: #d05e2a;
}

/* 6-card layout: 3+3 */
.mg-ucg__grid--6 {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1024px) {
  .mg-ucg__grid,
  .mg-ucg__grid--6 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .mg-ucg__grid,
  .mg-ucg__grid--6 {
    grid-template-columns: 1fr;
  }
  .mg-ucg__card {
    aspect-ratio: 16 / 9;
  }
  .mg-ucg__card-content {
    padding: 16px;
  }
  .mg-ucg__card-icon { font-size: 24px; }
  .mg-ucg__header { margin-bottom: 32px; }
}

/* -----------------------------------------------------------------------------
   Hero — Dual CTA Button Row
   ----------------------------------------------------------------------------- */
.image-with-text-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.image-with-text-button--secondary {
  background: transparent !important;
  border: 2px solid #ffffff !important;
  color: #ffffff !important;
}

.image-with-text-button--secondary:hover {
  background: rgba(255,255,255,0.15) !important;
}

/* ── MG Product Badges ─────────────────────────────────────────── */
.productitem--image {
  position: relative;
}

.mg-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 4px;
  color: #ffffff;
  line-height: 1;
  pointer-events: none;
}

.mg-badge--sale       { background: #C1292E; }
.mg-badge--bestseller { background: #E86F3A; }
.mg-badge--new        { background: #0D1B2A; }
.mg-badge--lowstock   { background: #D97706; }

/* =============================================================================
   MG Premium Mega Nav
   ============================================================================= */

/* Outer container — sits inside base theme's .navmenu-meganav--desktop */
.mg-mnav__inner {
  padding: 0 !important;
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

/* ── Layouts ─────────────────────────────────────────────────────────────── */
.mg-mnav__layout {
  display: flex;
  align-items: stretch;
}

.mg-mnav__layout--links-featured {
  flex: 1;
}

.mg-mnav__layout--brands {
  flex-direction: column;
  padding: 28px 32px 0;
}

/* ── Section label ───────────────────────────────────────────────────────── */
.mg-mnav__section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #E86F3A;
  margin: 0 0 16px;
  padding: 28px 28px 0;
}

/* ── Links area (left side) ──────────────────────────────────────────────── */
.mg-mnav__links-area {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  border-right: 1px solid #f0f0f0;
}

.mg-mnav__cols {
  display: flex;
  flex: 1;
  padding: 0 12px 4px;
}

.mg-mnav__col {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  padding: 0 8px;
}

/* ── Individual nav link ─────────────────────────────────────────────────── */
.mg-mnav__link {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  transition: background 0.15s;
  margin-bottom: 2px;
}

.mg-mnav__link:hover {
  background: #F8F9FA;
  text-decoration: none;
}

.mg-mnav__link-icon {
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 1px;
}

.mg-mnav__link-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mg-mnav__link-title {
  font-size: 13px;
  font-weight: 700;
  color: #0D1B2A;
  line-height: 1.3;
  display: block;
}

.mg-mnav__link:hover .mg-mnav__link-title {
  color: #E86F3A;
}

.mg-mnav__link-desc {
  font-size: 11.5px;
  color: #6b7280;
  line-height: 1.4;
  display: block;
  white-space: normal;
}

/* Product-type links (no icon, slightly different spacing) */
.mg-mnav__link--product {
  gap: 0;
}

.mg-mnav__link--all .mg-mnav__link-title {
  color: #E86F3A;
  font-size: 12px;
}

/* ── Featured product column (right side) ───────────────────────────────── */
.mg-mnav__featured {
  width: 240px;
  flex-shrink: 0;
  padding: 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #F8F9FA;
}

.mg-mnav__featured--duo {
  gap: 10px;
}

.mg-mnav__featured-slot {
  flex: 1;
}

.mg-mnav__featured-loading {
  height: 100%;
}

.mg-mnav__featured-skeleton {
  width: 100%;
  height: 120px;
  background: linear-gradient(90deg, #e8e8e8 25%, #f0f0f0 50%, #e8e8e8 75%);
  background-size: 200% 100%;
  animation: mg-skeleton 1.4s infinite;
  border-radius: 8px;
}

@keyframes mg-skeleton {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.mg-mnav__featured-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.mg-mnav__featured-card:hover { text-decoration: none; }

.mg-mnav__featured-img {
  border-radius: 6px;
  overflow: hidden;
  background: #ffffff;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mg-mnav__featured-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.25s;
}

.mg-mnav__featured-card:hover .mg-mnav__featured-img img {
  transform: scale(1.04);
}

.mg-mnav__featured-noimg {
  width: 100%;
  height: 100%;
  background: #e8e8e8;
}

.mg-mnav__featured-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mg-mnav__featured-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #E86F3A;
  margin: 0;
}

.mg-mnav__featured-title {
  font-size: 13px;
  font-weight: 700;
  color: #0D1B2A;
  line-height: 1.35;
  margin: 0;
}

.mg-mnav__featured-price {
  font-size: 12px;
  font-weight: 600;
  color: #374151;
  margin: 0;
}

.mg-mnav__featured-btn {
  display: inline-block;
  margin-top: 6px;
  font-size: 11px;
  font-weight: 700;
  color: #E86F3A;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── Brands layout ───────────────────────────────────────────────────────── */
.mg-mnav__brands-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 16px;
}

.mg-mnav__brands-header .mg-mnav__section-label {
  padding: 0;
  margin: 0;
}

.mg-mnav__brands-all {
  font-size: 12px;
  font-weight: 600;
  color: #E86F3A;
  text-decoration: none;
}

.mg-mnav__brands-all:hover { text-decoration: underline; }

.mg-mnav__brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding-bottom: 4px;
}

.mg-mnav__brand-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 12px 8px;
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  text-decoration: none;
  background: #ffffff;
  transition: border-color 0.15s, box-shadow 0.15s;
  min-height: 62px;
  text-align: center;
}

.mg-mnav__brand-card:hover {
  border-color: #E86F3A;
  box-shadow: 0 2px 10px rgba(232, 111, 58, 0.15);
  text-decoration: none;
}

.mg-mnav__brand-name {
  font-size: 12px;
  font-weight: 700;
  color: #0D1B2A;
  line-height: 1.2;
}

.mg-mnav__brand-type {
  font-size: 10px;
  color: #9ca3af;
  line-height: 1.2;
}

/* ── Footer CTA bar ──────────────────────────────────────────────────────── */
.mg-mnav__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 28px;
  background: #0D1B2A;
  border-top: 1px solid rgba(255,255,255,0.08);
  gap: 16px;
}

.mg-mnav__footer-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  flex-wrap: wrap;
}

.mg-mnav__footer-cta:hover { color: #ffffff; text-decoration: none; }

.mg-mnav__footer-cta svg { color: #E86F3A; flex-shrink: 0; }

.mg-mnav__footer-cta strong {
  color: #ffffff;
  font-weight: 700;
}

.mg-mnav__footer-hours {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
}

.mg-mnav__footer-quiz {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.mg-mnav__footer-quiz:hover { color: #E86F3A; text-decoration: none; }
.mg-mnav__footer-quiz svg { flex-shrink: 0; }

/* ── Entrance animation ──────────────────────────────────────────────────── */
.navmenu-meganav--desktop.mg-mnav {
  animation: mg-mnav-in 0.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes mg-mnav-in {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Override base theme max-width constraint on our dropdown ────────────── */
.navmenu-meganav-item-parent .mg-mnav .meganav-inner {
  max-width: none;
}

/* ── Hide on mobile (base theme already handles this via .navmenu-meganav--desktop) ── */
@media (max-width: 767px) {
  .mg-mnav { display: none !important; }
}

/* ── Show our custom mega nav on hover (CSS-only, bypasses JS dependency) ── */
.site-navigation .navmenu-meganav-item-parent:hover > .navmenu-submenu.mg-mnav {
  display: block !important;
  opacity: 1;
}

/* ── Also show when JS adds .open class ── */
.navmenu-meganav-item-parent.open > .navmenu-submenu {
  z-index: 1;
  display: block;
}


/* ── Availability Notice (manage_availability.py) ──────────────── */
.availability-notice {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 6px;
  margin-bottom: 14px;
  font-size: 0.9em;
  font-weight: 500;
  line-height: 1.4;
}
.availability-notice--blocked {
  background: #fff8e1;
  border: 1px solid #f9a825;
  color: #6d4c00;
}
.availability-notice--preorder {
  background: #e3f2fd;
  border: 1px solid #1976d2;
  color: #0d47a1;
}
