:root {
  --abcu-brand: var(--bs-primary, #3f4347);
}
.abcu { margin-top: .85rem; }
.abcu-open {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  width: 100%; min-height: 48px; padding: .7rem 1rem;
  border: 1.5px solid var(--abcu-brand);
  border-radius: var(--bs-border-radius, 10px);
  background: var(--abcu-brand);
  color: #fff;
  font-weight: 600; font-size: .95rem; cursor: pointer;
  transition: background-color .18s ease, border-color .18s ease;
}
.abcu-open:hover { background: color-mix(in srgb, var(--abcu-brand) 85%, #000); }
.abcu-open[hidden] { display: none; }
.js-product-add-to-cart:has(.abcu) .product__add-to-cart { display: none; }
.abcu-ico { width: 20px; height: 20px; flex: 0 0 auto; fill: none;
  stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.abcu-hint {
  margin: .45rem 0 0; font-size: .82rem; text-align: center;
  color: var(--bs-secondary-color, #666);
}
.abcu-note { margin: .5rem 0 0; font-size: .85rem; }
.abcu-done {
  display: flex; align-items: center; gap: .8rem;
  padding: .7rem .85rem;
  border: 1px solid var(--bs-border-color, #e5e5e5);
  border-radius: var(--bs-border-radius, 10px);
  background: var(--bs-tertiary-bg, #f9f9f9);
  font-size: .88rem;
}
.abcu-done[hidden] { display: none; }
.abcu-done-img {
  width: 56px; height: 56px; flex: 0 0 auto;
  object-fit: cover; border-radius: calc(var(--bs-border-radius, 10px) - 3px);
  background: var(--bs-body-bg, #fff);
}
.abcu-done-img[hidden] { display: none; }
.abcu-done-txt { min-width: 0; display: flex; flex-direction: column; gap: .1rem; }
.abcu-done-txt > span {
  color: var(--bs-secondary-color, #666);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.abcu-done-txt > [data-abcu-done-text] {
  white-space: pre-line;
  text-overflow: clip;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  line-height: 1.35;
}
.modal-footer .blockcart-modal__cart-footer-extra:has(.abcu-modal) { order: -2; }
.abcu-modal {
  width: 100%;
  display: flex; align-items: flex-start; gap: .7rem;
  padding: .7rem 0 .1rem;
  border-top: 1px solid var(--bs-border-color, #e4e4e4);
  text-align: left;
}
.abcu-modal-txt { min-width: 0; flex: 1 1 auto; }
.abcu-modal-edit {
  flex: 0 0 auto; align-self: center;
  display: inline-flex; align-items: center; gap: .25rem;
  font-size: .85rem; white-space: nowrap; min-height: 24px;
}
.abcu-modal-edit .material-icons { font-size: 16px; }
.abcu-modal-title { display: block; font-weight: 600; font-size: .92rem; margin-bottom: .15rem; }
.abcu-modal-list { list-style: none; margin: 0; padding: 0; font-size: .82rem;
  color: var(--bs-secondary-color, #666); }
.abcu-modal-list > li { margin: 0; }
.abcu-modal-list strong { font-weight: 600; color: var(--bs-body-color, #222); }
.abcu-custom-list { list-style: none; margin: 0; padding: 0; }
.abcu-custom-list > li { margin: 0 0 .25rem; }
.abcu-custom-list > li:last-child { margin-bottom: 0; }
.abcu-custom-group { display: block; font-size: .85rem; }
.abcu-custom-item { white-space: nowrap; }
.abcu-custom-label { color: var(--bs-secondary-color, #666); }
.abcu-link {
  align-self: flex-start;
  background: none; border: 0; padding: 0;
  color: var(--abcu-brand);
  text-decoration: underline; cursor: pointer; font-size: .85rem;
}
.abcu-drawer { position: fixed; inset: 0; z-index: 1080; }
.abcu-drawer[hidden] { display: none; }
.abcu-backdrop {
  position: absolute; inset: 0;
  background: rgba(17, 17, 17, .5);
  animation: abcu-fade .2s ease both;
}
.abcu-panel {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  background: var(--bs-body-bg, #fff);
  animation: abcu-slide-up .26s cubic-bezier(.22, 1, .36, 1) both;
}
@keyframes abcu-fade { from { opacity: 0 } to { opacity: 1 } }
@keyframes abcu-slide-up { from { transform: translateY(3%); opacity: .6 } to { transform: none; opacity: 1 } }
@keyframes abcu-slide-in { from { transform: translateX(3%); opacity: .6 } to { transform: none; opacity: 1 } }
.abcu-head {
  flex: 0 0 auto;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem;
  padding: .85rem 1rem;
  border-bottom: 1px solid var(--bs-border-color, #e5e5e5);
}
.abcu-head-txt { min-width: 0; }
.abcu-eyebrow {
  margin: 0 0 .1rem; font-size: .68rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--abcu-brand);
}
.abcu-title {
  margin: 0; font-size: 1rem; line-height: 1.3; font-weight: 600;
display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}
.abcu-x {
  flex: 0 0 auto;
  display: flex; align-items: center; justify-content: center;
width: 44px; height: 44px; margin: -.35rem -.4rem 0 0;
  background: none; border: 0; cursor: pointer;
  border-radius: 50%;
  color: var(--bs-body-color, #222);
  transition: background-color .15s ease;
}
.abcu-x:hover { background: var(--bs-tertiary-bg, #f2f2f2); }
.abcu-x svg { width: 22px; height: 22px; fill: none; stroke: currentColor;
  stroke-width: 1.8; stroke-linecap: round; }
.abcu-body {
  flex: 1 1 auto; min-height: 0;
  display: flex; flex-direction: column;
  overflow-y: auto; overscroll-behavior: contain;
}
.abcu-preview {
  flex: 0 0 auto;
  padding: .9rem 1rem .5rem;
  background: var(--bs-body-bg, #fff);
position: sticky; top: 0; z-index: 2;
  border-bottom: 1px solid var(--bs-border-color, #e5e5e5);
}
.abcu-stage {
  position: relative; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
width: 100%; max-width: 460px; height: 34vh;
  border-radius: var(--bs-border-radius, 10px);
background: #fff;
  overflow: hidden;
}
.abcu-img {
  position: absolute; inset: 0; margin: auto;
  display: block; max-width: 100%; max-height: 100%; width: auto; height: auto;
  transform-origin: 0 0;
  transition: opacity .18s ease;
}
.abcu-img.is-moving { transition: transform .34s cubic-bezier(.22, 1, .36, 1), opacity .18s ease; }
.abcu-img[hidden] { display: none; }
.abcu-img--b { z-index: 1; }
.abcu-stage[data-abcu-loading] .abcu-img { opacity: .45; }
.abcu-area {
  position: absolute; pointer-events: none;
  left: var(--abcu-ax); top: var(--abcu-ay);
  width: var(--abcu-aw); height: var(--abcu-ah);
  border: 1px dashed rgba(255, 255, 255, .55);
  border-radius: 2px;
  transition: opacity .2s ease;
}
.abcu-area[hidden] { display: none; }
.abcu-area--poly { border: 0; border-radius: 0; }
.abcu-area--poly svg { width: 100%; height: 100%; display: block; }
.abcu-area--poly polygon {
  fill: none;
  stroke: rgba(255, 255, 255, .55);
  stroke-width: 1;
  stroke-dasharray: 4 3;
}
.abcu-stage.is-zoom .abcu-area { opacity: 0; }
.abcu-stage--drag,
.abcu-stage:has([data-abcu-crop-x]) { cursor: default; }
.abcu-stage[data-abcu-pan] { cursor: grab; touch-action: none; }
.abcu-stage[data-abcu-pan].abcu-stage--drag { cursor: grabbing; }
.abcu-live { position: absolute; z-index: 2; pointer-events: none; }
.abcu-live-area { position: absolute; left: 0; top: 0; transform-origin: 0 0; }
.abcu-live-frame { position: absolute; overflow: hidden; }
.abcu-live-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.abcu-preview-cta { margin: 0; flex: 1 1 100%; }
.quickview:has(.abcu-preview-cta) .product__quantity { order: -2; }
.quickview:has(.abcu-preview-cta) .abcu-preview-cta { order: -1; }
.abcu-open--link { text-decoration: none; width: 100%; justify-content: center; }
.quickview:has(.abcu-preview-cta) [data-button-action="add-to-cart"] { display: none; }
.quickview:has(.abcu-preview-cta) .product__add-to-cart.add { display: none; }
.abcu-skeleton {
  position: absolute; inset: 0;
  background: linear-gradient(90deg,
    var(--bs-tertiary-bg, #f2f2f2) 25%,
    var(--bs-secondary-bg, #e9e9e9) 37%,
    var(--bs-tertiary-bg, #f2f2f2) 63%);
  background-size: 400% 100%;
  animation: abcu-shimmer 1.3s ease-in-out infinite;
}
.abcu-skeleton[hidden] { display: none; }
@keyframes abcu-shimmer { from { background-position: 100% 0 } to { background-position: 0 0 } }
.abcu-tools {
  display: flex; align-items: center; justify-content: space-between; gap: .75rem;
  max-width: 460px; margin: .5rem auto 0;
}
.abcu-tool {
  display: inline-flex; align-items: center; gap: .35rem;
  min-height: 36px; padding: .3rem .6rem;
  background: none; border: 1px solid var(--bs-border-color, #e5e5e5);
  border-radius: 999px; cursor: pointer;
  font-size: .78rem; color: var(--bs-body-color, #222);
  transition: border-color .15s ease, background-color .15s ease;
}
.abcu-tool:hover { border-color: var(--abcu-brand); }
.abcu-tool[aria-pressed="true"] {
  border-color: var(--abcu-brand);
  background: color-mix(in srgb, var(--abcu-brand) 10%, transparent);
}
.abcu-tool svg { width: 15px; height: 15px; fill: none; stroke: currentColor;
  stroke-width: 1.8; stroke-linecap: round; }
.abcu-dims { font-size: .75rem; color: var(--bs-secondary-color, #666); text-align: right; }
.abcu-form { flex: 1 1 auto; padding: 1rem; }
.abcu-fields { list-style: none; margin: 0; padding: 0; }
.abcu-item, .abcu-group { margin-bottom: 1.15rem; }
.abcu-item:last-child, .abcu-group:last-child { margin-bottom: 0; }
.abcu-field { margin-bottom: 1.15rem; }
.abcu-field:last-child { margin-bottom: 0; }
.abcu-field[hidden], .abcu-item[hidden], .abcu-group[hidden] { display: none; }
.abcu-field.is-new { animation: abcu-rep-in .26s cubic-bezier(.22, 1, .36, 1) both; }
.abcu-group {
  padding: .85rem .9rem .9rem;
  border: 1px solid var(--bs-border-color, #dcdcdc);
  border-radius: var(--bs-border-radius, 10px);
  background: var(--bs-tertiary-bg, #f9f9f9);
}
.abcu-group-h {
  display: flex; align-items: center; gap: .45rem;
  margin: 0 0 .75rem; font-size: .9rem; font-weight: 700;
}
.abcu-group-b .abcu-label { font-weight: 500; }
.abcu-group-b .abcu-field:last-child { margin-bottom: 0; }
.abcu-rep-list { display: grid; gap: .7rem; }
.abcu-rep-item {
  padding: .7rem .75rem .75rem;
  border: 1px solid var(--bs-border-color, #dcdcdc);
  border-radius: var(--bs-border-radius, 10px);
  background: var(--bs-body-bg, #fff);
}
.abcu-rep-item.is-new { animation: abcu-rep-in .26s cubic-bezier(.22, 1, .36, 1) both; }
@keyframes abcu-rep-in { from { opacity: 0; transform: translateY(-6px) } to { opacity: 1; transform: none } }
.abcu-rep-head {
  display: flex; align-items: center; gap: .5rem; flex-wrap: wrap;
  margin-bottom: .6rem;
}
.abcu-rep-title { font-weight: 700; font-size: .88rem; margin-right: auto; }
.abcu-rep-kinds { display: inline-flex; gap: .25rem; }
.abcu-rep-kind {
  padding: .2rem .55rem; min-height: 30px;
  border: 1px solid var(--bs-border-color, #dcdcdc);
  border-radius: 999px;
  background: transparent; color: inherit;
  font-size: .76rem; line-height: 1.2; cursor: pointer;
}
.abcu-rep-kind.is-on {
  border-color: var(--abcu-brand);
  background: color-mix(in srgb, var(--abcu-brand) 12%, transparent);
  font-weight: 600;
}
.abcu-rep-del {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; padding: 0;
  border: 0; border-radius: 50%;
  background: transparent; color: var(--bs-secondary-color, #666); cursor: pointer;
}
.abcu-rep-del svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 2; }
.abcu-rep-del:hover:not(:disabled) { background: var(--bs-tertiary-bg, #f0f0f0); }
.abcu-rep-del:disabled { opacity: .35; cursor: not-allowed; }
.abcu-rep-bar { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; margin-top: .7rem; }
.abcu-rep-add {
  display: inline-flex; align-items: center; gap: .3rem;
  padding: .4rem .75rem; min-height: 38px;
  border: 1px dashed var(--abcu-brand);
  border-radius: var(--bs-border-radius, 10px);
  background: transparent; color: var(--abcu-brand);
  font-size: .82rem; font-weight: 600; cursor: pointer;
}
.abcu-rep-add:hover:not(:disabled) {
  background: color-mix(in srgb, var(--abcu-brand) 8%, transparent);
}
.abcu-rep-add:disabled { opacity: .4; cursor: not-allowed; }
.abcu-rep-info { font-size: .76rem; color: var(--bs-secondary-color, #666); margin-left: auto; }
.abcu-locked {
  display: flex; align-items: baseline; flex-wrap: wrap; gap: .1rem .5rem;
  margin: 0; padding: .6rem .8rem;
  border-left: 3px solid var(--abcu-brand);
  border-radius: var(--bs-border-radius-sm, 4px);
  background: color-mix(in srgb, var(--abcu-brand) 7%, transparent);
  font-size: .86rem;
}
.abcu-locked-l { color: var(--bs-secondary-color, #666); }
.abcu-locked-v { font-weight: 700; }
.abcu-label {
  display: flex; align-items: center; gap: .45rem;
  margin-bottom: .4rem; font-size: .9rem; font-weight: 600;
}
.abcu-step {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; flex: 0 0 auto;
  border-radius: 50%; font-size: .7rem; font-weight: 700;
  background: color-mix(in srgb, var(--abcu-brand) 14%, transparent);
  color: var(--abcu-brand);
}
.abcu-opt {
  font-style: normal; font-weight: 400; font-size: .74rem;
  color: var(--bs-secondary-color, #666);
}
.abcu-control { position: relative; }
.abcu-input {
  width: 100%; min-height: 48px;
  padding: .7rem 3.4rem .7rem .85rem;
  border: 1px solid var(--bs-border-color, #dcdcdc);
  border-radius: var(--bs-border-radius, 10px);
  background: var(--bs-body-bg, #fff);
  color: var(--bs-body-color, #222);
  font-size: 1rem;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.abcu-input:focus {
  outline: none;
  border-color: var(--abcu-brand);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--abcu-brand) 18%, transparent);
}
.abcu-input::placeholder { color: var(--bs-secondary-color, #999); }
.abcu-count {
  position: absolute; right: .8rem; top: 50%; transform: translateY(-50%);
  font-size: .75rem; font-variant-numeric: tabular-nums;
  color: var(--bs-secondary-color, #999);
  pointer-events: none;
}
.abcu-count[data-abcu-close] { color: var(--bs-warning, #9A6516); font-weight: 600; }
.abcu-help { margin: .35rem 0 0; font-size: .78rem; color: var(--bs-secondary-color, #666); }
.abcu-field[data-abcu-invalid] .abcu-input {
  border-color: var(--bs-danger, #C9383E);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--bs-danger, #C9383E) 15%, transparent);
}
.abcu-field[data-abcu-invalid] .abcu-step {
  background: color-mix(in srgb, var(--bs-danger, #C9383E) 16%, transparent);
  color: var(--bs-danger, #C9383E);
}
.abcu-warnings, .abcu-error {
  margin-top: 1rem; padding: .65rem .85rem;
  border-radius: var(--bs-border-radius, 10px);
  font-size: .84rem;
}
.abcu-warnings { background: var(--bs-warning-bg-subtle, #f7efdd); color: var(--bs-warning-text-emphasis, #6b460f); }
.abcu-error { background: var(--bs-danger-bg-subtle, #f8dcdd); color: var(--bs-danger-text-emphasis, #7a2226); }
.abcu-warnings[hidden], .abcu-error[hidden] { display: none; }
.abcu-foot {
  flex: 0 0 auto;
  display: flex; align-items: center; gap: 1rem;
  padding: .75rem 1rem;
  padding-bottom: calc(.75rem + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--bs-border-color, #e5e5e5);
  background: var(--bs-body-bg, #fff);
}
.abcu-recap { flex: 1 1 auto; min-width: 0; display: flex; flex-direction: column; }
.abcu-recap-label {
  font-size: .68rem; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--bs-secondary-color, #888);
}
.abcu-summary {
  font-size: .85rem; color: var(--bs-body-color, #222);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.abcu-add {
  flex: 0 0 auto; min-height: 48px; padding: .7rem 1.4rem;
  border: 0; border-radius: var(--bs-border-radius, 10px);
  background: var(--abcu-brand); color: #fff;
  font-weight: 600; font-size: .95rem; cursor: pointer;
  transition: opacity .15s ease, transform .12s ease;
}
.abcu-add:hover { opacity: .92; }
.abcu-add:active { transform: translateY(1px); }
.abcu-add:disabled { opacity: .6; cursor: default; }
@media (min-width: 992px) {
  .abcu-panel {
    inset: 0 0 0 auto;
    width: min(1000px, 100%);
    box-shadow: -10px 0 40px rgba(0, 0, 0, .16);
    animation-name: abcu-slide-in;
  }
.abcu-head { padding: 1.1rem 1.5rem; }
  .abcu-title { font-size: 1.15rem; -webkit-line-clamp: 1; }
.abcu-body { flex-direction: row; overflow: hidden; }
.abcu-preview {
flex: 0 0 46%; position: static;
    display: flex; flex-direction: column; justify-content: center;
    padding: 1.5rem; border-bottom: 0;
    border-right: 1px solid var(--bs-border-color, #e5e5e5);
    background: var(--bs-tertiary-bg, #fafafa);
  }
.abcu-stage { flex: 1 1 auto; min-height: 0; height: auto; max-width: 100%; }
  .abcu-tools { flex: 0 0 auto; max-width: 100%; }
.abcu-form { overflow-y: auto; padding: 1.75rem 1.5rem; }
  .abcu-fields, .abcu-warnings, .abcu-error { max-width: 420px; }
  .abcu-foot { padding: 1rem 1.5rem; }
}
@media (prefers-reduced-motion: reduce) {
  .abcu-panel, .abcu-backdrop { animation: none; }
  .abcu-skeleton { animation: none; }
  .abcu-rep-item.is-new, .abcu-field.is-new { animation: none; }
  .abcu-img, .abcu-img.is-moving { transition: none; }
  .abcu-add:active { transform: none; }
}
.abcu-upload { margin-top: .1rem; }
.abcu-drop {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .2rem; padding: 1.2rem 1rem; min-height: 116px;
  border: 1.5px dashed var(--bs-border-color, #d5d5d5);
  border-radius: var(--bs-border-radius, 10px);
  background: var(--bs-tertiary-bg, #fafafa);
  cursor: pointer; text-align: center;
  transition: border-color .15s ease, background-color .15s ease;
}
.abcu-drop:hover, .abcu-drop:focus-visible, .abcu-drop[data-abcu-nad] {
  border-color: var(--abcu-brand);
  background: color-mix(in srgb, var(--abcu-brand) 6%, transparent);
  outline: none;
}
.abcu-drop[hidden] { display: none; }
.abcu-drop svg { width: 26px; height: 26px; fill: none; stroke: var(--abcu-brand);
  stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.abcu-drop-t { font-weight: 600; font-size: .9rem; }
.abcu-drop-s { font-size: .76rem; color: var(--bs-secondary-color, #777); }
.abcu-up {
  display: flex; gap: .8rem; align-items: flex-start;
  padding: .7rem; border: 1px solid var(--bs-border-color, #e5e5e5);
  border-radius: var(--bs-border-radius, 10px);
}
.abcu-up[hidden] { display: none; }
.abcu-up-img {
  width: 76px; height: 76px; flex: 0 0 auto; object-fit: contain;
  border-radius: calc(var(--bs-border-radius, 10px) - 4px);
  background-color: #fff;
  background-image:
    linear-gradient(45deg, #e9e9e9 25%, transparent 25%, transparent 75%, #e9e9e9 75%),
    linear-gradient(45deg, #e9e9e9 25%, transparent 25%, transparent 75%, #e9e9e9 75%);
  background-size: 14px 14px;
  background-position: 0 0, 7px 7px;
}
.abcu-up-info { min-width: 0; display: flex; flex-direction: column; gap: .3rem; }
.abcu-up-name {
  font-size: .82rem; font-weight: 600;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.abcu-quality { font-size: .76rem; display: inline-flex; align-items: center; gap: .35rem; }
.abcu-quality::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%; flex: 0 0 auto;
  background: var(--bs-secondary-color, #999);
}
.abcu-quality[data-abcu-grade="good"] { color: var(--bs-success, #206942); }
.abcu-quality[data-abcu-grade="good"]::before { background: var(--bs-success, #206942); }
.abcu-quality[data-abcu-grade="average"] { color: var(--bs-warning, #9A6516); }
.abcu-quality[data-abcu-grade="average"]::before { background: var(--bs-warning, #9A6516); }
.abcu-quality[data-abcu-grade="weak"] { color: var(--bs-danger, #C9383E); }
.abcu-quality[data-abcu-grade="weak"]::before { background: var(--bs-danger, #C9383E); }
.abcu-variants { display: flex; flex-wrap: wrap; gap: .35rem; }
.abcu-chip {
  display: inline-flex; align-items: center; gap: .35rem;
  min-height: 32px; padding: .25rem .6rem;
  border: 1px solid var(--bs-border-color, #ddd); border-radius: 999px;
  background: none; cursor: pointer; font-size: .78rem;
  color: var(--bs-body-color, #222);
}
.abcu-chip.is-on {
  border-color: var(--abcu-brand);
  background: color-mix(in srgb, var(--abcu-brand) 12%, transparent);
  font-weight: 600;
}
.abcu-chip:disabled { opacity: .55; cursor: default; }
.abcu-dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; opacity: 0; }
.abcu-chip[data-abcu-waiting] .abcu-dot { opacity: 1; animation: abcu-pulse 1s ease-in-out infinite; }
@keyframes abcu-pulse { 0%, 100% { opacity: .25 } 50% { opacity: 1 } }
.abcu-bg-state { font-size: .74rem; color: var(--bs-secondary-color, #777); }
.abcu-bg-state:empty { display: none; }
@media (prefers-reduced-motion: reduce) {
  .abcu-chip[data-abcu-waiting] .abcu-dot { animation: none; }
}
.abcu-busy {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  display: flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 999px;
  background: rgba(255, 255, 255, .94); color: #333;
  font-size: .82rem; box-shadow: 0 2px 10px rgba(0, 0, 0, .12);
  z-index: 3; pointer-events: none;
}
.abcu-busy[hidden] { display: none; }
.abcu-spinner {
  width: 14px; height: 14px; flex: none; border-radius: 50%;
  border: 2px solid rgba(0, 0, 0, .16); border-top-color: currentColor;
  animation: abcu-rotation .7s linear infinite;
}
.abcu-spinner[hidden] { display: none; }
@keyframes abcu-rotation { to { transform: rotate(360deg); } }
.abcu-drop-icon { position: relative; display: inline-flex; }
.abcu-drop[data-abcu-busy] .abcu-drop-icon svg { opacity: 0; }
.abcu-spinner-drop {
  position: absolute; left: 50%; top: 50%; margin: -7px 0 0 -7px;
  border-top-color: var(--abcu-brand);
}
.abcu-drop[data-abcu-busy] { pointer-events: none; opacity: .85; }
.abcu-spinner-btn { border-color: rgba(255, 255, 255, .35); border-top-color: #fff; }
.abcu-add.is-praca { cursor: progress; }
.abcu-mockup-desc {
  text-align: center; font-size: .72rem; color: #999; margin: 4px 0 0;
  letter-spacing: .03em;
}
.abcu-scale { margin-top: 10px; }
.abcu-scale[hidden] { display: none; }
.abcu-scale-label { display: block; font-size: .76rem; color: #666; margin-bottom: 4px; }
.abcu-scale-row { display: flex; align-items: center; gap: 8px; }
.abcu-scale-btn {
  width: 34px; height: 34px; flex: none; border-radius: 8px; cursor: pointer;
  border: 1px solid var(--bs-border-color, #ddd); background: #fff;
  font-size: 1.1rem; line-height: 1; color: #333;
}
.abcu-scale-btn:disabled { opacity: .4; cursor: default; }
.abcu-scale-row input[type="range"] {
  flex: 1; min-width: 0; accent-color: var(--abcu-brand);
}
.abcu-scale-result {
  min-width: 3.2em; text-align: right; font-size: .8rem;
  font-variant-numeric: tabular-nums; color: #444;
}
@media (max-width: 991px) {
  .abcu-scale-btn { width: 44px; height: 44px; }
}
@media (prefers-reduced-motion: reduce) {
.abcu-spinner { animation: abcu-pulse-spinner 1.2s ease-in-out infinite; }
}
@keyframes abcu-pulse-spinner { 50% { opacity: .3; } }
.abcu-fonts { margin-top: 8px; }
.abcu-fonts-label { display: block; font-size: .76rem; color: #666; margin-bottom: 4px; }
.abcu-fonts-list { display: flex; flex-wrap: wrap; gap: 6px; }
.abcu-font {
  border: 1px solid var(--bs-border-color, #ddd); background: #fff; color: #222;
  border-radius: 8px; padding: 6px 12px; cursor: pointer; font-size: 1.05rem; line-height: 1.2;
  max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.abcu-font:hover { border-color: #aaa; }
.abcu-font.is-on {
  border-color: var(--abcu-brand);
  box-shadow: 0 0 0 1px var(--abcu-brand);
}
@media (max-width: 991px) {
  .abcu-font { min-height: 44px; }
}
.abcu-assets { margin-top: 6px; }
.abcu-assets-list {
  display: grid; gap: 8px;
  grid-template-columns: repeat(auto-fill, minmax(84px, 1fr));
}
.abcu-asset {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  border: 1px solid var(--bs-border-color, #ddd); background: #fff; color: #222;
  border-radius: 8px; padding: 6px 4px; cursor: pointer; line-height: 1.15;
}
.abcu-asset img {
  width: 100%; height: 72px; object-fit: contain; display: block;
background: var(--bs-tertiary-bg, #f5f5f5); border-radius: 5px;
}
.abcu-asset-n {
  font-size: .72rem; color: #444; text-align: center;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.abcu-asset:hover { border-color: #aaa; }
.abcu-asset.is-on {
  border-color: var(--abcu-brand);
  box-shadow: 0 0 0 1px var(--abcu-brand);
}
.abcu-assets-empty { font-size: .82rem; color: #777; margin: 4px 0 0; }
@media (max-width: 991px) {
.abcu-assets-list { grid-template-columns: repeat(auto-fill, minmax(96px, 1fr)); }
  .abcu-asset img { height: 84px; }
}
.abcu-returns-line {
  display: flex;
  align-items: center;
  gap: .4rem;
  margin: .35rem 0 0;
  font-size: .8125rem;
  color: var(--bs-secondary-color, #666);
}
.abcu-returns-line .material-icons { font-size: 1rem; }
.abcu-returns { margin-bottom: 1rem; }
.abcu-returns p { margin: 0 0 .35rem; }
.abcu-returns p:last-child { margin-bottom: 0; }
.abcu-returns__heading { font-weight: 600; }
.abcu-returns__complaint { font-size: .875rem; }
.abcu-cart-line { margin-top: .4rem; }
.abcu-cart-line .abcu-returns-line { margin: 0; }
.abcu-cart-actions { margin: 0 0 .25rem; }
.abcu-cart-edit {
  display: inline-flex; align-items: center; gap: .25rem;
  font-size: .85rem; min-height: 24px;
}
.abcu-cart-edit .material-icons { font-size: 16px; }
@media (max-width: 991px) {
  .abcu-rep-del { width: 44px; height: 44px; }
  .abcu-rep-kind { min-height: 44px; padding-left: .8rem; padding-right: .8rem; }
  .abcu-rep-add { min-height: 44px; }
}
