/** Shopify CDN: Minification failed

Line 2570:28 Unexpected "{"
Line 2570:37 Expected ":"
Line 2575:28 Unexpected "{"
Line 2575:37 Expected ":"
Line 2575:44 Unexpected "{"
Line 2578:28 Unexpected "{"
Line 2578:37 Expected ":"

**/

/* ============================================================
   MIRRORVANA — Custom Header Styles
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;1,400&display=swap');

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --mv-accent:       #c0392b;
  --mv-accent-light: #fdf3f2;
  --mv-surface:      #ffffff;
  --mv-bg-subtle:    #f9f8f6;
  --mv-bg-hover:     #f0eeeb;
  --mv-text:         #1a1a1a;
  --mv-muted:        #6b6b6b;
  --mv-border:       #e5e5e5;
  --mv-font-display: 'Playfair Display', Georgia, serif;
  --mv-font-ui:      'DM Sans', system-ui, sans-serif;
  --mv-transition:   0.2s ease;
}

/* ── Nav font ──────────────────────────────────────────────── */
.menu-list__link-title {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 12.5px !important;
  font-weight: 500 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase;
}

/* Remove underline coming from base.css global link rule */
.menu-list__list-item a.menu-list__link {
  text-decoration-color: transparent !important;
}

/* ── Chevron size + flip ───────────────────────────────────── */
.menu-list__link .icon-caret svg {
  width: 10px;
  height: 10px;
  margin-left: 2px;
  transition: transform 0.2s ease;
}

.menu-list__link[aria-expanded='true'] .icon-caret svg {
  transform: rotate(180deg);
}



/* ── Header padding ────────────────────────────────────────── */
.header__columns {
  --padding-block-start: 10px !important;
  --padding-block-end: 10px !important;
  height: 76px !important;
}

.header__row--top {
  min-height: 76px !important;
}



.header__row--top {
  border-bottom: none !important;
  position: relative;
  z-index: 1;
}

.header__row--top::after {
  display: none !important;
}

/* ══ Unified white underline — all items ══════════════════ */

/* Nav links */
.menu-list__list-item > .menu-list__link {
  position: relative;
}

.menu-list__list-item > .menu-list__link::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2.2px;
  background: transparent;
  transition: background 0.2s ease;
}

.menu-list__list-item:hover > .menu-list__link::after,
.menu-list__link[aria-expanded='true']::after {
  background: #fff;
}


/* Icons — need offset to reach header edge */
.search-action,
.account-button,
cart-drawer-component {
  position: relative;
}

.search-action::after,
.account-button::after,
cart-drawer-component::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  height: 2px;
  background: transparent;
  transition: background 0.2s ease;
  z-index: calc(var(--layer-header-menu, 100) + 3);
}

.search-action:hover::after {
  background: var(--color-foreground, #1a1a1a);
}

.account-button:hover::after,
anchored-popover-component:has(:popover-open) .account-button::after {
  background: var(--color-foreground, #1a1a1a);
}

cart-drawer-component:hover::after,
cart-drawer-component:has(dialog[open])::after {
  background: var(--color-foreground, #1a1a1a);
}

/* ══ HUEL-STYLE MEGA MENU CARDS ════════════════════════════ */

/* Dropdown padding */
.menu-list__list-item:first-child .menu-list__submenu-inner {
  padding: 32px 48px 40px !important;
}
/* Side-by-side: label left, cards right */
.menu-list__list-item:first-child .menu-list__submenu-inner {
  display: grid !important;
  grid-template-columns: 200px 1fr !important;
  padding: 40px 48px !important;
  align-items: start;
}

/* "Shop by Category" on the left */
.menu-list__list-item:first-child .menu-list__submenu-inner::before {
  content: 'Shop by Category';
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-foreground, #1a1a1a);
  padding-top: 8px;
}

/* Cards grid on the right */
.menu-list__list-item:first-child .mega-menu__grid {
  --menu-columns-desktop: 4 !important;
  gap: 12px !important;
}

.menu-list__list-item:first-child [data-menu-list-id] {
  --menu-columns-desktop: 4 !important;
  --menu-columns-tablet: 2 !important;
  grid-column: span 4 !important;
}

.menu-list__list-item:first-child .mega-menu__column,
.menu-list__list-item:first-child .mega-menu__column--wide-collection-image,
.menu-list__list-item:first-child .mega-menu__column--span-1 {
  grid-column: span 1 !important;
}

/* Card: image fills, text overlays */
.menu-list__list-item:first-child .mega-menu__link:has(.mega-menu__link-image) {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  padding: 0 !important;
  display: block !important;
  aspect-ratio: 6 / 4.5;
  max-width: 270px;
  transition: all 0.2s ease;
}

.menu-list__list-item:first-child .mega-menu__link:has(.mega-menu__link-image):hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

/* Image covers full card */
.menu-list__list-item:first-child .mega-menu__link-image {
  width: 100%;
  height: 100% !important;
  aspect-ratio: unset !important;
  object-fit: cover;
  border-radius: 0 !important;
  margin-bottom: 0 !important;
}

/* Dark gradient overlay */
.menu-list__list-item:first-child .mega-menu__link:has(.mega-menu__link-image)::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

/* Title bottom-left */
.menu-list__list-item:first-child .mega-menu__link:has(.mega-menu__link-image) .mega-menu__link-title {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 60px;
  z-index: 2;
  font-family: 'Playfair Display', Georgia, serif !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  color: #fff !important;
  line-height: 1.2;
}

/* Arrow bottom-right */
.menu-list__list-item:first-child .mega-menu__link:has(.mega-menu__link-image)::after {
  content: '→';
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.5);
  font-size: 15px;
  color: #fff;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  transition: all 0.2s;
}

.menu-list__list-item:first-child .mega-menu__link:has(.mega-menu__link-image):hover::after {
  background: var(--mv-accent, #c0392b);
  border-color: var(--mv-accent, #c0392b);
}

/* Hide featured content */
.menu-list__list-item:first-child .mega-menu__content {
  display: none !important;
}

.menu-list__list-item:first-child .mega-menu__grid {
  --menu-columns-desktop: 4 !important;
  --menu-horizontal-gap: 24px !important;
  --menu-vertical-gap: 28px !important;
  gap: 28px 24px !important;
}

.mv-nav-overlay {
  position: fixed;
  inset: 0;
  top: var(--header-group-height); /* starts BELOW the header */
  background: rgba(0, 0, 0, 0.8);
  z-index: 3;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}

.mv-nav-overlay.is-active {
  opacity: 1;
  visibility: visible;
}


/* ── Logo vertical nudge (desktop) ── */
#header-component a.header-logo .header-logo__image-container {
  transform: translateY(2px) !important;
}

/* ── Logo divider ── */
#header-component a.header-logo {
  padding-inline-end: 28px !important;
  border-right: none !important;
  margin-inline: 0 4px !important;
  align-self: center !important;
  position: relative !important;
}

#header-component a.header-logo::after {
  content: '' !important;
  position: absolute !important;
  right: 2px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  height: 48px !important;
  width: 1px !important;
  background: rgba(255, 255, 255, 0.13) !important;
}

/* ══ HIDE DEFAULT SEARCH ICON ══════════════════════════════ */

.search-action {
  display: none !important;
}


/* ══ SEARCH PILL ════════════════════════════════════════════ */

.mv-search-pill {
  width: 280px;
  height: 38px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: none;
  border-radius: 100px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.18),
    inset 0 0 0 1px rgba(255,255,255,0.0),
    0 2px 12px rgba(0,0,0,0.3),
    0 0 24px rgba(255,255,255,0.04);
  position: relative;
  margin-right: 16px;
  transition: background 0.25s, box-shadow 0.25s;
}

/* Gradient border: white on left fading to gray on right */
.mv-search-pill::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 100px;
  padding: 1px;
  background: linear-gradient(to right, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.12) 100%);
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.mv-search-pill:focus-within {
  background: rgba(255,255,255,0.11);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    0 0 0 2px rgba(255,255,255,0.06),
    0 4px 20px rgba(0,0,0,0.35);
}


.mv-search-input {
  flex: 1;
  background: transparent !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  -webkit-appearance: none;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.88);
  min-width: 0;
  letter-spacing: 0.01em;
}

.mv-search-input:focus {
  background: transparent !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.mv-search-input::placeholder {
  color: rgba(255,255,255,0.85);
}

.mv-search-sparkle {
  color: rgba(255,255,255,1);
  flex-shrink: 0;
  cursor: pointer;
  transition: color 0.2s;
}

.mv-search-sparkle:hover {
  color: rgba(255,255,255,0.7);
}

/* Force pure black header */
.header__row--top,
header-component,
#header-component {
  background: #000000 !important;
}

/* ══ BUSINESS CUSTOMERS — PAGE CARD MEGA MENU ═══════════════ */

/* Layout: cards use the full width now (label column removed) */
.menu-list__list-item:nth-child(2) .menu-list__submenu-inner {
  display: grid !important;
  grid-template-columns: 1fr !important;
  padding: 40px 48px !important;
  align-items: start;
}

/* Hide featured content area */
.menu-list__list-item:nth-child(2) .mega-menu__content {
  display: none !important;
}

/* 7-item grid: 3 big-card columns + 2 thumbnail columns, 2 rows */
.menu-list__list-item:nth-child(2) .mega-menu__list {
  display: grid !important;
  grid-template-columns: 1fr 1fr 1fr 230px 230px !important;
  grid-template-rows: auto auto !important;
  gap: 10px 12px !important;
  align-items: stretch !important;
}

/* Cols 1, 2 & 3: photo cards spanning both rows */
.menu-list__list-item:nth-child(2) .mega-menu__column:nth-child(1),
.menu-list__list-item:nth-child(2) .mega-menu__column:nth-child(2),
.menu-list__list-item:nth-child(2) .mega-menu__column:nth-child(3) {
  grid-row: 1 / 3 !important;
}

/* Col 4 stacked pair */
.menu-list__list-item:nth-child(2) .mega-menu__column:nth-child(4) {
  grid-column: 4 !important;
  grid-row: 1 !important;
}
.menu-list__list-item:nth-child(2) .mega-menu__column:nth-child(5) {
  grid-column: 4 !important;
  grid-row: 2 !important;
}

/* Col 5 stacked pair */
.menu-list__list-item:nth-child(2) .mega-menu__column:nth-child(6) {
  grid-column: 5 !important;
  grid-row: 1 !important;
}
.menu-list__list-item:nth-child(2) .mega-menu__column:nth-child(7) {
  grid-column: 5 !important;
  grid-row: 2 !important;
}

/* ── Photo cards (cols 1, 2 & 3) ── */
.menu-list__list-item:nth-child(2) .mega-menu__column:nth-child(1) .mega-menu__link,
.menu-list__list-item:nth-child(2) .mega-menu__column:nth-child(2) .mega-menu__link,
.menu-list__list-item:nth-child(2) .mega-menu__column:nth-child(3) .mega-menu__link {
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
  border-radius: 10px !important;
  overflow: hidden !important;
  height: 100% !important;
  min-height: 422px !important;
  padding: 16px !important;
  text-decoration: none !important;
  background-size: cover !important;
  background-position: center !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

.menu-list__list-item:nth-child(2) .mega-menu__column:nth-child(1) .mega-menu__link:hover,
.menu-list__list-item:nth-child(2) .mega-menu__column:nth-child(2) .mega-menu__link:hover,
.menu-list__list-item:nth-child(2) .mega-menu__column:nth-child(3) .mega-menu__link:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18) !important;
}

/* Kill Horizon's gray placeholder box AND add our own readability overlay in its place */
.menu-list__list-item:nth-child(2) .mega-menu__column:nth-child(1) .mega-menu__link::before,
.menu-list__list-item:nth-child(2) .mega-menu__column:nth-child(2) .mega-menu__link::before,
.menu-list__list-item:nth-child(2) .mega-menu__column:nth-child(3) .mega-menu__link::before {
  content: '' !important;
  display: block !important;
  position: absolute !important;
  inset: 0 !important;
  width: auto !important;
  aspect-ratio: unset !important;
  margin-bottom: 0 !important;
  opacity: 1 !important;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.2) 55%, transparent 100%) !important;
  border-radius: 0 !important;
  z-index: 1 !important;
  pointer-events: none !important;
}

.menu-list__list-item:nth-child(2) .mega-menu__column:nth-child(1) .mega-menu__link {
  background-image: url('/cdn/shop/files/Wholesale_1.png?v=1783083483') !important;
}
.menu-list__list-item:nth-child(2) .mega-menu__column:nth-child(2) .mega-menu__link {
  background-image: url('/cdn/shop/files/Brick_Mortar_3.png?v=1783083484') !important;
}
.menu-list__list-item:nth-child(2) .mega-menu__column:nth-child(3) .mega-menu__link {
  background-image: url('/cdn/shop/files/hf_20260814_134954_9a92f0e8-4e99-4347-8e56-73e46952261a.png?v=1786715536') !important;
}

/* Photo card title */
.menu-list__list-item:nth-child(2) .mega-menu__column:nth-child(1) .mega-menu__link-title,
.menu-list__list-item:nth-child(2) .mega-menu__column:nth-child(2) .mega-menu__link-title,
.menu-list__list-item:nth-child(2) .mega-menu__column:nth-child(3) .mega-menu__link-title {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  color: #fff !important;
  line-height: 1.25 !important;
  position: relative !important;
  z-index: 2 !important;
}

/* Button labels — one per card */
.menu-list__list-item:nth-child(2) .mega-menu__column:nth-child(1) .mega-menu__link::after {
  content: 'Request a Quote →' !important;
}
.menu-list__list-item:nth-child(2) .mega-menu__column:nth-child(2) .mega-menu__link::after {
  content: 'Explore Partnership →' !important;
}
.menu-list__list-item:nth-child(2) .mega-menu__column:nth-child(3) .mega-menu__link::after {
  content: 'Request Sample →' !important;
}

.menu-list__list-item:nth-child(2) .mega-menu__column:nth-child(1) .mega-menu__link::after,
.menu-list__list-item:nth-child(2) .mega-menu__column:nth-child(2) .mega-menu__link::after,
.menu-list__list-item:nth-child(2) .mega-menu__column:nth-child(3) .mega-menu__link::after {
  position: static !important;
  display: inline-flex !important;
  align-items: center !important;
  align-self: flex-start !important;
  margin-top: 10px !important;
  padding: 7px 16px !important;
  border-radius: 20px !important;
  border: 1.5px solid #c0392b !important;
  color: #fff !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.2px !important;
  background: #c0392b !important;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease !important;
  z-index: 2 !important;
}

.menu-list__list-item:nth-child(2) .mega-menu__column:nth-child(1) .mega-menu__link:hover::after,
.menu-list__list-item:nth-child(2) .mega-menu__column:nth-child(2) .mega-menu__link:hover::after,
.menu-list__list-item:nth-child(2) .mega-menu__column:nth-child(3) .mega-menu__link:hover::after {
  background: #a52f22 !important;
  border-color: #a52f22 !important;
  transform: translateX(2px) !important;
}

/* Hide collection images Liquid auto-renders on cols 4-7 — we draw the thumbnail via ::before instead */
.menu-list__list-item:nth-child(2) .mega-menu__column:nth-child(4) .mega-menu__link-image,
.menu-list__list-item:nth-child(2) .mega-menu__column:nth-child(5) .mega-menu__link-image,
.menu-list__list-item:nth-child(2) .mega-menu__column:nth-child(6) .mega-menu__link-image,
.menu-list__list-item:nth-child(2) .mega-menu__column:nth-child(7) .mega-menu__link-image {
  display: none !important;
}

/* ── Thumbnail cards (cols 4-7): image top, off-white label bottom ── */
.menu-list__list-item:nth-child(2) .mega-menu__column:nth-child(4) .mega-menu__link,
.menu-list__list-item:nth-child(2) .mega-menu__column:nth-child(5) .mega-menu__link,
.menu-list__list-item:nth-child(2) .mega-menu__column:nth-child(6) .mega-menu__link,
.menu-list__list-item:nth-child(2) .mega-menu__column:nth-child(7) .mega-menu__link {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  text-align: left !important;
  position: relative !important;
  background: #f7f7f8 !important;
  border: 1px solid transparent !important;
  border-radius: 14px !important;
  padding: 0 !important;
  height: 100% !important;
  aspect-ratio: unset !important;
  min-height: 0 !important;
  overflow: hidden !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10), 0 1px 3px rgba(0,0,0,0.06) !important;
  transition: box-shadow 0.2s ease, transform 0.2s ease !important;
}

.menu-list__list-item:nth-child(2) .mega-menu__column:nth-child(4) .mega-menu__link:hover,
.menu-list__list-item:nth-child(2) .mega-menu__column:nth-child(5) .mega-menu__link:hover,
.menu-list__list-item:nth-child(2) .mega-menu__column:nth-child(6) .mega-menu__link:hover,
.menu-list__list-item:nth-child(2) .mega-menu__column:nth-child(7) .mega-menu__link:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 24px rgba(0,0,0,0.12) !important;
}

/* Thumbnail image (drawn via ::before — one bg-image per card) */
.menu-list__list-item:nth-child(2) .mega-menu__column:nth-child(4) .mega-menu__link::before,
.menu-list__list-item:nth-child(2) .mega-menu__column:nth-child(5) .mega-menu__link::before,
.menu-list__list-item:nth-child(2) .mega-menu__column:nth-child(6) .mega-menu__link::before,
.menu-list__list-item:nth-child(2) .mega-menu__column:nth-child(7) .mega-menu__link::before {
  content: '' !important;
  display: block !important;
  width: 100% !important;
  height: 140px !important;
  flex-shrink: 0 !important;
  background-size: cover !important;
  background-position: center !important;
}
.menu-list__list-item:nth-child(2) .mega-menu__column:nth-child(4) .mega-menu__link::before {
  background-image: url('/cdn/shop/files/smaller_Retail_Countertop_Mirror.png?v=1782792740') !important;
}
.menu-list__list-item:nth-child(2) .mega-menu__column:nth-child(5) .mega-menu__link::before {
  background-image: url('/cdn/shop/files/smaller_salon_image.png?v=1782793264') !important;
}
.menu-list__list-item:nth-child(2) .mega-menu__column:nth-child(6) .mega-menu__link::before {
  background-image: url('/cdn/shop/files/smaller_photo_Dental_Spa_Mirrors.jpg?v=1782791756') !important;
}
.menu-list__list-item:nth-child(2) .mega-menu__column:nth-child(7) .mega-menu__link::before {
  background-image: url('/cdn/shop/files/smaller_Hotel_Bathroom_Mirrors.png?v=1782792879') !important;
}

/* White icon badge, red outline-only SVG, overlapping bottom of thumbnail */
.menu-list__list-item:nth-child(2) .mega-menu__column:nth-child(4) .mega-menu__link::after,
.menu-list__list-item:nth-child(2) .mega-menu__column:nth-child(5) .mega-menu__link::after,
.menu-list__list-item:nth-child(2) .mega-menu__column:nth-child(6) .mega-menu__link::after,
.menu-list__list-item:nth-child(2) .mega-menu__column:nth-child(7) .mega-menu__link::after {
  position: absolute !important;
  top: 105px !important;
  left: 14px !important;
  width: 48px !important;
  height: 48px !important;
  border-radius: 50% !important;
  background: #fff !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18) !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 27px 27px !important;
  z-index: 2 !important;
}
/* Retail Countertop — retail icon */
.menu-list__list-item:nth-child(2) .mega-menu__column:nth-child(4) .mega-menu__link::after {
  content: '' !important;
  background-image: url('/cdn/shop/files/red_retail_icon_3e549f38-351b-497c-a9eb-f7d77f8058d0.svg?v=1782788880') !important;
}
/* Salons & Barber — barber icon */
.menu-list__list-item:nth-child(2) .mega-menu__column:nth-child(5) .mega-menu__link::after {
  content: '' !important;
  background-image: url('/cdn/shop/files/red_barber_icon_347947e5-f9b7-4260-93e1-b81ce67f5093.svg?v=1782788880') !important;
}
/* Dental & Spa — dental icon */
.menu-list__list-item:nth-child(2) .mega-menu__column:nth-child(6) .mega-menu__link::after {
  content: '' !important;
  background-image: url('/cdn/shop/files/red_dental_spa_icon_f9c575c3-79d9-4714-98b4-f31f3bbf8e3c.svg?v=1782788880') !important;
}
/* Hotel Bathroom — hotel icon */
.menu-list__list-item:nth-child(2) .mega-menu__column:nth-child(7) .mega-menu__link::after {
  content: '' !important;
  background-image: url('/cdn/shop/files/red_hotel_icon_093fc3a0-7677-4fde-bbdd-4b10b2b1983d.svg?v=1782788880') !important;
}

/* Label row: title + arrow, sits in the off-white bottom area */
.menu-list__list-item:nth-child(2) .mega-menu__column:nth-child(4) .mega-menu__link-title,
.menu-list__list-item:nth-child(2) .mega-menu__column:nth-child(5) .mega-menu__link-title,
.menu-list__list-item:nth-child(2) .mega-menu__column:nth-child(6) .mega-menu__link-title,
.menu-list__list-item:nth-child(2) .mega-menu__column:nth-child(7) .mega-menu__link-title {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #1a1a1a !important;
  position: relative !important;
  z-index: 2 !important;
  text-align: left !important;
  line-height: 1.3 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
  box-sizing: border-box !important;
  padding: 14px !important;
  height: 64px !important;
}
.menu-list__list-item:nth-child(2) .mega-menu__column:nth-child(4) .mega-menu__link-title::after,
.menu-list__list-item:nth-child(2) .mega-menu__column:nth-child(5) .mega-menu__link-title::after,
.menu-list__list-item:nth-child(2) .mega-menu__column:nth-child(6) .mega-menu__link-title::after,
.menu-list__list-item:nth-child(2) .mega-menu__column:nth-child(7) .mega-menu__link-title::after {
  content: '→' !important;
  width: 24px !important;
  height: 24px !important;
  border-radius: 50% !important;
  border: 1px solid rgba(0,0,0,0.15) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 12px !important;
  font-family: 'DM Sans', sans-serif !important;
  color: #1a1a1a !important;
  flex-shrink: 0 !important;
  margin-left: 8px !important;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease !important;
}
.menu-list__list-item:nth-child(2) .mega-menu__column:nth-child(4) .mega-menu__link:hover .mega-menu__link-title::after,
.menu-list__list-item:nth-child(2) .mega-menu__column:nth-child(5) .mega-menu__link:hover .mega-menu__link-title::after,
.menu-list__list-item:nth-child(2) .mega-menu__column:nth-child(6) .mega-menu__link:hover .mega-menu__link-title::after,
.menu-list__list-item:nth-child(2) .mega-menu__column:nth-child(7) .mega-menu__link:hover .mega-menu__link-title::after {
  background: #c0392b !important;
  border-color: #c0392b !important;
  color: #fff !important;
}

/* ══ BUYING GUIDES MEGA MENU — NEW LAYOUT ══════════════════ */

/* Override Horizon's submenu inner padding for Buying Guides */
.menu-list__list-item:nth-child(3) .menu-list__submenu-inner {
  padding: 0 !important;
}

/* Hide the native mega-menu grid wrapper — we render our own HTML */
.menu-list__list-item:nth-child(3) .mega-menu__grid {
  display: block !important;
}

/* Main wrapper: left panel + right cards */
.mv-bg-inner {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 32px;
  padding: 36px 48px 40px;
  align-items: start;
}

/* ── LEFT PANEL ── */
.mv-bg-left {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0 36px;
  align-items: start;
}

/* Reviews column header */
.mv-bg-col-header {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1.5px solid #1a1a1a;
}

.mv-bg-col-label {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: #1a1a1a;
  font-family: 'Playfair Display', Georgia, serif;
  display: block;
  padding-bottom: 3px;
  margin-bottom: 14px;
  border-bottom: 1.5px solid #1a1a1a;
}

/* Article list */
.mv-bg-articles-list {
  list-style: none;
  margin: 0 0 14px 0;
  padding: 0;
}

.mv-bg-articles-list li {
  padding: 4px 0;
}

.mv-bg-articles-list li a {
  font-size: 12.5px;
  font-weight: 400;
  color: #1a1a1a;
  text-decoration: none;
  line-height: 1.35;
  display: flex;
  gap: 6px;
  align-items: flex-start;
  transition: color 0.18s ease;
  font-family: 'Inter', sans-serif;
  white-space: normal;
  word-break: break-word;
  text-decoration-color: transparent !important;
}

.mv-bg-articles-list li a:hover {
  color: #c0392b;
}

.mv-bg-articles-list li a:hover .mv-bg-art-title {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: currentcolor !important;
  transition: none !important;
}

.mv-bg-articles-list li a,
.mv-bg-articles-list li a * {
  transition: none !important;
  text-decoration-color: transparent !important;
}

.mv-bg-articles-list li a:hover,
.mv-bg-articles-list li a:hover * {
  text-decoration-color: currentcolor !important;
  transition: none !important;
}

.mv-bg-art-num {
  font-size: 9.5px;
  font-weight: 700;
  color: #c0392b;
  letter-spacing: 0.04em;
  flex-shrink: 0;
  margin-top: 2px;
  font-family: 'Inter', sans-serif;
}

.mv-bg-art-title {
  flex: 1;
}

/* Read all link */
.mv-bg-read-all {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #c0392b;
  text-decoration: none;
  transition: gap 0.2s;
  font-family: 'Inter', sans-serif;
}

.mv-bg-read-all:hover { gap: 9px; }

.mv-bg-read-all svg {
  width: 11px;
  height: 11px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── Brand pills column ── */
.mv-bg-brands-col {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.mv-bg-brands-label {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: #1a1a1a;
  margin: 0 0 12px 0;
  padding-bottom: 10px;
  border-bottom: 1.5px solid #1a1a1a;
  font-family: 'Playfair Display', Georgia, serif;
}

.mv-bg-brands-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.mv-bg-brand-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  border-radius: 100px;
  border: 1.5px solid #e5e5e5;
  background: #fff;
  color: #1a1a1a;
  font-size: 11px;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.18s, color 0.18s, background 0.18s;
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
}

.mv-bg-brand-pill:hover {
  border-color: #c0392b;
  color: #c0392b;
  background: #fdf3f2;
}

.mv-bg-pill-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f0f0f0;
  color: #6b6b6b;
  font-size: 9.5px;
  font-weight: 700;
  border-radius: 100px;
  padding: 1px 6px;
  transition: background 0.18s, color 0.18s;
}

.mv-bg-brand-pill:hover .mv-bg-pill-count {
  background: #c0392b;
  color: #fff;
}

/* ── RIGHT PANEL — 2x2 cards ── */
.mv-bg-right {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  height: 300px;
}

.mv-bg-photo-card:first-child {
  grid-row: 1 / 3;
}

.mv-bg-photo-card {
  position: relative;
  display: block;
  text-decoration: none;
  border-radius: 10px;
  overflow: hidden;
  background: #e8e4df;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mv-bg-photo-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.14);
}

.mv-bg-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mv-bg-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.05) 50%, transparent 100%);
}

.mv-bg-card-arrow {
  display: none;
}

.mv-bg-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 11px 12px;
  z-index: 2;
}

.mv-bg-card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  line-height: 1.25;
  display: block;
  margin-bottom: 7px;
}

.mv-bg-card-cta {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 100px;
  border: 1.5px solid #c0392b;
  background: #c0392b;
  color: #fff;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15px;
  font-family: 'DM Sans', sans-serif;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.mv-bg-photo-card:hover .mv-bg-card-cta {
  background: #a52f22;
  border-color: #a52f22;
}

/* ── Remove old split card styles no longer needed ── */
.menu-list__list-item:nth-child(3) .mega-menu__list,
.menu-list__list-item:nth-child(3) .mega-menu__column,
.menu-list__list-item:nth-child(3) .mega-menu__link,
.menu-list__list-item:nth-child(3) .mega-menu__content {
  display: none !important;
}



/* ══ SUPPORT MEGA MENU ══════════════════════════════════════ */

/* Container */
.menu-list__list-item:nth-child(4) .menu-list__submenu-inner {
  padding: 36px 48px 40px !important;
}

.menu-list__list-item:nth-child(4) .menu-list__submenu-inner::before {
  display: none !important;
}

.menu-list__list-item:nth-child(4) .mega-menu__content {
  display: none !important;
}

/* 2 text cols + hero + 2x2 icon cards */
.menu-list__list-item:nth-child(4) .mega-menu__list {
  display: grid !important;
  grid-template-columns: 180px 320px 320px 240px 240px !important;
  grid-template-rows: auto auto !important;
  gap: 10px 12px !important;
  align-items: stretch !important;
}

/* Col 1 & 2 span both rows */
.menu-list__list-item:nth-child(4) .mega-menu__column:nth-child(1),
.menu-list__list-item:nth-child(4) .mega-menu__column:nth-child(2) {
  grid-row: 1 / 3 !important;
}

/* Help Center hero — spans both rows */
.menu-list__list-item:nth-child(4) .mega-menu__column:nth-child(3) {
  grid-column: 3 !important;
  grid-row: 1 / 3 !important;
}

/* 2x2 icon cards */
.menu-list__list-item:nth-child(4) .mega-menu__column:nth-child(4) {
  grid-column: 4 !important;
  grid-row: 1 !important;
}
.menu-list__list-item:nth-child(4) .mega-menu__column:nth-child(5) {
  grid-column: 5 !important;
  grid-row: 1 !important;
}
.menu-list__list-item:nth-child(4) .mega-menu__column:nth-child(6) {
  grid-column: 4 !important;
  grid-row: 2 !important;
}
.menu-list__list-item:nth-child(4) .mega-menu__column:nth-child(7) {
  grid-column: 5 !important;
  grid-row: 2 !important;
}

/* ── Col 1 & 2: FAQ text links ── */

.menu-list__list-item:nth-child(4) .mega-menu__column:nth-child(1) .mega-menu__link--parent,
.menu-list__list-item:nth-child(4) .mega-menu__column:nth-child(2) .mega-menu__link--parent {
  background: none !important;
  padding: 0 !important;
  height: auto !important;
  aspect-ratio: unset !important;
  border-radius: 0 !important;
  overflow: visible !important;
}

.menu-list__list-item:nth-child(4) .mega-menu__column:nth-child(1) .mega-menu__link--parent .mega-menu__link-title,
.menu-list__list-item:nth-child(4) .mega-menu__column:nth-child(2) .mega-menu__link--parent .mega-menu__link-title {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  color: #1a1a1a !important;
  position: static !important;
  margin-bottom: 10px !important;
}

.menu-list__list-item:nth-child(4) .mega-menu__column:nth-child(1) .mega-menu__link--parent::after,
.menu-list__list-item:nth-child(4) .mega-menu__column:nth-child(2) .mega-menu__link--parent::after,
.menu-list__list-item:nth-child(4) .mega-menu__column:nth-child(1) .mega-menu__link--parent::before,
.menu-list__list-item:nth-child(4) .mega-menu__column:nth-child(2) .mega-menu__link--parent::before {
  display: none !important;
}

.menu-list__list-item:nth-child(4) .mega-menu__column:nth-child(1) .mega-menu__link--parent:hover,
.menu-list__list-item:nth-child(4) .mega-menu__column:nth-child(2) .mega-menu__link--parent:hover {
  transform: none !important;
  box-shadow: none !important;
}

/* Child links */
.menu-list__list-item:nth-child(4) .mega-menu__column:nth-child(1) ul a.mega-menu__link,
.menu-list__list-item:nth-child(4) .mega-menu__column:nth-child(2) ul a.mega-menu__link {
  font-size: 13.5px !important;
  font-weight: 400 !important;
  color: #111111 !important;
  padding: 5px 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0 !important;
  background: none !important;
  border-radius: 0 !important;
  height: auto !important;
  aspect-ratio: unset !important;
  transition: color 0.22s ease, transform 0.22s ease !important;
}

.menu-list__list-item:nth-child(4) .mega-menu__column:nth-child(1) ul a.mega-menu__link:hover,
.menu-list__list-item:nth-child(4) .mega-menu__column:nth-child(2) ul a.mega-menu__link:hover {
  color: var(--mv-accent, #c0392b) !important;
  transform: translateX(2px) !important;
  box-shadow: none !important;
}

/* First link top spacing */
.menu-list__list-item:nth-child(4) .mega-menu__column:nth-child(1) ul li:first-child a,
.menu-list__list-item:nth-child(4) .mega-menu__column:nth-child(2) ul li:first-child a {
  margin-top: 5px !important;
}

.menu-list__list-item:nth-child(4) .mega-menu__column:nth-child(1) ul a.mega-menu__link .mega-menu__link-title,
.menu-list__list-item:nth-child(4) .mega-menu__column:nth-child(2) ul a.mega-menu__link .mega-menu__link-title {
  font-size: 13px !important;
  font-weight: 400 !important;
  color: inherit !important;
  position: static !important;
}

.menu-list__list-item:nth-child(4) .mega-menu__column:nth-child(1) ul a.mega-menu__link::after,
.menu-list__list-item:nth-child(4) .mega-menu__column:nth-child(2) ul a.mega-menu__link::after,
.menu-list__list-item:nth-child(4) .mega-menu__column:nth-child(1) ul a.mega-menu__link::before,
.menu-list__list-item:nth-child(4) .mega-menu__column:nth-child(2) ul a.mega-menu__link::before {
  display: none !important;
}

/* Vertical divider on col 2 right edge */
.menu-list__list-item:nth-child(4) .mega-menu__column:nth-child(2) {
  position: relative !important;
  padding-right: 40px !important;
}

.menu-list__list-item:nth-child(4) .mega-menu__column:nth-child(2)::after {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  right: 20px !important;
  width: 1px !important;
  height: 100% !important;
  background: var(--mv-border, #e5e5e5) !important;
}

.menu-list__list-item:nth-child(4) .mega-menu__column:nth-child(2) {
  padding-right: 72px !important;
}

/* ── Cols 3-6: Icon cards ── */

.menu-list__list-item:nth-child(4) .mega-menu__column:nth-child(4) .mega-menu__link,
.menu-list__list-item:nth-child(4) .mega-menu__column:nth-child(5) .mega-menu__link,
.menu-list__list-item:nth-child(4) .mega-menu__column:nth-child(6) .mega-menu__link,
.menu-list__list-item:nth-child(4) .mega-menu__column:nth-child(7) .mega-menu__link {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: space-between !important;
  text-align: left !important;
  position: relative !important;
  background: #f7f7f8 !important;
  border: 1px solid transparent !important;
  border-radius: 14px !important;
  padding: 20px !important;
  height: auto !important;
  aspect-ratio: unset !important;
  min-height: 130px !important;
  overflow: hidden !important;
  transition: box-shadow 0.2s ease, transform 0.2s ease !important;
}

.menu-list__list-item:nth-child(4) .mega-menu__column:nth-child(4) .mega-menu__link:hover,
.menu-list__list-item:nth-child(4) .mega-menu__column:nth-child(5) .mega-menu__link:hover,
.menu-list__list-item:nth-child(4) .mega-menu__column:nth-child(6) .mega-menu__link:hover,
.menu-list__list-item:nth-child(4) .mega-menu__column:nth-child(7) .mega-menu__link:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 30px -8px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04) !important;
  background: #fff !important;
  border-color: #d4d4d6 !important;
}

.menu-list__list-item:nth-child(4) .mega-menu__column:nth-child(4) .mega-menu__link::after,
.menu-list__list-item:nth-child(4) .mega-menu__column:nth-child(5) .mega-menu__link::after,
.menu-list__list-item:nth-child(4) .mega-menu__column:nth-child(6) .mega-menu__link::after,
.menu-list__list-item:nth-child(4) .mega-menu__column:nth-child(7) .mega-menu__link::after {
  display: none !important;
}

.menu-list__list-item:nth-child(4) .mega-menu__column:nth-child(4) .mega-menu__link .mega-menu__link-title,
.menu-list__list-item:nth-child(4) .mega-menu__column:nth-child(5) .mega-menu__link .mega-menu__link-title,
.menu-list__list-item:nth-child(4) .mega-menu__column:nth-child(6) .mega-menu__link .mega-menu__link-title,
.menu-list__list-item:nth-child(4) .mega-menu__column:nth-child(7) .mega-menu__link .mega-menu__link-title {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  color: #1a1a1a !important;
  position: static !important;
  margin-top: auto !important;
}

/* Support icon */
.mv-support-icon {
  width: 38px;
  height: 38px;
  object-fit: contain;
  flex-shrink: 0;
}

/* Help Center — hero photo card */
.menu-list__list-item:nth-child(4) .mega-menu__column:nth-child(3) .mega-menu__link {
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
  align-items: unset !important;
  text-align: left !important;
  background-image: url('/cdn/shop/files/Customer_Support_2.png?v=1783078550') !important;
  background-size: cover !important;
  background-position: center !important;
  background-color: transparent !important;
  border: none !important;
  border-radius: 10px !important;
  overflow: hidden !important;
  height: 100% !important;
  min-height: 240px !important;
  padding: 20px !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

/* Hide gear icon on hero card */
.menu-list__list-item:nth-child(4) .mega-menu__column:nth-child(3) .mv-support-icon {
  display: none !important;
}

/* Dark gradient overlay */
.menu-list__list-item:nth-child(4) .mega-menu__column:nth-child(3) .mega-menu__link::before {
  content: '' !important;
  display: block !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.1) 60%, transparent 100%) !important;
  z-index: 1 !important;
  pointer-events: none !important;
}

.menu-list__list-item:nth-child(4) .mega-menu__column:nth-child(3) .mega-menu__link:hover {
  background-image: url('/cdn/shop/files/Customer_Support_2.png?v=1783078550') !important;
  background-size: cover !important;
  background-position: center !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18) !important;
}

/* Arrow bottom-right */
.menu-list__list-item:nth-child(4) .mega-menu__column:nth-child(3) .mega-menu__link::after {
  content: '→' !important;
  position: absolute !important;
  bottom: 16px !important;
  right: 16px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 34px !important;
  height: 34px !important;
  border-radius: 50% !important;
  border: 1.5px solid rgba(255,255,255,0.45) !important;
  color: #fff !important;
  font-size: 14px !important;
  background: rgba(255,255,255,0.15) !important;
  backdrop-filter: blur(4px) !important;
  transition: background 0.2s ease, border-color 0.2s ease !important;
  z-index: 2 !important;
}

.menu-list__list-item:nth-child(4) .mega-menu__column:nth-child(3) .mega-menu__link:hover::after {
  background: #c0392b !important;
  border-color: #c0392b !important;
}

/* Title */
.menu-list__list-item:nth-child(4) .mega-menu__column:nth-child(3) .mega-menu__link .mega-menu__link-title {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-size: 20px !important;
  font-weight: 600 !important;
  color: #fff !important;
  position: relative !important;
  z-index: 2 !important;
}

/* Radial glow on hover */
.menu-list__list-item:nth-child(4) .mega-menu__column:nth-child(4) .mega-menu__link::before,
.menu-list__list-item:nth-child(4) .mega-menu__column:nth-child(5) .mega-menu__link::before,
.menu-list__list-item:nth-child(4) .mega-menu__column:nth-child(6) .mega-menu__link::before,
.menu-list__list-item:nth-child(4) .mega-menu__column:nth-child(7) .mega-menu__link::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background: radial-gradient(circle at 0% 0%, rgba(192,57,43,0.07) 0%, transparent 70%) !important;
  opacity: 0 !important;
  transition: opacity 0.2s ease !important;
  pointer-events: none !important;
  z-index: 0 !important;
}

.menu-list__list-item:nth-child(4) .mega-menu__column:nth-child(4) .mega-menu__link:hover::before,
.menu-list__list-item:nth-child(4) .mega-menu__column:nth-child(5) .mega-menu__link:hover::before,
.menu-list__list-item:nth-child(4) .mega-menu__column:nth-child(6) .mega-menu__link:hover::before,
.menu-list__list-item:nth-child(4) .mega-menu__column:nth-child(7) .mega-menu__link:hover::before {
  opacity: 1 !important;
}

/* Arrow — hidden, slides in on hover */
.menu-list__list-item:nth-child(4) .mega-menu__column:nth-child(4) .mega-menu__link::after,
.menu-list__list-item:nth-child(4) .mega-menu__column:nth-child(5) .mega-menu__link::after,
.menu-list__list-item:nth-child(4) .mega-menu__column:nth-child(6) .mega-menu__link::after,
.menu-list__list-item:nth-child(4) .mega-menu__column:nth-child(7) .mega-menu__link::after {
  content: '→' !important;
  position: absolute !important;
  bottom: 16px !important;
  right: 16px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 30px !important;
  height: 30px !important;
  border-radius: 50% !important;
  border: 1.5px solid rgba(0,0,0,0.12) !important;
  color: #1a1a1a !important;
  font-size: 13px !important;
  background: rgba(255,255,255,0.7) !important;
  opacity: 0 !important;
  transform: translateX(-6px) !important;
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease, border-color 0.2s ease !important;
  z-index: 2 !important;
}

.menu-list__list-item:nth-child(4) .mega-menu__column:nth-child(4) .mega-menu__link:hover::after,
.menu-list__list-item:nth-child(4) .mega-menu__column:nth-child(5) .mega-menu__link:hover::after,
.menu-list__list-item:nth-child(4) .mega-menu__column:nth-child(6) .mega-menu__link:hover::after,
.menu-list__list-item:nth-child(4) .mega-menu__column:nth-child(7) .mega-menu__link:hover::after {
  opacity: 1 !important;
  transform: translateX(0) !important;
  background: #c0392b !important;
  border-color: #c0392b !important;
  color: #fff !important;
}

/* ══ SUPPORT FAQ LINKS — inline arrow on hover ══════════════ */

.menu-list__list-item:nth-child(4) .mega-menu__column:nth-child(1) ul a.mega-menu__link,
.menu-list__list-item:nth-child(4) .mega-menu__column:nth-child(2) ul a.mega-menu__link {
  display: inline-flex !important;
  align-items: center !important;
}

.menu-list__list-item:nth-child(4) .mega-menu__column:nth-child(1) ul a.mega-menu__link .mv-link-arrow,
.menu-list__list-item:nth-child(4) .mega-menu__column:nth-child(2) ul a.mega-menu__link .mv-link-arrow {
  display: inline-flex !important;
  align-items: center !important;
  margin-left: 6px !important;
  opacity: 0 !important;
  transform: translateX(-4px) !important;
  transition: opacity 0.22s ease, transform 0.22s ease !important;
  color: var(--mv-accent, #c0392b) !important;
  font-size: 13px !important;
  line-height: 1 !important;
}

.menu-list__list-item:nth-child(4) .mega-menu__column:nth-child(1) ul a.mega-menu__link:hover .mv-link-arrow,
.menu-list__list-item:nth-child(4) .mega-menu__column:nth-child(2) ul a.mega-menu__link:hover .mv-link-arrow {
  opacity: 1 !important;
  transform: translateX(0) !important;
}

/* ── Help Center hero card size fix ── */
.menu-list__list-item:nth-child(4) .mega-menu__column:nth-child(3) .mega-menu__link {
  min-height: 272px !important;
  height: 272px !important;
}

/* ══ SEARCH POPUP ════════════════════════════════════════════ */

.mv-search-wrap {
  position: relative;
  margin-right: 16px;
}

.mv-search-wrap .mv-search-pill {
  margin-right: 0;
}

/* Popup card */
.mv-popup {
  position: fixed;
  top: calc(var(--header-group-height) + -40px);
  right: 40px;
  width: 820px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.06), 0 24px 64px rgba(0,0,0,0.14);
  border: 1px solid rgba(0,0,0,0.07);
  z-index: 20;
  overflow: visible;
  opacity: 0;
  transform: translateY(-8px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transform-origin: top right;
}

.mv-popup.mv-popup--visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* Triangle pointer */
.mv-popup__arrow {
  position: absolute;
  top: -6px;
  right: 235px;
  width: 12px;
  height: 12px;
  background: #fff;
  transform: rotate(45deg);
  border-top: 1px solid rgba(0,0,0,0.07);
  border-left: 1px solid rgba(0,0,0,0.07);
  border-radius: 2px 0 0 0;
}

/* Body — two column layout */
.mv-popup__body {
  display: grid;
  grid-template-columns: 260px 1fr;
  border-radius: 18px 18px 0 0;
  overflow: hidden;
}

/* Left panel */
.mv-panel-left {
  border-right: 1px solid #eeece9;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 500px;
  overflow-y: auto;
}

/* Right panel */
.mv-panel-right {
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-height: 500px;
  overflow-y: auto;
}

/* Scrollbar */
.mv-panel-left::-webkit-scrollbar,
.mv-panel-right::-webkit-scrollbar { width: 4px; }
.mv-panel-left::-webkit-scrollbar-track,
.mv-panel-right::-webkit-scrollbar-track { background: transparent; }
.mv-panel-left::-webkit-scrollbar-thumb,
.mv-panel-right::-webkit-scrollbar-thumb { background: #ddd; border-radius: 4px; }

/* Section label */
.mv-section-label {
  font-family: 'Inter', sans-serif;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6b6b6b;
  margin-bottom: 6px;
  display: block;
}

/* Footer */
.mv-popup__footer {
  border-top: 1px solid #eeece9;
  padding: 12px 22px;
  display: flex;
  justify-content: center;
}

.mv-footer-link {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #6b6b6b;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.15s;
}

.mv-footer-link:hover { color: #1a1a1a; }

.mv-footer-link svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  fill: none;
  flex-shrink: 0;
}

/* ── Article items ── */
.mv-article-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mv-article-item {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 9px 10px;
  margin: 0 -10px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.15s;
}


.mv-article-item:hover { background: #f7f6f4; }

.mv-article-thumb {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: #f0eeeb;
  flex-shrink: 0;
  overflow: hidden;
}

.mv-article-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mv-article-body { flex: 1; min-width: 0; }

.mv-article-tag {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c0392b;
  margin-bottom: 2px;
  display: block;
}

.mv-article-title {
  font-family: 'Inter', sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.35;
  margin: 0 0 1px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mv-article-snippet {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: #6b6b6b;
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mv-article-snippet mark {
  background: #fff7c0;
  color: inherit;
  font-weight: 600;
  padding: 0 1px;
  border-radius: 2px;
}

/* ── Keyword pills ── */
.mv-keyword-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.mv-keyword-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px 5px 10px;
  border: 1px solid #e5e5e5;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #1a1a1a;
  text-decoration: none;
  background: #fff;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
  white-space: nowrap;
}

.mv-keyword-pill:hover {
  border-color: #c0392b;
  background: #fdf3f2;
  color: #c0392b;
}

.mv-keyword-pill svg {
  width: 11px;
  height: 11px;
  flex-shrink: 0;
  transition: stroke 0.15s;
}

.mv-keyword-pill:hover svg { stroke: #c0392b; }

/* ── Product grid ── */
.mv-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.mv-product-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #eeece9;
  background: #fff;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}

.mv-product-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transform: translateY(-2px);
  border-color: #d8d4d0;
}

.mv-product-thumb {
  width: 100%;
  aspect-ratio: 1;
  background: transparent;
  position: relative;
  overflow: hidden;
}

.mv-product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 6px;
}

.mv-product-badge {
  position: absolute;
  top: 6px;
  left: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 3px;
  line-height: 1.6;
}

.mv-badge--bestseller { background: #1a1a1a; color: #fff; }
.mv-badge--new { background: #2d6a4f; color: #fff; }
.mv-badge--sale { background: #c0392b; color: #fff; }

.mv-product-info { padding: 8px 9px 10px; }

.mv-product-name {
  font-family: 'Inter', sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.35;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mv-product-price-row {
  display: flex;
  align-items: center;
  gap: 5px;
}

.mv-product-price {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #1a1a1a;
}

.mv-product-price-old {
  font-family: 'Inter', sans-serif;
  font-size: 10.5px;
  color: #a0a0a0;
  text-decoration: line-through;
}

/* ── Empty / loading states ── */
.mv-empty-msg {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #a0a0a0;
  padding: 8px 0;
}

.mv-empty-msg a {
  color: #c0392b;
  text-decoration: none;
}

.mv-empty-msg a:hover { text-decoration: underline; }


/* ── Search dim overlay ── */
.mv-search-overlay {
  position: fixed;
  inset: 0;
  top: calc(var(--header-group-height) + -40px);
  background: rgba(0, 0, 0, 0.4);
  z-index: 7;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}

.mv-search-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

/* ── Skeleton loading ── */
@keyframes mv-shimmer {
  0% { background-position: -800px 0; }
  100% { background-position: 800px 0; }
}

.mv-skel {
  background: linear-gradient(90deg, #f0eeeb 25%, #e6e3df 50%, #f0eeeb 75%);
  background-size: 800px 100%;
  animation: mv-shimmer 1.5s infinite linear;
  border-radius: 5px;
}

.mv-skel--thumb { width: 44px; height: 44px; border-radius: 8px; flex-shrink: 0; }
.mv-skel--tag { width: 60px; height: 9px; margin-bottom: 5px; }
.mv-skel--title { width: 90%; height: 13px; margin-bottom: 5px; }
.mv-skel--snippet { width: 75%; height: 11px; }
.mv-skel--img { width: 100%; aspect-ratio: 1; }
.mv-skel--pname { width: 85%; height: 12px; margin-bottom: 5px; }
.mv-skel--price { width: 40%; height: 12px; }


/* ── Collection grid ── */
.mv-collection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.mv-collection-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #eeece9;
  background: #fff;
  transition: box-shadow 0.2s, transform 0.2s;
}

.mv-collection-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.mv-collection-thumb {
  width: 100%;
  aspect-ratio: 1;
  background: #f7f5f2;
  overflow: hidden;
}

.mv-collection-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mv-collection-placeholder {
  width: 100%;
  height: 100%;
  background: #f0eeeb;
}

.mv-collection-title {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #1a1a1a;
  padding: 6px 8px;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#mvQueryResults {
  column-gap: 8px;
  gap: 8px;
}

.mv-article-item--page .mv-article-title {
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
  font-size: 11.5px;
  line-height: 1.3;
}

.mv-empty-state {
  padding: 40px 0 60px;
}

.mv-empty-state__title,
.mv-empty-state__sub {
  text-align: center;
}

.mv-empty-state__title {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 1px;
}

.mv-empty-state__sub {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #1a1a1a;
  line-height: 1.5;
  margin-bottom: 0;
}

.mv-empty-state__link {
  color: #1a1a1a;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: #1a1a1a;
}

.mv-empty-state__link:hover { opacity: 0.6; color: #1a1a1a; }

/* ── Search Results Page ── */
.search-page__header h3 {
  font-family: 'Playfair Display', Georgia, serif !important;
}

.search-page__header {
  align-items: center !important;
  text-align: center !important;
  padding-block-start: 48px !important;
  padding-block-end: 48px !important;
}

.search-page__header .text-block {
  text-align: center !important;
  --text-align: center !important;
}

.search-page__header search-page-input-component {
  display: none !important;
}


/* Hide the "Products" title label in search results grid */
.template-search .main-collection-grid__title {
  display: none !important;
}


/* ── Search Results Heading ── */
.search-page__header h3 {
  font-family: var(--mv-font-display);
  text-align: center;
  font-size: clamp(24px, 2.8vw, 38px) !important;
}

.search-page__header h3 em {
  font-style: italic;
  color: var(--mv-accent);
}

.mv-search-subtext {
  font-family: var(--mv-font-ui) !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  color: var(--mv-muted) !important;
  text-align: center !important;
  margin-top: 10px !important;
}

.search-results__no-results {
  display: none !important;
}

/* ── Search Tabs ── */
.mv-search-tabs {
  margin-top: 32px;
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--mv-border);
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 max(40px, 5vw);
}
.mv-search-tab {
  padding: 12px 20px;
  font-family: var(--mv-font-ui);
  font-size: 13px;
  font-weight: 500;
  color: var(--mv-muted);
  border: none;
  background: none;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all var(--mv-transition);
  white-space: nowrap;
}
.mv-search-tab:first-child { padding-left: 0; }
.mv-search-tab:hover { color: var(--mv-text); }
.mv-search-tab.active {
  color: var(--mv-text);
  border-bottom-color: var(--mv-text);
  font-weight: 600;
}
.mv-tab-count {
  font-size: 11px;
  font-weight: 500;
  color: inherit;
  opacity: 0.6;
}
.mv-search-tab.active .mv-tab-count { opacity: 1; }

/* ── Search Extras ── */
.mv-extras-section-label {
  font-family: var(--mv-font-display);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 600;
  color: #000;
  line-height: 1.15;
  display: inline-block;
  border-bottom: 3px solid #1a1a1a;
  padding-bottom: 6px;
  margin-bottom: 0;
}
.mv-extras-article-list { display: flex; flex-direction: column; margin-bottom: 52px; }
.mv-extras-article-row {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 18px 0; border-bottom: 1px solid var(--mv-border);
  text-decoration: none; color: var(--mv-text);
}
.mv-extras-article-row:first-child { border-top: 1px solid var(--mv-border); }
.mv-extras-article-thumb {
  width: 90px; height: 68px; border-radius: 6px;
  background: var(--mv-bg-subtle); flex-shrink: 0; overflow: hidden;
}
.mv-extras-article-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mv-extras-article-body { flex: 1; min-width: 0; }
.mv-extras-breadcrumb {
  font-size: 11px; color: var(--mv-accent); font-weight: 500;
  letter-spacing: .04em; margin-bottom: 4px;
}
.mv-extras-breadcrumb span { color: var(--mv-muted); font-weight: 400; }
.mv-extras-article-title {
  font-family: var(--mv-font-display);
  font-size: 16px; font-weight: 600; line-height: 1.3;
  color: var(--mv-text); margin-bottom: 5px;
  transition: color var(--mv-transition);
}
.mv-extras-article-row:hover .mv-extras-article-title { color: var(--mv-accent); text-decoration: underline; }
.mv-extras-article-excerpt {
  font-size: 13px; color: var(--mv-muted); line-height: 1.65;
}
.mv-extras-page-list { display: flex; flex-direction: column; margin-bottom: 52px; }
.mv-extras-page-row {
  display: flex; gap: 16px; align-items: center;
  padding: 14px 0; border-bottom: 1px solid var(--mv-border);
  text-decoration: none; color: var(--mv-text);
}
.mv-extras-page-row:first-child { border-top: 1px solid var(--mv-border); }
.mv-extras-page-body { flex: 1; min-width: 0; }
.mv-extras-page-title {
  font-size: 14px; font-weight: 600; margin-bottom: 3px;
  transition: color var(--mv-transition);
}
.mv-extras-page-row:hover .mv-extras-page-title { color: var(--mv-accent); text-decoration: underline; }
.mv-extras-page-excerpt { font-size: 12px; color: var(--mv-muted); line-height: 1.5; }
.mv-extras-page-arrow {
  font-size: 15px; color: var(--mv-border); flex-shrink: 0;
  transition: color var(--mv-transition), transform var(--mv-transition);
}
.mv-extras-page-row:hover .mv-extras-page-arrow { color: var(--mv-accent); transform: translateX(3px); }
.mv-extras-empty {
  padding: 32px 0 48px;
}
.mv-extras-empty__text {
  font-size: 14px;
  color: #1a1a1a;
  font-weight: 400;
  margin-bottom: 16px;
  line-height: 1.6;
}
.mv-extras-empty__btn {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #1a1a1a;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: color 0.2s;
}
.mv-extras-empty__btn:hover {
  color: var(--mv-accent);
}

/* ── Still Looking ── */
.mv-still-looking {
  padding: 52px 48px; text-align: center;
  background: #f2e8d9;
  border-radius: 8px;
  border-top: none;
}
.mv-still-looking__heading {
  font-family: var(--mv-font-display);
  font-size: clamp(20px, 2.5vw, 28px); font-weight: 600; font-style: italic;
  color: var(--mv-text); margin-bottom: 6px;
}
.mv-still-looking__sub { font-size: 13px; color: var(--mv-muted); margin-bottom: 24px; }
.mv-still-looking__cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: #1a1a1a; color: #fff;
  font-family: var(--mv-font-ui); font-size: 12px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 13px 28px; border-radius: 6px;
  text-decoration: none; transition: background var(--mv-transition);
  border: 1.5px solid #1a1a1a;
}
.mv-still-looking__cta:hover { background: var(--mv-accent); border-color: var(--mv-accent); }

.mv-products-label {
  padding-inline-start: max(40px, 5vw);
  padding-inline-end: max(40px, 5vw);
  margin-block-end: 0px;
  border-bottom: none;
}

.mv-products-label span {
  display: inline-block;
  border-bottom: 3px solid #1a1a1a;
  padding-bottom: 6px;
}

.template-search results-list.product-grid-container {
  --padding-block-start: 0px !important;
}

.template-search .main-collection-grid__title {
  font-family: var(--mv-font-display) !important;
  font-size: clamp(22px, 2.4vw, 30px) !important;
  font-weight: 600 !important;
  color: #000 !important;
}

/* ── Search results scroll anchors ── */
#mvProductsLabel,
#mvArticlesPanel,
#mvFaqsPanel {
  scroll-margin-top: 115px;
}



/* ── MOBILE HEADER — Search pill on 2nd row ── */
@media (max-width: 1024px) {

  .mv-search-wrap {
    position: absolute;
    top: 90px;
    left: 0;
    right: 0;
    padding: 2px 0 2px;
    background: #000;
    margin-right: 0;
    z-index: 10;
    display: flex;
    justify-content: center;
  }

  .mv-search-pill {
    width: 90%;
    margin-right: 0;
    
  }


  #header-component a.header-logo::after {
    display: none;
  }

  a.header-logo {
    padding-top: 0px !important;
  }

  a.header-logo img {
    height: 80px !important;
  }

  .header__row--top {
    min-height: 90px !important;
  }

  .header__columns {
    height: 90px !important;
  }


  #header-component {
    padding-bottom: 60px !important;
  }

  #header-component a.header-logo {
    padding-inline-end: 0 !important;
  }


/* ── Full-screen search popup ── */
  .mv-popup {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100dvh !important;
    border-radius: 0 !important;
    border: none !important;
    box-shadow: none !important;
    z-index: 99999 !important;
    display: flex !important;
    flex-direction: column !important;
    transform: none !important;
    transform-origin: center !important;
    overflow: hidden !important;
  }

  .mv-popup.mv-popup--visible {
    transform: none !important;
  }

  .mv-popup__arrow {
    display: none !important;
  }

  

  /* ── Single-column stacked layout ── */
  .mv-popup__body {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: unset !important;
    overflow-y: auto !important;
    max-height: calc(100dvh - 43px) !important;
    min-height: 0 !important;
    background: #fff !important;
    border-radius: 0 !important;
  }

  /* Right panel (pills/products) comes first */
  .mv-panel-right {
    order: 1 !important;
    max-height: none !important;
    overflow-y: visible !important;
    border-right: none !important;
    padding: 18px 16px !important;
  }

  /* Left panel (articles) comes second */
  .mv-panel-left {
    order: 2 !important;
    max-height: none !important;
    overflow-y: visible !important;
    border-right: none !important;
    border-top: 1px solid #eeece9 !important;
    padding: 18px 16px !important;
  }

  /* ── 2-column product grid ── */
  .mv-product-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .mv-collection-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* ── Article titles wrap on mobile ── */
  .mv-article-title {
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: unset !important;
  }

  #mvNoQueryState,
  #mvQueryState {
    min-height: 0 !important;
  }

  /* Old close button hidden — replaced by mobile header */
  .mv-popup-close {
    display: none !important;
  }

  


  /* ── Mobile search header bar ── */
  .mv-popup-mobile-header {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 12px 16px !important;
    background: #fff !important;
    border-bottom: 1px solid #eeece9 !important;
    flex-shrink: 0 !important;
  }

  .mv-mobile-search-bar {
    flex: 1 !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 0 12px !important;
    border: 2px solid #1a1a1a !important;
    border-radius: 100px !important;
    background: #fff !important;
  }


  .mv-mobile-search-icon {
    width: 16px !important;
    height: 16px !important;
    stroke: #1a1a1a !important;
    flex-shrink: 0 !important;
  }

  .mv-mobile-search-input {
    flex: 1 !important;
    border: none !important;
    outline: none !important;
    background: none !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 14px !important;
    color: #1a1a1a !important;
    min-width: 0 !important;
  }

  .mv-mobile-search-input::placeholder {
    color: #aaa !important;
  }

  .mv-mobile-clear {
    font-family: 'Inter', sans-serif !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    color: #1a1a1a !important;
    text-decoration: underline !important;
    text-underline-offset: 2px !important;
    cursor: pointer !important;
    flex-shrink: 0 !important;
    white-space: nowrap !important;
  }

  .mv-mobile-close-btn {
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: none !important;
    border: none !important;
    font-size: 28px !important;
    color: #1a1a1a !important;
    cursor: pointer !important;
    flex-shrink: 0 !important;
    padding: 0 !important;
    line-height: 1 !important;
  }

  /* Hide old close button */
  .mv-popup-close {
    display: none !important;
  }

  /* Update body max-height to account for header */
  .mv-popup__body {
    max-height: calc(100dvh - 108px) !important;
  }


  /* ── Footer stays at bottom ── */
  .mv-popup__footer {
    flex-shrink: 0 !important;
    background: #fff !important;
    margin-top: auto !important;
  }
  
  body:has(.mv-popup.mv-popup--visible) announcement-bar-component,
  body:has(.mv-popup.mv-popup--visible) .announcement-bar,
  body:has(.mv-popup.mv-popup--visible) [id*="announcement"],
  body:has(.mv-popup.mv-popup--visible) [class*="announcement"] {
    display: none !important;
  }

}

@media (max-width: 767px) {
  .mv-search-tabs {
    padding: 0 16px !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
  }
  .mv-search-tabs::-webkit-scrollbar {
    display: none !important;
  }
  .mv-search-tab {
    padding: 12px 8px !important;
    gap: 1px !important;
    font-size: 11px !important;
    letter-spacing: -0.01em !important;
  }

  .search-page__header {
    padding-block-start: 24px !important;
    padding-block-end: 24px !important;
  }

  #mvProductsLabel,
  #mvArticlesPanel,
  #mvFaqsPanel {
    scroll-margin-top: 180px;
  }

  [class*="search-results-section"] #ResultsList {
    padding-inline-start: 16px !important;
    padding-inline-end: 16px !important;
  }

  #ResultsList,
  #ResultsList.main-collection-grid {
    padding-inline-start: 8px !important;
    padding-inline-end: 8px !important;
    width: 100% !important;
    flex: 1 1 100% !important;
  }
  #ResultsList > div {
    width: 100% !important;
  }

  .mv-search-extras {
    padding: 0 16px 60px !important;
  }

 /* ── Product card title padding fix ── */
  .product-card__content .text-block {
    padding-inline: 4px !important;
  }

  .product-card__content div[ref="priceContainer"] {
    padding-left: 0 !important;  /* was 12px */
  }

  .mv-products-label {
  padding-inline-start: 16px !important;
  padding-inline-end: 16px !important;
  padding-block-start: 4px !important;   /* reduce space above text */
  padding-block-end: 16px !important;    /* increase space below before grid */
  margin-block-start: -16px !important;  /* pull up if parent has too much top padding */
  }
  
}


/* ── SMALL DESKTOP (1025px – 1504px) ── */
@media (min-width: 1025px) and (max-width: 1504px) {

  /* Crest logo only up to 1250px */
  #header-component a.header-logo img {
    content: url('/cdn/shop/files/M_crest_white_ink_no_BG.svg');
    height: 60px !important;
    width: auto;
  }

  /* Hide the divider */
  #header-component a.header-logo::after {
    display: none !important;
  }

  #header-component a.header-logo {
    padding-inline-end: 0 !important;
    align-self: center !important;
    margin-block: auto !important;
    margin-inline-start: -20px !important;
  }

  /* Compress nav */
  .menu-list__link-title {
    font-size: clamp(8px, 1vw, 9.5px) !important;
    letter-spacing: 0.02em !important;
    white-space: nowrap !important;
  }

  .menu-list__link {
    padding-inline: clamp(1px, 1vw, 4px) !important;
  }

  .header__column--left {
    gap: 0 !important;
  }

  .header__columns.spacing-style {
    gap: 0 !important;
  }

}

/* ── ORIGINAL LOGO (1251px – 1504px) ── */
@media (min-width: 1251px) and (max-width: 1504px) {
  #header-component a.header-logo img {
    content: unset !important;
    height: 54px !important;
    width: auto;
  }

  #header-component a.header-logo {
    padding-inline-end: 32px !important;
  }

.menu-list__link-title {
    font-size: clamp(9.5px, 0.75vw, 12px) !important;
    letter-spacing: 0.02em !important;
    white-space: nowrap !important;
  }

  .menu-list__link {
    padding-inline: clamp(4px, 0.50vw, 8px) !important;
  }

}

/* ── Force hamburger on tablet ── */
@media (min-width: 749px) and (max-width: 1024px) {
  .header__drawer.desktop\:hidden {
    display: block !important;
  }
  header-menu.mobile\:hidden {
    display: none !important;
  }
  .header__columns {
    position: relative !important;
    justify-content: center !important;
  }
  #header-component a.header-logo {
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {

  /* ── 1. Center the tabs ── */
  .mv-search-tabs {
    justify-content: center !important;
  }

  /* ── 2. More scroll margin so labels aren't cut off ── */
  #mvProductsLabel,
  #mvArticlesPanel,
  #mvFaqsPanel {
    scroll-margin-top: 180px !important;
  }

  /* ── 3. Align Products label to grid ── */
  .search-results-section--{{ section.id }} #ResultsList {
    padding-inline-start: 0px !important;
    padding-inline-end: 0px !important;
    margin-inline: 0 !important;
  }
  .search-results-section--{{ section.id }} {
    grid-template-columns: 41px 1fr 41px !important;
  }
  .search-results-section--{{ section.id }} #mvProductsLabel {
    padding-inline-start: 0px !important;
    padding-inline-end: 0px !important;
    margin-inline-start: 0px !important;
  }
  

}

/* ── Bigger hamburger icon ── */
@media (max-width: 1024px) {
  .header-drawer-icon--open svg {
    width: 24px !important;
    height: 24px !important;
  }
  .header__drawer {
    margin-left: 8px !important;
  }
}
  

/* ── Mobile search — back arrow + circle clear ── */
.mv-popup-mobile-header {
  gap: 8px !important;
}

.mv-mobile-back-btn {
  width: 36px !important;
  height: 36px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: none !important;
  border: none !important;
  cursor: pointer !important;
  color: #1a1a1a !important;
  flex-shrink: 0 !important;
  padding: 0 !important;
}

.mv-mobile-clear-circle {
  width: 20px !important;
  height: 20px !important;
  border-radius: 50% !important;
  background: #c8c8c8 !important;
  border: none !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  padding: 0 !important;
}


