/** Shopify CDN: Minification failed

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

**/
/* Professional No-Flash Transitions */
.modern-header {
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.modern-header * {
  transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
}

/* Prevent HTML structure flashing during mode switching */
.mode-toggle__container,
.mode-toggle__slider,
.mode-toggle__slider::before,
.mode-toggle__option {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Smooth transitions for all header elements */
.modern-header__content,
.modern-header__left-section,
.modern-header__center-section,
.modern-header__utility-section,
.modern-header__desktop-nav,
.modern-header__nav-links,
.modern-header__nav-link {
  transition: all 0.2s ease-in-out;
}

/* Hide any potential HTML structure elements */
.modern-header::before,
.modern-header::after,
.modern-header__content::before,
.modern-header__content::after {
  display: none !important;
}

/* Ensure no borders or outlines are visible during transitions */
.modern-header,
.modern-header__content,
.modern-header__desktop-nav,
.modern-header__nav-links {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

/* Modern Header Component Styles - Veg Non-Veg Style */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@600;700&family=Roboto:wght@400;500&display=swap');

/* Theme Color Variables - Using Shopify's Color Scheme System */
.header-wrapper.color-scheme-1 {
  --color-background: var(--color-background);
  --color-background-secondary: var(--color-background);
  --color-text: var(--color-text);
  --color-text-secondary: var(--color-text);
  --color-border: var(--color-border);
  --color-button: var(--color-button);
  --color-button-text: var(--color-button-label);
}

.header-wrapper.color-scheme-2 {
  --color-background: var(--color-background);
  --color-background-secondary: var(--color-background);
  --color-text: var(--color-text);
  --color-text-secondary: var(--color-text);
  --color-border: var(--color-border);
  --color-button: var(--color-button);
  --color-button-text: var(--color-button-label);
}

.header-wrapper.color-scheme-3 {
  --color-background: var(--color-background);
  --color-background-secondary: var(--color-background);
  --color-text: var(--color-text);
  --color-border: var(--color-border);
  --color-button: var(--color-button);
  --color-button-text: var(--color-button-label);
}

.header-wrapper.color-scheme-4 {
  --color-background: var(--color-background);
  --color-background-secondary: var(--color-background);
  --color-text: var(--color-text);
  --color-text-secondary: var(--color-text);
  --color-border: var(--color-border);
  --color-button: var(--color-button);
  --color-button-text: var(--color-button-label);
}

.header-wrapper.color-scheme-5 {
  --color-background: var(--color-background);
  --color-background-secondary: var(--color-background);
  --color-text: var(--color-text);
  --color-text-secondary: var(--color-text);
  --color-border: var(--color-border);
  --color-button: var(--color-button);
  --color-button-text: var(--color-button-label);
}

/* Reset and Base Styles */
.header-wrapper .modern-header {
  background: var(--color-background);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  position: relative;
  top: 0;
  z-index: 1000;
  width: 100%;
  overflow: hidden;
  color: var(--color-text);
}

/* Single Row Header Layout - Full Width with Logo Far Left */
.modern-header__content {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 8px 20px 8px 20px;
  width: 100%;
  max-width: none;
  margin: 0;
  gap: 20px;
  position: relative;
  min-height: 50px;
}

/* Left: Logo and Location Selector - Logo Far Left */
.modern-header__left-section {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  justify-content: flex-start;
  margin-left: 0;
}

/* Center: Empty section for future content */
.modern-header__center-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 40px;
  padding: 0 20px;
}

/* Center section placeholder styling */
.modern-header__center-section:empty::after {
  content: '';
  width: 100%;
  height: 100%;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  user-select: none;
  pointer-events: none;
}

/* Right: Utility Icons */
.modern-header__utility-section {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  justify-self: end;
  margin-left: auto;
  padding-right: 0;
}

.header-wrapper .modern-header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.modern-header__logo-text {
  margin: 0;
  font-size: var(--header-logo-font-size, 20px);
  font-weight: 700;
  color: var(--header-logo-color, #6366f1);
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  letter-spacing: -0.5px;
  transition: all 0.3s ease;
}

.modern-header__logo:hover .modern-header__logo-text {
  transform: scale(1.02);
  text-shadow: 0 2px 8px rgba(99, 102, 241, 0.2);
}

/* Mode Toggle Button - SKIPP/Skipp LUX */
.modern-header__mode-toggle {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
}

.mode-toggle__container {
  position: relative;
  background: #f3f4f6;
  border-radius: 9999px;
  padding: 4px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
  min-width: 240px;
  height: 40px;
}

.mode-toggle__container:hover {
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  transform: translate(-50%, -50%) scale(1.02);
}

/* Fix: keep mode toggle fixed on hover */
.mode-toggle__container:hover {
  transform: none !important;
}
.modern-header.lux-mode .mode-toggle__container:hover {
  transform: none !important;
}

/* Desktop Toggle Touch Feedback */
.mode-toggle__container:active {
  transform: scale(0.98);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.mode-toggle__slider {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  border-radius: 9999px;
  overflow: hidden;
  background: #f3f4f6;
}

.mode-toggle__option {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  color: #6b7280;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
  cursor: pointer;
  user-select: none;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  background: transparent;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 4px;
}

.mode-toggle__option--skipp.active,
.mode-toggle__option--lux.active {
  color: #ffffff;
}

.mode-toggle__slider::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: calc(50% - 2px);
  height: calc(100% - 4px);
  background: #2F2B78;
  border-radius: 9999px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  box-shadow: 0 1px 4px rgba(47, 43, 120, 0.3);
}

/* LUX mode active state - Smooth transition */
.mode-toggle__container[data-mode="lux"] .mode-toggle__slider::before {
  left: calc(50% + 1px);
  background: #2F2B78;
  box-shadow: 0 1px 4px rgba(47, 43, 120, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Premium styling for LUX mode container */
.mode-toggle__container[data-mode="lux"] {
  background: #fff7ec;
  border-color: #8b4513;
}

/* Mobile responsive adjustments */
@media screen and (max-width: 768px) {
  .modern-header__mode-toggle {
    margin: 0 12px;
  }
  
  .mode-toggle__container {
    min-width: 100px;
    height: 32px;
  }
  
  .mode-toggle__option {
    font-size: 8px;
    letter-spacing: 0.2px;
    padding: 0 2px;
  }
}

/* Luxury Mode Styling - Dark Theme with Your Exact Color */
.modern-header.lux-mode {
  background: #2b2b2b !important; /* Luxury dark background */
  border-bottom: none !important; /* Remove beige accent */
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
}

.modern-header.lux-mode .modern-header__logo-text {
  color: #ffffff !important; /* White text on dark background */
  text-shadow: none !important;
}

/* Force ALL icons to be White in LUX mode with maximum specificity */
.modern-header.lux-mode .modern-header__utility-btn svg,
.modern-header.lux-mode .modern-header__utility-btn svg *,
.modern-header.lux-mode .modern-header__utility-btn path,
.modern-header.lux-mode .modern-header__utility-btn circle,
.modern-header.lux-mode .modern-header__utility-btn rect,
.modern-header.lux-mode .modern-header__utility-btn line,
.modern-header.lux-mode .modern-header__utility-btn polyline,
.modern-header.lux-mode .modern-header__utility-btn polygon {
  color: #ffffff !important; /* White icons */
  stroke: #ffffff !important;
  fill: none !important;
  stroke-width: 2px !important;
}

.modern-header.lux-mode .modern-header__utility-btn:hover {
  background: rgba(139, 69, 19, 0.2) !important; /* Beige hover */
  color: #8b4513 !important;
  transform: scale(1.05) !important;
}

.modern-header.lux-mode .modern-header__location-selector {
  background: #fff7ec !important;
  border-color: #8b4513 !important;
  color: #8b4513 !important;
  backdrop-filter: blur(10px) !important;
}

.modern-header.lux-mode .modern-header__location-selector svg {
  color: #8b4513 !important;
  fill: #8b4513 !important;
}

.modern-header.lux-mode .modern-header__location-selector:hover {
  background: #fff7ec !important;
  border-color: #8b4513 !important;
  box-shadow: 0 6px 20px rgba(139, 69, 19, 0.25) !important;
  transform: translateY(-2px) !important;
}

/* Luxury mode navigation styling */
.modern-header.lux-mode .modern-header__nav-link {
  color: #e2be7d !important; /* Luxury menu color */
  font-weight: 400 !important;
  font-size: 13px !important;
  letter-spacing: 0.05em !important;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

.modern-header.lux-mode .modern-header__nav-link:hover {
  color: #fff7ec !important; /* Light hover */
}

.modern-header.lux-mode .modern-header__nav-link.active {
  color: #e2be7d !important;
}

.modern-header.lux-mode .modern-header__nav-link.active::after {
  background: #e2be7d !important; /* Luxury underline */
}

/* Luxury mode mobile navigation */
.modern-header.lux-mode .modern-header__mobile-nav {
  background: #2b2b2b !important;
  border-bottom-color: #333333 !important;
}

.modern-header.lux-mode .modern-header__mobile-nav-link {
  color: #e2be7d !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  letter-spacing: 0.06em !important;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

.modern-header.lux-mode .modern-header__mobile-nav-link:hover {
  color: #fff7ec !important;
}

/* Luxury mode cart count badge */
.modern-header.lux-mode .modern-header__cart-count {
  background: #fff7ec !important;
  border-color: #fff7ec !important;
  color: #8b4513 !important;
}

/* Luxury mode mobile menu drawer - OVERRIDE with dark theme */
.modern-header.lux-mode .mobile-menu-drawer {
  background: #2b2b2b !important;
  border-left: 2px solid #333333 !important;
}

.modern-header.lux-mode .mobile-menu-drawer__link {
  color: #ffffff !important;
}

.modern-header.lux-mode .mobile-menu-drawer__link:hover {
  color: #fff7ec !important;
  background: rgba(255, 247, 236, 0.1) !important;
}

.modern-header.lux-mode .mobile-menu-drawer__close {
  color: #ffffff !important;
}


/* Mobile Toggle Row */
.modern-header__mobile-toggle-row {
  display: none;
}

@media screen and (max-width: 768px) {
  .modern-header__mobile-toggle-row {
    display: block;
    background: #000000;
    border-bottom: 1px solid #000000;
    padding: 8px 12px 10px;
    position: relative; /* no sticky, rely on header wrapper */
    top: 0;
    z-index: 1;
  }
  
  .mobile-toggle-row__inner { 
    width: 100%;
    max-width: none; 
    margin: 0; 
  }
  
  .modern-header__mode-toggle { 
    display: none; 
  }
  
  /* Mobile Toggle Container - Smooth and Professional */
  .modern-header__mobile-toggle-row .mode-toggle__container { 
    width: 100%; 
    height: 44px; 
    padding: 4px; 
    background: #fff7ec;
    border: 1px solid #8b4513;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(139, 69, 19, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
  }
  
  .modern-header__mobile-toggle-row .mode-toggle__container:hover {
    border-color: #e5e7eb;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-1px);
  }
  
  .modern-header__mobile-toggle-row .mode-toggle__container:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  
  /* Touch Active State - Subtle Feedback */
  .modern-header__mobile-toggle-row .mode-toggle__container.touch-active {
    transform: scale(0.98);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  
  /* Mobile Toggle Slider - Smooth Movement */
  .modern-header__mobile-toggle-row .mode-toggle__slider { 
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: #f9fafb;
  }
  
  /* Mobile Toggle Slider Background - Smooth Transition */
  .modern-header__mobile-toggle-row .mode-toggle__slider::before { 
    content: '';
    position: absolute;
    top: 4px; 
    left: 4px; 
    width: calc(50% - 4px); 
    height: calc(100% - 8px); 
    background: #2F2B78;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    box-shadow: 0 2px 6px rgba(47, 43, 120, 0.2);
  }
  
  /* LUX Mode Active State - Smooth Movement */
  .modern-header__mobile-toggle-row .mode-toggle__container[data-mode="lux"] .mode-toggle__slider::before {
    left: calc(50% + 2px);
    background: #2F2B78;
    box-shadow: 0 2px 6px rgba(47, 43, 120, 0.2);
  }
  
  /* Mobile Toggle Options - Better Typography */
  .modern-header__mobile-toggle-row .mode-toggle__option { 
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px; 
    font-weight: 600;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #6b7280;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
    cursor: pointer;
    user-select: none;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    padding: 0 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  /* Active State - Smooth Color Transition */
  .modern-header__mobile-toggle-row .mode-toggle__option.active {
    color: #ffffff;
    font-weight: 700;
  }
  
  /* Hover Effects - Subtle and Smooth */
  .modern-header__mobile-toggle-row .mode-toggle__option:hover:not(.active) {
    color: #374151;
  }
  
  /* Touch Feedback - Subtle Scale */
  .modern-header__mobile-toggle-row .mode-toggle__container:active .mode-toggle__slider::before {
    transform: scale(0.98);
  }
  
  /* Ensure menu/nav spacing after toggle row */
  .modern-header__content { 
    margin-top: 6px; 
  }
}

/* Maximum specificity override for LUX mode icons - REMOVED CONFLICTING STYLES */

/* Location Selector */
.header-wrapper .modern-header__location-selector {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--color-background);
  padding: 8px 12px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: all 0.3s ease;
  max-width: 280px;
  width: 100%;
  border: 1px solid var(--color-border);
  flex-shrink: 0;
  min-width: 0;
  color: var(--color-text);
  white-space: nowrap;
}

/* Ensure location selector has proper contrast */
.header-wrapper .modern-header__location-selector svg {
  color: var(--color-text);
  fill: var(--color-text);
}

.header-wrapper .modern-header__location-text {
  color: var(--color-text);
  font-weight: 500;
}

.modern-header__location-selector:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  border-color: #6366f1;
}

.modern-header__location-selector:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.modern-header__location-icon {
  display: flex;
  align-items: center;
  color: inherit;
  flex-shrink: 0;
}

.modern-header__location-text {
  font-size: 12px;
  font-weight: 500;
  color: inherit;
  font-family: 'Inter', sans-serif;
  flex: 1;
  text-align: center;
  white-space: nowrap;
  overflow: visible;
  text-overflow: clip;
  min-width: 0;
  line-height: 1.2;
}

.modern-header__location-arrow {
  display: flex;
  align-items: center;
  color: #6b7280;
  flex-shrink: 0;
}

/* Utility Icons - Fixed Visibility */
.header-wrapper .modern-header__utility-btn {
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 40px;
  color: var(--color-text);
  text-decoration: none;
  position: relative;
  touch-action: manipulation;
}

.header-wrapper .modern-header__utility-btn:hover {
  background: var(--color-background-secondary);
  transform: scale(1.05);
  color: var(--color-button);
}

.header-wrapper .modern-header__utility-btn:active {
  transform: scale(0.95);
  background: var(--color-border);
}

/* Force icon visibility - CRITICAL FIX */
.header-wrapper .modern-header__utility-btn svg {
  width: 22px;
  height: 22px;
  color: var(--color-text) !important;
  stroke: var(--color-text) !important;
  fill: none !important;
  stroke-width: 2px !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Cart button specific styles */
.modern-header__cart-btn {
  position: relative;
  z-index: 10;
}

.modern-header__cart-btn svg {
  color: var(--color-text) !important;
  stroke: var(--color-text) !important;
  fill: none !important;
  stroke-width: 2px !important;
}

/* Cart Count Badge */
.modern-header__cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: rgb(50, 42, 141);
  color: white;
  border-radius: 50%;
  min-width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  border: 2px solid #eeeeee;
  pointer-events: none;
  z-index: 11;
}

/* Default Desktop Navigation Row - SKIPP pages (unchanged) */
.modern-header__desktop-nav {
  background: var(--color-background);
  border-bottom: 1px solid var(--color-border);
  padding: 0;
}

.modern-header__desktop-nav-content {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 20px;
}

.modern-header__nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 12px 0;
  flex-wrap: wrap;
  border-bottom: 1px solid #000000;
  width: 100%;
  max-width: none;
}

.modern-header__nav-link {
  color: #000000; /* Black text for better visibility */
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  transition: color 0.2s ease;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.modern-header__nav-link:hover {
  color: #333333; /* Dark gray hover for better contrast */
}

.modern-header__nav-link.active {
  color: #000000; /* Black text for active state */
}

.modern-header__nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #000000; /* Black underline for consistency */
  border-radius: 1px;
}

/* Luxury Mode Desktop Navigation - Override for dark theme with MAXIMUM specificity */
.modern-header.lux-mode .modern-header__desktop-nav,
.header-wrapper .modern-header.lux-mode .modern-header__desktop-nav,
body .modern-header.lux-mode .modern-header__desktop-nav,
html body .modern-header.lux-mode .modern-header__desktop-nav {
  background: #2b2b2b !important; /* Luxury menu background */
  border-bottom: none !important; /* Remove all borders */
}

/* Force navigation background in luxury mode with MAXIMUM specificity */
.modern-header.lux-mode .modern-header__desktop-nav,
.modern-header.lux-mode .modern-header__desktop-nav-content,
.header-wrapper .modern-header.lux-mode .modern-header__desktop-nav-content,
body .modern-header.lux-mode .modern-header__desktop-nav-content,
html body .modern-header.lux-mode .modern-header__desktop-nav-content {
  background: #2b2b2b !important;
}

.modern-header.lux-mode .modern-header__nav-links,
.header-wrapper .modern-header.lux-mode .modern-header__nav-links,
body .modern-header.lux-mode .modern-header__nav-links,
html body .modern-header.lux-mode .modern-header__nav-links {
  border-bottom: none !important; /* Remove default border */
  background: transparent !important; /* Ensure no background override */
}

.modern-header.lux-mode .modern-header__nav-link,
.header-wrapper .modern-header.lux-mode .modern-header__nav-link,
body .modern-header.lux-mode .modern-header__nav-link,
html body .modern-header.lux-mode .modern-header__nav-link {
  color: #e2be7d !important;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

.modern-header.lux-mode .modern-header__nav-link:hover,
.header-wrapper .modern-header.lux-mode .modern-header__nav-link:hover,
body .modern-header.lux-mode .modern-header__nav-link:hover,
html body .modern-header.lux-mode .modern-header__nav-link:hover {
  color: #fff7ec !important;
}

.modern-header.lux-mode .modern-header__nav-link.active,
.header-wrapper .modern-header.lux-mode .modern-header__nav-link.active,
body .modern-header.lux-mode .modern-header__nav-link.active,
html body .modern-header.lux-mode .modern-header__nav-link.active {
  color: #e2be7d !important;
}

.modern-header.lux-mode .modern-header__nav-link.active::after,
.header-wrapper .modern-header.lux-mode .modern-header__nav-link.active::after,
body .modern-header.lux-mode .modern-header__nav-link.active::after,
html body .modern-header.lux-mode .modern-header__nav-link.active::after {
  background: #e2be7d !important;
}

/* Luxury Mode Utility Icons - White and Smaller */
.modern-header.lux-mode .modern-header__utility-section {
  gap: 8px !important; /* Closer together */
}

.modern-header.lux-mode .modern-header__utility-btn {
  min-width: 32px !important;
  min-height: 32px !important;
  padding: 6px !important;
}

.modern-header.lux-mode .modern-header__utility-btn svg {
  width: 16px !important;
  height: 16px !important;
}

/* Force ALL icons to be White in LUX mode with maximum specificity */
.modern-header.lux-mode .modern-header__utility-btn svg,
.modern-header.lux-mode .modern-header__utility-btn svg *,
.modern-header.lux-mode .modern-header__utility-btn path,
.modern-header.lux-mode .modern-header__utility-btn circle,
.modern-header.lux-mode .modern-header__utility-btn rect,
.modern-header.lux-mode .modern-header__utility-btn line,
.modern-header.lux-mode .modern-header__utility-btn polyline,
.modern-header.lux-mode .modern-header__utility-btn polygon {
  color: #ffffff !important; /* White icons */
  stroke: #ffffff !important;
  fill: none !important;
  stroke-width: 2px !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Mobile Menu Slider (Mobile Only) */
.modern-header__mobile-nav {
  display: none;
  background: var(--color-background);
  border-bottom: 1px solid var(--color-border);
  padding: 0;
  overflow: hidden;
  position: relative;
}

.modern-header__mobile-nav-content {
  padding: 0 16px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  position: relative;
}

.modern-header__mobile-nav-content::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.modern-header__mobile-nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 4px 0;
  min-width: max-content;
  white-space: nowrap;
  position: relative;
}

.modern-header__mobile-nav-link {
  color: #000000;
  text-decoration: none;
  font-size: 12px;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  padding: 6px 0;
  flex-shrink: 0;
  text-align: center;
}

.modern-header__mobile-nav-link:hover {
  color: var(--header-nav-hover-color, rgb(81, 80, 80));
}

.modern-header__mobile-nav-link.active {
  color: var(--header-nav-active-color, rgb(0, 0, 0));
}

.modern-header__mobile-nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--header-nav-active-color, rgb(0, 0, 0));
  border-radius: 2px;
}

/* Add subtle scroll hint */
.modern-header__mobile-nav-content::after {
  content: '';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  color: #999;
  background: transparent;
  padding: 4px 8px;
  border-radius: 12px;
  pointer-events: none;
  opacity: 0;
  z-index: 3;
}

/* Mobile menu slider enhancements */
@media (max-width: 768px) {
  .modern-header__mobile-nav {
    background: #f8f9fa;
    border-bottom: 1px solid #000000;
  }
  
  /* SKIPP page mobile styling - white backgrounds */
  .modern-header:not(.lux-mode) .modern-header__mobile-toggle-row {
    background: #eeeeee !important;
    border-bottom: 1px solid #eeeeee !important;
  }
  
  .modern-header:not(.lux-mode) .modern-header__mobile-toggle-row .mode-toggle__container {
    background: #eeeeee !important;
    border: 1px solid #cccccc !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
  }
  
  .modern-header:not(.lux-mode) .modern-header__mobile-nav {
    background: #eeeeee !important;
    border-bottom: 1px solid #eeeeee !important;
  }
  
  .modern-header__mobile-nav-content {
    padding: 0 20px;
  }
  
  .modern-header__mobile-nav-links {
    gap: 12px;
    padding: 4px 0;
    justify-content: center;
  }
  
  .modern-header__mobile-nav-link {
    font-size: 10.5px;
    font-weight: 400;
    letter-spacing: 0.04em;
    padding: 4px 0;
    position: relative;
    min-width: 70px;
    text-align: center;
  }
  
  .modern-header__mobile-nav-link.active::after {
    height: 4px;
    background: #495057;
    border-radius: 2px;
    bottom: -2px;
  }
  
  /* Mobile scroll hint */
  .modern-header__mobile-nav-content::after {
    content: '';
    font-size: 11px;
    background: transparent;
    color: transparent;
    padding: 6px 10px;
    border-radius: 15px;
    right: 25px;
    opacity: 0;
  }
  
  /* Mobile location modal optimizations */
  #enhanced-location-modal {
    padding: 10px !important;
  }
  
  #enhanced-location-modal > div {
    max-width: 95vw !important;
    width: 95vw !important;
    max-height: 90vh !important;
    margin: 0 !important;
    border-radius: 16px !important;
  }
  
  #enhanced-location-modal .location-modal__container {
    padding: 16px !important;
    border-radius: 16px !important;
  }
  
  #enhanced-location-modal h2 {
    font-size: 18px !important;
  }
  
  #enhanced-location-modal input {
    padding: 10px 12px !important;
    font-size: 14px !important;
  }
  
  #enhanced-location-modal button {
    padding: 10px 16px !important;
    font-size: 14px !important;
  }
}

@media (max-width: 480px) {
  /* Mobile location modal optimizations for small screens */
  #enhanced-location-modal {
    padding: 8px !important;
  }
  
  #enhanced-location-modal > div {
    max-width: 98vw !important;
    width: 98vw !important;
    max-height: 95vh !important;
    margin: 0 !important;
    border-radius: 12px !important;
  }
  
  #enhanced-location-modal .location-modal__container {
    padding: 14px !important;
    border-radius: 12px !important;
  }
  
  #enhanced-location-modal h2 {
    font-size: 16px !important;
  }
  
  #enhanced-location-modal input {
    padding: 8px 10px !important;
    font-size: 13px !important;
  }
  
  #enhanced-location-modal button {
    padding: 8px 14px !important;
    font-size: 13px !important;
  }
}

@media (max-width: 360px) {
  /* Mobile location modal optimizations for very small screens */
  #enhanced-location-modal {
    padding: 5px !important;
  }
  
  #enhanced-location-modal > div {
    max-width: 100vw !important;
    width: 100vw !important;
    max-height: 100vh !important;
    margin: 0 !important;
    border-radius: 8px !important;
  }
  
  #enhanced-location-modal .location-modal__container {
    padding: 12px !important;
    border-radius: 8px !important;
  }
  
  #enhanced-location-modal h2 {
    font-size: 15px !important;
  }
  
  #enhanced-location-modal input {
    padding: 6px 8px !important;
    font-size: 12px !important;
  }
  
  #enhanced-location-modal button {
    padding: 6px 12px !important;
    font-size: 12px !important;
  }
}



/* Responsive Design */
@media (max-width: 1024px) {
  .modern-header__content {
    padding: 14px 16px;
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .modern-header__content {
    grid-template-columns: auto 1fr auto;
    padding: 6px 16px 6px 16px;
    gap: 12px;
    min-height: 48px;
  }
  
  /* Hide desktop navigation on mobile */
  .modern-header__desktop-nav {
    display: none;
  }
  
  /* Show mobile navigation on mobile */
  .modern-header__mobile-nav {
    display: block;
  }
  
  /* Adjust location selector for mobile */
  .modern-header__location-selector {
    padding: 8px 12px;
    max-width: 200px;
    gap: 8px;
  }
  
  .modern-header__location-text {
    font-size: 11px;
  }
  
  .modern-header__location-icon svg,
  .modern-header__location-arrow svg {
    width: 14px;
    height: 14px;
  }
  
  .modern-header__utility-section {
    gap: 12px;
  }
  
  .modern-header__utility-btn {
    min-width: 36px;
    min-height: 36px;
    padding: 6px;
  }
  
  .modern-header__utility-btn svg {
    width: 20px;
    height: 20px;
  }
  
  .modern-header__logo-text {
    font-size: 22px;
  }
}

@media (max-width: 640px) {
  .modern-header__content {
    grid-template-columns: auto 1fr auto;
    padding: 10px 12px;
    gap: 10px;
    min-height: 52px;
  }
  
  .modern-header__location-selector {
    padding: 6px 10px;
    max-width: 160px;
    gap: 6px;
  }
  
  .modern-header__location-text {
    font-size: 10px;
  }
  
  .modern-header__location-icon svg,
  .modern-header__location-arrow svg {
    width: 12px;
    height: 12px;
  }
  
  .modern-header__utility-section {
    gap: 8px;
  }
  
  .modern-header__utility-btn {
    min-width: 32px;
    min-height: 32px;
    padding: 4px;
  }
  
  .modern-header__utility-btn svg {
    width: 18px;
    height: 18px;
  }
  
  .modern-header__logo-text {
    font-size: 20px;
  }
  
  /* Mobile menu adjustments for small screens */
  .modern-header__mobile-nav-content {
    padding: 0 16px;
  }
  
  .modern-header__mobile-nav-links {
    gap: 36px;
    padding: 18px 0;
    justify-content: center;
  }
  
  .modern-header__mobile-nav-link {
    font-size: 12px;
    letter-spacing: 0.6px;
    padding: 12px 0;
    min-width: 70px;
  }
  
  /* Scroll indicators for small screens */
  .modern-header__mobile-nav::before,
  .modern-header__mobile-nav::after {
    width: 20px;
  }
  
  .modern-header__mobile-nav::before {
    background: linear-gradient(to right, rgba(248,249,250,0.3), transparent);
  }
  
  .modern-header__mobile-nav::after {
    background: linear-gradient(to left, rgba(248,249,250,0.3), transparent);
  }
  
  .modern-header__mobile-nav-content::after {
    content: '';
    font-size: 10px;
    padding: 5px 8px;
    right: 20px;
    opacity: 0;
  }
}

@media (max-width: 480px) {
  .modern-header__content {
    grid-template-columns: auto 1fr auto;
    padding: 8px 10px;
    gap: 8px;
    min-height: 48px;
  }
  
  .modern-header__location-selector {
    padding: 5px 8px;
    max-width: 140px;
    gap: 5px;
  }
  
  .modern-header__location-text {
    font-size: 9px;
  }
  
  .modern-header__location-icon svg,
  .modern-header__location-arrow svg {
    width: 10px;
    height: 10px;
  }
  
  .modern-header__utility-section {
    gap: 6px;
  }
  
  .modern-header__utility-btn {
    min-width: 28px;
    min-height: 28px;
    padding: 3px;
  }
  
  .modern-header__utility-btn svg {
    width: 16px;
    height: 16px;
  }
  
  .modern-header__logo-text {
    font-size: 18px;
  }
  
  /* Mobile menu adjustments for very small screens */
  .modern-header__mobile-nav-content {
    padding: 0 12px;
  }
  
  .modern-header__mobile-nav-links {
    gap: 10px;
    padding: 4px 0;
    justify-content: center;
  }
  
  .modern-header__mobile-nav-link {
    font-size: 10px;
    letter-spacing: 0.35px;
    padding: 4px 0;
    min-width: 60px;
  }
  
  /* Scroll indicators for very small screens */
  .modern-header__mobile-nav::before,
  .modern-header__mobile-nav::after {
    width: 15px;
  }
  
  .modern-header__mobile-nav::before {
    background: linear-gradient(to right, rgba(248,249,250,0.25), transparent);
  }
  
  .modern-header__mobile-nav::after {
    background: linear-gradient(to left, rgba(248,249,250,0.25), transparent);
  }
  
  .modern-header__mobile-nav-content::after {
    content: '';
    font-size: 9px;
    padding: 4px 6px;
    right: 15px;
    opacity: 0;
  }
}

@media (max-width: 360px) {
  .modern-header__content {
    grid-template-columns: auto 1fr auto;
    padding: 6px 8px;
    gap: 6px;
    min-height: 44px;
  }
  
  .modern-header__location-selector {
    padding: 4px 6px;
    max-width: 120px;
    gap: 4px;
  }
  
  .modern-header__location-text {
    font-size: 8px;
  }
  
  .modern-header__location-icon svg,
  .modern-header__location-arrow svg {
    width: 8px;
    height: 8px;
  }
  
  .modern-header__utility-section {
    gap: 4px;
  }
  
  .modern-header__utility-btn {
    min-width: 24px;
    min-height: 24px;
    padding: 2px;
  }
  
  .modern-header__utility-btn svg {
    width: 14px;
    height: 14px;
  }
  
  .modern-header__logo-text {
    font-size: 16px;
  }
}

/* Ensure mobile menu drawer is properly responsive */
@media (max-width: 480px) {
  /* Mobile menu drawer is no longer used */
}

@media (max-width: 360px) {
  /* Mobile menu drawer is no longer used */
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
  .modern-header__utility-btn:hover {
    background: none;
    transform: none;
  }
  
  .modern-header__location-selector:hover {
    transform: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }
  
  .modern-header__nav-link:hover {
    transform: none;
  }
}

/* Landscape orientation adjustments for mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .modern-header__content {
    min-height: 48px;
    padding: 8px 16px;
  }
  
  .modern-header__logo-text {
    font-size: 20px;
  }
  
  .modern-header__location-selector {
    max-width: 160px;
    padding: 6px 10px;
  }
  
  .modern-header__location-text {
    font-size: 10px;
  }
}

/* High DPI display optimizations */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .modern-header {
    border-bottom-width: 0.5px;
  }
  
  .modern-header__desktop-nav {
    border-bottom-width: 0.5px;
  }
  
  .mobile-menu-drawer__content {
    border-right: 0.5px solid #e2e8f0;
  }
}

/* Shopify theme integration */
.header-wrapper {
  position: relative;
}

/* Ensure header doesn't interfere with other theme elements */
.modern-header + * {
  margin-top: 0;
}

/* Fix for Safari sticky header issues */
@supports (-webkit-backdrop-filter: none) {
  .modern-header {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
  }
}

/* Ensure proper stacking context */
.modern-header {
  isolation: isolate;
}

/* Fix for iOS Safari viewport issues */
@supports (-webkit-touch-callout: none) {
  .modern-header {
    position: relative;
  }
  
  .mobile-menu-drawer {
    position: fixed;
  }
}

/* Ensure proper text rendering on all devices */
.modern-header * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Fix for Android Chrome touch issues */
@media (pointer: coarse) {
  .modern-header__utility-btn,
  .modern-header__location-selector {
    -webkit-tap-highlight-color: transparent;
  }
}

/* Ensure proper focus states for accessibility */
.modern-header__utility-btn:focus,
.modern-header__location-selector:focus {
  outline: 2px solid #6366f1;
  outline-offset: 2px;
  border-radius: 8px;
}

/* Fix for very small screens */
@media (max-width: 320px) {
  .modern-header__content {
    grid-template-columns: auto 1fr auto;
    padding: 4px 6px;
    gap: 4px;
    min-height: 40px;
  }
  
  .modern-header__location-selector {
    padding: 3px 5px;
    max-width: 100px;
    gap: 3px;
    font-size: 8px;
  }
  
  .modern-header__location-text {
    font-size: 7px;
  }
  
  .modern-header__location-icon svg,
  .modern-header__location-arrow svg {
    width: 6px;
    height: 6px;
  }
  
  .modern-header__utility-section {
    gap: 3px;
  }
  
  .modern-header__utility-btn {
    min-width: 20px;
    min-height: 20px;
    padding: 1px;
  }
  
  .modern-header__utility-btn svg {
    width: 12px;
    height: 12px;
  }
  
  .modern-header__logo-text {
    font-size: 14px;
  }
}

/* Fix for ultra-wide screens - Full width */
@media (min-width: 1400px) {
  .modern-header__content {
    max-width: none;
  }
  
  .modern-header__desktop-nav-content {
    max-width: none;
  }
}

/* Print styles */
@media print {
  .modern-header {
    position: static;
    box-shadow: none;
    border-bottom: 1px solid #000;
  }
}

/* Hide desktop-only utility buttons on mobile */
@media (max-width: 989px) {
  .modern-header__utility-btn--desktop-only {
    display: none !important;
  }
}

/* Additional mobile optimizations */
@media (max-width: 768px) {
  /* Ensure smooth scrolling on mobile */
  .mobile-menu-drawer {
    /* Mobile menu drawer styles are handled in the base styles above */
    scroll-behavior: smooth;
  }
  
  /* Prevent horizontal scroll on mobile */
  .modern-header {
    overflow-x: hidden;
  }
  
  /* Optimize touch targets for mobile */
  .modern-header__utility-btn {
    min-height: 44px;
    min-width: 44px;
  }
  
  /* Ensure location selector doesn't overflow on small screens */
  .modern-header__location-selector {
    overflow: hidden;
    max-width: 140px;
    padding: 6px 8px;
    font-size: 10px;
  }
  
  /* Optimize left section layout on mobile */
  .modern-header__left-section {
    gap: 8px;
  }

  /* Optimize utility section spacing on mobile */
  .modern-header__utility-section {
    gap: 3px;
    justify-self: end;
    margin-left: auto;
    padding-right: 0;
  }
  
  /* Optimize logo size for mobile */
  .modern-header__logo img {
    max-height: 40px;
    width: auto;
  }
}

/* Ultra-small screen optimizations */
@media (max-width: 375px) {
  .modern-header__content {
    grid-template-columns: auto 1fr auto;
    padding: 6px 8px;
    gap: 6px;
    min-height: 44px;
  }
  
  .modern-header__location-selector {
    padding: 4px 6px;
    max-width: 110px;
    gap: 4px;
  }
  
  .modern-header__location-text {
    font-size: 8px;
  }
  
  .modern-header__location-icon svg,
  .modern-header__location-arrow svg {
    width: 8px;
    height: 8px;
  }
  
  .modern-header__utility-section {
    gap: 4px;
  }
  
  .modern-header__utility-btn {
    min-width: 24px;
    min-height: 24px;
    padding: 2px;
  }
  
  .modern-header__utility-btn svg {
    width: 14px;
    height: 14px;
  }
  
  .modern-header__logo-text {
    font-size: 16px;
  }
}

/* Ensure proper spacing on medium screens */
@media (min-width: 769px) and (max-width: 1024px) {
  .modern-header__content {
    padding: 14px 18px;
    gap: 18px;
  }
  
  .modern-header__location-selector {
    max-width: 260px;
  }
  
  .modern-header__utility-section {
    gap: 18px;
  }
}

/* Large screen optimizations */
@media (min-width: 1025px) {
  .modern-header__content {
    padding: 18px 24px;
    gap: 24px;
  }
  
  .modern-header__location-selector {
    max-width: 300px;
  }
  
  .modern-header__utility-section {
    gap: 20px;
  }
  
  .modern-header__utility-btn {
    min-width: 44px;
    min-height: 44px;
    padding: 10px;
  }
  
  .modern-header__utility-btn svg {
    width: 24px;
    height: 24px;
  }
}

/* Ensure proper icon alignment across all screen sizes */
.modern-header__utility-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Fix for icon centering issues */
.modern-header__utility-btn svg {
  display: block;
  margin: 0 auto;
}

/* Ensure cart count badge is properly positioned */
.modern-header__cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: rgb(50, 42, 141);
  color: white;
  border-radius: 50%;
  min-width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  border: 2px solid #eeeeee;
  pointer-events: none;
  z-index: 11;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Mobile cart count badge adjustments */
@media (max-width: 768px) {
  .modern-header__cart-count {
    top: -4px;
    right: -4px;
    min-width: 16px;
    height: 16px;
    font-size: 10px;
    border-width: 1.5px;
  }
}

@media (max-width: 480px) {
  .modern-header__cart-count {
    top: -3px;
    right: -3px;
    min-width: 14px;
    height: 14px;
    font-size: 9px;
    border-width: 1px;
  }
}

/* Ensure proper focus states for accessibility */
.modern-header__utility-btn:focus,
.modern-header__location-selector:focus {
  outline: 2px solid #6366f1;
  outline-offset: 2px;
  border-radius: 8px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .modern-header__utility-btn svg {
    stroke-width: 3px !important;
  }
  
  .modern-header__location-selector {
    border-width: 2px;
  }
  
  .modern-header__cart-count {
    border-width: 3px;
    border-color: #000000;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .modern-header * {
    transition: none !important;
    animation: none !important;
  }
  
  .modern-header__utility-btn:hover,
  .modern-header__location-selector:hover,
  .modern-header__nav-link:hover {
    transform: none !important;
  }
}

/* Ensure cart icon is always visible */
.modern-header__cart-btn {
  position: relative;
  z-index: 10;
}

.modern-header__cart-btn svg {
  color: var(--color-text) !important;
  stroke: var(--color-text) !important;
  fill: none !important;
  stroke-width: 2px !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Force all utility icons to be visible */
.modern-header__utility-btn svg,
.modern-header__utility-btn svg *,
.modern-header__utility-btn path,
.modern-header__utility-btn circle,
.modern-header__utility-btn rect,
.modern-header__utility-btn line,
.modern-header__utility-btn polyline,
.modern-header__utility-btn polygon {
  color: var(--color-text) !important;
  stroke: var(--color-text) !important;
  fill: none !important;
  stroke-width: 2px !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Additional icon visibility fixes */
.modern-header__utility-section svg,
.modern-header__utility-section path,
.modern-header__utility-section circle,
.modern-header__utility-section rect,
.modern-header__utility-section line,
.modern-header__utility-section polyline,
.modern-header__utility-section polygon {
  color: var(--color-text) !important;
  stroke: var(--color-text) !important;
  fill: none !important;
  stroke-width: 2px !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Specific cart icon styling */
.modern-header__cart-btn svg,
.modern-header__cart-btn path,
.modern-header__cart-btn line {
  color: var(--color-text) !important;
  stroke: var(--color-text) !important;
  fill: none !important;
  stroke-width: 2px !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Fallback for icon visibility issues */
.modern-header__utility-btn svg {
  color: #000000 !important;
  stroke: #000000 !important;
  fill: none !important;
  stroke-width: 2px !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Ensure icons are visible in all color schemes */
.header-wrapper.color-scheme-1 .modern-header__utility-btn svg,
.header-wrapper.color-scheme-2 .modern-header__utility-btn svg,
.header-wrapper.color-scheme-3 .modern-header__utility-btn svg,
.header-wrapper.color-scheme-4 .modern-header__utility-btn svg,
.header-wrapper.color-scheme-5 .modern-header__utility-btn svg {
  color: var(--color-text) !important;
  stroke: var(--color-text) !important;
  fill: none !important;
  stroke-width: 2px !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* ULTIMATE ICON VISIBILITY FIX - Direct color values */
.modern-header__utility-btn svg,
.modern-header__utility-btn svg *,
.modern-header__utility-btn path,
.modern-header__utility-btn circle,
.modern-header__utility-btn rect,
.modern-header__utility-btn line,
.modern-header__utility-btn polyline,
.modern-header__utility-btn polygon {
  color: #000000 !important;
  stroke: #000000 !important;
  fill: none !important;
  stroke-width: 2px !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Force all SVG elements in utility section to be visible - SKIPP mode only */
.modern-header:not(.lux-mode) .modern-header__utility-section svg,
.modern-header:not(.lux-mode) .modern-header__utility-section svg *,
.modern-header:not(.lux-mode) .modern-header__utility-section path,
.modern-header:not(.lux-mode) .modern-header__utility-section circle,
.modern-header:not(.lux-mode) .modern-header__utility-section rect,
.modern-header:not(.lux-mode) .modern-header__utility-section line,
.modern-header:not(.lux-mode) .modern-header__utility-section polyline,
.modern-header:not(.lux-mode) .modern-header__utility-section polygon {
  color: #000000 !important;
  stroke: #000000 !important;
  fill: none !important;
  stroke-width: 2px !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Specific icon targeting with direct colors */
.modern-header__utility-btn[href*="search"] svg,
.modern-header__utility-btn[href*="cart"] svg,
.modern-header__utility-btn[href*="account"] svg,
.modern-header__utility-btn[href*="wishlist"] svg {
  color: #000000 !important;
  stroke: #000000 !important;
  fill: none !important;
  stroke-width: 2px !important;
  opacity: 1 !important;
  visibility: visible !important;
}


/* Location selector icons */
.modern-header__location-icon svg,
.modern-header__location-arrow svg {
  color: #000000 !important;
  fill: #000000 !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Override any theme color issues */
.header-wrapper .modern-header__utility-btn svg,
.header-wrapper .modern-header__utility-btn svg * {
  color: #000000 !important;
  stroke: #000000 !important;
  fill: none !important;
  stroke-width: 2px !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Force display of all SVG elements */
.modern-header svg {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Ensure proper icon sizing and positioning */
.modern-header__utility-btn svg {
  width: 22px !important;
  height: 22px !important;
  display: block !important;
  margin: 0 auto !important;
}

/* MAXIMUM SPECIFICITY ICON FIXES - SKIPP mode only */
body .header-wrapper .modern-header:not(.lux-mode) .modern-header__utility-section .modern-header__utility-btn svg,
body .header-wrapper .modern-header:not(.lux-mode) .modern-header__utility-section .modern-header__utility-btn svg *,
body .header-wrapper .modern-header:not(.lux-mode) .modern-header__utility-section .modern-header__utility-btn path,
body .header-wrapper .modern-header:not(.lux-mode) .modern-header__utility-section .modern-header__utility-btn circle,
body .header-wrapper .modern-header:not(.lux-mode) .modern-header__utility-section .modern-header__utility-btn rect,
body .header-wrapper .modern-header:not(.lux-mode) .modern-header__utility-section .modern-header__utility-btn line,
body .header-wrapper .modern-header:not(.lux-mode) .modern-header__utility-section .modern-header__utility-btn polyline,
body .header-wrapper .modern-header:not(.lux-mode) .modern-header__utility-section .modern-header__utility-btn polygon {
  color: #000000 !important;
  stroke: #000000 !important;
  fill: none !important;
  stroke-width: 2px !important;
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
}

/* Force all icons to be black and visible */
.modern-header * svg,
.modern-header * path,
.modern-header * circle,
.modern-header * rect,
.modern-header * line,
.modern-header * polyline,
.modern-header * polygon {
  color: #000000 !important;
  stroke: #000000 !important;
  fill: none !important;
  stroke-width: 2px !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Specific override for any hidden icons */
.modern-header svg[style*="display: none"],
.modern-header svg[style*="visibility: hidden"],
.modern-header svg[style*="opacity: 0"] {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Ensure icons are not clipped or hidden */
.modern-header__utility-btn {
  overflow: visible !important;
  position: relative !important;
}

.modern-header__utility-btn svg {
  overflow: visible !important;
  position: relative !important;
  z-index: 1 !important;
}

/* Force icon colors with !important */
.modern-header__utility-btn svg {
  color: var(--color-text) !important;
  stroke: var(--color-text) !important;
}

/* Mobile Menu Drawer Styles */
.mobile-menu-drawer {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: var(--color-background);
  border-right: 1px solid var(--color-border);
  z-index: 9999;
  transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  box-shadow: 4px 0 20px rgba(0, 0, 0, 0.1);
}

/* Luxury mode override for mobile menu drawer */
.lux-mode .mobile-menu-drawer {
  background: #2b2b2b !important;
  border-right: 1px solid #333333 !important;
  box-shadow: 4px 0 20px rgba(255, 255, 255, 0.1) !important;
}

.mobile-menu-drawer.active {
  left: 0;
}

.mobile-menu-drawer__content {
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.mobile-menu-drawer__header {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border);
}

.mobile-menu-drawer__close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--color-text);
  padding: 8px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.mobile-menu-drawer__close:hover {
  background: var(--color-background-secondary);
  color: var(--color-button);
}

.mobile-menu-drawer__nav {
  flex: 1;
}

.mobile-menu-drawer__menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu-drawer__menu li {
  margin-bottom: 8px;
}

.mobile-menu-drawer__link {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  color: var(--color-text);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.mobile-menu-drawer__link:hover,
.mobile-menu-drawer__link.active {
  background: var(--color-background-secondary);
  color: var(--color-button);
  transform: translateX(4px);
}

/* Luxury mode override for mobile menu drawer links */
.lux-mode .mobile-menu-drawer__link {
  color: #ffffff !important;
}

.lux-mode .mobile-menu-drawer__link:hover,
.lux-mode .mobile-menu-drawer__link.active {
  background: rgba(255, 247, 236, 0.1) !important;
  color: #fff7ec !important;
  transform: translateX(4px);
}


@media screen and (max-width: 768px) {
  .modern-header__utility-btn--desktop-only {
    display: none;
  }
  
  .modern-header__desktop-nav {
    display: none;
  }
  
  .modern-header__mobile-nav {
    display: block;
  }
}

@media screen and (min-width: 769px) {
  .modern-header__mobile-nav {
    display: none;
  }
  
  .mobile-menu-drawer {
    display: none;
  }
  
  /* Show desktop navigation on desktop */
  .modern-header__desktop-nav {
    display: block;
  }
}



/* Mobile Toggle Row */
.modern-header__mobile-toggle-row {
  display: none;
}

@media screen and (max-width: 768px) {
  .modern-header__mobile-toggle-row {
    display: block;
    background: #000000;
    border-bottom: 1px solid #000000;
    padding: 8px 12px 10px;
    position: relative; /* no sticky, rely on header wrapper */
    top: 0;
    z-index: 1;
  }
  
  .mobile-toggle-row__inner { 
    width: 100%;
    max-width: none; 
    margin: 0; 
  }
  
  .modern-header__mode-toggle { 
    display: none; 
  }
  
  /* Mobile Toggle Container - Smooth and Professional */
  .modern-header__mobile-toggle-row .mode-toggle__container { 
    width: 100%; 
    height: 44px; 
    padding: 4px; 
    background: #fff7ec;
    border: 1px solid #8b4513;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(139, 69, 19, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
  }
  
  .modern-header__mobile-toggle-row .mode-toggle__container:hover {
    border-color: #e5e7eb;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-1px);
  }
  
  .modern-header__mobile-toggle-row .mode-toggle__container:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  
  /* Touch Active State - Subtle Feedback */
  .modern-header__mobile-toggle-row .mode-toggle__container.touch-active {
    transform: scale(0.98);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  
  /* Mobile Toggle Slider - Smooth Movement */
  .modern-header__mobile-toggle-row .mode-toggle__slider { 
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: #f9fafb;
  }
  
  /* Mobile Toggle Slider Background - Smooth Transition */
  .modern-header__mobile-toggle-row .mode-toggle__slider::before { 
    content: '';
    position: absolute;
    top: 4px; 
    left: 4px; 
    width: calc(50% - 4px); 
    height: calc(100% - 8px); 
    background: #2F2B78;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    box-shadow: 0 2px 6px rgba(47, 43, 120, 0.2);
  }
  
  /* LUX Mode Active State - Smooth Movement */
  .modern-header__mobile-toggle-row .mode-toggle__container[data-mode="lux"] .mode-toggle__slider::before {
    left: calc(50% + 2px);
    background: #2F2B78;
    box-shadow: 0 2px 6px rgba(47, 43, 120, 0.2);
  }
  
  /* Mobile Toggle Options - Better Typography */
  .modern-header__mobile-toggle-row .mode-toggle__option { 
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px; 
    font-weight: 600;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #6b7280;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
    cursor: pointer;
    user-select: none;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    padding: 0 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  /* Active State - Smooth Color Transition */
  .modern-header__mobile-toggle-row .mode-toggle__option.active {
    color: #ffffff;
    font-weight: 700;
  }
  
  /* Hover Effects - Subtle and Smooth */
  .modern-header__mobile-toggle-row .mode-toggle__option:hover:not(.active) {
    color: #374151;
  }
  
  /* Touch Feedback - Subtle Scale */
  .modern-header__mobile-toggle-row .mode-toggle__container:active .mode-toggle__slider::before {
    transform: scale(0.98);
  }
  
  /* Ensure menu/nav spacing after toggle row */
  .modern-header__content { 
    margin-top: 6px; 
  }
}

/* Header Theme Transitions */
.modern-header.theme-transitioning {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-header.theme-transitioning * {
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Body Fade Transition */
body {
  transition: opacity 0.2s ease;
}

/* Luxury Mode Body Classes */
body.luxury-mode {
  --luxury-mode: true;
}

body.skipp-mode {
  --luxury-mode: false;
}

/* Product Filtering Styles */
body.luxury-mode [data-product-type="skipp"] {
  display: none !important;
}

body.skipp-mode [data-product-type="luxury"] {
  display: none !important;
}

body.luxury-mode [data-luxury] {
  display: block !important;
}

body.skipp-mode .product-card:not([data-luxury]) {
  display: block !important;
}