/** Shopify CDN: Minification failed

Line 44:18 Unexpected "{"
Line 44:27 Expected ":"
Line 47:18 Unexpected "{"
Line 47:27 Expected ":"
Line 233:18 Unexpected "{"
Line 233:27 Expected ":"
Line 250:18 Unexpected "{"
Line 250:27 Expected ":"
Line 263:18 Unexpected "{"
Line 263:27 Expected ":"
... and 10 more hidden warnings

**/
/* Mobile menu: alle links op 18px */
@media (max-width: 749px) {
  .mobile-nav__link,
  .mobile-nav__sublist .mobile-nav__link,
  .mobile-nav__link--top-level {
    font-size: 18px !important;
    line-height: 1.4;
  }
}

/* Enkel de 'Herbst/Winter'-link aanpassen in het mobiel menu */
@media (max-width: 749px) {
  .mobile-nav__link[href="/collections/herbst-winter"] {
    color: #c7ad91 !important;
    font-weight: 700 !important; /* licht vet */
  }
}


/* Enkel binnen de benefits-bar-scroll sectie */
.benefits-bar-scroll .benefit,
.benefits-bar-scroll .benefit__text {
  color: #ffffff !important;
}



/* Verberg alleen de Shop All-knop in deze instantie van de sectie */
#shopify-section-{{ section.id }} .shop-all-button { display: none !important; }

/* (optioneel, extra zekerheid) bolletjes blijven zichtbaar */
#shopify-section-{{ section.id }} .carousel-pagination { display: block !important; }













/* ✅ Productafbeeldingen in vaste 2:3 verhouding + automatische crop */
.weekly-drops .image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 3; /* zorgt voor 2:3 hoogte */
  overflow: hidden;
  border-radius: 0; /* optioneel, laat eventueel afgerond toe */
}

/* 🔸 Afbeelding vult volledig kader en wordt ingezoomd */
.weekly-drops .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* crop automatisch */
  object-position: center; /* centreren */
  transition: transform 0.4s ease;
}

/* 🟤 Kleine hover-zoom voor een mooi effect */
.weekly-drops .product-card:hover .image-wrapper img {
  transform: scale(1.05);
}

/* 🧱 Zorg dat elke tile exact even hoog blijft */
.weekly-drops .product-card {
  width: 180px;
  flex: 0 0 auto;
  scroll-snap-align: start;
  display: block; /* ✔ FIX */
}









@media (max-width: 767px) {
  /* maak de slider perfect symmetrisch links/rechts */
  .weekly-drops .slider-inner {
    display: flex;
    gap: 16px;
    padding: 0;                 /* geen padding meer */
  }
  .weekly-drops .slider-inner::before,
  .weekly-drops .slider-inner::after {
    content: "";
    flex: 0 0 8px;              /* zelfde ruimte links én rechts */
  }

  .weekly-drops .product-slider {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-padding-left: 8px;   /* laat eerste kaart mooi 'snappen' */
  }
}














/* mobiel: split-underline exact even breed als tiles (6px gutters) */
@media (max-width: 767px) {
  #shopify-section-template--25789432037725__weekly_drops_tabs_CPepfT .tab-navigation {
    --gutter: 6px;
    position: relative;
    margin: 0 0 16px 0;
    width: 100%;          /* geen max-width */
    display: flex;
    justify-content: space-between;
    gap: 20px;
  }

  /* grijs + beige lijn samen, precies tussen de gutters */
  #shopify-section-template--25789432037725__weekly_drops_tabs_CPepfT .tab-navigation::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: var(--gutter);
    right: var(--gutter);
    height: 2px;
    background: linear-gradient(to right, #bfa796 50%, #ddd 50%);
    border-radius: 1px;
  }

  /* bij tab 2: wissel de helften */
  #shopify-section-template--25789432037725__weekly_drops_tabs_CPepfT .tab-navigation.tab-2-active::after {
    background: linear-gradient(to right, #ddd 50%, #bfa796 50%);
  }

  /* oude korte onderlijntjes onder de knop uitzetten */
  #shopify-section-template--25789432037725__weekly_drops_tabs_CPepfT .tab-button.active::after {
    display: none !important;
  }
}





/* Specifieke stijl enkel voor deze sectie */
.benefits-bar-scroll .benefit__icon-circle {
  background-color: #f2ece6 !important;
}

/* Optioneel: als je wilt dat de iconen zelf ook beter contrasteren */
.benefits-bar-scroll .benefit__icon-circle svg path,
.benefits-bar-scroll .benefit__icon-circle svg rect {
  stroke: #7D6452;
  fill: none;
}


/* Alleen in deze sectie */
.benefits-bar-scroll .benefit__icon-circle{
  background-color:#f2ece6 !important;
}

/* Verwijder interne achtergrond van de 2de SVG (medaille) */
.benefits-bar-scroll .benefit__icon-circle svg rect{
  fill: transparent !important;
  stroke: none !important;
}






/* 🌸 Alleen voor deze sectie */
.weekly-drops .tab-button.active::after {
  background-color: #CABFB0 !important;
}

.weekly-drops .carousel-bullet.active {
  background-color: #CABFB0 !important;
}




/* 🌸 Alleen voor deze sectie */
.weekly-drops .tab-button.active::after {
  background-color: #CABFB0 !important;
  width: 60%; /* 🔸 maak breder (standaard was 40%) */
  height: 2px;
  border-radius: 1px;
  transition: width 0.3s ease; /* optioneel, voor soepele overgang */
}

.weekly-drops .carousel-bullet.active {
  background-color: #CABFB0 !important;
}







#TabCollections--{{ section.id }} .slider-inner .product-card .product-title {
  font-weight: 400 !important;
  font-size: 14px !important;
  line-height: 1.4;
  color: #111 !important;
  text-align: center;
}









/* ===== Definitieve fix: 'Produkte ansehen' linkstijl ===== */
#TabCollections--{{ section.id }} .feature-cta .btn {
  all: unset;                        /* verwijdert ALLE thema-stijlen */
  display: inline-block;
  position: relative;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: .02em;
  text-transform: none;
  cursor: pointer;
  line-height: 1.4;
}

#TabCollections--{{ section.id }} .feature-cta .btn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: #fff;
}

/* Geen hoverkleur, geen container, geen achtergrond */
#TabCollections--{{ section.id }} .feature-cta .btn:hover,
#TabCollections--{{ section.id }} .feature-cta .btn:active,
#TabCollections--{{ section.id }} .feature-cta .btn:focus {
  color: #fff;
  background: none;
  box-shadow: none;
  text-decoration: none;
  outline: none;
}






@media (min-width: 1024px) {
  #TabCollections--template--25752079303005__collectie_slide_cwLErK .tabs__panel .slider-inner .product-card--feature {
    width: 34vw !important;
    flex: 0 0 34vw !important;
    margin-inline: auto !important;
  }
}

@media (min-width: 1440px) {
  #TabCollections--template--25752079303005__collectie_slide_cwLErK .tabs__panel .slider-inner .product-card--feature {
    width: 900px !important;
    flex: 0 0 900px !important;
    margin-inline: auto !important;
  }
}







/* NOG WAT GROTER OP DESKTOP (geen impact op feature-kaart) */
@media (min-width: 1024px) {
  #TabCollections--template--25752079303005__collectie_slide_cwLErK
  .product-card:not(.product-card--feature) {
    width: 28vw !important;      /* was 26vw */
    flex: 0 0 28vw !important;
  }
}

/* Op brede schermen ook wat groter */
@media (min-width: 1440px) {
  #TabCollections--template--25752079303005__collectie_slide_cwLErK
  .product-card:not(.product-card--feature) {
    width: 400px !important;      /* was 360px */
    flex: 0 0 400px !important;
  }
}









/* STYLING VOOR "Produkte ansehen" IN DEZE SECTIE */
#TabCollections--template--25752079303005__collectie_slide_cwLErK .feature-cta .btn {
  background: none !important;
  border: none !important;
  color: #fff !important;
  font-weight: 600 !important;
  padding: 0 !important;
  text-transform: none !important;
  box-shadow: none !important;
  display: inline-block;
  border-bottom: 2px solid #fff !important;
  border-radius: 0 !important;
  transition: opacity 0.3s ease;
}

#TabCollections--template--25752079303005__collectie_slide_cwLErK .feature-cta .btn:hover {
  opacity: 0.7;
}







/* STYLING VOOR "39 Produkte" IN DEZE SECTIE */
#TabCollections--template--25752079303005__collectie_slide_cwLErK .feature-counter {
  color: #fff !important;
  font-weight: 600 !important;
  background: none !important;
  border: none !important;
  padding: 0 !important;
  text-transform: none !important;
  box-shadow: none !important;
  display: inline-block;
}











/* --- Extra witruimte boven de hero-sectie --- */
#shopify-section-template--25752079303005__hero_static_iyPHY4 {
  padding-top: 40px; /* pas aan naar wens: 20px, 60px, enz. */
}





/* Verberg lege knop alleen in deze hero-sectie */
#shopify-section-template--25752079303005__hero_static_iyPHY4 .hero__btn {
  display: none !important;
}






/* Beperk producttitels tot één regel met ellipsis */
.grid-product__title,
.product-title,
.grid-product__title--body {
  display: -webkit-box !important;
  -webkit-line-clamp: 2;         /* max 1 lijn */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;           /* laat normale afbreking toe */
}






/* --- Titels in Info Icons sectie: niet vet, donkergrijs --- */
#InfoIcons--{{ section.id }} .info-icons__heading {
  color: #212121 !important;
  font-weight: 400 !important;
}




/* --- Extra ruimte links voor eerste icoon op mobiel --- */
@media (max-width: 989px) {
  #InfoIcons--{{ section.id }} .info-icons__item:first-child {
    margin-left: 16px; /* pas eventueel aan: 12–20px is mooi bereik */
  }
}























/* ===== Footer Beier Mode stijl – gradient van boven naar beneden ===== */

footer.site-footer-wrapper,
footer.site-footer-wrapper .site-footer,
footer.site-footer-wrapper[class*="color-scheme-"],
#shopify-section-footer,
#shopify-section-footer .site-footer,
#shopify-section-footer [class*="color-scheme-"] {
  position: relative;
  background: #cac3b1 !important;
  background-image: none !important;
  overflow: hidden;
}

/* Content boven de gradient houden */
footer.site-footer-wrapper > *,
#shopify-section-footer > *,
#shopify-section-footer .site-footer > * {
  position: relative;
  z-index: 1;
}

/* Gradient van boven donker → onder licht */
footer.site-footer-wrapper::after,
#shopify-section-footer::after,
#shopify-section-footer .site-footer::after,
#shopify-section-footer [class*="color-scheme-"]::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,                        /* omgedraaid */
    rgba(158,140,113,0.75) 0%,     /* donkerder beige bovenaan */
    rgba(184,168,144,0.65) 25%,    /* warme overgang */
    rgba(200,188,165,0.45) 50%,    
    rgba(207,197,177,0.20) 75%,    
    rgba(202,195,177,0) 100%       /* transparant onderaan */
  ) !important;
  transition: background 0.3s ease-in-out;
}

/* Bovenlijn voor diepte */
footer.site-footer-wrapper {
  box-shadow: inset 0 1px 0 rgba(0,0,0,0.05);
}








/* Footer logo links uitlijnen (alleen dit blok) */
.footer__item--logo_social_wnCrdK .footer__logo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  text-align: left !important;
}

.footer__item--logo_social_wnCrdK .footer__logo a,
.footer__item--logo_social_wnCrdK .footer__logo img {
  margin: 0 !important;
}

/* optioneel: volledige breedte zodat het niet gecentreerd wordt door parent styles */
.footer__item--logo_social_wnCrdK {
  text-align: left !important;
}




/* Footer logo links, zonder lijn eronder + meer ruimte */
.footer__item--logo_social_wnCrdK {
  text-align: left !important;
  padding-top: 15px !important;  /* meer ruimte boven */
  padding-bottom: 15px !important; /* meer ruimte onder */
  border: none !important; /* verwijdert eventuele lijn */
}

/* Zorg dat het logo zelf ook links blijft */
.footer__item--logo_social_wnCrdK .footer__logo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.footer__item--logo_social_wnCrdK .footer__logo a,
.footer__item--logo_social_wnCrdK .footer__logo img {
  margin: 0 !important;
}








.footer__item--logo_social_wnCrdK::after {
  content: none !important;
  display: none !important;
  border: none !important;
  background: none !important;
}







/* Desktop-only: productcards groter in deze Weekly Drops sectie */
@media (min-width: 1025px) {
  #shopify-section-template--25752079303005__weekly_drops_tabs_M7N3EJ .slider-inner {
    gap: 28px !important;
    padding: 0 20px !important;
  }

  #shopify-section-template--25752079303005__weekly_drops_tabs_M7N3EJ .product-card {
    width: 260px !important;           /* was 180px */
    flex: 0 0 260px !important;
  }

  #shopify-section-template--25752079303005__weekly_drops_tabs_M7N3EJ .product-title {
    font-size: 17px !important;
    line-height: 1.25 !important;
  }

  #shopify-section-template--25752079303005__weekly_drops_tabs_M7N3EJ .product-price {
    font-size: 16px !important;
  }

  /* optioneel: iets meer ademruimte rond de afbeelding */
  #shopify-section-template--25752079303005__weekly_drops_tabs_M7N3EJ .image-wrapper {
    padding: 2px !important;
  }
}










/* Alleen deze sectie, vaste grootte — ongeacht schermbreedte */
#shopify-section-template--25752079303005__collectie_slide_cwLErK 
.product-card.product-card--feature {
  width: 360px !important;
  flex: 0 0 360px !important;
  max-width: 360px !important;
}

/* Beeld blijft netjes binnen 360px */
#shopify-section-template--25752079303005__collectie_slide_cwLErK 
.product-card.product-card--feature .media-fit.media-fit--feature {
  width: 100% !important;
  max-width: 360px !important;
  aspect-ratio: 4 / 5 !important;
  margin: 0 auto !important;
}



/* Alleen deze sectie, enkel de product grid op desktop */
@media (min-width: 1025px) {
  #shopify-section-template--25752079303005__weekly_drops_tabs_M7N3EJ .product-card {
    width: 260px !important;         /* groter grid item */
    flex: 0 0 260px !important;      
  }

  #shopify-section-template--25752079303005__weekly_drops_tabs_M7N3EJ .image-wrapper img {
    width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
  }

  #shopify-section-template--25752079303005__weekly_drops_tabs_M7N3EJ .slider-inner {
    gap: 22px !important;            /* wat meer ruimte tussen producten */
  }
}






/* 🔥 Forceer afbeelding altijd 100% hoogte in Weekly Drops */
#shopify-section-template--25752079303005__weekly_drops_tabs_M7N3EJ .image-wrapper img {
  width: 100% !important;
  height: 100% !important;     /* <-- DIT FIXT HET WITTE GAT */
  object-fit: cover !important;
  object-position: center !important;
}








/* 📱 Alleen mobiel: featured kaart in TabCollections kleiner maken */
@media (max-width: 749px) {
  #TabCollections--template--25752079303005__collectie_slide_cwLErK 
  .product-card.product-card--feature {
    width: 70vw !important;        /* maak kleiner (speel gerust met 68–72) */
    flex: 0 0 70vw !important;     /* zorgt dat hij zich ook zo gedraagt in de slider */
    max-width: 70vw !important;
  }
}












/* Maak de volledige hero-sectie 100% wit, ook buiten de content */
#shopify-section-template--25752079303005__hero_static_8xwdFc {
  background-color: #ffffff !important;
}

/* Forceer ook het outer wrapper div wit */
#shopify-section-template--25752079303005__hero_static_8xwdFc .hero-static-fixed {
  background-color: #ffffff !important;
  width: 100% !important;
}

/* Inhoud centreren zoals andere secties */
#shopify-section-template--25752079303005__hero_static_8xwdFc section.hero {
  max-width: var(--page-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
  background-color: #ffffff !important;
}






/* 🔥 Maak ALLE teksten in het mobiele menu 14px */
#NavDrawer .mobile-nav__link,
#NavDrawer .mobile-nav__faux-link,
#NavDrawer .mobile-nav__link--top-level,
#NavDrawer .mobile-nav__child-item .mobile-nav__link,
#NavDrawer .mobile-nav__grandchildlist .mobile-nav__link,
#NavDrawer .mobile-nav__link--button,
#NavDrawer .collapsible-trigger__icon,
#NavDrawer .mobile-nav__item span {
  font-size: 14px !important;
  line-height: 1.35 !important;
}

/* Ook buttons (die tekst in een <button> hebben) */
#NavDrawer button,
#NavDrawer .collapsible-trigger {
  font-size: 14px !important;
}

/* Zorg dat icons mooi passend blijven */
#NavDrawer .collapsible-trigger__icon svg {
  width: 16px !important;
  height: 16px !important;
}




/* 🔽 Maak ALLE mobiele menu pijlen kleiner */
#NavDrawer .collapsible-trigger__icon svg,
#NavDrawer .icon-chevron-down,
#NavDrawer .collapsible-trigger__icon--circle svg,
#NavDrawer .collapsible-trigger svg {
  width: 14px !important;
  height: 14px !important;
  stroke-width: 1.6 !important; /* dunner, eleganter */
}

/* optioneel: de cirkel achter de pijl kleiner maken */
#NavDrawer .collapsible-trigger__icon--circle {
  width: 26px !important;
  height: 26px !important;
}




/* 🎨 Specifieke kleur voor de link "Herbst/Winter" in mobiel menu */
#NavDrawer .mobile-nav__link[href="/collections/herbst-winter"] {
  color: #CABFB0 !important;
}






/* Extra padding boven & onder de promo bar */
.product-promo-bar {
  padding-top: 2px;
  padding-bottom: 2px;
}




/* Alleen witruimte rond de foto-sectie zonder dots te beïnvloeden */
.product__main-photos {
  padding-top: 20px !important;     /* iets meer boven */
  padding-left: 16px !important;     /* heel lichte gutter links */
  padding-right: 16px !important;    /* heel lichte gutter rechts */
  box-sizing: border-box;
}


.product-single__title {
  font-weight: 600 !important;   /* iets vetter dan standaard */
}



.product-single__title {
  line-height: 1.25; /* subtiel meer ruimte */
}









/* ⭐ Nieuwe prijs – lichter zwart */
.product__price.on-sale {
  color: #2a2a2a !important;   /* mooi lichtzwart */
  font-weight: 600;
}

/* ⭐ Compare-at prijs – iets donkerder grijs */
.product__price--compare {
  color: #7c7c7c !important;
  opacity: 1 !important;
}

/* ⭐ Sparen 29% – geen dubbele tekst + nette spatie */
.product__price-savings {
  color: #b6463b !important;   /* jouw rood */
  font-weight: 500;
  word-spacing: 2px;           /* zorgt voor ruimte tussen 29 en % */
}

/* Verwijder de foute "Sparen " die ik eerder toevoegde */
.product__price-savings::before {
  content: "" !important;
}


/* ⭐ Nieuwe prijs – niet vet + iets donkerder */
.product__price.on-sale {
  color: #2e2e2e !important;   /* subtiel donkerder */
  font-weight: 500 !important; /* niet vet */
}






/* 🔧 Badge mooi centreren met prijs */
.product__price-savings {
  margin-left: 12px;
  padding: 6px 12px;

  background-color: #C34141;
  color: #ffffff !important;

  border-radius: 6px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1;

  position: relative;
  top: -1.5px;   /* ⭐ optillen tot hij exact gelijk staat met midden van prijs */
}








/* Padding bovenaan toevoegen */
.swatch-single.swatch-view-stack {
    padding-top: 14px !important;   /* pas aan 8/12/14px indien gewenst */
}

/* Padding onderaan verwijderen */
.swatch-single.swatch-view-stack {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}



/* Verwijder bovenruimte en onderruimte bij de Grösse swatchbox */
.swatch-single.swatch-view-slide {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}







/* ATC-knop – sterke premium schaduw + licht vet */
.product-single__form .btn.btn--full.add-to-cart {
  font-weight: 500 !important; /* licht vet */
  border-radius: 0 !important; /* NIET rond maken */
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28), 
              0 4px 10px rgba(0, 0, 0, 0.20) !important; /* diepe stacked shadow */
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

/* tekst binnenin eveneens licht vet */
.product-single__form .btn.btn--full.add-to-cart span[data-add-to-cart-text] {
  font-weight: 500 !important;
}

/* hover effect: nóg meer pop */
.product-single__form .btn.btn--full.add-to-cart:hover {
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.32),
              0 6px 14px rgba(0, 0, 0, 0.22) !important;
  transform: translateY(-2px);
}

/* click effect */
.product-single__form .btn.btn--full.add-to-cart:active {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.26) !important;
  transform: translateY(0);
}






.product-single__form .btn.btn--full.add-to-cart span[data-add-to-cart-text] {
  font-size: 12px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.06em !important;
  font-weight: 550 !important; /* nog iets minder vet */

  /* subtielere fake-bold */
  text-shadow:
    -0.08px 0 0 currentColor,
     0.08px 0 0 currentColor;
}







#MainContent .rte p {
  margin-bottom: 1.2em !important;
  display: block !important;
}

#MainContent .rte ul {
  margin-top: 1.2em !important;
  margin-bottom: 1.2em !important;
  padding-left: 1.4em !important;
  list-style-position: outside !important;
}

#MainContent .rte li {
  margin-bottom: 0.5em !important;
  line-height: 1.6 !important;
}




/* --- FIX: Bullets volledig links in Impulse --- */
#MainContent .rte ul,
#MainContent .rte ul li {
  padding-left: 0 !important;
  margin-left: 0 !important;
  list-style-position: inside !important;
}

/* verwijder extra witruimte die Impulse toevoegt */
#MainContent .rte ul {
  margin-top: 0.5em !important;
  margin-bottom: 0.5em !important;
}

/* bullets niet extra indents */
#MainContent .rte ul li {
  text-indent: 0 !important;
}






/* --- Verwijder alle lijnen/kaders rond tabs op productpagina --- */
.product-single__meta .collapsible-trigger.collapsible-trigger-btn--borders {
  border: none !important;
  border-top: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
}

/* extra: verwijder Impulse pseudo-borders */
.product-single__meta .collapsible-trigger.collapsible-trigger-btn--borders::before,
.product-single__meta .collapsible-trigger.collapsible-trigger-btn--borders::after {
  display: none !important;
}



/* --- Verwijder kader/lijnen van geopend tab content --- */
.product-single__meta .collapsible-content {
  border: none !important;
  box-shadow: none !important;
}

.product-single__meta .collapsible-content__inner {
  border: none !important;
  box-shadow: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  background: transparent !important;
}



/* --- Tab titels op 16px --- */
.product-single__meta .collapsible-trigger {
  font-size: 16px !important;
}



/* --- Tabs titels NIET in hoofdletters --- */
.product-single__meta .collapsible-trigger {
  text-transform: none !important;
}





/* --- Tabs volledig strak links + geen letterspacing + geen hoofdletters --- */
.product-single__meta .collapsible-trigger {
  text-align: left !important;
  justify-content: flex-start !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
  font-size: 16px !important;
}

/* Icon rechts laten staan */
.product-single__meta .collapsible-trigger .collapsible-trigger__icon {
  margin-left: auto !important;
}






/* Alleen deze sectie: "Das könnte dir gefallen / Passend dazu" */
@media (max-width: 749px) {
  /* geef links ruimte én houd scroll-snap weg van de rand */
  #shopify-section-template--25754786398557__collectie_slide_ggRE6b .product-slider {
    padding-left: 16px;
    scroll-padding-left: 16px;
  }

  /* binnenste rij geen extra padding meer, anders wordt het dubbel */
  #shopify-section-template--25754786398557__collectie_slide_ggRE6b .product-slider .slider-inner {
    padding-inline: 0 !important;
  }
}







.testimonials-navigation-template--template--25754786398557__beier_testimonials_natXa4 {
  padding-top: 16px !important;   /* meer ruimte boven */
  padding-bottom: 16px !important; /* meer ruimte onder */
}








/* ==== DESKTOP UNIFORME AFSTAND TUSSEN ALLE SLIDES ==== */
@media (min-width: 1024px) {

  /* Forceer uniforme gap in de Swiper wrapper */
  .testimonials-slider-template--template--25754786398557__beier_testimonials_natXa4 .swiper-wrapper {
    display: flex !important;
    gap: 26px !important; /* evenveel ruimte tussen alle kaarten */
  }

  /* Zorg dat Swiper geen eigen spacing ertussen stopt */
  .testimonials-slider-template--template--25754786398557__beier_testimonials_natXa4 .swiper-slide {
    margin: 0 !important;
    width: calc(33.333% - 26px) !important; /* altijd 3 per rij + gelijkmatige spacing */
  }

  /* Kaart zelf */
  .testimonials-slide-template--template--25754786398557__beier_testimonials_natXa4 {
    height: 560px !important;
    margin: 0 !important; /* geen afwijkende margins */
  }
}







/* --- DESKTOP ONLY: tekstvak = zelfde breedte als foto + witruimte L/R --- */
@media screen and (min-width: 990px) {

  /* witte ruimte links & rechts van de HELE sectie */
  #ColumnsSwipe--template--25754786398557__columns_swipe_DKtxmR {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }

  /* tekstvak exact even breed als foto */
  #ColumnsSwipe--template--25754786398557__columns_swipe_DKtxmR .columns-swipe__content {
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* headings en tekst netjes binnen dezelfde breedte */
  #ColumnsSwipe--template--25754786398557__columns_swipe_DKtxmR .columns-swipe__heading,
  #ColumnsSwipe--template--25754786398557__columns_swipe_DKtxmR .columns-swipe__text {
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}




/* Alleen titel van deze FAQ-section links en 20px */
#shopify-section-template--25754786398557__faq_zVBLGB .section-header__title {
  text-align: left !important;
  font-size: 20px !important;
}















/* FAQ TITLES EXACT MATCH (16px Playfair + padding) */
#shopify-section-template--25754786398557__faq_zVBLGB .collapsible-trigger span:last-child {
  font-family: "Playfair Display", serif !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.03em !important;
  color: #212121 !important;

  /* EXACT PADDING FROM YOUR SCREENSHOT */
  padding: 24px 30px 24px 0 !important;

  display: block; /* prevents spacing bugs */
  line-height: 1.4 !important;
}

/* Remove Shopify default padding on the button itself */
#shopify-section-template--25754786398557__faq_zVBLGB .collapsible-trigger {
  padding: 0 !important;
  margin: 0 !important;
  position: relative;
  width: 100%;
  text-align: left;
}








/* 1. Verberg Shopify chevron icon */
#shopify-section-template--25754786398557__faq_zVBLGB .collapsible-trigger__icon {
  display: none !important;
}

/* 2. Position container so SVGs can align right */
#shopify-section-template--25754786398557__faq_zVBLGB .collapsible-trigger {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  width: 100%;
  padding: 0 !important;
  position: relative;
}

/* 3. Right-align the custom SVG icons */
#shopify-section-template--25754786398557__faq_zVBLGB .icon-plus,
#shopify-section-template--25754786398557__faq_zVBLGB .icon-minus {
  width: 20px !important;
  height: 20px !important;
  flex-shrink: 0;
}

/* 4. Default = show PLUS, hide MINUS */
#shopify-section-template--25754786398557__faq_zVBLGB .icon-minus {
  display: none !important;
}

/* 5. When FAQ is open → show MINUS, hide PLUS */
#shopify-section-template--25754786398557__faq_zVBLGB .collapsible-trigger[aria-expanded="true"] .icon-plus {
  display: none !important;
}

#shopify-section-template--25754786398557__faq_zVBLGB .collapsible-trigger[aria-expanded="true"] .icon-minus {
  display: inline-block !important;
}




#shopify-section-template--25752079303005__hero_static_8xwdFc {
  background-color: #FCFBF9 !important;
}

#shopify-section-template--25752079303005__hero_static_8xwdFc .hero {
  background-color: #FCFBF9 !important;
}

#shopify-section-template--25752079303005__hero_static_8xwdFc .hero__image-wrapper {
  background-color: #FCFBF9 !important;
}




#shopify-section-template--25752079303005__hero_static_8xwdFc,
#shopify-section-template--25752079303005__hero_static_8xwdFc .hero,
#shopify-section-template--25752079303005__hero_static_8xwdFc .hero__image-wrapper {
  background: #FCFBF9 !important;
}


















/* === DESKTOP: featured collection links (2x2) + hero rechts === */
@media (min-width: 1024px) {

  /* Zet de twee secties netjes naast elkaar */
  #shopify-section-template--25752079303005__featured_collection_HrnaAG,
  #shopify-section-template--25752079303005__hero_static_8xwdFc {
    display: inline-block;
    vertical-align: top;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  /* Breedtes links/rechts */
  #shopify-section-template--25752079303005__featured_collection_HrnaAG {
    width: 55%;
  }

  #shopify-section-template--25752079303005__hero_static_8xwdFc {
    width: 45%;
  }

  /* Binnenkant featured collection: full-breedte en wat ruimte naar rechts */
  #shopify-section-template--25752079303005__featured_collection_HrnaAG .page-width {
    max-width: none !important;
    padding-left: 0 !important;
    padding-right: 24px !important;
    box-sizing: border-box;
  }

  /* Productgrid: 2 kolommen op desktop */
  #shopify-section-template--25752079303005__featured_collection_HrnaAG .grid.grid--uniform {
    display: flex !important;
    flex-wrap: wrap !important;
  }

  #shopify-section-template--25752079303005__featured_collection_HrnaAG .grid__item.grid-product {
    width: 50% !important;   /* 2 per rij */
  }

  /* Hero-sectie: beetje ruimte links en vaste hoogte voor nette lijn */
  #shopify-section-template--25752079303005__hero_static_8xwdFc .hero-static-fixed {
    padding-left: 24px !important;
    padding-right: 0 !important;
    box-sizing: border-box;
  }

  /* Hero iets hoger maken zodat hij mooi gelijkloopt met 2x2 grid */
  #shopify-section-template--25752079303005__hero_static_8xwdFc .hero--template--25752079303005__hero_static_8xwdFc {
    height: 650px !important;       /* eventueel spelen met 600–700px */
  }

  #shopify-section-template--25752079303005__hero_static_8xwdFc .hero__image-wrapper,
  #shopify-section-template--25752079303005__hero_static_8xwdFc .hero__image {
    height: 100% !important;
    object-fit: cover !important;
  }
}



@media (min-width: 1024px) {

  /* Product items blijven 2x2 */
  #shopify-section-template--25752079303005__featured_collection_HrnaAG .grid__item.grid-product {
    width: 50% !important;
  }

  /* FOTO'S VIERKANT MAKEN */
  #shopify-section-template--25752079303005__featured_collection_HrnaAG .grid__image-ratio {
    padding-bottom: 100% !important; /* 1:1 aspect ratio */
    height: 0 !important;
  }

  /* Zorg dat secundaire afbeeldingen ook vierkant blijven */
  #shopify-section-template--25752079303005__featured_collection_HrnaAG .grid-product__secondary-image img,
  #shopify-section-template--25752079303005__featured_collection_HrnaAG .grid-product__image-mask img {
    object-fit: cover !important;
    width: 100% !important;
    height: 100% !important;
  }
}




@media (min-width: 1024px) {

  /* Product items kleiner maken */
  #shopify-section-template--25752079303005__featured_collection_HrnaAG .grid__item.grid-product {
    width: 48% !important;         /* 2x2 maar iets kleiner */
    margin-bottom: 18px !important;
  }

  /* Foto’s vierkant houden */
  #shopify-section-template--25752079303005__featured_collection_HrnaAG .grid__image-ratio {
    padding-bottom: 100% !important;
    height: 0 !important;
  }

  /* Afbeelding netjes vullen */
  #shopify-section-template--25752079303005__featured_collection_HrnaAG .grid-product__image-mask img,
  #shopify-section-template--25752079303005__featured_collection_HrnaAG .grid-product__secondary-image img {
    object-fit: cover !important;
    width: 100% !important;
    height: 100% !important;
  }
}



/* Verwijder alle padding rond de hero rechts (desktop) */
@media (min-width: 1024px) {
  #shopify-section-template--25752079303005__hero_static_8xwdFc .hero-static-fixed {
    padding: 0 !important;
  }

  /* Verwijder ook eventuele padding op de <section> zelf */
  #shopify-section-template--25752079303005__hero_static_8xwdFc section.hero {
    padding: 0 !important;
    margin: 0 !important;
  }
}



/* --- PRODUCT GRID FIX: 223x245 formaat op desktop --- */
@media (min-width: 1024px) {
  #shopify-section-template--25752079303005__featured_collection_HrnaAG .grid-product__image-mask {
    height: 245px !important;
    width: 223px !important;
    overflow: hidden !important;
  }

  #shopify-section-template--25752079303005__featured_collection_HrnaAG .grid-product__image-mask img {
    height: 100% !important;
    width: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
  }

  /* container centreren zodat de layout mooi blijft */
  #shopify-section-template--25752079303005__featured_collection_HrnaAG .grid__item {
    display: flex;
    justify-content: center;
  }
}



/* 🔧 Verwijder verborgen swatch-ruimte in deze 4-grid (desktop + mobiel) */
#shopify-section-template--25752079303005__featured_collection_HrnaAG .swatch-single.swatch-view-stack {
  padding: 0 !important;
  margin: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
}

/* veiligheidsnet: container ook geen extra ruimte laten nemen */
#shopify-section-template--25752079303005__featured_collection_HrnaAG .swatches {
  margin: 0 !important;
  padding: 0 !important;
}



/* --- PRODUCT GRID: verwijder alle verticale whitespace --- */
@media (min-width: 1024px) {

  /* Verwijder padding + margin in de grid items */
  #shopify-section-template--25752079303005__featured_collection_HrnaAG .grid-product {
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Verwijder padding van de binnenkant van de product meta (titel + prijs) */
  #shopify-section-template--25752079303005__featured_collection_HrnaAG .grid-product__meta {
    padding: 0 !important;
    margin: 0 !important;
  }

  /* Titel strakker */
  #shopify-section-template--25752079303005__featured_collection_HrnaAG 
  .grid-product__title {
    margin: 6px 0 4px !important;
    padding: 0 !important;
  }

  /* Prijsblok strakker */
  #shopify-section-template--25752079303005__featured_collection_HrnaAG 
  .grid-product__price {
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Verwijder swatch-ruimte */
  #shopify-section-template--25752079303005__featured_collection_HrnaAG 
  .swatches {
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Verwijder 14px padding van de swatch-single */
  #shopify-section-template--25752079303005__featured_collection_HrnaAG 
  .swatch-single {
    padding: 0 !important;
    margin: 0 !important;
  }

  /* Mask/image wrapper: strakker */
  #shopify-section-template--25752079303005__featured_collection_HrnaAG 
  .grid-product__image-mask {
    margin: 0 !important;
    padding: 0 !important;
  }
}




/* ============================================
   DESKTOP PADDING VOOR GRID + HERO
   ============================================ */
@media (min-width: 1024px) {

  /* Buitenranden voor de twee kolommen */
  #shopify-section-template--25752079303005__featured_collection_HrnaAG,
  #shopify-section-template--25752079303005__hero_static_8xwdFc {
    padding-left: 40px !important;
    padding-right: 40px !important;
    box-sizing: border-box !important;
  }

  /* Extra ruimte bovenaan beide secties */
  #shopify-section-template--25752079303005__featured_collection_HrnaAG {
    padding-top: 40px !important;
  }

  #shopify-section-template--25752079303005__hero_static_8xwdFc {
    padding-top: 40px !important;
  }
}



@media (min-width: 1024px) {

  /* ---- Ruimte tussen grid (links) en hero (rechts) verkleinen ---- */
  #shopify-section-template--25752079303005__featured_collection_HrnaAG {
    padding-right: 20px !important; /* was 40px → nu strakker */
  }

  #shopify-section-template--25752079303005__hero_static_8xwdFc {
    padding-left: 20px !important; /* was 40px → nu strakker */
  }
}






/* 🚫 SALE tag verbergen op desktop, alleen in deze sectie */
@media (min-width: 1024px) {
  #shopify-section-template--25752079303005__featured_collection_HrnaAG 
  .grid-product__tag--sale {
    display: none !important;
  }
}




@media (min-width: 1024px) {
  #shopify-section-template--25752079303005__featured_collection_HrnaAG {
    padding-top: 40px !important;
  }
}


/* Letterspacing verwijderen bij swatch labels */
.swatch-label,
.swatch-label * {
  letter-spacing: 0 !important;
}












/* Alleen de 30-Tage-Sektion (feature row textblock) */
.feature-row__item.feature-row__text.feature-row__text--left.text-center .rte p {
  font-size: 14px !important;
  font-family: 'Montserrat', sans-serif !important;
  line-height: 1.6 !important;
}




/* Alleen de tekstsectie van 30 Tage Rückgabe */
#shopify-section-template--25754786398557__text_and_image_JiRjMd .feature-row__text .rte p {
  font-size: 14px !important;
  font-family: "Montserrat", sans-serif !important;
  font-weight: 400 !important;
  line-height: 1.55;
}

/* Licht-vette sleutelwoorden */
#shopify-section-template--25754786398557__text_and_image_JiRjMd .feature-row__text .rte strong {
  font-weight: 500 !important; /* semi-bold */
}



/* Extra ruimte onder de titel in deze specifieke sectie */
#shopify-section-template--25754786398557__text_and_image_JiRjMd .feature-row__text .h1 {
  padding-bottom: 12px !important;
}








/* ==== 30 Tage Rückgabe – padding top/bottom ok, geen ruimte links/rechts ==== */

/* Algemene sectie: alleen boven/onder padding, geen links/rechts */
#shopify-section-template--25754786398557__text_and_image_JiRjMd .index-section {
  padding: 40px 0 !important; /* 40px boven & onder, 0 links & rechts */
}

/* Container binnenin: geen horizontale padding */
#shopify-section-template--25754786398557__text_and_image_JiRjMd .page-width.feature-row-wrapper {
  padding-left: 0 !important;
  padding-right: 0 !important;
  max-width: 100% !important;
  margin: 0 auto !important;
}

/* Image altijd full-width binnen de sectie */
#shopify-section-template--25754786398557__text_and_image_JiRjMd .feature-row__image {
  width: 100% !important;
  height: auto !important;
  object-fit: cover !important;
  display: block !important;
}

/* Specifiek voor mobiel: gegarandeerd geen side padding/gaps */
@media (max-width: 768px) {
  #shopify-section-template--25754786398557__text_and_image_JiRjMd .index-section {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  #shopify-section-template--25754786398557__text_and_image_JiRjMd .page-width.feature-row-wrapper {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  #shopify-section-template--25754786398557__text_and_image_JiRjMd .feature-row__image {
    width: 100% !important;
  }
}





#TabCollections--template--25754786398557__collectie_slide_ggRE6b .tabs__body {
  padding-bottom: 28px !important; /* meer ruimte onderaan */
}




/* Onderste padding van de productpagina verwijderen */
.page-content--product {
  padding-bottom: 0 !important;
}

/* Extra: eventuele marge onder de inhoud ook weghalen */
.page-content--product .page-width {
  margin-bottom: 0 !important;
}





/* Licht beetje ruimte onderaan productpagina */
.page-content--product {
  padding-bottom: 26px !important;  /* klein, maar zichtbaar */
}

.page-content--product .page-width {
  margin-bottom: 0 !important; /* laten we zo houden */
}







/* Verwijder alle boven-padding van deze specifieke tekst-en-beeld sectie */
#shopify-section-template--25754786398557__text_and_image_JiRjMd .index-section,
#shopify-section-template--25754786398557__text_and_image_JiRjMd .page-width,
#shopify-section-template--25754786398557__text_and_image_JiRjMd .feature-row {
  padding-top: 0 !important;
  margin-top: 0 !important;
}






/* Verwijder alle witruimte ONDER deze specifieke sectie */
#shopify-section-template--25754786398557__text_and_image_JiRjMd .index-section,
#shopify-section-template--25754786398557__text_and_image_JiRjMd .page-width,
#shopify-section-template--25754786398557__text_and_image_JiRjMd .feature-row-wrapper,
#shopify-section-template--25754786398557__text_and_image_JiRjMd .feature-row {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}





/* Mini beetje witruimte ONDER deze sectie */
#shopify-section-template--25754786398557__text_and_image_JiRjMd .feature-row {
  padding-bottom: 10px !important; /* super subtiel */
}






/* --- TITEL --- */
#InfoIcons--template--25754786398557__text_row_icons_UaAhyL .info-icons__heading{
  font-size:20px;
  font-weight:600;
  color:#2c2c2c;
  text-transform:uppercase;
  letter-spacing:0.3px;
  margin:6px 0 10px;
  max-width:unset !important;      /* 🔥 breder */
}

/* --- TEKST --- */
#InfoIcons--template--25754786398557__text_row_icons_UaAhyL .info-icons__text{
  font-size:14px;
  line-height:1.45;
  color:#212121;
  opacity:.9;
  max-width:380px !important;       /* 🔥 van 300 → 380 */
  margin:0 auto;
}









/* Minder witruimte boven de iconen */
#InfoIcons--template--25754786398557__text_row_icons_UaAhyL .info-icons__item {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* Titel minder bovenruimte */
#InfoIcons--template--25754786398557__text_row_icons_UaAhyL .info-icons__heading {
  margin-top: 2px !important;
  margin-bottom: 6px !important;
}

/* Tekst minder onderruimte */
#InfoIcons--template--25754786398557__text_row_icons_UaAhyL .info-icons__text {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}



/* Alle tekst in de blokken op 14px */
#InfoIcons--template--25754786398557__text_row_icons_UaAhyL .info-icons__text {
  font-size: 14px !important;
  line-height: 1.45;
}

/* Meer ruimte tussen titel en tekst */
#InfoIcons--template--25754786398557__text_row_icons_UaAhyL .info-icons__heading {
  margin-bottom: 12px !important;   /* was ~6px → nu merkbaar meer */
}



/* Licht-vet <strong> styling voor Columns Swipe sectie */
#ColumnsSwipe--template--25754786398557__columns_swipe_DKtxmR strong {
  font-weight: 500 !important; /* semi-bold / licht vet */
}




/* Verwijdert alle boven-padding van de FAQ-sectie */
#faq-custom-template--25754786398557__faq_custom_WwDQTF {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* Optioneel: ook de inner container zonder bovenruimte */
#faq-custom-template--25754786398557__faq_custom_WwDQTF .faq-custom__inner {
  padding-top: 0 !important;
  margin-top: 0 !important;
}




/* Verwijdert onder-padding van Columns Swipe sectie */
#ColumnsSwipe--template--25754786398557__columns_swipe_DKtxmR {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

#ColumnsSwipe--template--25754786398557__columns_swipe_DKtxmR .columns-swipe__wrap {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}







.footer__collapsible.footer_collapsible--disabled .white-check {
  color: #ffffff !important;  /* witte vinkjes */
  margin-right: 6px;          /* klein beetje ruimte tussen vinkje en tekst */
}



/* Verwijder de halve ster in de testimonials-slider */
.section-template--template--25754786398557__beier_testimonials_natXa4 
.testimonials-stars-template--template--25754786398557__beier_testimonials_natXa4 
svg:last-of-type {
  display: none;
}
