.zz-impersonate-bar {
  position: sticky;
  top: 0;
  z-index: 100000;
  background: #c45c26;
  color: #fff;
  text-align: center;
  padding: 0.6rem 1rem;
  font: 15px/1.4 sans-serif;
}

.zz-impersonate-bar a {
  color: #fff;
  font-weight: 600;
}

.zz-context-bar {
  background: #111;
  color: #fff;
  padding: 0.6rem 1rem;
  text-align: center;
}

.zz-pitch {
  position: relative;
  background: var(--zz-muted, #f6f6f6);
  border-radius: var(--zz-radius, 14px);
  padding: 1.4rem 1.5rem 1.3rem;
  margin: 0 0 1.5rem;
}

.zz-pitch__share {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  padding: 0.45rem 0.75rem;
  border: 1px solid var(--zz-border, #e4e4e4);
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.zz-pitch__share:hover,
.zz-pitch__share:focus {
  background: #f6f6f6;
}

.zz-pitch__share.is-copied {
  background: #e6f7ee;
  border-color: #c5e0c5;
  color: #157347;
}

.zz-pitch h2 {
  font-size: clamp(1.3rem, 2vw, 1.7rem) !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  min-height: 0 !important;
  max-width: none !important;
  margin: 0.2rem 0 0.6rem;
  padding-right: 6.5rem;
}

.zz-pitch .zz-kicker {
  padding-right: 6.5rem;
}

.zz-pitch p {
  margin: 0;
  max-width: 40rem;
}

.zz-intro {
  margin: 0 0 1.5rem;
}

.zz-shop-toolbar {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 0 0 1.5rem;
}

.zz-shop-search {
  box-sizing: border-box;
  width: 100%;
  max-width: 420px;
  min-height: 48px;
  padding: 0.75rem 1rem;
  border: 1px solid var(--zz-border, #e4e4e4);
  border-radius: 12px !important;
}

.zz-cat-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.zz-cat-chips button {
  border: 1px solid var(--zz-border, #e4e4e4);
  background: #fff;
  border-radius: 999px;
  padding: 0.5rem 0.95rem;
  cursor: pointer;
}

.zz-cat-chips button.is-active {
  background: #111;
  color: #fff;
  border-color: #111;
}

.zz-cat-min {
  margin-left: 0.35rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #00a0e3;
  cursor: help;
}

.zz-cat-chips button.is-active .zz-cat-min {
  color: #9ee3f7;
}

.zz-min-bars {
  display: grid;
  gap: 0.65rem;
  margin: 0 0 1.25rem;
}

.zz-min-bar {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas: "name need" "count count" "track track";
  gap: 0.2rem 0.8rem;
  align-items: center;
  background: #eef8fc;
  border: 1px solid #cfeaf6;
  border-radius: var(--zz-radius, 14px);
  padding: 0.85rem 1.1rem 1rem;
}

.zz-min-bar.is-ok {
  background: #f3faf5;
  border-color: #c5e0c5;
}

.zz-min-bar__name {
  grid-area: name;
  font-size: 0.95rem;
}

.zz-min-bar__count {
  grid-area: count;
  font-size: 0.85rem;
  color: #555;
  cursor: help;
}

.zz-min-bar__need {
  grid-area: need;
  font-size: 0.85rem;
  font-weight: 700;
  color: #00a0e3;
}

.zz-min-bar.is-ok .zz-min-bar__need {
  color: #157347;
}

.zz-min-bar__track {
  grid-area: track;
  display: block;
  height: 8px;
  margin-top: 0.35rem;
  background: #d7eaf3;
  border-radius: 999px;
  overflow: hidden;
}

.zz-min-bar.is-ok .zz-min-bar__track {
  background: #d7eadc;
}

.zz-min-bar__fill {
  display: block;
  height: 100%;
  background: #00a0e3;
  border-radius: 999px;
  transition: width 0.35s ease;
}

.zz-min-bar.is-ok .zz-min-bar__fill {
  background: #157347;
}

.zz-toast {
  position: fixed;
  left: 50%;
  bottom: 5.5rem;
  z-index: 100010;
  transform: translateX(-50%) translateY(8px);
  max-width: min(92vw, 360px);
  padding: 0.75rem 1.05rem;
  background: #111;
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.zz-toast.is-on {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.zz-toast[hidden] {
  display: none !important;
}

.zz-cart-fab {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 100005;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 50%;
  background: #00a0e3;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 160, 227, 0.4);
  cursor: pointer;
}

.zz-cart-fab__n {
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: 1.35rem;
  height: 1.35rem;
  padding: 0 0.3rem;
  background: #111;
  color: #fff;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.35rem;
}

.zz-cart-fab__n[hidden] {
  display: none !important;
}

.zz-drawer {
  position: fixed;
  inset: 0;
  z-index: 100020;
}

.zz-drawer[hidden] {
  display: none !important;
}

.zz-drawer__scrim {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(17, 17, 17, 0.45);
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.38s ease;
}

.zz-drawer.is-open .zz-drawer__scrim {
  opacity: 1;
}

.zz-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  width: min(100%, 400px);
  height: 100%;
  background: #fff;
  box-shadow: -8px 0 28px rgba(0, 0, 0, 0.16);
  overflow: auto;
  transform: translateX(108%);
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.zz-drawer.is-open .zz-drawer__panel {
  transform: translateX(0);
}

.zz-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.2rem;
  border-bottom: 1px solid #eee;
}

.zz-drawer__head h2 {
  margin: 0;
  font-size: 1.15rem !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  min-height: 0 !important;
}

.zz-drawer__close {
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.zz-drawer__mixes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding: 0.85rem 1.15rem 0.15rem;
}

.zz-drawer__mixes:empty {
  display: none;
}

.zz-drawer .zz-min-bar {
  margin: 0;
}

.zz-drawer .zz-min-bar.is-short {
  flex: 1 1 100%;
}

.zz-drawer .zz-min-bar.is-ok {
  display: inline-flex;
  flex: 0 1 auto;
  grid-template-columns: none;
  grid-template-areas: none;
  align-items: center;
  gap: 0.35rem;
  padding: 0.28rem 0.65rem;
  background: #f3faf5;
  border: 1px solid #d7eadc;
  border-radius: 999px;
}

.zz-drawer .zz-min-bar.is-ok .zz-min-bar__name {
  font-size: 0.78rem;
  font-weight: 700;
}

.zz-drawer .zz-min-bar.is-ok .zz-min-bar__count {
  font-size: 0.72rem;
  color: #157347;
  cursor: help;
}

.zz-drawer .zz-min-bar.is-ok .zz-min-bar__need {
  font-size: 0.78rem;
  font-weight: 700;
  color: #157347;
  order: -1;
}

.zz-drawer .zz-min-bar.is-ok .zz-min-bar__track {
  display: none;
}

.zz-drawer__items {
  list-style: none;
  margin: 0.5rem 0 0;
  padding: 0.5rem 1.15rem 1rem;
}

.zz-drawer__item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  gap: 0.35rem 0.75rem;
  align-items: start;
  padding: 0.85rem 0;
  border-bottom: 1px solid #f0f0f0;
}

.zz-drawer__thumb {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 10px;
  background: #f6f6f6;
}

.zz-drawer__meta {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  min-width: 0;
}

.zz-drawer__pname {
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.25;
}

.zz-drawer__calc {
  font-size: 0.8rem;
  color: #666;
}

.zz-drawer__side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.45rem;
}

.zz-drawer__sum {
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
}

.zz-drawer__remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #888;
  cursor: pointer;
}

.zz-drawer__remove:hover,
.zz-drawer__remove:focus {
  background: #f4f4f4;
  color: #111;
}

.zz-qty--line {
  height: 34px;
  width: fit-content;
  border-radius: 10px;
}

.zz-qty--line .zz-qty__btn {
  width: 28px;
  font-size: 1rem;
}

.zz-qty--line input[type="number"] {
  width: 1.9rem !important;
  max-width: 1.9rem;
  min-width: 1.9rem;
  flex: 0 0 1.9rem;
  font-size: 0.85rem;
}

.zz-drawer__empty {
  margin: 1.2rem 1.15rem;
  color: #666;
}

.zz-drawer__empty[hidden],
.zz-drawer__warn[hidden] {
  display: none !important;
}

.zz-drawer__foot {
  margin-top: auto;
  padding: 1rem 1.15rem 1.3rem;
  border-top: 1px solid #eee;
}

.zz-drawer__total {
  margin: 0 0 0.65rem;
  font-weight: 700;
}

.zz-drawer__warn {
  margin: 0 0 0.7rem;
  color: #c45c26;
  font-size: 0.88rem;
  font-weight: 600;
}

.zz-drawer__actions {
  display: grid;
  gap: 0.55rem;
}

.zz-drawer__pay,
.zz-drawer__shop {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  margin: 0;
  padding: 0.7rem 1rem;
  border-radius: 12px;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none !important;
  cursor: pointer;
  box-sizing: border-box;
}

.zz-drawer__pay {
  border: 0;
  background: #00a0e3;
  color: #fff !important;
}

.zz-drawer__pay:hover,
.zz-drawer__pay:focus {
  background: #008ec9;
  color: #fff !important;
}

.zz-drawer__pay.is-off {
  opacity: 0.45;
  pointer-events: none;
}

.zz-drawer__shop {
  border: 1px solid var(--zz-border, #e4e4e4);
  background: #fff;
  color: #111;
}

.zz-drawer__shop:hover,
.zz-drawer__shop:focus {
  background: #f6f6f6;
}

@media (max-width: 700px) {
  .zz-drawer__panel {
    top: auto;
    width: 100%;
    height: min(88vh, 640px);
    border-radius: 18px 18px 0 0;
    transform: translateY(108%);
  }

  .zz-drawer.is-open .zz-drawer__panel {
    transform: translateY(0);
  }

  .zz-pitch h2,
  .zz-pitch .zz-kicker {
    padding-right: 5.5rem;
  }

  .zz-pitch__share {
    top: 0.75rem;
    right: 0.75rem;
    padding: 0.4rem 0.65rem;
    font-size: 0.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .zz-drawer__scrim,
  .zz-drawer__panel {
    transition: none;
  }
}

.zz-shop-empty {
  margin: 0 0 1rem;
}

.zz-product h2 {
  font-size: 1.05rem !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  min-height: 2.5em !important;
  max-width: none !important;
  margin: 0.85rem 0 0.5rem;
  line-height: 1.25 !important;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}

.zz-checkout-context {
  background: #f6f6f6;
  border-radius: 14px;
  padding: 1.2rem 1.4rem;
  margin: 0 0 1.5rem;
}

.zz-checkout-context p {
  margin: 0.25rem 0;
}

.zz-checkout-context__meta {
  display: grid;
  gap: 0.55rem 1.5rem;
  margin: 0.7rem 0 0.85rem;
}

.zz-checkout-context__meta > div {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 0.5rem;
  align-items: baseline;
}

.zz-checkout-context__meta dt {
  margin: 0;
  font-size: 0.8rem !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #666;
  font-weight: 600;
}

.zz-checkout-context__meta dd {
  margin: 0;
  font-size: 1.35rem !important;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.2;
}

body.zz-sales-page .zg-innerbannerouter:not(.zz-hero) {
  display: none;
}

.zz-storefront,
.zz-dash {
  width: min(1100px, calc(100% - 2rem));
  margin: 2rem auto 4rem;
}

.zz-dash h1,
.zz-storefront h1 {
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  letter-spacing: 0;
  line-height: 1.15;
  text-transform: none;
  min-height: 0;
  max-width: none;
}

.zz-dash h2,
.zz-storefront h2,
.zz-cards h2 {
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  line-height: 1.3;
  min-height: 0;
  max-width: none;
}

.zz-dash h3 {
  font-size: 1.05rem;
  letter-spacing: 0;
  text-transform: none;
  min-height: 0;
}

.zz-dash,
.zz-storefront,
.zz-apply {
  --zz-radius: 14px;
  --zz-radius-pill: 999px;
  --zz-border: #e4e4e4;
  --zz-muted: #f6f6f6;
}

.zz-dash > p,
.zz-storefront > p {
  margin: 0 0 1.25rem;
}

.zz-dash > form,
.zz-dash > section {
  margin: 2.25rem 0;
}

.zz-kicker {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: #666;
}

.zz-storefront--catalog {
  padding-top: 1.25rem;
}

.zz-buy-locked {
  margin-top: auto;
  padding: 0.7rem 0.4rem 0.2rem;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  color: #666;
}

body:not(.zz-has-seller) form.cart .quantity,
body:not(.zz-has-seller) form.cart .single_add_to_cart_button {
  display: none !important;
}

.single-product .zg-innerbannerouter {
  display: block !important;
}

.zg-produktdetails .zg-title {
  display: none !important;
}

.zz-notice--ok {
  background: #eef6ee;
  border-color: #c5e0c5;
}

.zz-products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}

.zz-products:not(.is-ready) .zz-product:nth-child(n + 9),
.zz-product[hidden] {
  display: none !important;
}

.zz-shop-sentinel {
  display: flex;
  justify-content: center;
  min-height: 3.2rem;
  margin: 1.1rem 0 0.15rem;
}

.zz-shop-sentinel.is-done {
  min-height: 0;
  margin: 0;
}

.zz-shop-loading {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.65rem 1.15rem 0.65rem 0.95rem;
  background: var(--zz-muted, #f6f6f6);
  border-radius: var(--zz-radius-pill, 999px);
}

.zz-shop-loading[hidden] {
  display: none !important;
}

.zz-shop-loading .zz-kicker {
  margin: 0;
  color: #00a0e3;
}

.zz-shop-loading__mark {
  width: 14px;
  height: 14px;
  border: 2px solid #cfeaf6;
  border-top-color: #00a0e3;
  border-radius: 50%;
  animation: zz-spin 0.7s linear infinite;
}

.zz-product.zz-product--enter {
  opacity: 0;
  transform: translateY(16px);
}

.zz-product.zz-product--enter.is-in {
  opacity: 1;
  transform: none;
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes zz-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .zz-shop-loading__mark {
    animation: none;
  }

  .zz-product.zz-product--enter,
  .zz-product.zz-product--enter.is-in {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .zz-product__in-cart.is-pulse {
    animation: none;
  }
}

.zz-product {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--zz-border, #e4e4e4);
  border-radius: var(--zz-radius, 14px);
  padding: 1.1rem;
  background: #fff;
}

.zz-product__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.zz-product__link:hover h2 {
  text-decoration: underline;
}

.zz-product__media {
  position: relative;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
}

.zz-product img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
}

.zz-product__price,
.zz-product__price .price,
.zz-product__price .amount {
  font-size: 1.05rem !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
  line-height: 1.15 !important;
  color: #111 !important;
}

.zz-product__price {
  position: absolute;
  left: 0.55rem;
  bottom: 0.55rem;
  z-index: 1;
  display: inline-flex;
  align-items: baseline;
  gap: 0.3rem;
  margin: 0;
  padding: 0.35rem 0.7rem;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.22);
  white-space: nowrap;
}

.zz-product__min-badge {
  position: absolute;
  right: 0.5rem;
  bottom: 0.5rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  max-width: calc(100% - 5.4rem);
  overflow: hidden;
  padding: 0.28rem 0.5rem 0.28rem 0.35rem;
  background: #eef8fc;
  color: #0077b3;
  border-radius: 999px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.16);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  cursor: help;
}

.zz-product__min-badge.is-ok {
  background: #e6f7ee;
  color: #157347;
}

.zz-product__min-badge [data-zz-min-label] {
  overflow: hidden;
  text-overflow: ellipsis;
}

.zz-min-check {
  display: none;
  font-size: 0.78rem;
}

.zz-product__min-badge.is-ok .zz-ring {
  display: none;
}

.zz-product__min-badge.is-ok .zz-min-check {
  display: inline;
}

.zz-ring {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transform: rotate(-90deg);
}

.zz-ring__bg,
.zz-ring__fg {
  fill: none;
  stroke-width: 2.6;
}

.zz-ring__bg {
  stroke: #cfeaf6;
}

.zz-ring__fg {
  stroke: #00a0e3;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.35s ease;
}

.zz-product__min-badge.is-ok .zz-ring__fg {
  stroke: #157347;
}

.zz-product__frame {
  position: relative;
}

.zz-product__in-cart {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.12rem;
  min-width: 0;
  height: 1.85rem;
  padding: 0.12rem 0.15rem 0.12rem 0.5rem;
  background: #00a0e3;
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 3px 12px rgba(0, 160, 227, 0.35);
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1;
}

.zz-product__cart-n {
  cursor: default;
}

.zz-product__cart-x {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.18);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.zz-product__cart-x:hover,
.zz-product__cart-x:focus {
  background: rgba(0, 0, 0, 0.32);
}

.zz-product__in-cart[hidden] {
  display: none !important;
}

.zz-product__in-cart.is-pulse {
  animation: zz-cart-pulse 0.45s ease;
}

@keyframes zz-cart-pulse {
  0% { transform: scale(1); }
  40% { transform: scale(1.18); }
  100% { transform: scale(1); }
}

.zz-product__price del {
  opacity: 0.5;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
}

.zz-buy {
  display: flex;
  justify-content: center;
  gap: 0.3rem;
  align-items: center;
  margin-top: auto;
}

.zz-buy--options {
  justify-content: center;
}

.zz-qty {
  display: flex;
  align-items: stretch;
  flex: 0 0 auto;
  height: 44px;
  border: 1px solid var(--zz-border, #e4e4e4);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.zz-qty__btn {
  width: 32px;
  border: 0;
  background: #f6f6f6;
  color: #111;
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}

.zz-qty__btn:hover,
.zz-qty__btn:focus {
  background: #ececec;
}

.zz-qty input[type="number"] {
  box-sizing: border-box;
  width: 2.2rem !important;
  max-width: 2.2rem;
  min-width: 2.2rem;
  flex: 0 0 2.2rem;
  min-height: 0;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0 !important;
  border-radius: 0 !important;
  background: #fff;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.2;
  -moz-appearance: textfield;
  appearance: textfield;
}

.zz-qty input[type="number"]::-webkit-outer-spin-button,
.zz-qty input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.zz-buy__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: #00a0e3;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  flex-shrink: 0;
}

.zz-buy__btn:hover,
.zz-buy__btn:focus {
  background: #008ec9;
  color: #fff;
}

.zz-buy-options {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: auto;
  min-height: 44px;
  padding: 0.55rem 1.15rem;
  border-radius: 12px;
  background: #00a0e3;
  color: #fff !important;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.2;
  text-decoration: none !important;
}

.zz-buy-options:hover,
.zz-buy-options:focus {
  background: #008ec9;
  color: #fff !important;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.zz-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
  margin: 1.75rem 0 2.5rem;
}

.zz-cards article {
  border: 1px solid var(--zz-border, #e4e4e4);
  border-radius: var(--zz-radius, 14px);
  padding: 1.4rem 1.45rem 1.25rem;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.zz-cards article h2 {
  margin-bottom: 0.7rem;
}

.zz-stat {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0;
}

.zz-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border: 1px solid var(--zz-border, #e4e4e4);
  border-radius: var(--zz-radius, 14px);
  overflow: hidden;
}

.zz-table th,
.zz-table td {
  border-bottom: 1px solid #eee;
  padding: 0.9rem 1.1rem;
  text-align: left;
  vertical-align: top;
}

.zz-table tr:last-child td {
  border-bottom: 0;
}

.zz-order {
  border: 1px solid var(--zz-border, #e4e4e4);
  border-radius: var(--zz-radius, 14px);
  padding: 0;
  margin: 1rem 0;
  background: #fff;
}

.zz-order__summary {
  display: grid;
  grid-template-columns: auto 1fr auto auto auto;
  gap: 0.5rem 1rem;
  align-items: center;
  cursor: pointer;
  list-style: none;
  padding: 1.1rem 1.3rem;
}

.zz-order__summary::-webkit-details-marker {
  display: none;
}

.zz-order__id {
  font-weight: 700;
}

.zz-order__total {
  font-weight: 700;
  white-space: nowrap;
}

.zz-order__body {
  padding: 0 1.3rem 1.2rem;
  border-top: 1px solid #eee;
}

.zz-order__items {
  margin: 0.6rem 0;
  padding-left: 1.1rem;
}

@media (max-width: 700px) {
  .zz-order__summary {
    grid-template-columns: 1fr auto;
  }
}

.zz-qr {
  display: inline-block;
  margin: 0.5rem 0 1rem;
}

.zz-dash input[type="text"],
.zz-dash input[type="search"],
.zz-dash input[type="email"],
.zz-dash input[type="date"],
.zz-dash input[type="tel"],
.zz-dash select,
.zz-dash textarea,
.zz-apply input[type="text"],
.zz-apply input[type="email"],
.zz-apply input[type="date"],
.zz-apply input[type="tel"],
.zz-apply select,
.zz-apply textarea,
.zz-storefront input[type="text"],
.zz-storefront select,
.zz-storefront textarea {
  box-sizing: border-box;
  width: min(100%, 420px);
  min-height: 48px;
  padding: 0.75rem 1rem;
  border: 1px solid var(--zz-border, #e4e4e4);
  border-radius: 12px !important;
  background: #fff;
  line-height: 1.3;
}

.zz-dash textarea,
.zz-apply textarea,
.zz-storefront textarea {
  min-height: 120px;
  width: 100%;
}

.zz-dash .button,
.zz-apply .button,
.zz-storefront .button {
  border-radius: var(--zz-radius-pill, 999px) !important;
  padding: 0.8rem 1.4rem !important;
  min-height: 48px;
  line-height: 1.2;
}

.zz-apply {
  max-width: 520px;
}

.zz-apply p {
  margin: 0 0 1.15rem;
}

.zz-apply label {
  display: block;
  margin: 0;
}

.zz-apply input[type="text"],
.zz-apply input[type="email"],
.zz-apply input[type="date"],
.zz-apply input[type="tel"],
.zz-apply select,
.zz-apply textarea {
  width: 100%;
  margin-top: 0.4rem;
}

.zz-apply input[type="checkbox"] {
  margin-right: 0.45rem;
}

.zz-add-seller {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0.75rem;
  margin: 0 0 1.5rem;
}

.zz-add-seller input[type="text"] {
  flex: 1;
  width: auto;
  min-width: min(100%, 220px);
}

.zz-order-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0.75rem;
  margin: 0 0 1.5rem;
  padding: 1rem;
  background: var(--zz-muted, #f6f6f6);
  border-radius: var(--zz-radius, 14px);
}

.zz-order-filters select,
.zz-order-filters input[type="search"] {
  width: auto;
  min-width: min(100%, 180px);
}

.zz-order-filters input[type="search"] {
  flex: 1;
  min-width: min(100%, 240px);
}

.zz-pager {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 1.25rem 0;
}

.zz-pager a {
  padding: 0.5rem 0.9rem;
  border: 1px solid var(--zz-border, #e4e4e4);
  border-radius: var(--zz-radius-pill, 999px);
  text-decoration: none;
}

.zz-pager a.is-current {
  font-weight: 700;
  border-color: #111;
}

.zz-pack-order {
  border: 1px solid var(--zz-border, #e4e4e4);
  border-radius: var(--zz-radius, 14px);
  padding: 1.2rem 1.35rem;
  margin: 0.9rem 0;
  background: #fff;
}

.zz-pack-order.is-handed {
  border-color: #c5e0c5;
  background: #f7fbf7;
}

.zz-pack-order.is-paid {
  box-shadow: inset 4px 0 0 #00a0e3;
}

.zz-pack-order__top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  align-items: flex-start;
}

.zz-pack-order__top h4 {
  margin: 0;
}

.zz-handover__head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: center;
}

.zz-handover-seller h3 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  align-items: baseline;
}

.zz-handover-count {
  font-size: 0.9rem;
  font-weight: 500;
  color: #666;
}

.zz-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.zz-flag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid #e4e4e4;
  border-radius: 999px;
  padding: 0.4rem 0.75rem;
  background: #fff;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
}

.zz-flag input {
  width: 1.1rem;
  height: 1.1rem;
  margin: 0;
}

.zz-flag.is-on {
  border-color: #00a0e3;
  background: #eef8fc;
}

.zz-badge {
  display: inline-block;
  border-radius: 999px;
  padding: 0.15rem 0.55rem;
  font-size: 11px;
  font-weight: 700;
  background: #f1f5f9;
  color: #475569;
  margin-right: 0.25rem;
}

.zz-badge--handed {
  background: #e6f7ee;
  color: #157347;
}

.zz-badge--paid {
  background: #eef8fc;
  color: #0077b3;
}

@media print {
  .zz-impersonate-bar,
  #wpadminbar,
  .button,
  .zz-hero,
  .zg-innerbannerouter,
  #breadcrumbs {
    display: none !important;
  }

  .zz-dash > :not(.zz-handover) {
    display: none !important;
  }

  .zz-handover-seller + .zz-handover-seller {
    break-before: page;
  }

  .zz-pack-order {
    break-inside: avoid;
  }
}
