/** Shopify CDN: Minification failed

Line 1256:17 Expected identifier but found whitespace
Line 1257:3 Unexpected "="

**/
/* ==============================================
   NEVO Design System — Konsolidiert
   Premium Kitchenware · Minimalistisch · 0 Kompromisse
   Version: 3.0 (Merged nevo-custom + nevo-design-system)
   ============================================== */

/* --- Design Tokens --- */
:root {
  /* Colors */
  --nevo-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --nevo-black: #010101;
  --nevo-white: #FFFFFF;
  --nevo-dark: #1E1E1E;
  --nevo-grey-dark: #1E1E1E;
  --nevo-grey-medium: #555555;
  --nevo-grey-light: #888888;
  --nevo-grey-bg: #F5F5F5;
  --nevo-grey-border: #E5E5E5;
  --nevo-gray-50: #fafafa;
  --nevo-gray-100: #f5f5f5;
  --nevo-gray-200: #e5e5e5;
  --nevo-gray-400: #888;
  --nevo-gray-600: #555;

  /* Spacing (8px grid) */
  --nevo-space-xs: 8px;
  --nevo-space-sm: 16px;
  --nevo-space-md: 24px;
  --nevo-space-lg: 32px;
  --nevo-space-xl: 48px;
  --nevo-space-2xl: 64px;
  --nevo-space-3xl: 80px;
  --nevo-space-4xl: 96px;

  /* Layout */
  --nevo-max-width: 1200px;
  --nevo-content-padding: 24px;

  /* Transitions */
  --nevo-transition: 200ms ease;
  --font-heading-family: 'Inter', sans-serif;
  --font-body-family: 'Inter', sans-serif;
}

/* --- Global Reset --- */
*, *::before, *::after {
  border-radius: 0 !important;
}

body {
  font-family: var(--nevo-font);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--nevo-font);
}

html {
  scroll-behavior: smooth;
  color-scheme: light;
}

::selection {
  background: var(--nevo-black);
  color: var(--nevo-white);
}

/* --- Focus States (Accessibility) --- */
:focus-visible {
  outline: 2px solid var(--nevo-black) !important;
  outline-offset: 2px !important;
}

/* --- Shopify Buttons (Global) --- */
.button, .shopify-challenge__button, .customer button {
  font-family: var(--nevo-font) !important;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: opacity var(--nevo-transition) !important;
}

.button:hover, .shopify-challenge__button:hover {
  opacity: 0.85;
}

/* ==============================================
   NEVO TYPOGRAPHY
   ============================================== */

.nevo-section * {
  font-family: var(--nevo-font);
  box-sizing: border-box;
}

.nevo-overline {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--nevo-grey-light);
  margin: 0 0 var(--nevo-space-sm);
}

.nevo-h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--nevo-black);
}

.nevo-h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--nevo-black);
}

.nevo-h3 {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--nevo-black);
}

.nevo-subtitle {
  font-family: var(--nevo-font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--nevo-gray-600);
}

.nevo-body {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--nevo-grey-medium);
  margin: 0;
}

.nevo-body-lg {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--nevo-grey-medium);
  margin: 0;
}

.nevo-price {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--nevo-black);
  font-variant-numeric: tabular-nums;
}

.nevo-caption {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--nevo-grey-light);
}

/* ==============================================
   NEVO BUTTONS
   ============================================== */

.nevo-btn-primary {
  display: inline-block;
  background: var(--nevo-black);
  color: var(--nevo-white);
  font-family: var(--nevo-font);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 16px 48px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: background var(--nevo-transition), transform var(--nevo-transition);
  min-height: 52px;
  line-height: 1;
}

.nevo-btn-primary:hover {
  background: var(--nevo-grey-dark);
  transform: scale(0.98);
}

.nevo-btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--nevo-black);
  font-family: var(--nevo-font);
  font-size: 14px;
  font-weight: 600;
  padding: 14px 36px;
  border: 1.5px solid var(--nevo-black);
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: all var(--nevo-transition);
}

.nevo-btn-secondary:hover {
  background: var(--nevo-black);
  color: var(--nevo-white);
}

.nevo-btn-link {
  font-family: var(--nevo-font);
  font-size: 14px;
  font-weight: 600;
  color: var(--nevo-black);
  text-decoration: none;
  border-bottom: 1px solid var(--nevo-grey-border);
  padding-bottom: 4px;
  transition: border-color var(--nevo-transition);
}

.nevo-btn-link:hover {
  border-color: var(--nevo-black);
}

/* NEVO CTA (alternate button style) */
.nevo-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--nevo-font);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 32px;
  background: var(--nevo-black);
  color: var(--nevo-white);
  border: none;
  cursor: pointer;
  transition: opacity var(--nevo-transition);
}

.nevo-cta:hover {
  opacity: 0.85;
  color: var(--nevo-white);
  text-decoration: none;
}

.nevo-cta--outline {
  background: transparent;
  color: var(--nevo-black);
  border: 1.5px solid var(--nevo-black);
}

.nevo-cta--outline:hover {
  background: var(--nevo-black);
  color: var(--nevo-white);
}

/* Inverted buttons (for dark sections) */
.nevo-dark .nevo-btn-primary {
  background: var(--nevo-white);
  color: var(--nevo-black);
}

.nevo-dark .nevo-btn-primary:hover {
  background: #f0f0f0;
}

.nevo-dark .nevo-btn-link {
  color: var(--nevo-white);
  border-color: #555;
}

.nevo-dark .nevo-btn-link:hover {
  border-color: var(--nevo-white);
}

/* ==============================================
   LAYOUT
   ============================================== */

.nevo-section {
  padding: var(--nevo-space-3xl) var(--nevo-content-padding);
}

.nevo-section.nevo-compact {
  padding: var(--nevo-space-lg) var(--nevo-content-padding);
}

.nevo-section.nevo-fullbleed {
  padding: 0;
}

.nevo-container {
  max-width: var(--nevo-max-width);
  margin: 0 auto;
}

.nevo-grid-2 {
  display: flex;
  gap: var(--nevo-space-3xl);
  align-items: center;
}

.nevo-grid-2 > * {
  flex: 1;
}

.nevo-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--nevo-space-xl);
}

.nevo-grid-4 {
  display: flex;
  justify-content: space-around;
  gap: var(--nevo-space-md);
  flex-wrap: wrap;
}

.nevo-grid-4 > * {
  flex: 1;
  min-width: 140px;
  text-align: center;
}

/* ==============================================
   IMAGES
   ============================================== */

.nevo-img {
  max-width: 100%;
  height: auto;
  display: block;
}

.nevo-img-center {
  margin: 0 auto;
}

.media > img,
.product__media-item img {
  transition: opacity 0.3s ease;
}

/* ==============================================
   DARK SECTION
   ============================================== */

.nevo-dark {
  background: var(--nevo-black);
  color: var(--nevo-white);
}

.nevo-dark .nevo-h1,
.nevo-dark .nevo-h2,
.nevo-dark .nevo-h3 {
  color: var(--nevo-white);
}

.nevo-dark .nevo-body,
.nevo-dark .nevo-body-lg {
  color: #aaaaaa;
}

.nevo-dark .nevo-overline {
  color: #888888;
}

/* Background helpers */
.nevo-bg-white { background: var(--nevo-white); }
.nevo-bg-grey { background: var(--nevo-grey-bg); }

/* ==============================================
   ANNOUNCEMENT BAR
   ============================================== */

.announcement-bar {
  font-family: var(--nevo-font);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ==============================================
   HEADER / NAVIGATION
   ============================================== */

.header__menu-item {
  font-family: var(--nevo-font);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.header__menu-item:hover {
  opacity: 0.7;
}

.header__heading-logo-wrapper img,
.shopify-section--header .header__heading-logo-wrapper img {
  max-height: 36px !important;
  width: auto;
}

/* ==============================================
   PRODUCT PAGE (PDP)
   ============================================== */

/* Main CTA Button */
.product-form__submit {
  height: 52px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  background: var(--nevo-black) !important;
  color: var(--nevo-white) !important;
  transition: opacity var(--nevo-transition) !important;
}

.product-form__submit:hover {
  opacity: 0.85 !important;
}

.product-form__submit[disabled] {
  opacity: 0.4 !important;
  cursor: not-allowed !important;
}

/* Quantity selector */
.quantity {
  border-color: var(--nevo-gray-200) !important;
}

.quantity__button {
  color: var(--nevo-black) !important;
}

/* Product media gallery */
.product__media-wrapper img {
  object-fit: contain;
}

.product__media-item {
  background: var(--nevo-gray-50);
}

/* Product thumbnails */
.thumbnail {
  border-color: transparent !important;
  transition: border-color var(--nevo-transition);
}

.thumbnail.is-active,
.thumbnail:hover {
  border-color: var(--nevo-black) !important;
}

/* Product price */
.price-item--regular, .price-item--sale {
  font-family: var(--nevo-font);
  font-weight: 700;
  font-size: 20px;
}

/* Variant picker buttons */
.product-form__input label {
  font-family: var(--nevo-font) !important;
}

/* Product info spacing */
.product__info-container > *:not(:last-child) {
  margin-bottom: 8px;
}

/* Trust badges on PDP */
.nevo-trust-badges {
  margin: 16px 0 !important;
  padding: 14px !important;
  border: 1px solid var(--nevo-gray-200) !important;
}

.nevo-trust-badges p {
  font-family: var(--nevo-font) !important;
}

/* Product description */
.product__description {
  font-size: 15px;
  line-height: 1.7;
  color: var(--nevo-gray-600);
}

.product__description h2,
.product__description h3 {
  color: var(--nevo-black);
  margin-top: 24px;
}

.product__description table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
}

.product__description td,
.product__description th {
  padding: 8px 12px;
  border-bottom: 1px solid var(--nevo-gray-200);
  text-align: left;
  font-size: 14px;
}

/* NEVO Hero Section */
.nevo-hero-badge {
  display: inline-block;
  font-family: var(--nevo-font);
  font-size: 13px;
  font-weight: 600;
  border: 1px solid var(--nevo-gray-200);
  background: var(--nevo-gray-50);
  padding: 6px 12px;
  color: var(--nevo-black);
}

/* ==============================================
   STICKY ADD-TO-CART (Mobile Only)
   ============================================== */

.nevo-sticky-atc {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  border-top: 1px solid var(--nevo-grey-border);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 64px;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.06);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.95);
}

.nevo-sticky-atc.visible {
  transform: translateY(0);
}

.nevo-sticky-info {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-width: 0;
  gap: 2px;
}

.nevo-sticky-name {
  font-family: var(--nevo-font);
  font-size: 13px;
  font-weight: 500;
  color: var(--nevo-grey-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
}

.nevo-sticky-price {
  font-family: var(--nevo-font);
  font-size: 18px;
  font-weight: 700;
  color: var(--nevo-black);
  white-space: nowrap;
  line-height: 1.2;
}

.nevo-sticky-btn {
  font-family: var(--nevo-font);
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  max-width: 260px;
  background: var(--nevo-black);
  color: var(--nevo-white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity var(--nevo-transition);
  -webkit-tap-highlight-color: transparent;
}

.nevo-sticky-btn:hover,
.nevo-sticky-btn:active {
  opacity: 0.85;
  color: var(--nevo-white);
  text-decoration: none;
}

@media (min-width: 769px) {
  .nevo-sticky-atc {
    padding: 12px 40px;
    justify-content: center;
    gap: 24px;
  }
  .nevo-sticky-atc .nevo-sticky-btn {
    max-width: 300px;
    flex: 0 0 auto;
    padding: 0 48px;
  }
}

@media (max-width: 768px) {
  body.nevo-sticky-active {
    padding-bottom: 64px;
  }
}

/* ==============================================
   CART DRAWER
   ============================================== */

.cart-drawer,
.drawer,
cart-drawer {
  border-radius: 0 !important;
  z-index: 1200 !important;
}

.cart-notification {
  border-radius: 0 !important;
}

/* ==============================================
   LEGAL PAGES
   ============================================== */

.page-width--narrow {
  max-width: 700px;
}

.page-width--narrow h1 {
  font-family: var(--nevo-font);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 24px;
}

.page-width--narrow h2,
.page-width--narrow h3 {
  font-family: var(--nevo-font);
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 12px;
}

.page-width--narrow p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--nevo-gray-600);
}

/* ==============================================
   FAQ ON PDP
   ============================================== */

.nevo-faq-item summary {
  transition: color var(--nevo-transition);
}

.nevo-faq-item summary:hover {
  color: var(--nevo-gray-600);
}

/* ==============================================
   UTILITIES
   ============================================== */

.nevo-text-center { text-align: center; }
.nevo-mt-sm { margin-top: var(--nevo-space-sm); }
.nevo-mt-md { margin-top: var(--nevo-space-md); }
.nevo-mt-lg { margin-top: var(--nevo-space-lg); }
.nevo-mt-xl { margin-top: var(--nevo-space-xl); }
.nevo-mb-sm { margin-bottom: var(--nevo-space-sm); }
.nevo-mb-md { margin-bottom: var(--nevo-space-md); }
.nevo-mb-lg { margin-bottom: var(--nevo-space-lg); }
.nevo-mb-xl { margin-bottom: var(--nevo-space-xl); }

/* Prevent mid-word breaks at any viewport width */
.nevo-h1, .nevo-h2, .nevo-h3, h1, h2, h3 {
  word-break: keep-all !important;
  overflow-wrap: normal !important;
  hyphens: none !important;
  -webkit-hyphens: none !important;
}

/* ==============================================
   MOBILE RESPONSIVE
   ============================================== */

@media (max-width: 768px) {
  .nevo-section {
    padding: var(--nevo-space-xl) var(--nevo-content-padding);
  }

  .nevo-section.nevo-compact {
    padding: var(--nevo-space-md) var(--nevo-content-padding);
  }

  .nevo-grid-2 {
    flex-direction: column;
    gap: var(--nevo-space-lg);
  }

  .nevo-grid-2.nevo-reverse-mobile {
    flex-direction: column-reverse;
  }

  .nevo-grid-3 {
    grid-template-columns: 1fr;
    gap: var(--nevo-space-lg);
  }

  .nevo-grid-4 > * {
    min-width: 45%;
  }

  .nevo-btn-primary {
    width: 100%;
    padding: 16px 24px;
    font-size: 16px;
  }

  .nevo-hide-mobile {
    display: none !important;
  }

  .nevo-container {
    padding: 0 16px;
  }
}

@media (max-width: 480px) {
  .nevo-grid-4 > * {
    min-width: 100%;
  }
}

/* ==============================================
   PRINT STYLES
   ============================================== */

@media print {
  .nevo-sticky-atc,
  .announcement-bar,
  .header {
    display: none !important;
  }
}

/* ==============================================
   DARK MODE SAFETY
   ============================================== */

@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: light;
  }

  .nevo-bg-white,
  .nevo-section:not(.nevo-dark) {
    background-color: #FFFFFF !important;
    color: #010101 !important;
  }

  .nevo-bg-grey {
    background-color: #F5F5F5 !important;
    color: #010101 !important;
  }

  .nevo-dark {
    background-color: #010101 !important;
    color: #FFFFFF !important;
  }

  .nevo-body,
  .nevo-body-lg {
    color: #555555 !important;
  }

  .nevo-dark .nevo-body,
  .nevo-dark .nevo-body-lg {
    color: #aaaaaa !important;
  }

  .nevo-h1, .nevo-h2, .nevo-h3, .nevo-price {
    color: #010101 !important;
  }

  .nevo-dark .nevo-h1,
  .nevo-dark .nevo-h2,
  .nevo-dark .nevo-h3 {
    color: #FFFFFF !important;
  }

  .nevo-caption, .nevo-overline {
    color: #888888 !important;
  }

  .nevo-btn-primary {
    background: #010101 !important;
    color: #FFFFFF !important;
  }

  .nevo-dark .nevo-btn-primary {
    background: #FFFFFF !important;
    color: #010101 !important;
  }

  .nevo-faq-item summary {
    color: #010101 !important;
  }

  .nevo-faq-item p {
    color: #555555 !important;
  }

  table, table th, table td {
    color: #010101 !important;
  }

  .nevo-section.nevo-bg-grey div[style*="background:#fff"],
  .nevo-section.nevo-bg-grey div[style*="background: #fff"] {
    background: #FFFFFF !important;
  }
}


/* Disable lightbox/zoom on product images (keep images visible) */
.product-media-modal {
  display: none !important;
}

.product__media-toggle {
  display: none !important;
  pointer-events: none !important;
}

.product__modal-opener {
  display: block !important;
  pointer-events: auto !important;
  cursor: default !important;
}


.product__media-item {
  cursor: default !important;
}


/* ==============================================
   JUDGE.ME REVIEWS - NEVO STYLING
   ============================================== */

/* Overall widget font */
.jdgm-widget,
.jdgm-rev,
.jdgm-rev__text,
.jdgm-rev__author,
.jdgm-rev-widg__title,
.jdgm-rev-widg__summary-text {
  font-family: var(--nevo-font, 'Inter', sans-serif) !important;
}

/* Star color - black for NEVO */
.jdgm-star {
  color: #010101 !important;
}

/* Review widget title */
.jdgm-rev-widg__title {
  font-size: 24px !important;
  font-weight: 600 !important;
  color: #010101 !important;
  letter-spacing: -0.02em !important;
}

/* Review cards */
.jdgm-rev {
  border-bottom: 1px solid #f0f0f0 !important;
  padding: 20px 0 !important;
  border-radius: 0 !important;
}

/* Review text */
.jdgm-rev__text {
  font-size: 14px !important;
  line-height: 1.7 !important;
  color: #555 !important;
}

/* Review author */
.jdgm-rev__author {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #010101 !important;
}

/* Review date */
.jdgm-rev__timestamp {
  font-size: 12px !important;
  color: #888 !important;
}

/* Preview badge (stars on PDP) */
.jdgm-prev-badge {
  font-family: var(--nevo-font, 'Inter', sans-serif) !important;
}

.jdgm-prev-badge__text {
  font-size: 13px !important;
  color: #555 !important;
}

/* Write review button */
.jdgm-rev-widg__btn {
  background: #010101 !important;
  color: #FFFFFF !important;
  font-family: var(--nevo-font, 'Inter', sans-serif) !important;
  font-weight: 600 !important;
  letter-spacing: 0.05em !important;
  border: none !important;
  padding: 12px 32px !important;
}

.jdgm-rev-widg__btn:hover {
  opacity: 0.85 !important;
}

/* Summary bar */
.jdgm-histogram__bar {
  background: #f0f0f0 !important;
}

.jdgm-histogram__bar-content {
  background: #010101 !important;
}

/* Remove rounded corners everywhere */
.jdgm-rev-widg,
.jdgm-rev,
.jdgm-form,
.jdgm-rev-widg__btn {
  border-radius: 0 !important;
}

/* Form inputs */
.jdgm-form input,
.jdgm-form textarea {
  font-family: var(--nevo-font, 'Inter', sans-serif) !important;
  border-radius: 0 !important;
  border: 1.5px solid #e5e5e5 !important;
}

.jdgm-form input:focus,
.jdgm-form textarea:focus {
  border-color: #010101 !important;
}


/* ==============================================
   PRINT STYLES
   ============================================== */

/* ==============================================
   MOBILE MENU DRAWER
   ============================================== */

.menu-drawer,
.menu-drawer__inner-container {
  background: var(--nevo-white, #FFFFFF) !important;
  color: var(--nevo-black, #010101) !important;
}

.menu-drawer__menu .menu-drawer__menu-item {
  font-family: var(--nevo-font) !important;
  font-size: 16px;
  font-weight: 500;
  color: var(--nevo-black) !important;
  padding: 14px 0;
  border-bottom: 1px solid #f0f0f0;
}

.menu-drawer__menu .menu-drawer__menu-item:hover {
  opacity: 0.7;
}

.menu-drawer__utility-links {
  background: var(--nevo-white, #FFFFFF) !important;
}

/* Ensure drawer overlay is opaque */
.menu-drawer-container .drawer__overlay {
  background: rgba(0, 0, 0, 0.5) !important;
}

/* Left padding in mobile drawer */
.menu-drawer__navigation {
  padding: 0 24px !important;
}

.menu-drawer__inner-container {
  padding: 16px 0 !important;
}

/* ==============================================
   SEARCH OVERLAY FIX (Dawn Theme)
   ============================================== */

/* Search modal over everything */
.header__search details[open] .search-modal {
  z-index: 10 !important;
  opacity: 1 !important;
  background: #FFFFFF !important;
}

.search-modal .modal__content {
  z-index: 10 !important;
  position: relative !important;
  background: #FFFFFF !important;
}

predictive-search {
  z-index: 10 !important;
  position: relative !important;
}

.predictive-search__results,
.predictive-search__result-group {
  background: #FFFFFF !important;
}

/* Overlay background fully opaque */
details[open] > .modal-overlay::after {
  background: rgba(0, 0, 0, 0.5) !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  z-index: 3 !important;
}

/* Header stacking context */
.shopify-section-group-header-group {
  z-index: 5 !important;
}

/* Search input styling */
.search-modal .search__input {
  background: #FFFFFF !important;
  color: #010101 !important;
  font-family: var(--nevo-font) !important;
  border: 1.5px solid #e5e5e5;
}

.search-modal .search__input:focus {
  border-color: #010101;
}

/* Mobile search overlay */
@media screen and (max-width: 749px) {
  .header__search details[open] .search-modal {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 999 !important;
    background: #FFFFFF !important;
  }
}

/* Cart drawer z-index hierarchy */
cart-drawer {
  z-index: 1200 !important;
}

#CartDrawer {
  z-index: 1200 !important;
}

#CartDrawer-Overlay {
  z-index: 1199 !important;
  background: rgba(0, 0, 0, 0.4) !important;
}

/* The actual drawer panel must be ABOVE the overlay */
.drawer__inner {
  z-index: 1201 !important;
  position: relative !important;
  background: #FFFFFF !important;
}

/* Ensure drawer contents are clickable */
.drawer__inner * {
  position: relative;
}

.cart-drawer__overlay {
  z-index: 1199 !important;
}

/* ==============================================
   VARIANT PICKER FIX (schwarze Schrift auf schwarzem Feld)
   ============================================== */

.product-form__input .form__label {
  color: var(--nevo-black) !important;
}

.variant-input .swatch-input__label,
.product-form__input input[type="radio"] + label {
  color: var(--nevo-black) !important;
  background: var(--nevo-white) !important;
  border-color: var(--nevo-gray-200) !important;
}

.product-form__input input[type="radio"]:checked + label {
  border-color: var(--nevo-black) !important;
  color: var(--nevo-black) !important;
}

/* Size label text visibility */
fieldset.product-form__input legend,
fieldset.product-form__input .form__label {
  color: var(--nevo-black) !important;
  font-family: var(--nevo-font) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
}

/* ==============================================
   PRODUCT GALLERY IMPROVEMENTS
   ============================================== */

/* Make thumbnail strip clean */
.product__media-list {
  gap: 8px;
}

/* Active thumbnail highlight */
.thumbnail-list .thumbnail.is-active {
  border: 2px solid var(--nevo-black) !important;
}

/* Product info better spacing on mobile */
@media (max-width: 768px) {
  .product__info-wrapper {
    padding: 0 16px;
  }
}




/* ==============================================
   FIX: Hide incorrect Sale/Sold-Out badges
   Product is available (Amazon MCF fulfillment)
   ============================================== */

.price__badge-sale,
.price__badge-sold-out,
.badge--sold-out {
  display: none !important;
}
/* ==============================================

/* ==============================================
   JUDGE.ME — Consolidated Brand Styling
   Widget hidden (using NEVO curated reviews).
   Styling kept for future re-enablement.
   ============================================== */

/* CSS Variables */
:root {
  --jdgm-primary-color: #010101 !important;
  --jdgm-secondary-color: rgba(1,1,1,0.06) !important;
  --jdgm-star-color: #010101 !important;
  --jdgm-write-review-text-color: white !important;
}

/* Hide Judge.me widget — NEVO uses curated reviews */
#judgeme_product_reviews,
.jdgm-rev-widg,
.jdgm-widget,
.jdgm-preview-badge {
  display: none !important;
}

/* Hide negative reviews (safety net if widget re-enabled) */
.jdgm-rev[data-score="1"],
.jdgm-rev[data-score="2"],
.jdgm-rev[data-score="3"],
.jdgm-rev:has(.jdgm-rev__rating[data-score="1"]),
.jdgm-rev:has(.jdgm-rev__rating[data-score="2"]),
.jdgm-rev:has(.jdgm-rev__rating[data-score="3"]) {
  display: none !important;
}

/* Hide zero-review badge */
.jdgm-preview-badge[data-number-of-reviews="0"],
.jdgm-preview-badge:empty {
  display: none !important;
}

/* NEVO curated reviews styling */
#nevo-curated-reviews {
  font-family: 'Inter', sans-serif !important;
}

#nevo-curated-reviews .nevo-review:last-child {
  border-bottom: none;
}

   STICKY HEADER: Solid background, no overlap
   ============================================== */

.shopify-section-group-header-group {
  position: relative;
  z-index: 1000;
}

.section-header,
.header-wrapper,
header.header {
  background-color: #ffffff !important;
}

/* When header is sticky (scrolled), ensure solid background */
.shopify-section-header-sticky,
.header-wrapper--border-bottom,
.header--has-menu .header-wrapper {
  background-color: #ffffff !important;
}

/* Dawn sticky header animation state */
.animate-section-header .header-wrapper {
  background-color: #ffffff !important;
}

/* Ensure the sticky header has a subtle shadow for separation */
.shopify-section-group-header-group.shopify-section-header-sticky {
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}


/* ==============================================
   MOBILE GALLERY: Dawn-native swipe, compact spacing
   product.json has mobile_thumbnails: "hide" — Dawn handles thumbnails natively
   ============================================== */

@media screen and (max-width: 749px) {
  /* Let Dawn handle the swipeable gallery natively */
  .product__media-list {
    margin-bottom: 8px !important;
  }

  /* Each image fills width for clean swipe */
  .product__media-item {
    min-width: 100% !important;
    width: 100% !important;
  }

  /* Reduce spacing to get buy button visible faster */
  .product__info-wrapper {
    padding-top: 0 !important;
  }

  .product__info-container > *:first-child {
    margin-top: 0 !important;
  }
}

/* ==============================================
   GLOBAL MOBILE: Touch targets, CTAs, spacing (Batch 1.4)
   Google/Baymard: min 48px touch, full-width CTAs, 20px padding
   ============================================== */

@media screen and (max-width: 749px) {
  /* 48px minimum touch targets (Google recommendation) */
  button,
  .button,
  a.button,
  input[type="submit"],
  .shopify-payment-button button,
  .product-form__submit {
    min-height: 48px;
  }

  /* Full-width CTAs on mobile */
  .product-form__submit,
  .shopify-payment-button button,
  .nevo-btn-primary,
  .nevo-btn-cta {
    width: 100% !important;
    max-width: 100% !important;
  }

  /* 20px container padding on mobile (was 16px in places) */
  .page-width {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  /* Mobile font scaling per design spec */
  h1, .h1, .nevo-h1 {
    font-size: 32px !important;
    line-height: 1.15 !important;
  }

  h2, .h2, .nevo-h2 {
    font-size: 26px !important;
    line-height: 1.2 !important;
  }

  h3, .h3, .nevo-h3 {
    font-size: 20px !important;
    line-height: 1.25 !important;
  }

  body, p {
    font-size: 16px;
    line-height: 1.6;
  }

  /* Reduce section padding on mobile for tighter layout */
  .nevo-section {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }
}

