
/* --- Box Builder layout (Shop) --- */
.lsbb-hero{
  position:relative;
  min-height: 420px;
  background-size: cover;
  background-position: center;
  background-image: linear-gradient(135deg, #111, #2a2a2a);
}
.lsbb-hero__overlay{
  position:absolute; inset:0;
  background: rgba(0,0,0,.35);
}
.lsbb-hero__inner{
  position:relative;
  max-width: 1320px;
  margin: 0 auto;
  padding: 160px 24px 90px;
  display:flex;
  justify-content:center;
  align-items:center;
}
.lsbb-hero__title{
  color:#fff;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 500;
  letter-spacing: .2px;
  margin: 0;
}

.lsbb-container{
  max-width: 1400px;
  width: 100%;

  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  padding-top: 92px;
  padding-bottom: 92px;
}

.lsbb-infobar{
  border-radius: 0;
  padding: 28px 24px;
  font-weight: 700;
  font-size: 16px;
  text-align:left;
  margin: 0 0 34px;
}
.lsbb-infobar--green{ background:#c9f7d8; color:#16a34a; }
.lsbb-infobar--orange{ background:#f7e3d8; color:#f97316; margin-top: 40px; }

.lsbb-grid{ display:grid; gap: 26px; }
.lsbb-grid--4{ grid-template-columns: repeat(4, minmax(0, 1fr)); }
.lsbb-grid--3{ grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px; }

@media (max-width: 1024px){
  .lsbb-grid--4{ grid-template-columns: repeat(2, 1fr); }
  .lsbb-grid--3{ grid-template-columns: repeat(2, 1fr); }
  .lsbb-infobar{ font-size: 14px; padding: 14px;}
}
@media (max-width: 640px){
  .lsbb-grid--4, .lsbb-grid--3{ grid-template-columns: 1fr; }
  .lsbb-hero__inner{ padding: 120px 18px 70px; }
}

/* Cards */
.lsbb-card{
  border: 1px solid #7a8b90;
  border-radius: 14px;
  overflow:hidden;
  background: #fff;
}
.lsbb-card__img{
  display:block;
  overflow:hidden;
  background:#f7f7f7;
}
.lsbb-card__img img,
.lsbb-card__img .lsbb-img{
  width:100%;
  height: 250px;
  object-fit: cover;
  object-position:center;
  display:block;
}
.lsbb-card__body{
  padding: 16px 18px 18px;
  min-height: 150px;
  display:flex;
  flex-direction:column;
  justify-content: space-between;
}
.lsbb-card__title{
  font-weight: 700;
  font-size: 18px;
  margin: 0 0 10px;
}
.lsbb-card__title--big{ font-size: 20px; margin-bottom: 22px; }
.lsbb-card__price{
  font-weight: 800;
  font-size: 16px;
}
.lsbb-card__meta{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
}

/* Mini add (green icon button) */
.lsbb-mini-add{
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: none;
  background: #16a34a;
  color:#fff;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 18px;
}
.lsbb-mini-add:active{ transform: translateY(1px); }

/* Item controls (checkbox + stepper) */
.lsbb-card__controls{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 12px;
}
.lsbb-check{ display:inline-flex; align-items:center; gap:10px; }
.lsbb-check__input{ position:absolute; opacity:0; pointer-events:none; }
.lsbb-check__box{
  width: 34px;
  height: 34px;
  border: 2px solid #7a8b90;
  border-radius: 4px;
  display:inline-block;
  background:#fff;
  position:relative;
}
.lsbb-check__input:checked + .lsbb-check__box::after{
  content:'';
  position:absolute;
  inset: 6px;
  background:#16a34a;
  border-radius: 2px;
}

/* Stepper */
.lsbb-stepper{
  display:flex;
  align-items:center;
  border-radius: 6px;
  overflow:hidden;
  border: 1px solid #cbd5d8;
}
.lsbb-stepper__btn{
  width: 44px;
  height: 34px;
  border: none;
  background: #6b7d7a;
  color:#111;
  cursor:pointer;
  font-weight: 700;
}
.lsbb-stepper__qty{
  width: 56px;
  height: 34px;
  border: none;
  text-align:center;
  font-weight: 700;
}
.lsbb-stepper__qty:disabled{
  background:#f5f5f5;
  color:#999;
}

/* Sticky bar */
.lsbb-stickybar{
  position: sticky;
  bottom: 14px;
  margin-top: 28px;
  background: rgba(255,255,255,.92);
  border: 1px solid #e6e6e6;
  border-radius: 14px;
  padding: 14px 16px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  backdrop-filter: blur(8px);
}
.lsbb-total__label{ color:#555; margin-right: 8px; }
.lsbb-total__hint{ color:#777; margin-left: 6px; font-size: 12px; }

/* Sticky validation message */
.lsbb-msg{
  margin-top: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #b91c1c;
  min-height: 18px;
}
.lsbb-msg.is-active{ opacity: 1; }
.lsbb-addall{
  border:none;
  border-radius: 12px;
  padding: 12px 16px;
  background:#16a34a;
  color:#fff;
  font-weight: 800;
  cursor:pointer;
}
.lsbb-addall:disabled{
  background:#9fb8a8;
  cursor:not-allowed;
}

.lsbb-empty{ padding: 18px 0; }

/* Blur/disable cards when max selections reached */
.lsbb-card--item.is-disabled{
  position: relative;
  filter: blur(2px);
  opacity: .65;
  pointer-events: none;
}

.lsbb-card--item.is-disabled::after{
  content: "Max 5 keuzes";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  background: rgba(255,255,255,.45);
}


/* Permanently unavailable cookie cards */
.lsbb-card--item.is-unavailable{
  opacity: .6;
  background: #f8f8f8;
}
.lsbb-card--item.is-unavailable .lsbb-card__img,
.lsbb-card--item.is-unavailable .lsbb-card__img img{
  filter: grayscale(100%);
}
.lsbb-card--item.is-unavailable .lsbb-check__box{
  background:#f1f1f1;
  border-color:#b8b8b8;
}
.lsbb-card--item.is-unavailable .lsbb-check__input + .lsbb-check__box{
  cursor:not-allowed;
}
.lsbb-badge{
  display:inline-flex;
  align-items:center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}
.lsbb-badge--unavailable{
  background:#efefef;
  color:#666;
  border:1px solid #d8d8d8;
}

/* Sticky links (cart/checkout) */
.lsbb-stickybar__right{
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.lsbb-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid #e6e6e6;
  background: #fff;
  color: #111;
  line-height: 1;
}

.lsbb-link:hover{
  filter: brightness(.98);
}

.lsbb-link--checkout{
  border-color: #111;
}

/* Disabled checkout link state (still clickable so we can show the message) */
.lsbb-link.is-disabled{
  opacity: .55;
  cursor: not-allowed;
}
