/** Shopify CDN: Minification failed

Line 11:84 Unexpected "/"

**/
/* Quantity-break buy box (issue #332).
   Scope: .qt — grep before reusing a prefix, .qty-* and .quantity__* are Ella's.

   ⚠️ base.css does `* { box-sizing: inherit }` off `html { border-box }`, but `body` computes
   content-box, so the chain breaks one level below html and every legacy section inherits
   content-box. Every sk-*/component root must set border-box on itself — see docs/GRID-LAYOUT-FIX.md.
*/
.qt,
.qt *,
.qt *::before,
.qt *::after {
  box-sizing: border-box;
}

.qt {
  --qt-gold: #8f6e1a;
  --qt-gold-bright: #d4af37;
  --qt-ink: #232323;
  --qt-muted: #6b6b6b;
  --qt-line: #e3e3e3;
  --qt-soft: #faf8f3;
  --qt-err: #b3261e;

  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0;
  color: var(--qt-ink);
  font-size: 15px;
  line-height: 1.5;
}

/* ---- headline price ---- */
.qt__price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 12px;
  margin-bottom: 14px;
}

.qt__unit {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.qt__unit-suffix {
  font-size: 14px;
  font-weight: 500;
  color: var(--qt-muted);
}

.qt__total {
  font-size: 14px;
  font-weight: 600;
  color: var(--qt-gold);
  white-space: nowrap;
}

/* ---- tier table ---- */
.qt__tiers {
  margin: 0 0 18px;
  border: 1px solid var(--qt-line);
  border-radius: 10px;
  overflow: hidden;
}

.qt__tiers-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 9px 14px;
  background: var(--qt-soft);
  border-bottom: 1px solid var(--qt-line);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--qt-muted);
}

.qt__scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.qt__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.qt__table th {
  padding: 8px 14px;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--qt-muted);
  border-bottom: 1px solid var(--qt-line);
  white-space: nowrap;
}

.qt__table th:last-child,
.qt__row-price {
  text-align: right;
}

.qt__row {
  cursor: pointer;
  transition: background-color 0.15s ease;
}

.qt__row + .qt__row td {
  border-top: 1px solid var(--qt-line);
}

.qt__row:hover,
.qt__row:focus-visible {
  background: var(--qt-soft);
  outline: none;
}

.qt__row td {
  padding: 10px 14px;
  white-space: nowrap;
}

.qt__row-qty {
  font-weight: 600;
}

.qt__row-price {
  font-variant-numeric: tabular-nums;
}

/* aria-current, not aria-selected: aria-selected is only valid on a handful of roles, and these
   stay plain table rows so screen readers still announce them as a price list. */
.qt__row[aria-current='true'] {
  background: rgba(212, 175, 55, 0.14);
  box-shadow: inset 3px 0 0 var(--qt-gold-bright);
}

.qt__row[aria-current='true'] .qt__row-qty,
.qt__row[aria-current='true'] .qt__row-price {
  color: var(--qt-gold);
  font-weight: 700;
}

.qt__row-save {
  display: inline-block;
  margin-left: 8px;
  padding: 1px 7px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.2);
  color: var(--qt-gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  vertical-align: 1px;
}

/* ---- quantity ---- */
.qt__qty {
  margin-bottom: 18px;
}

.qt__label {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--qt-muted);
}

.qt__req {
  color: var(--qt-err);
}

.qt__stepper {
  display: inline-flex;
  align-items: stretch;
  border: 1px solid var(--qt-line);
  border-radius: 8px;
  overflow: hidden;
}

.qt__step {
  width: 46px;
  min-height: 48px;
  border: 0;
  background: #fff;
  color: var(--qt-ink);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.qt__step:hover:not(:disabled) {
  background: var(--qt-soft);
}

.qt__step:disabled {
  color: #c4c4c4;
  cursor: not-allowed;
}

.qt__input {
  width: 78px;
  min-height: 48px;
  padding: 0 8px;
  border: 0;
  border-left: 1px solid var(--qt-line);
  border-right: 1px solid var(--qt-line);
  border-radius: 0;
  background: #fff;
  color: var(--qt-ink);
  font-size: 16px; /* 16px stops iOS zoom-on-focus */
  font-weight: 600;
  text-align: center;
  -moz-appearance: textfield;
}

.qt__input::-webkit-outer-spin-button,
.qt__input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.qt__cap {
  margin: 8px 0 0;
  font-size: 13px;
  color: var(--qt-muted);
}

/* ---- custom fields ---- */
.qt__fields {
  margin-bottom: 18px;
  padding: 16px;
  border: 1px solid var(--qt-line);
  border-radius: 10px;
  background: var(--qt-soft);
}

.qt__fields-title {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 700;
}

.qt__fields-note {
  margin: 0 0 14px;
  font-size: 13px;
  color: var(--qt-muted);
}

.qt__field + .qt__field {
  margin-top: 14px;
}

.qt__text,
.qt__textarea,
.qt__file {
  display: block;
  width: 100%;
  padding: 11px 12px;
  border: 1px solid var(--qt-line);
  border-radius: 8px;
  background: #fff;
  color: var(--qt-ink);
  font-family: inherit;
  font-size: 16px;
  line-height: 1.45;
}

.qt__textarea {
  min-height: 96px;
  resize: vertical;
}

.qt__file {
  padding: 10px 12px;
  font-size: 14px;
  cursor: pointer;
}

.qt__text:focus,
.qt__textarea:focus,
.qt__file:focus {
  border-color: var(--qt-gold);
  outline: 2px solid rgba(212, 175, 55, 0.35);
  outline-offset: 1px;
}

.qt__hint {
  margin: 6px 0 0;
  font-size: 12px;
  color: var(--qt-muted);
}

.qt__filename {
  margin: 6px 0 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--qt-gold);
  overflow-wrap: anywhere;
}

/* ⚠️ Error/status nodes are never rendered childless. base.css has a bare `*:empty{display:none}`,
   so an empty node is removed from the box tree and the message silently never appears. */
.qt__field-error,
.qt__error {
  display: block;
  margin: 6px 0 0;
  color: var(--qt-err);
  font-size: 13px;
  font-weight: 600;
}

.qt__error {
  margin: 0 0 12px;
}

.qt__field-error[hidden],
.qt__error[hidden] {
  display: none;
}

/* ---- proof notice + submit ---- */
.qt__proof {
  display: flex;
  gap: 10px;
  margin: 0 0 16px;
  padding: 12px 14px;
  border-left: 3px solid var(--qt-gold-bright);
  background: rgba(212, 175, 55, 0.09);
  font-size: 13.5px;
  line-height: 1.5;
}

.qt__submit {
  display: block;
  width: 100%;
  min-height: 52px;
  padding: 14px 20px;
  border: 0;
  border-radius: 8px;
  background: var(--qt-ink);
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.18s ease;
}

.qt__submit:hover:not(:disabled) {
  background: var(--qt-gold);
}

.qt__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* The button is inert until the script boots and clears data-qt-pending. Artwork can only be
   uploaded by that script, so if it never runs the correct outcome is a visibly disabled button,
   not a live one that silently places an order with nothing to print. */
.qt[data-qt-pending] .qt__submit {
  opacity: 0.6;
  pointer-events: none;
}

/* No-JS: the snippet is inert without its script, so say so rather than showing a dead button. */
.qt__nojs {
  margin: 0;
  padding: 14px;
  border: 1px solid var(--qt-line);
  border-radius: 8px;
  background: var(--qt-soft);
  font-size: 14px;
}

@media (max-width: 479px) {
  .qt__unit {
    font-size: 26px;
  }

  .qt__input {
    width: 64px;
  }
}
