/** Shopify CDN: Minification failed

Line 239:10 Unexpected "{"
Line 239:19 Expected ":"

**/
/* ============================================================
   Prijsgarantie.nl — Mega Menu Luxe v32.0 (FINAL UNIFIED)
   Alles-in-één: Hoofdmenu, Mega Menu & Vierkante Promoties
   ============================================================ */

:root {
  --pgm-accent: #1B8A4C;
  --pgm-radius: 12px;
  --pgm-menu-radius: 50px; /* Voor de ronde knoppen in de zwarte balk */
  --menu-max-width: 1250px;
  --pgm-hover-bg: rgba(27, 138, 76, 0.1);
  --pgm-hover-bg-solid: rgba(27, 138, 76, 0.05);
}

/* 1. HOOFDMENU ITEMS (In de zwarte balk)
------------------------------------------------------------ */
.header__navigation .header__menu-item {
  position: relative !important;
  margin: 0 6px !important;
  padding: 8px 22px !important;
  border-radius: var(--pgm-menu-radius) !important;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  color: #ffffff !important;
  background: transparent !important;
  display: inline-flex !important;
  align-items: center !important;
  text-decoration: none !important;
}

/* Hover & Open status voor de hoofdmenu knoppen */
.header__navigation .header__menu-item:hover,
.header__navigation details[open] > summary .header__menu-item,
.header__navigation .is-open > summary .header__menu-item {
  background-color: var(--pgm-hover-bg) !important;
  color: var(--pgm-accent) !important;
}

/* Subtiel groen streepje onder de geopende hoofdknop */
.header__navigation details[open] > summary .header__menu-item::after {
  content: "" !important;
  position: absolute !important;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 2px;
  background-color: var(--pgm-accent);
  border-radius: 2px;
}

/* 2. MEGA MENU CONTAINER (Positie & Animatie)
------------------------------------------------------------ */
.header .mega-menu {
  display: block !important;
  opacity: 0;
  visibility: hidden;
  position: absolute !important;
  left: 50% !important;
  /* Start iets lager voor de animatie */
  transform: translateX(-50%) translateY(40px);
  
  width: var(--menu-max-width) !important;
  max-width: 95vw !important;
  background: #ffffff !important;
  border-radius: var(--pgm-radius) !important;
  box-shadow: 0 40px 80px -15px rgba(0,0,0,0.25) !important;
  z-index: 9999 !important;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), visibility 0.4s !important;
  
  /* De afstand onder de zwarte balk */
  margin-top: 32px !important; 
}

/* Wanneer het menu open is */
.header__navigation details[open] .mega-menu,
.header__navigation .is-open .mega-menu {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateX(-50%) translateY(20px) !important;
  pointer-events: auto !important;
}


/* 3. STABIELE KOLOMMEN (Inhoud van het menu)
------------------------------------------------------------ */
.mega-menu__wrapper {
  padding: 0.25rem 2rem 0.5rem 2rem !important;
  display: flex !important;
  gap: 24px !important;
  align-items: flex-start !important;
}

/* Geen extra ruimte op de tussenliggende lagen (boven/onder de inhoud) */
.header .mega-menu .mega-menu__container,
.header .mega-menu.v-scrollable {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
/* Laat de hoogte zich aanpassen aan de inhoud (lege ruimte onderaan weg).
   Alleen 'height', NIET overflow/max-height — dat zou de open-animatie breken. */
.header .mega-menu.v-scrollable {
  height: auto !important;
}

.mega-menu__list {
  display: flex !important;
  flex: 1 1 auto !important;
  gap: 15px !important;
}

.mega-menu__column {
  /* Fix: Verdeel kolommen gelijk zonder verspringen */
  flex: 1 1 0px !important;
  min-width: 0 !important;
}

/* Compacter: minder verticale ruimte tussen item-groepen in een kolom
   (bijv. tussen 'Wonen' en 'Doe het zelf') zodat lange menu's niet scrollen */
.mega-menu__column.gap-8,
.mega-menu__column.flex.flex-col.gap-8 {
  gap: 6px !important;
}
/* De sublink-lijst zelf strak: geen extra ruimte tussen de regels */
.mega-menu__item-child {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
}
.mega-menu__item-child li {
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1.2 !important;
}
/* Hoofd-categorietitels (Wonen, Kind, ...) strak boven hun items */
.mega-menu__link--top {
  margin-bottom: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 4px !important;
}

/* 4. SUBMENU LINKS (Hover met streepje)
------------------------------------------------------------ */
.mega-menu__list a, 
.mega-menu__item-child a {
  position: relative !important;
  display: block !important;
  padding: 2px 15px 2px 25px !important;
  color: #1a1a1a !important;
  font-size: 14px !important;
  text-decoration: none !important;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  border-radius: 8px !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.mega-menu__list a:hover {
  padding-left: 45px !important;
  color: var(--pgm-accent) !important;
  background-color: var(--pgm-hover-bg-solid) !important;
}

/* Het Groene Verticale Streepje */
.mega-menu__list a::before {
  content: "" !important;
  position: absolute !important;
  left: 10px;
  top: 50%;
  width: 4px !important;
  height: 0 !important;
  background-color: var(--pgm-accent) !important;
  border-radius: 4px !important;
  transform: translateY(-50%);
  transition: all 0.25s ease !important;
  opacity: 0;
}

.mega-menu__list a:hover::before {
  height: 20px !important;
  opacity: 1 !important;
  left: 20px !important;
}

/* 5. PROMOTIE SECTIE (overal gelijk, liggend) 
------------------------------------------------------------ */
.mega-menu__promo {
  flex: 0 0 420px !important; /* Bredere, liggende promo (zoals 'Voor bedrijven') */
  min-width: 420px !important;
  margin-left: auto !important;
}

.promotion-item, .promotion-item__image-wrapper {
  width: 100% !important;
  aspect-ratio: 3 / 2 !important; /* Liggend, genoeg hoogte voor tekst-overlay, overal gelijk */
  position: relative !important;
  overflow: hidden !important;
  border-radius: var(--pgm-radius) !important;
}

.promotion-item img {
  position: absolute !important;
  top: 0; left: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.8s ease !important;
}

.promotion-item:hover img {
  transform: scale(1.1) !important;
}

/* 6. EXTRA LUXE: PAGINA DIMMEN
------------------------------------------------------------ */
.header-wrapper:has(details[open])::after {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.3);
  z-index: -1;
  pointer-events: none;
}
/* ============================================================
   COLLECTION SLIDER - LUXE UNIFIED STYLE
   ============================================================ */

/* 1. DE KAART (Container) */
.section-{{ section.id }} .collection-card, 
.collection-list-slider .swiper-slide {
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

/* 2. DE AFBEELDING (Ronde hoeken & Zoom) */
.collection-list-slider .media, 
.collection-list-slider .collection-card__image-wrapper {
  border-radius: var(--pgm-radius) !important; /* Matcht de 12px van het menu */
  overflow: hidden !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05) !important;
  transition: box-shadow 0.3s ease !important;
}

.collection-list-slider .media img {
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

/* Hover effect op de hele kaart */
.collection-list-slider .swiper-slide:hover .media img {
  transform: scale(1.08) !important; /* Zelfde zoom als in je menu promo */
}

.collection-list-slider .swiper-slide:hover .media {
  box-shadow: 0 20px 40px rgba(0,0,0,0.1) !important;
}

/* 3. DE TITEL (Pill-shape stijl) */
.collection-list-slider .collection-card__title {
  margin-top: 15px !important;
  font-weight: 600 !important;
  transition: color 0.3s ease !important;
  display: inline-block !important;
  padding: 4px 12px !important;
  border-radius: 20px !important; /* Maakt de tekst-omgeving een beetje 'pill-achtig' */
}

.collection-list-slider .swiper-slide:hover .collection-card__title {
  color: var(--pgm-accent) !important;
  background-color: var(--pgm-hover-bg) !important; /* Zachte groene achtergrond achter de tekst */
}

/* 4. NAVIGATION BUTTONS (De pijltjes) */
.collection-list-slider .swiper-button-next,
.collection-list-slider .swiper-button-prev {
  background: #ffffff !important;
  color: var(--pgm-accent) !important;
  width: 45px !important;
  height: 45px !important;
  border-radius: 50% !important;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1) !important;
  transition: all 0.3s ease !important;
}

.collection-list-slider .swiper-button-next:hover,
.collection-list-slider .swiper-button-prev:hover {
  background: var(--pgm-accent) !important;
  color: #ffffff !important;
  transform: scale(1.1) !important;
}
/* ============================================================
   COLLECTION SLIDER - FINAL LUXE UNIFIED VERSION
   ============================================================ */

/* 1. DE KAART CONTAINER */
.collection-list-slider .swiper-slide {
  padding: 15px 10px !important; /* Ruimte voor schaduw en beweging */
  transition: transform 0.4s ease !important;
}

/* 2. DE AFBEELDING (Perfecte hoeken & Overgangen) */
.collection-list-slider .media, 
.collection-list-slider .collection-card__image-wrapper {
  border-radius: var(--pgm-radius) !important; /* Matcht 12px menu */
  overflow: hidden !important; /* Zorgt dat de foto binnen de hoeken blijft */
  box-shadow: 0 4px 15px rgba(0,0,0,0.05) !important;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  background: #ffffff;
}

.collection-list-slider .media img {
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

/* 3. HOVER EFFECTEN (Zoomen & Zweven) */
.collection-list-slider .swiper-slide:hover .media {
  box-shadow: 0 15px 35px rgba(0,0,0,0.12) !important;
  transform: translateY(-8px); /* De kaart komt 'los' van de pagina */
}

.collection-list-slider .swiper-slide:hover .media img {
  transform: scale(1.1) !important; /* Rustige zoom */
}

.collection-list-slider .collection-card__title {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  margin: 10px auto 0 auto !important; /* Iets minder ruimte boven de titel */
  
  /* Vorm & Zichtbaarheid */
  width: fit-content !important;
  min-width: 110px !important;
  max-width: 160px !important; /* Iets breder voor lange woorden */
  height: 40px !important;
  padding: 0 15px !important;
  border-radius: 50px !important;
  
  /* De Luxe touch: standaard al een beetje zichtbaar maken */
  background: #ffffff !important;
  border: 1px solid #eeeeee !important; /* Subtiel randje */
  box-shadow: 0 2px 4px rgba(0,0,0,0.03) !important; /* Hele lichte diepte */
  
  /* Tekst */
  font-size: 12px !important; /* Iets kleiner zodat het vaker past */
  font-weight: 600 !important;
  color: #1a1a1a !important;
  line-height: 1.1 !important;
  transition: all 0.3s ease !important;
  
  /* Fix voor de puntjes */
  overflow: hidden !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: normal !important;
}

/* De sectie iets omhoog halen */
.collection-list-slider {
  margin-top: -15px !important;
}

/* Hover effect: Het blokje krijgt kleur en tekst blijft gecentreerd */
.collection-list-slider .swiper-slide:hover .collection-card__title {
  color: var(--pgm-accent) !important;
  background-color: var(--pgm-hover-bg) !important;
}

/* De hover kleur van de tekst matcht het menu */
.collection-list-slider .swiper-slide:hover .collection-card__title {
  color: var(--pgm-accent) !important;
  background-color: var(--pgm-hover-bg) !important; /* Subtiel groen blokje achter tekst */
}

/* 5. NAVIGATION PIJLTJES (Custom Luxe Style) */
.collection-list-slider .swiper-button-next,
.collection-list-slider .swiper-button-prev {
  background: #ffffff !important;
  color: var(--pgm-accent) !important;
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
  border: 1px solid #f0f0f0 !important;
  transition: all 0.3s ease !important;
}

.collection-list-slider .swiper-button-next:after,
.collection-list-slider .swiper-button-prev:after {
  font-size: 14px !important;
  font-weight: bold !important;
}

.collection-list-slider .swiper-button-next:hover,
.collection-list-slider .swiper-button-prev:hover {
  background: var(--pgm-accent) !important;
  color: #ffffff !important;
  transform: scale(1.1);
  border-color: var(--pgm-accent) !important;
}

/* Verwijder eventuele standaard thema-lijntjes */
.collection-list-slider .collection-card:after,
.collection-list-slider .collection-card:before {
  display: none !important;
}

/* LUXE COLLECTION GRID STYLING */
.luxe-collection-container {
padding: 30px 30px;
max-width: 1290px;
margin: 0 auto;
}
.luxe-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
gap: 30px;
justify-items: center;
}
.luxe-item {
text-decoration: none;
display: flex;
flex-direction: column;
align-items: center;
width: 100%;
transition: transform 0.3s ease;
}
.luxe-image-wrapper {
width: 125px;

height: 125px;
border-radius: 50%; /* Maakt het een cirkel */
overflow: hidden;
box-shadow: 0 4px 15px rgba(0,0,0,0.05);
transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
background: #fff;
border: 1px solid #eee;
}
.luxe-image-wrapper img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.6s ease;
}
.luxe-pill-title {
display: flex;
align-items: center;
justify-content: center;
text-align: center;
margin-top: 15px;
min-width: 70px;
height: 50px;
padding: 0 15px;
border-radius: 50px;
background: #fff;
border: 1px solid #eee;
color: #1a1a1a;
font-size: 13px;
font-weight: 600;
box-shadow: 0 2px 5px rgba(0,0,0,0.03);
transition: all 0.3s ease;
}
/* HOVER ANIMATIES */
.luxe-item:hover .luxe-image-wrapper {
transform: translateY(-8px);
box-shadow: 0 15px 30px rgba(0,0,0,0.1);
border-color: var(--pgm-accent);
}
.luxe-item:hover .luxe-image-wrapper img {

transform: scale(1.1);
}
.luxe-item:hover .luxe-pill-title {
background-color: var(--pgm-hover-bg);
color: var(--pgm-accent);
border-color: var(--pgm-accent);
}
/* ============================================================
   LUXE USP BAR - Prijsgarantie.nl
   ============================================================ */
.luxe-usp-wrapper {
  background-color: #fcfcfc; /* Zeer subtiel grijs voor contrast */
  border-bottom: 1px solid #eeeeee;
  padding: 10px 0;
  overflow: hidden;
}

.luxe-usp-container {
  max-width: var(--menu-max-width);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 0 20px;
}

.luxe-usp-item {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0; /* Voor animatie */
  transform: translateY(10px); /* Voor animatie */
  animation: uspFadeInUp 0.6s ease forwards;
}

/* Vertraging per item voor een "wave" effect */
.luxe-usp-item:nth-child(1) { animation-delay: 0.1s; }
.luxe-usp-item:nth-child(2) { animation-delay: 0.2s; }
.luxe-usp-item:nth-child(3) { animation-delay: 0.3s; }
.luxe-usp-item:nth-child(4) { animation-delay: 0.4s; }

.luxe-usp-icon {
  display: flex;
  align-items: center;
  color: var(--pgm-accent);
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.luxe-usp-item:hover .luxe-usp-icon {
  transform: scale(1.2) rotate(5deg);
}

.luxe-usp-text {
  font-size: 13px;
  font-weight: 500;
  color: #444;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

/* ANIMATIE DEFINITIE */
@keyframes uspFadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobiel: Scrollbaar maken als het niet past */
@media (max-width: 767px) {
  .luxe-usp-container {
    gap: 25px;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 5px;
    scrollbar-width: none;
  }
  .luxe-usp-container::-webkit-scrollbar { display: none; }
  .luxe-usp-text { font-size: 12px; }
}

/* ============================================================
   MOBIELE FIX — Mega-menu binnen drawer-paneel (v32.1)
   Neutraliseert de desktop mega-menu regels op mobiel zodat
   submenu's (bijv. 'Ontdek meer') als normale lijst tonen
   in plaats van een 1250px breed zwevend paneel.
   ============================================================ */
@media (max-width: 1023px) {
  /* Mega-menu mag binnen het mobiele drawer-paneel geen absolute
     desktop-positie of vaste breedte hebben */
  .menu-drawer .mega-menu,
  .menu-drawer__submenu .mega-menu,
  .header .menu-drawer .mega-menu {
    position: static !important;
    width: 100% !important;
    max-width: 100% !important;
    left: auto !important;
    transform: none !important;
    margin-top: 0 !important;
    box-shadow: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    height: auto !important;
  }
  /* Kolommen-layout uit: alles onder elkaar in de drawer */
  .menu-drawer .mega-menu__wrapper {
    display: block !important;
    padding: 0 !important;
    gap: 0 !important;
  }
  /* Promotie-kolom (min-width 420px) mag mobiel niet forceren */
  .menu-drawer .mega-menu__promotions,
  .menu-drawer .mega-menu__promotions-grid {
    min-width: 0 !important;
    width: 100% !important;
    margin-left: 0 !important;
  }
  /* Voorkom dat submenu-lijsten zich over de volle hoogte uitrekken
     (oorzaak van de grote lege ruimte onder 'Wonen') */
  .menu-drawer__submenu .v-scrollable,
  .menu-drawer__submenu ul.h-full {
    height: auto !important;
  }
}
