/** Shopify CDN: Minification failed

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

**/
:root {
  --oa-wishlist-accent: #55fffa;
  --oa-wishlist-text: #1d1d1b;
  --oa-wishlist-white: #fff;
}

/* ── Reviews/recensies geforceerd verbergen op productpagina ── */
body.template-product .shopify-section[id*="reviews" i],
body.template-product .shopify-section[id*="review" i],
body.template-product .shopify-section[id*="judge" i],
body.template-product .shopify-section[id*="yotpo" i],
body.template-product .shopify-section[id*="loox" i],
body.template-product .shopify-section[id*="opinew" i],
body.template-product .shopify-section[id*="stamped" i],
body.template-product [data-section-type="reviews"],
body.template-product [data-section-id*="reviews" i],
.product__reviews,
.product-reviews,
.product__rating,
.product__reviews-count,
.product__rating-count,
.product__title__rating,
.shopify-product-reviews-badge,
.spr-badge,
.spr-container,
.spr-review,
.spr-form,
.judgeme_reviews,
.jdgm-widget,
.jdgm-rev-widg,
.jdgm-prev-badge,
.jdgm-all-reviews-rating,
.yotpo,
.yotpo-reviews,
.yotpo-bottomline,
.loox-rating,
.loox-reviews,
.opinew-stars,
.stamped-product-reviews-badge,
/* AfterShip Reviews */
[id^="aftership-reviews"],
[id^="aftership-review"],
[class*="aftership-reviews-widget"],
[class*="aftership-review"],
#noReviewsWidgetText,
#starGroupContainer,
#writeGroupButton,
#writeReviewButton,
[data-aftership-reviews],
[data-aftership-review],
.ar-widget,
.ar-stars,
.ar-no-reviews,
/* Algemeen: container met aftership-class anywhere */
div:has(> #noReviewsWidgetText),
div:has(> [id^="aftership-reviews"]) {
  display: none !important;
}

/* ── Theme sale/korting label naar onze huiskleur (cyaan) ── */
.product__price--off,
[data-price-off],
.product__price--sale-label,
.product__sale-badge,
.product-card__on-sale,
.on-sale-badge,
.badge--sale,
.product-clip__on-sale,
.product__on-sale,
.product-card-badge,
.price__sale,
.price-item--sale,
.discount-badge,
.sale-badge,
.savings-badge {
  background: #55fffa !important;
  color: #000 !important;
  border-color: #55fffa !important;
  font-weight: 600 !important;
}
.product__price--off em,
.product__price--off > * { color: #000 !important; opacity: 0.5; }
.product__price--sale,
[data-product-price].product__price--sale,
.price__sale .price-item,
.price--on-sale .price-item--sale { color: #000 !important; }

/* ── Hidden utility ── */
.oa-wishlist-hidden { display: none !important; }

/* ══════════════════════════════════════
   ANIMATIES
   ══════════════════════════════════════ */

@keyframes oa-fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes oa-fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes oa-heartPop {
  0%   { transform: scale(1); }
  30%  { transform: scale(1.3); }
  60%  { transform: scale(0.9); }
  100% { transform: scale(1); }
}
@keyframes oa-heartBeat {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.1); }
}
@keyframes oa-badgePop {
  0%   { transform: scale(0); }
  60%  { transform: scale(1.3); }
  100% { transform: scale(1); }
}
@keyframes oa-slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes oa-cardIn {
  from { opacity: 0; transform: scale(0.95) translateY(12px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* ── Header icon ── */
.oa-wishlist-header-icon-desktop .navlink,
.oa-wishlist-header-icon-mobile {
  position: relative;
}
.oa-wishlist-header-icon-desktop,
.oa-wishlist-header-icon-mobile {
  animation: oa-fadeIn 0.3s ease;
}

/* ── Icon wrapper: keeps badge anchored to the SVG ── */
.oa-wishlist-icon-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ── Count badge: top-right of the icon itself ── */
.oa-wishlist-count-badge {
  position: absolute;
  top: -3px;
  right: -5px;
  min-width: 14px;
  height: 14px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--oa-wishlist-accent);
  color: #000;
  font-size: 9px;
  line-height: 14px;
  text-align: center;
  font-weight: 700;
  letter-spacing: -.02em;
  pointer-events: none;
  box-shadow: 0 2px 6px rgba(85,255,250,.4), 0 0 0 2px #fff;
  animation: oa-badgePop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform-origin: center;
}

/* Re-trigger bump animation bij count change */
.oa-wishlist-count-badge.oa-just-bumped {
  animation: oa-badgeBump 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes oa-badgeBump {
  0%   { transform: scale(1); }
  35%  { transform: scale(1.45); box-shadow: 0 4px 14px rgba(85,255,250,.6), 0 0 0 2px #fff; }
  70%  { transform: scale(0.92); }
  100% { transform: scale(1); }
}

/* Header heart pulse op iedere toggle */
.oa-wishlist-header-icon-desktop .oa-heart-icon.oa-just-pulsed,
.oa-wishlist-header-icon-mobile .oa-heart-icon.oa-just-pulsed {
  animation: oa-heartPulse 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform-origin: center;
}
@keyframes oa-heartPulse {
  0%   { transform: scale(1); }
  25%  { transform: scale(1.25) rotate(-3deg); }
  50%  { transform: scale(0.92); }
  75%  { transform: scale(1.08) rotate(2deg); }
  100% { transform: scale(1) rotate(0); }
}

/* Heart in header — rood, gevuld bij has-items */
.oa-wishlist-header-icon-desktop .oa-heart-icon path,
.oa-wishlist-header-icon-mobile .oa-heart-icon path {
  fill: none;
  stroke: #e63946;
  transition: fill 0.3s ease, stroke 0.3s ease;
}
.oa-wishlist-header-icon-desktop.has-items .oa-heart-icon path,
.oa-wishlist-header-icon-mobile.has-items .oa-heart-icon path {
  fill: #e63946;
  stroke: #e63946;
}

/* ── Card heart button ── */
.oa-wishlist-card-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 4;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,0.92);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  padding: 0;
  opacity: 0;
}

/* Pop animation when toggling active */
.oa-wishlist-card-btn.oa-just-toggled {
  animation: oa-heartPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Show heart on card hover OR when active */
.oa-wishlist-card-btn.is-active,
*:hover > .oa-wishlist-card-btn,
.oa-wishlist-card-btn:focus {
  opacity: 1;
}
.oa-wishlist-card-btn:hover {
  opacity: 1;
  transform: scale(1.12);
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
}

/* Mobile: always show card hearts */
@media (hover: none) {
  .oa-wishlist-card-btn {
    opacity: 1;
  }
}

/* ── Product page button ── */
.oa-wishlist-product-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid rgba(29,29,27,0.12);
  background: var(--oa-wishlist-white);
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: var(--oa-wishlist-text);
  margin-top: 12px;
  transition: border-color 0.2s, background 0.2s, color 0.2s, transform 0.15s;
  animation: oa-fadeInUp 0.4s ease;
}
.oa-wishlist-product-btn:hover {
  border-color: var(--oa-wishlist-accent);
  color: var(--oa-wishlist-accent);
}
.oa-wishlist-product-btn:hover .oa-heart path {
  stroke: var(--oa-wishlist-accent);
}
.oa-wishlist-product-btn:active {
  transform: scale(0.96);
}
.oa-wishlist-product-btn.is-active {
  border-color: var(--oa-wishlist-accent);
  background: rgba(85,255,250,0.08);
  color: var(--oa-wishlist-accent);
}
.oa-wishlist-product-btn.is-active .oa-heart path {
  fill: var(--oa-wishlist-accent);
  stroke: var(--oa-wishlist-accent);
}
.oa-wishlist-product-btn.oa-just-toggled .oa-heart {
  animation: oa-heartPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── Heart SVG (for cards and product button) ── */
.oa-heart {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.oa-heart path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: fill 0.25s, stroke 0.25s;
}
.is-active .oa-heart path {
  fill: var(--oa-wishlist-accent);
  stroke: var(--oa-wishlist-accent);
}


/* ══════════════════════════════════════════════════
   FAVORIETEN PAGINA — Full page takeover
   ══════════════════════════════════════════════════ */

.oa-wishlist-page {
  min-height: 60vh;
}

/* ── Page header ── */
.oa-fav-header {
  text-align: center;
  padding: 48px 20px 12px;
  max-width: 600px;
  margin: 0 auto;
  animation: oa-fadeInUp 0.5s ease;
}
.oa-fav-header-heart {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  animation: oa-heartBeat 2s ease-in-out infinite;
}
.oa-fav-header-heart svg {
  display: block;
}
.oa-fav-header-title {
  font-size: 26px;
  font-weight: 600;
  margin: 0 0 4px;
  padding: 0;
  border: none;
  color: var(--oa-wishlist-text);
  letter-spacing: -0.02em;
  text-decoration: none;
}
.oa-fav-header-sub {
  margin: 6px 0 0;
  font-size: 15px;
  color: rgba(29,29,27,0.5);
  font-weight: 400;
  line-height: 1.5;
  padding-bottom: 20px;
}
.oa-fav-header-sub::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: rgba(29,29,27,0.15);
  margin: 20px auto 0;
}
.oa-fav-header-count {
  margin: 4px 0 0;
  font-size: 13px;
  color: rgba(29,29,27,0.35);
  font-weight: 400;
}

/* ── Empty state ── */
.oa-fav-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40vh;
  padding: 60px 20px;
  animation: oa-fadeInUp 0.6s ease;
}
.oa-fav-empty-inner {
  text-align: center;
  max-width: 360px;
}
.oa-fav-empty-icon {
  display: block;
  margin: 0 auto 24px;
  color: rgba(29,29,27,0.15);
  animation: oa-heartBeat 2.5s ease-in-out infinite;
}
.oa-fav-empty-text {
  font-size: 16px;
  color: rgba(29,29,27,0.5);
  margin: 0 0 28px;
  line-height: 1.5;
}
.oa-fav-empty-btn {
  display: inline-block;
  padding: 14px 36px;
  background: var(--oa-wishlist-text);
  color: var(--oa-wishlist-white);
  text-decoration: none;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: opacity 0.2s, transform 0.2s;
}
.oa-fav-empty-btn:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}
.oa-fav-empty-btn:active {
  transform: translateY(0) scale(0.97);
}

/* ── Product grid section ── */
.oa-fav-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}
.oa-fav-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 999px) {
  .oa-fav-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}
@media (max-width: 749px) {
  .oa-fav-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .oa-fav-header {
    padding: 32px 20px 8px;
  }
  .oa-fav-header-title {
    font-size: 22px;
  }
  .oa-fav-section {
    padding: 24px 16px 60px;
  }
}

/* ── Product card ── */
.oa-fav-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--oa-wishlist-white);
  border: 1px solid rgba(29,29,27,0.06);
  transition: box-shadow 0.25s, transform 0.25s;
  animation: oa-cardIn 0.45s ease both;
}
/* Stagger cards: each card fades in slightly later */
.oa-fav-card:nth-child(1)  { animation-delay: 0s; }
.oa-fav-card:nth-child(2)  { animation-delay: 0.06s; }
.oa-fav-card:nth-child(3)  { animation-delay: 0.12s; }
.oa-fav-card:nth-child(4)  { animation-delay: 0.18s; }
.oa-fav-card:nth-child(5)  { animation-delay: 0.24s; }
.oa-fav-card:nth-child(6)  { animation-delay: 0.30s; }
.oa-fav-card:nth-child(7)  { animation-delay: 0.36s; }
.oa-fav-card:nth-child(8)  { animation-delay: 0.42s; }
.oa-fav-card:nth-child(n+9){ animation-delay: 0.48s; }

.oa-fav-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}
.oa-fav-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* Image */
.oa-fav-img-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #f8f8f8;
}
.oa-fav-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.oa-fav-card:hover .oa-fav-img {
  transform: scale(1.05);
}
.oa-fav-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f4f4f4;
  color: rgba(29,29,27,0.2);
}

/* Card info */
.oa-fav-card-info {
  padding: 14px 16px 16px;
}
.oa-fav-title {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
  color: var(--oa-wishlist-text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── Remove button (X) ── */
.oa-fav-remove {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s, background 0.2s, transform 0.2s;
  padding: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.oa-fav-card:hover .oa-fav-remove,
.oa-fav-remove:focus {
  opacity: 1;
}
.oa-fav-remove:hover {
  background: #ff4444;
  color: white;
  transform: scale(1.15) rotate(90deg);
}
@media (hover: none) {
  .oa-fav-remove {
    opacity: 1;
  }
}

/* === FONT-RESET-OA: uniforme Poppins overal === */
.oa-wishlist-page,.oa-wishlist-page *,.oa-wishlist-page *::before,.oa-wishlist-page *::after{font-family:"Poppins",sans-serif !important}
.oa-wishlist-page button,.oa-wishlist-page input,.oa-wishlist-page textarea,.oa-wishlist-page select{font-family:inherit !important}
.oa-wishlist-page strong,.oa-wishlist-page b{font-weight:700 !important}
.oa-wishlist-page h1,.oa-wishlist-page h2,.oa-wishlist-page h3,.oa-wishlist-page h4,.oa-wishlist-page h5,.oa-wishlist-page h6{font-family:"Poppins",sans-serif !important;font-weight:700 !important;letter-spacing:-0.01em}

/* === GLOBAL POPPINS ENFORCEMENT (forceer thema naar Poppins via app) === */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');
html,html *,html *::before,html *::after,
body,body *,body *::before,body *::after{font-family:"Poppins",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif !important}
input,textarea,select,button{font-family:"Poppins",sans-serif !important}
h1,h2,h3,h4,h5,h6{font-family:"Poppins",sans-serif !important}
/* Behoud icon-fonts (FontAwesome, Material Icons, etc.) */
[class^="icon-"],[class*=" icon-"],.fa,.fas,.far,.fab,.fal,.material-icons,.material-symbols-outlined,svg,svg *{font-family:inherit !important}
/* CSS-vars overschrijven die thema's vaak gebruiken */
:root{
  --font-body-family:"Poppins",sans-serif !important;
  --font-heading-family:"Poppins",sans-serif !important;
  --font-stack-body:"Poppins",sans-serif !important;
  --font-stack-heading:"Poppins",sans-serif !important;
  --type-body-font:"Poppins",sans-serif !important;
  --type-header-font:"Poppins",sans-serif !important;
  --FONT-STACK-BODY:"Poppins",sans-serif !important;
  --FONT-STACK-HEADER:"Poppins",sans-serif !important;
}
