/** Shopify CDN: Minification failed

Line 398:0 Expected "}" to go with "{"

**/
:root{
  --nc-accent:#111;            /* zwart i.p.v. blauw */
  --nc-border: rgba(0,0,0,.12);
  --nc-shadow: 0 -10px 30px rgba(0,0,0,.10);
  --nc-h: 44px;                    /* controls hoogte zoals voorbeeld */
}

/* Bar */
.nc-sticky-buybar{
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 9999;
  background: #fff;
  border-top: 1px solid var(--nc-border);
  box-shadow: var(--nc-shadow);

  transform: translateY(110%);
  transition: transform .35s ease; /* rustige animatie */
}
.nc-sticky-buybar.is-visible{ transform: translateY(0); }

/* Inner: full width met kleine padding (zoals screenshot) */
.nc-sticky-buybar__inner{
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;

  padding: 12px 16px;     /* compacte bar */
  width: 100%;
}

/* LEFT side */
.nc-sticky-buybar__left{
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.nc-sticky-buybar__thumb{
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  overflow: hidden;
  border-radius: 0;
  background: #f3f3f3;
  border: 1px solid rgba(0,0,0,.08);
}
.nc-sticky-buybar__thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nc-sticky-buybar__meta{ min-width: 0; }

.nc-sticky-buybar__title{
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: .95;
}

.nc-sticky-buybar__price{
  margin-top: 3px;
  font-size: 13px;
  white-space: nowrap;
}
.nc-sticky-buybar__price-now{
  font-weight: 700;
}
.nc-sticky-buybar__price-was{
  margin-left: 8px;
  text-decoration: line-through;
  color: #111
  opacity: .55;
  font-size: 13px;
  font-weight: 500;
}

/* RIGHT side */
.nc-sticky-buybar__right{
  display: flex;
  align-items: center;
}

.nc-sticky-buybar__form{
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Variant select with arrow */
.nc-sticky-buybar__select{ position: relative; }

.nc-sticky-buybar__variant-select{
  height: var(--nc-h);
  min-width: 160px;
  padding: 0 38px 0 12px;
  border: 1px solid var(--nc-border);
  border-radius: 0;
  background: #fff;
  font-size: 13px;

  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.nc-sticky-buybar__select::after{
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid rgba(0,0,0,.7);
  border-bottom: 2px solid rgba(0,0,0,.7);
  transform: translateY(-60%) rotate(45deg);
  pointer-events: none;
}

/* Qty box: like screenshot (– 1 + centered) */
.nc-sticky-buybar__qty{
  height: var(--nc-h);
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--nc-border);
  border-radius: 0;
  overflow: hidden;
  background: #fff;
}

.nc-qty__btn{
  width: var(--nc-h);
  height: var(--nc-h);
  border: 0;
  background: #fff;
  font-size: 18px;
  cursor: pointer;

  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nc-sticky-buybar__qty input{
  width: 44px;
  height: var(--nc-h);
  border: 0;
  padding: 0 !important;
  margin: 0 !important;
  text-align: center !important;
  font-size: 13px;
  line-height: var(--nc-h); /* verticaal midden */
  outline: none;
  display: block;
}

/* remove number spinners */
.nc-sticky-buybar__qty input::-webkit-outer-spin-button,
.nc-sticky-buybar__qty input::-webkit-inner-spin-button{
  -webkit-appearance: none;
  margin: 0;
}
.nc-sticky-buybar__qty input[type=number]{ -moz-appearance: textfield; }

/* CTA: black, same height, bold */
.nc-sticky-buybar__cta{
  height: var(--nc-h);
  padding: 0 18px;
  border: 1px solid var(--nc-accent);
  border-radius: 0;
  background: var(--nc-accent);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .3px;
  cursor: pointer;
  white-space: nowrap;
  text-transform: uppercase;
}

.nc-sticky-buybar__cta:hover{ opacity: .92; }

/* Mobile */
@media (max-width: 768px){
  .nc-sticky-buybar__inner{
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 10px 12px;
  }
  .nc-sticky-buybar__form{
    width: 100%;
    flex-wrap: wrap;
  }
  .nc-sticky-buybar__variant-select{
    min-width: 0;
    width: 100%;
  }
  .nc-sticky-buybar__cta{
    flex: 1;
  }
}
/* ======================
   1) Bar iets hoger (zoals voorbeeld)
   ====================== */
:root{
  --nc-h: 48px;           /* controls iets hoger */
}

.nc-sticky-buybar__inner{
  padding: 14px 16px;     /* bar hoger zonder extreem te worden */
}

/* Zorg dat alle controls exact zelfde hoogte houden */
.nc-sticky-buybar__variant-select,
.nc-sticky-buybar__qty,
.nc-sticky-buybar__cta{
  height: var(--nc-h) !important;
}

/* ======================
   2) Mobiel: geen afbeelding + geen qty, alleen variant + ATC
   ====================== */
@media (max-width: 768px){
  .nc-sticky-buybar__thumb,
  .nc-sticky-buybar__qty,
  .nc-sticky-buybar__meta{
    display: none !important;
  }

  /* zet alles rechts “1 rij” */
  .nc-sticky-buybar__inner{
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px 12px;
  }

  .nc-sticky-buybar__left{
    display: none !important; /* hele linkerkant weg */
  }

  .nc-sticky-buybar__right,
  .nc-sticky-buybar__form{
    width: 100%;
  }

  .nc-sticky-buybar__form{
    display: grid;
    grid-template-columns: 1fr 1fr; /* variant + ATC */
    gap: 10px;
    align-items: center;
  }

  .nc-sticky-buybar__variant-select{
    width: 100%;
    min-width: 0;
  }

  .nc-sticky-buybar__cta{
    width: 100%;
    padding: 0 12px;
  }
}

/* ======================
   3) Hover effect: gebruik theme classes + fallback
   (als theme hover niet pakt, doet fallback dit)
   ====================== */
.nc-sticky-buybar__cta{
  transition: transform .18s ease, opacity .18s ease, filter .18s ease;
}

@media (hover:hover){
  .nc-sticky-buybar__cta:hover{
    transform: translateY(-1px);
    filter: brightness(0.92);
  }
}
/* =========================
   DESKTOP: grotere sticky bar zoals voorbeeld
   ========================= */
@media (min-width: 769px){

  /* Bar hoger */
  .nc-sticky-buybar__inner{
    padding: 18px 20px;     /* hoger dan mobiel */
  }

  /* Grotere productafbeelding */
  .nc-sticky-buybar__thumb{
    width: 72px;
    height: 72px;
    flex: 0 0 72px;
  }

  /* Titel & prijs iets groter */
  .nc-sticky-buybar__title{
    font-size: 14px;
  }

  .nc-sticky-buybar__price{
    font-size: 14px;
    font-weight: 700;
  }

  /* Controls iets hoger voor visuele balans */
  :root{
    --nc-h: 48px;
  }

  .nc-sticky-buybar__variant-select,
  .nc-sticky-buybar__qty,
  .nc-sticky-buybar__cta{
    height: var(--nc-h) !important;
  }

  .nc-qty__btn{
    width: var(--nc-h);
    height: var(--nc-h);
  }

  .nc-sticky-buybar__qty input{
    line-height: var(--nc-h);
  }
}
/* =========================
   DESKTOP: spacing finetune
   ========================= */
@media (min-width: 769px){

  /* 1️⃣ Minder witruimte boven/onder de afbeelding */
  .nc-sticky-buybar__thumb{
    align-self: center;     /* geen extra verticale ruimte */
    margin-top: 0px;
    margin-bottom: 0px;
  }

  /* 2️⃣ Meer witruimte LINKS (voor de afbeelding) */
  .nc-sticky-buybar__inner{
    padding-left: 40px;    /* meer ruimte links */
  }

  /* 3️⃣ Meer witruimte RECHTS (naast ATC knop) */
  .nc-sticky-buybar__right{
    padding-right: 28px;   /* meer ademruimte rechts */
  }

  /* 4️⃣ Iets minder verticale padding van de hele bar */
  .nc-sticky-buybar__inner{
    padding-top: 14px;     /* minder witruimte boven */
    padding-bottom: 14px;  /* minder witruimte onder */
  }
/* =========================
   Fonts laten matchen met je theme (productpagina)
   ========================= */

/* Hele sticky bar = body font */
.nc-sticky-buybar{
  font-family: var(--font-body-family, inherit) !important;
}

/* Producttitel = heading font (zoals je producttitel bovenaan) */
.nc-sticky-buybar__title{
  font-family: var(--font-heading-family, var(--font-body-family, inherit)) !important;
}

/* Prijs = body font (zoals je prijs styling op de site) */
.nc-sticky-buybar__price,
.nc-sticky-buybar__price-now,
.nc-sticky-buybar__price-was{
  font-family: var(--font-body-family, inherit) !important;
}
.nc-sticky-buybar__price-was{
  margin-left: 8px;
  text-decoration: line-through;
  color: #000000;
  opacity: 1;
  font-size: 14px;
  font-weight: 500;
}
/* Huidige prijs in accentkleur */
.nc-sticky-buybar__price-now{
  color: #c20000 !important;
  font-weight: 500;
}
