

/* Start:/local/components/zorgepro/basket.page/templates/.default/style.css?17825291088726*/
.zp-cart-page {
  padding: 24px 0 56px;
}

.zp-cart-page__title {
  margin: 0 0 24px;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: #1c1e21;
}

.zp-cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  align-items: start;
}

.zp-cart-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
  margin-bottom: 16px;
}

.zp-cart-toolbar__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  color: #4b5563;
  font-size: 14px;
  cursor: pointer;
  padding: 0;
}

.zp-cart-toolbar__btn:disabled {
  opacity: 0.45;
  cursor: default;
}

.zp-cart-check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
}

.zp-cart-check__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.zp-cart-check__box {
  width: 18px;
  height: 18px;
  border: 1.5px solid #d1d5db;
  border-radius: 4px;
  background: #fff;
  flex: 0 0 18px;
  position: relative;
}

.zp-cart-check__input:checked + .zp-cart-check__box {
  background: #f4c900;
  border-color: #f4c900;
}

.zp-cart-check__input:checked + .zp-cart-check__box::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border: solid #1c1e21;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.zp-cart-check__label {
  font-size: 14px;
  color: #374151;
}

.zp-cart-item {
  display: grid;
  grid-template-columns: auto 88px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: start;
  padding: 16px;
  margin-bottom: 12px;
  border-radius: 16px;
  background: #f7f7f7;
}

.zp-cart-item.is-muted {
  opacity: 0.55;
}

.zp-cart-item__img {
  display: block;
  width: 88px;
  height: 88px;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.zp-cart-item__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.zp-cart-item__name {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
  font-weight: 600;
  color: #1c1e21;
  text-decoration: none;
}

.zp-cart-item__specs {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 12px;
  color: #6b7280;
  line-height: 1.5;
}

.zp-cart-item__specs li span {
  color: #9ca3af;
}

.zp-cart-item__side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  min-width: 150px;
}

.zp-cart-item__price-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.zp-cart-item__price {
  font-size: 18px;
  font-weight: 700;
  color: #1c1e21;
}

.zp-cart-item__discount {
  display: inline-flex;
  padding: 2px 8px;
  border-radius: 999px;
  background: #f4c900;
  font-size: 12px;
  font-weight: 600;
}

.zp-cart-item__old-price {
  font-size: 13px;
  color: #9ca3af;
  text-decoration: line-through;
}

.zp-cart-qty {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 4px 8px;
  border-radius: 999px;
  background: #fff;
}

.zp-cart-qty__value {
  display: inline-flex;
  align-items: center;
  min-width: 42px;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
}

.zp-cart-qty__value .js-zp-cart-qty-value {
  display: inline-block;
  transition: color 0.2s ease;
}

.zp-cart-qty__value.is-bump .js-zp-cart-qty-value,
.js-zp-cart-qty-value.is-bump,
.js-zp-cart-summary-total.is-bump,
.js-zp-cart-summary-count.is-bump {
  animation: zpCartNumberBump 0.38s ease;
}

@keyframes zpCartNumberBump {
  0% {
    transform: scale(1);
    color: inherit;
  }
  45% {
    transform: scale(1.22);
    color: #a58d02;
  }
  100% {
    transform: scale(1);
    color: inherit;
  }
}

.zp-cart-qty__btn:disabled {
  opacity: 0.35;
  cursor: default;
}

.zp-cart-item__stock-note {
  margin: 0;
  font-size: 11px;
  color: #9ca3af;
  text-align: right;
}

.zp-cart-toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(16px);
  max-width: min(92vw, 420px);
  padding: 12px 18px;
  border-radius: 12px;
  background: #1c1e21;
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 1200;
}

.zp-cart-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.zp-cart-toast.is-error {
  background: #991b1b;
}

.zp-cart-summary__total strong {
  display: inline-block;
}

.zp-cart-qty__btn {
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: #f3f4f6;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
}

.zp-cart-item__remove {
  border: 0;
  background: transparent;
  cursor: pointer;
  opacity: 0.55;
}

.zp-cart-addons {
  margin-top: 24px;
  padding-top: 8px;
}

.zp-cart-addons__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.zp-cart-addons__title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.zp-cart-addons__hint {
  margin: 0;
  font-size: 13px;
  color: #9ca3af;
}

.zp-cart-addons__track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
}

.zp-cart-addon {
  position: relative;
  flex: 0 0 132px;
  min-height: 150px;
  padding: 10px;
  border-radius: 14px;
  background: #f7f7f7;
  border: 2px solid transparent;
}

.zp-cart-addon.is-selected {
  border-color: #f4c900;
  background: #fffdf0;
}

.zp-cart-addon__check {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
}

.zp-cart-addon__btn,
.zp-cart-addon__selected-view {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: center;
  padding: 18px 4px 4px;
}

.zp-cart-addon__btn img,
.zp-cart-addon__selected-view img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.zp-cart-addon__name {
  font-size: 12px;
  color: #374151;
  line-height: 1.3;
}

.zp-cart-addon__price {
  font-size: 13px;
  font-weight: 700;
}

.zp-cart-summary__card {
  padding: 20px;
  border-radius: 16px;
  background: #fff9df;
}

.zp-cart-summary__rows {
  margin: 0 0 16px;
}

.zp-cart-summary__row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  font-size: 14px;
}

.zp-cart-summary__row--discount dd {
  color: #dc2626;
}

.zp-cart-summary__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
  font-size: 16px;
}

.zp-cart-summary__total strong {
  font-size: 28px;
  font-weight: 700;
}

.zp-cart-summary__strike {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: #9ca3af;
  text-decoration: line-through;
  font-size: 14px;
}

.zp-cart-summary__badge {
  display: inline-flex;
  padding: 2px 8px;
  border-radius: 999px;
  background: #fee2e2;
  color: #dc2626;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
}

.zp-cart-summary__checkout {
  width: 100%;
  border: 0;
  border-radius: 12px;
  padding: 14px 16px;
  background: #f4c900;
  color: #1c1e21;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

.zp-cart-summary__checkout:disabled {
  opacity: 0.6;
  cursor: default;
}

.zp-cart-promo {
  margin-top: 16px;
  padding: 18px;
  border-radius: 16px;
  background: #f7f7f7;
}

.zp-cart-promo__title {
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 600;
}

.zp-cart-promo__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.zp-cart-promo__input,
.zp-cart-promo__apply {
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  padding: 10px 12px;
  font-size: 14px;
}

.zp-cart-promo__apply {
  background: #1c1e21;
  color: #fff;
  border-color: #1c1e21;
}

.zp-cart-promo__note {
  margin: 10px 0 0;
  font-size: 12px;
  color: #9ca3af;
}

.zp-cart-empty {
  padding: 48px 24px;
  border-radius: 16px;
  background: #f7f7f7;
  text-align: center;
}

.zp-cart-empty__btn {
  display: inline-flex;
  margin-top: 16px;
  padding: 12px 18px;
  border-radius: 12px;
  background: #f4c900;
  color: #1c1e21;
  text-decoration: none;
  font-weight: 600;
}

.zp-cart-page.is-loading {
  opacity: 0.72;
  pointer-events: none;
}

@media (max-width: 1100px) {
  .zp-cart-layout {
    grid-template-columns: 1fr;
  }

  .zp-cart-item {
    grid-template-columns: auto 72px minmax(0, 1fr);
  }

  .zp-cart-item__side {
    grid-column: 2 / -1;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .zp-cart-item {
    grid-template-columns: auto 64px minmax(0, 1fr);
    gap: 12px;
  }

  .zp-cart-item__img {
    width: 64px;
    height: 64px;
  }
}

/* End */
/* /local/components/zorgepro/basket.page/templates/.default/style.css?17825291088726 */
