html.wistick-store-light body.light .wistick-checkout,
main.page-section.wistick-store-page .wistick-checkout {
  padding-top: 1.5rem;
  padding-bottom: 2rem;
  background: #f7f8fa;
  color: #15131f;
}

.wistick-checkout-steps {
  margin-bottom: 2rem;
}

.wistick-checkout-steps__list {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.wistick-checkout-steps__item {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  color: #999;
}
.wistick-checkout-steps__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 18px;
  left: calc(50% + 22px);
  width: calc(100% - 44px);
  height: 2px;
  background: #e5e7eb;
  z-index: 0;
}
.wistick-checkout-steps__item--active {
  color: #15131f;
}
.wistick-checkout-steps__item--active .wistick-checkout-steps__num {
  background: #0d6efd;
  border-color: #0d6efd;
  color: #fff;
}
.wistick-checkout-steps__item--active .wistick-checkout-steps__label {
  font-weight: 600;
}

.wistick-checkout-steps__num {
  position: relative;
  z-index: 1;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #d1d5db;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.wistick-checkout-steps__label {
  font-size: 0.8rem;
  line-height: 1.3;
  max-width: 8rem;
}

.wistick-checkout-empty {
  text-align: center;
  padding: 3rem 1rem;
}

.wistick-cart-table-wrap {
  overflow-x: auto;
  margin-bottom: 1.25rem;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.06);
}

.wistick-cart-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 0;
}

.wistick-cart-table thead th:first-child {
  border-radius: 16px 0 0 0;
}

.wistick-cart-table thead th:last-child {
  border-radius: 0 16px 0 0;
}

.wistick-cart-table__th {
  padding: 1rem 1.15rem;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  background: #f8fafc;
  text-align: left;
}
.wistick-cart-table__th--price, .wistick-cart-table__th--qty, .wistick-cart-table__th--total {
  text-align: center;
  white-space: nowrap;
}

.wistick-cart-table__row {
  background: #fff;
  transition: background 0.15s ease;
}
.wistick-cart-table__row:hover {
  background: #f8fafc;
}
.wistick-cart-table__row--stock-error {
  background: #fff5f5;
}
.wistick-cart-table__row:last-child .wistick-cart-table__cell {
  border-bottom: none;
}

.wistick-cart-table__cell {
  padding: 1.1rem 1.15rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  vertical-align: middle;
}
.wistick-cart-table__cell--price, .wistick-cart-table__cell--qty, .wistick-cart-table__cell--total {
  text-align: center;
  white-space: nowrap;
}
.wistick-cart-table__cell--total {
  position: relative;
}

.wistick-cart-product {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  min-width: 0;
}
.wistick-cart-product--print-cont {
  padding-left: 0;
}
.wistick-cart-product--print .wistick-cart-product__info--print {
  pointer-events: none;
  user-select: text;
}

.wistick-cart-product__img-wrap,
.wistick-cart-product__img-spacer {
  flex: 0 0 80px;
  width: 80px;
  height: 80px;
}

.wistick-cart-product__img-wrap {
  display: block;
  overflow: hidden;
  border-radius: 12px;
  background: #f1f5f9;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
  border: 0;
  padding: 0;
  cursor: default;
}
.wistick-cart-product__img-wrap--preview {
  position: relative;
  cursor: zoom-in;
}
.wistick-cart-product__img-wrap--preview:hover .wistick-cart-product__img-zoom {
  opacity: 1;
}

.wistick-cart-product__img-zoom {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.35);
  color: #fff;
  font-size: 1.25rem;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.wistick-cart-product__img {
  width: 80px;
  height: 80px;
  max-width: 80px;
  max-height: 80px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.wistick-cart-product__info {
  flex: 1 1 auto;
  min-width: 0;
}

.wistick-cart-product__title {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  color: #0f172a !important;
  text-decoration: none;
  margin-bottom: 0.3rem;
  word-break: break-word;
}
.wistick-cart-product__title:hover {
  color: #0d6efd !important;
}
.wistick-cart-product__title--plain {
  cursor: default;
}
.wistick-cart-product__title--plain:hover {
  color: #0f172a !important;
}

.wistick-cart-product__print-meta {
  margin-top: 0.2rem;
}
.wistick-cart-product__print-meta .wistick-cart-product__print-line {
  font-weight: 600;
  font-size: 0.85rem;
  color: #334155;
}
.wistick-cart-product__print-meta .wistick-cart-product__print-file {
  color: #64748b;
  font-size: 0.8rem;
  word-break: break-all;
  margin-top: 0.15rem;
}
.wistick-cart-product__print-meta .wistick-cart-product__print-album {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  margin-top: 0.15rem;
  font-size: 0.8rem;
  text-decoration: none;
  color: #0d6efd;
}

.wistick-cart-product--print-cont .wistick-cart-product__print-line {
  font-size: 0.9rem;
}

.wistick-product-qty-control {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  position: relative;
  z-index: 2;
}
.wistick-product-qty-control .form-control {
  width: 2.75rem;
  min-width: 2.75rem;
  border: none;
  border-left: 1px solid rgba(0, 0, 0, 0.08);
  border-right: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 0;
  text-align: center;
  padding: 0.35rem 0.25rem;
  font-weight: 600;
  box-shadow: none;
  -moz-appearance: textfield;
}
.wistick-product-qty-control .form-control::-webkit-outer-spin-button, .wistick-product-qty-control .form-control::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.wistick-qty-btn {
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  background: #f7f8fa;
  color: #333;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  z-index: 2;
}
.wistick-qty-btn:hover {
  background: #eef0f3;
}

.wistick-cart-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  margin-left: 0.5rem;
  border: none;
  border-radius: 10px;
  background: #f8fafc;
  color: #94a3b8;
  cursor: pointer;
  position: relative;
  z-index: 2;
  vertical-align: middle;
  transition: background 0.15s ease, color 0.15s ease;
}
.wistick-cart-remove:hover {
  background: #fef2f2;
  color: #dc2626;
}

.wistick-cart-price,
.wistick-cart-total {
  font-weight: 600;
  color: #15131f;
}

.wistick-cart-coupon--footer {
  margin-bottom: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.wistick-cart-coupon__label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.55rem;
  color: #334155;
}

.wistick-cart-coupon__row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.wistick-cart-coupon__input {
  flex: 1 1 180px;
  min-width: 0;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 0.7rem 0.9rem;
  font-size: 0.95rem;
  background: #f8fafc;
}
.wistick-cart-coupon__input:focus {
  border-color: #93c5fd;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.wistick-cart-coupon__btn {
  border-radius: 10px;
  font-weight: 600;
  white-space: nowrap;
  padding: 0.7rem 1.2rem;
  border: 1px solid #e2e8f0;
  background: #fff;
  color: #334155;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.wistick-cart-coupon__btn:hover:not(:disabled) {
  background: #f8fafc;
  border-color: #cbd5e1;
}
.wistick-cart-coupon__btn:disabled {
  opacity: 0.5;
}

.wistick-cart-coupon__applied {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.65rem;
  padding: 0.7rem 0.9rem;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: 10px;
  color: #059669;
  font-size: 0.9rem;
}

.wistick-cart-coupon__remove {
  border: none;
  background: transparent;
  color: inherit;
  cursor: pointer;
  padding: 0.25rem;
}

.wistick-cart-coupon__msg--error {
  margin: 0.5rem 0 0;
  font-size: 0.85rem;
  color: #dc2626;
}

.wistick-cart-step1-footer {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.wistick-cart-step1-footer__main {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 1.25rem;
  padding: 1.35rem;
  background: #fff;
  border: 1px solid #e8edf3;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
}
@media (max-width: 991px) {
  .wistick-cart-step1-footer__main {
    grid-template-columns: 1fr;
  }
}

.wistick-cart-step1-footer__left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
}

.wistick-cart-fast-option {
  margin: 0;
  cursor: pointer;
}
.wistick-cart-fast-option__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.wistick-cart-fast-option__box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  background: #f8fafc;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.wistick-cart-fast-option__input:checked + .wistick-cart-fast-option__box {
  border-color: #2563eb;
  background: #eff6ff;
}
.wistick-cart-fast-option__icon {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #fef3c7;
  color: #d97706;
  font-size: 1.1rem;
}
.wistick-cart-fast-option__text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.wistick-cart-fast-option__text strong {
  font-size: 0.9rem;
  color: #0f172a;
}
.wistick-cart-fast-option__text small {
  font-size: 0.78rem;
  color: #64748b;
}

.wistick-cart-step1-footer__summary {
  padding: 1rem 1.1rem;
  background: #f8fafc;
  border: 1px solid #e8edf3;
  border-radius: 14px;
}

.wistick-cart-step1-footer__summary-title {
  margin: 0 0 0.85rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #94a3b8;
}

.wistick-cart-summary-rows {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.wistick-cart-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.9rem;
  color: #475569;
}
.wistick-cart-summary-row__value {
  font-weight: 600;
  color: #0f172a;
  white-space: nowrap;
}
.wistick-cart-summary-row__value--discount {
  color: #059669;
}
.wistick-cart-summary-row--total {
  margin-top: 0.5rem;
  padding-top: 0.85rem;
  border-top: 1px solid #e2e8f0;
  font-size: 0.95rem;
  font-weight: 600;
  color: #0f172a;
}
.wistick-cart-summary-row__total {
  font-size: 1.45rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.wistick-cart-summary-vatno {
  margin: 0.15rem 0 0;
  font-size: 0.75rem;
  color: #94a3b8;
  text-align: right;
}

.wistick-cart-step1-footer__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.wistick-cart-footer__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.65rem;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid #e2e8f0;
  background: #fff;
  color: #334155;
  cursor: pointer;
  position: relative;
  z-index: 2;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}
.wistick-cart-footer__btn--back {
  border-color: #fecaca;
  color: #dc2626;
}
.wistick-cart-footer__btn--back:hover {
  background: #fef2f2;
  color: #b91c1c;
}
.wistick-cart-footer__btn--next {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}
.wistick-cart-footer__btn--next:hover {
  color: #fff;
  filter: brightness(1.05);
  transform: translateY(-1px);
}
.wistick-cart-footer__btn:hover {
  text-decoration: none;
}

.wistick-checkout-submit-wait {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  max-width: 100%;
  text-align: left;
  line-height: 1.35;
  white-space: normal;
  font-size: 0.95rem;
}

html.wistick-store-light body.light .wistick-checkout a.wistick-cart-footer__btn--next,
main.page-section.wistick-store-page .wistick-checkout a.wistick-cart-footer__btn--next {
  color: #fff;
}
html.wistick-store-light body.light .wistick-checkout a.wistick-cart-footer__btn--next:hover, html.wistick-store-light body.light .wistick-checkout a.wistick-cart-footer__btn--next:focus, html.wistick-store-light body.light .wistick-checkout a.wistick-cart-footer__btn--next:active, html.wistick-store-light body.light .wistick-checkout a.wistick-cart-footer__btn--next:visited,
main.page-section.wistick-store-page .wistick-checkout a.wistick-cart-footer__btn--next:hover,
main.page-section.wistick-store-page .wistick-checkout a.wistick-cart-footer__btn--next:focus,
main.page-section.wistick-store-page .wistick-checkout a.wistick-cart-footer__btn--next:active,
main.page-section.wistick-store-page .wistick-checkout a.wistick-cart-footer__btn--next:visited {
  color: #fff;
}
html.wistick-store-light body.light .wistick-checkout a.wistick-cart-footer__btn--back,
main.page-section.wistick-store-page .wistick-checkout a.wistick-cart-footer__btn--back {
  color: #dc2626;
}
html.wistick-store-light body.light .wistick-checkout a.wistick-cart-footer__btn--back:hover, html.wistick-store-light body.light .wistick-checkout a.wistick-cart-footer__btn--back:focus, html.wistick-store-light body.light .wistick-checkout a.wistick-cart-footer__btn--back:active,
main.page-section.wistick-store-page .wistick-checkout a.wistick-cart-footer__btn--back:hover,
main.page-section.wistick-store-page .wistick-checkout a.wistick-cart-footer__btn--back:focus,
main.page-section.wistick-store-page .wistick-checkout a.wistick-cart-footer__btn--back:active {
  color: #b91c1c;
}
html.wistick-store-light body.light .wistick-checkout label.wistick-checkout-pay-option,
html.wistick-store-light body.light .wistick-checkout .wistick-checkout-pay-option__title,
main.page-section.wistick-store-page .wistick-checkout label.wistick-checkout-pay-option,
main.page-section.wistick-store-page .wistick-checkout .wistick-checkout-pay-option__title {
  color: #0f172a;
}
html.wistick-store-light body.light .wistick-checkout .wistick-checkout-payment-info__description a,
main.page-section.wistick-store-page .wistick-checkout .wistick-checkout-payment-info__description a {
  color: #2563eb;
  font-weight: 600;
}
html.wistick-store-light body.light .wistick-checkout .wistick-checkout-payment-info__description a:hover,
main.page-section.wistick-store-page .wistick-checkout .wistick-checkout-payment-info__description a:hover {
  color: #1d4ed8;
}

.wistick-cart-remove-modal {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.wistick-cart-remove-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.wistick-cart-remove-modal__box {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.wistick-cart-remove-modal__actions {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
  margin-top: 1.25rem;
}

.wistick-cart-remove-modal__btn {
  padding: 0.6rem 1.1rem;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  font-weight: 600;
  cursor: pointer;
}
.wistick-cart-remove-modal__btn--confirm {
  background: #dc3545;
  border-color: #dc3545;
  color: #fff;
}

.wistick-cart-preview {
  position: fixed;
  inset: 0;
  z-index: 450;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.wistick-cart-preview__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.82);
}

.wistick-cart-preview__box {
  position: relative;
  z-index: 1;
  width: min(96vw, 1100px);
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.wistick-cart-preview__close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  filter: invert(1);
  opacity: 0.9;
}

.wistick-cart-preview__loader {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 255, 255, 0.25);
  border-top-color: #fff;
  border-radius: 50%;
  animation: wistick-cart-preview-spin 0.8s linear infinite;
}

.wistick-cart-preview__img {
  max-width: 100%;
  max-height: calc(92vh - 3rem);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.wistick-cart-preview__caption {
  margin: 0;
  color: #e2e8f0;
  font-size: 0.9rem;
  text-align: center;
  word-break: break-all;
  max-width: 100%;
}

body.wistick-cart-preview-open {
  overflow: hidden;
}

@keyframes wistick-cart-preview-spin {
  to {
    transform: rotate(360deg);
  }
}
.wistick-checkout-step2 {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
  min-width: 0;
}

.wistick-checkout-type-bar {
  display: flex;
  justify-content: center;
  margin-bottom: 0.25rem;
}

.wistick-checkout-toggle {
  display: inline-flex;
  gap: 0.35rem;
  padding: 0.35rem;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  background: #f8fafc;
}

.wistick-checkout-toggle__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: none;
  background: transparent;
  padding: 0.65rem 1.35rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: #64748b;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}
.wistick-checkout-toggle__btn--active {
  background: #fff;
  color: #0f172a;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.1);
}

.wistick-checkout-card {
  background: #fff;
  border: 1px solid #e8edf3;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
  overflow: visible;
  position: relative;
}

.wistick-checkout-card__head {
  padding: 1.15rem 1.35rem 0;
  border-radius: 16px 16px 0 0;
}

.wistick-checkout-card__body {
  padding: 1rem 1.35rem 1.35rem;
  overflow: visible;
  min-width: 0;
}

.wistick-checkout-card__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.01em;
}

.wistick-checkout-form__subtitle {
  margin: 0 0 0.85rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #94a3b8;
}

.wistick-checkout-label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #334155;
}

.wistick-checkout-input,
.wistick-checkout-textarea {
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 0.7rem 0.9rem;
  font-size: 0.95rem;
  background: #f8fafc;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.wistick-checkout-input:focus,
.wistick-checkout-textarea:focus {
  border-color: #93c5fd;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.wistick-checkout-textarea {
  min-height: 110px;
  resize: vertical;
}

.wistick-checkout-note {
  margin: 0.5rem 0 0;
  font-size: 0.8rem;
  color: #94a3b8;
  line-height: 1.45;
}

.wistick-checkout-payments-layout {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {
  .wistick-checkout-payments-layout--split {
    display: grid;
    grid-template-columns: minmax(260px, 340px) 1fr;
    gap: 1.25rem;
    align-items: start;
  }
}

.wistick-checkout-payments {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.wistick-checkout-pay-option {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  margin-bottom: 0;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.wistick-checkout-pay-option.is-selected {
  border-color: #2563eb;
  background: #eff6ff;
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.15);
}
.wistick-checkout-pay-option__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.wistick-checkout-pay-option__radio {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin-top: 0.1rem;
  border: 2px solid #cbd5e1;
  border-radius: 50%;
  background: #fff;
  position: relative;
}
.is-selected .wistick-checkout-pay-option__radio {
  border-color: #2563eb;
}
.is-selected .wistick-checkout-pay-option__radio::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: #2563eb;
}
.wistick-checkout-pay-option__title {
  flex: 1 1 auto;
  font-size: 0.95rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.4;
}

.wistick-checkout-payments-detail {
  min-height: 80px;
}

.wistick-checkout-banks__group {
  margin-bottom: 1rem;
}
.wistick-checkout-banks__group:last-child {
  margin-bottom: 0;
}

.wistick-checkout-banks__label {
  margin: 0 0 0.65rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #94a3b8;
}

.wistick-checkout-banks__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(108px, 1fr));
  gap: 0.65rem;
}

.wistick-checkout-bank-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 0.65rem;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.wistick-checkout-bank-btn.is-selected {
  border-color: #2563eb;
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.2);
}
.wistick-checkout-bank-btn img {
  max-height: 32px;
  max-width: 100%;
  object-fit: contain;
}
.wistick-checkout-bank-btn span:not(.wistick-checkout-btn-check) {
  font-size: 0.75rem;
  font-weight: 700;
  color: #334155;
  text-align: center;
  line-height: 1.2;
}

.wistick-checkout-banks-loading {
  text-align: center;
  padding: 1rem 0;
}
.wistick-checkout-banks-loading__spinner {
  width: 32px;
  height: 32px;
  margin: 0 auto 0.75rem;
  border: 3px solid #e2e8f0;
  border-top-color: #2563eb;
  border-radius: 50%;
  animation: wistick-cart-preview-spin 0.8s linear infinite;
}
.wistick-checkout-banks-loading__text {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: #64748b;
}
.wistick-checkout-banks-loading__skeleton {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}
.wistick-checkout-banks-loading__skeleton span {
  width: 108px;
  height: 64px;
  border-radius: 12px;
  background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
  background-size: 200% 100%;
  animation: wistick-checkout-shimmer 1.2s infinite;
}

@keyframes wistick-checkout-shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
.wistick-checkout-payment-info {
  padding: 1rem 1.1rem;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.5;
}

.wistick-checkout-error {
  margin: 0;
  color: #dc2626;
  font-size: 0.9rem;
}

.wistick-checkout-shipping-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 0.75rem;
}

.wistick-checkout-shipping,
.wistick-checkout-shipping-extra {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.wistick-checkout-shipping-btn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 88px;
  padding: 0.75rem;
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.wistick-checkout-shipping-btn.is-selected {
  border-color: #7c3aed;
  box-shadow: 0 0 0 1px rgba(124, 58, 237, 0.2);
  background: #faf5ff;
}
.wistick-checkout-shipping-btn img {
  max-height: 40px;
  max-width: 100%;
  object-fit: contain;
}
.wistick-checkout-shipping-btn span:not(.wistick-checkout-btn-check) {
  font-size: 0.78rem;
  font-weight: 700;
  color: #334155;
  text-align: center;
  line-height: 1.25;
}

.wistick-checkout-btn-check {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #2563eb;
  color: #fff;
  font-size: 0.75rem;
}
.wistick-checkout-shipping-btn.is-selected .wistick-checkout-btn-check {
  background: #7c3aed;
}

.wistick-checkout-point-autocomplete {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
.wistick-checkout-point-autocomplete:focus-within {
  z-index: 30;
}
.wistick-checkout-point-autocomplete .wistick-checkout-input,
.wistick-checkout-point-autocomplete .form-control {
  display: block;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding-right: 2.5rem;
}

.wistick-checkout-point-autocomplete__icon {
  position: absolute;
  top: 50%;
  right: 0.9rem;
  transform: translateY(-50%);
  color: #94a3b8;
  pointer-events: none;
  z-index: 1;
}

.wistick-checkout-point-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  width: 100%;
  max-width: 100%;
  max-height: 260px;
  overflow: auto;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
  z-index: 40;
}

.wistick-checkout-point-item {
  display: block;
  width: 100%;
  text-align: left;
  border: 0;
  border-bottom: 1px solid #f1f5f9;
  background: #fff;
  padding: 0.7rem 0.95rem;
  cursor: pointer;
  transition: background 0.12s ease;
}
.wistick-checkout-point-item:hover {
  background: #f8fafc;
}
.wistick-checkout-point-item__city {
  font-weight: 600;
  color: #0f172a;
  font-size: 0.9rem;
}
.wistick-checkout-point-item__addr {
  display: block;
  color: #64748b;
  font-size: 0.82rem;
  margin-top: 0.1rem;
}

.wistick-checkout-point-empty {
  padding: 1rem;
  text-align: center;
  color: #94a3b8;
  font-size: 0.85rem;
}

.wistick-checkout-address-row {
  display: flex;
  gap: 0.5rem;
}
.wistick-checkout-address-row .wistick-checkout-input {
  flex: 1;
}

.wistick-checkout-address-copy {
  flex: 0 0 48px;
  height: 48px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #f8fafc;
  color: #475569;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.wistick-checkout-address-copy:hover {
  background: #eff6ff;
  border-color: #93c5fd;
  color: #2563eb;
}

.wistick-checkout-footer-card {
  background: #fff;
  border: 1px solid #e8edf3;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08);
  padding: 1.25rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.wistick-checkout-footer-card__total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid #f1f5f9;
}

.wistick-checkout-footer-card__total-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #475569;
}

.wistick-checkout-footer-card__total-amount {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.wistick-checkout-terms {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin: 0;
  cursor: pointer;
}
.wistick-checkout-terms__input {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin-top: 0.15rem;
  accent-color: #2563eb;
}
.wistick-checkout-terms__text {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.45;
}
.wistick-checkout-terms__text a {
  color: #2563eb;
  text-decoration: none;
}
.wistick-checkout-terms__text a:hover {
  text-decoration: underline;
}

.wistick-checkout-footer-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
}

.wistick-checkout-section-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #15131f;
}

.wistick-checkout-banks__item {
  border: 2px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  padding: 0.75rem;
  text-align: center;
  cursor: pointer;
  background: #fff;
  transition: border-color 0.15s ease;
}
.wistick-checkout-banks__item.is-selected, .wistick-checkout-banks__item:hover {
  border-color: #0d6efd;
}
.wistick-checkout-banks__item img {
  max-height: 36px;
  max-width: 100%;
  object-fit: contain;
}

.wistick-confirm__title {
  font-size: 1.75rem;
  font-weight: 700;
}

.wistick-confirm__text {
  color: #666;
  font-size: 1.05rem;
}

@media (max-width: 767px) {
  .wistick-cart-table-wrap {
    overflow: visible;
  }
  .wistick-cart-table thead {
    display: none;
  }
  .wistick-cart-table,
  .wistick-cart-table tbody,
  .wistick-cart-table tr,
  .wistick-cart-table td {
    display: block;
    width: 100%;
  }
  .wistick-cart-table__row {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 0.75rem;
    margin-bottom: 0.75rem;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  }
  .wistick-cart-table__cell--product {
    border: 0;
    padding: 0 0 0.75rem;
  }
  .wistick-cart-table__cell--price,
  .wistick-cart-table__cell--qty,
  .wistick-cart-table__cell--total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 0;
    padding: 0.35rem 0;
  }
  .wistick-cart-table__cell--price::before,
  .wistick-cart-table__cell--qty::before,
  .wistick-cart-table__cell--total::before {
    content: attr(data-label);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #888;
    letter-spacing: 0.03em;
  }
  .wistick-cart-table__cell--total {
    padding-top: 0.5rem;
    border-top: 1px solid #f0f0f0;
    margin-top: 0.25rem;
  }
  .wistick-cart-step1-footer__actions {
    flex-direction: column;
  }
  .wistick-cart-step1-footer__actions .wistick-cart-footer__btn,
  .wistick-cart-footer__btn {
    width: 100%;
    justify-content: center;
  }
  .wistick-checkout-footer-card__actions {
    flex-direction: column;
  }
  .wistick-checkout-footer-card__actions .wistick-cart-footer__btn {
    width: 100%;
    justify-content: center;
  }
  .wistick-checkout-steps__label {
    font-size: 0.7rem;
  }
}
.wistick-print-admin-entry__card {
  border: 1px dashed #6ea8fe;
  border-radius: 12px;
  background: #f0f6ff;
  padding: 1rem 1.25rem;
}

.wistick-print-admin-entry__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.wistick-print-admin-entry__head i {
  font-size: 1.5rem;
  color: #0d6efd;
}

.wistick-print-admin-entry__badge {
  display: inline-block;
  margin-left: 0.5rem;
  padding: 0.1rem 0.45rem;
  border-radius: 999px;
  background: #0d6efd;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  vertical-align: middle;
}

.wistick-print-admin-entry__hint {
  color: #5c6570;
  font-size: 0.9rem;
}

.wistick-print-admin-entry__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.wistick-print-admin-entry__row .form-control {
  flex: 1 1 220px;
  min-width: 0;
}
.wistick-print-admin-entry__row .btn {
  flex: 0 0 auto;
  white-space: nowrap;
}

@media (max-width: 575.98px) {
  .wistick-print-admin-entry__row .btn {
    width: 100%;
  }
}
.wistick-print-admin-inline {
  max-width: 520px;
  margin: 0 auto;
}

.wistick-print-admin-entry--inline {
  margin-bottom: 0 !important;
}

.wistick-print-admin-entry__inline-group .form-control {
  min-height: 46px;
}
.wistick-print-admin-entry__inline-group .btn {
  min-height: 46px;
  white-space: nowrap;
}

@media (max-width: 575.98px) {
  .wistick-print-admin-entry__inline-group {
    flex-direction: column;
  }
  .wistick-print-admin-entry__inline-group .btn {
    width: 100%;
  }
}

/*# sourceMappingURL=store.css.map */
