.hnud {
  --hnud-ink: var(--e-global-color-primary, #000000);
  --hnud-muted: var(--e-global-color-text, #696969);
  --hnud-gold: var(--e-global-color-accent, #ababab);
  --hnud-gold-soft: rgba(171, 171, 171, 0.16);
  --hnud-paper: #f7f7f7;
  --hnud-surface: var(--e-global-color-secondary, #ffffff);
  --hnud-line: rgba(0, 0, 0, 0.14);
  --hnud-soft: #eeeeee;
  --hnud-hover: #f7f7f7;
  --hnud-font-primary: var(--e-global-typography-primary-font-family, "Playfair Display"), Georgia, serif;
  --hnud-font-primary-weight: var(--e-global-typography-primary-font-weight, 600);
  --hnud-font-secondary: var(--e-global-typography-secondary-font-family, "Lora"), Georgia, serif;
  --hnud-font-secondary-weight: var(--e-global-typography-secondary-font-weight, 400);
  --hnud-font-text: var(--e-global-typography-text-font-family, "Lora"), Georgia, serif;
  --hnud-font-text-weight: var(--e-global-typography-text-font-weight, 400);
  --hnud-font-accent: var(--e-global-typography-accent-font-family, "Roboto"), Arial, sans-serif;
  --hnud-font-accent-weight: var(--e-global-typography-accent-font-weight, 500);
  --hnud-sticky-top: 128px;
  color: var(--hnud-ink);
  font-family: var(--hnud-font-text);
  font-weight: var(--hnud-font-text-weight);
  margin: 0 auto 46px;
  max-width: 1500px;
  padding: 0 14px;
}

.hnud * {
  box-sizing: border-box;
}

.hnud button,
.hnud input,
.hnud select,
.hnud textarea {
  font: inherit;
}

.hnud button:hover,
.hnud button:focus-visible {
  border-color: var(--hnud-gold);
  outline: 2px solid transparent;
}

.hnud__appbar {
  align-items: center;
  background: #fff;
  border: 1px solid var(--hnud-line);
  border-radius: 0 0 12px 12px;
  box-shadow: 0 12px 30px rgba(23, 32, 51, 0.06);
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin-bottom: 12px;
  min-height: 70px;
  padding: 12px 14px;
  position: sticky;
  top: var(--hnud-sticky-top);
  z-index: 20;
}

.hnud__brand {
  align-items: center;
  color: var(--hnud-ink);
  display: inline-flex;
  gap: 10px;
  font-weight: 900;
  text-decoration: none;
}

.hnud__brand span {
  align-items: center;
  background: var(--hnud-ink);
  border-radius: 10px;
  color: #fff;
  display: inline-flex;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.hnud__deal {
  color: var(--hnud-gold);
  flex: 1;
  font-size: 0.92rem;
  font-weight: 900;
  text-align: center;
}

.hnud__cartbar {
  align-items: center;
  display: flex;
  gap: 8px;
}

.hnud__cartbar strong {
  background: var(--hnud-soft);
  border-radius: 12px;
  font-size: 1.08rem;
  padding: 10px 14px;
}

.hnud__cartbar button {
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 900;
  min-height: 42px;
  padding: 10px 14px;
}

.hnud__cartbar button {
  background: var(--hnud-ink);
  color: #fff;
}

.hnud__bottom-bar span,
.hnud__checkout p,
.hnud__toolbar small,
.hnud__section-title p {
  color: var(--hnud-muted);
  font-size: 0.86rem;
}

.hnud__studio {
  align-items: stretch;
  display: grid;
  gap: 12px;
  grid-template-columns: 112px minmax(320px, 390px) minmax(480px, 1fr) minmax(230px, 270px);
}

.hnud__tabs,
.hnud__panel,
.hnud__preview-card,
.hnud__checkout {
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid var(--hnud-line);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(23, 32, 51, 0.07);
}

.hnud__tabs {
  align-self: stretch;
  display: grid;
  gap: 10px;
  grid-template-rows: repeat(4, minmax(0, 1fr));
  min-height: 720px;
  padding: 12px;
  position: sticky;
  top: var(--hnud-sticky-top);
}

.hnud__tab {
  background: transparent;
  border: 0;
  border-radius: 10px;
  color: var(--hnud-muted);
  cursor: pointer;
  font-weight: 900;
  min-height: 76px;
  padding: 14px 10px;
}

.hnud__tab span {
  color: var(--hnud-gold);
  display: block;
  font-size: 0.72rem;
  margin-bottom: 4px;
}

.hnud__tab.is-active {
  background: var(--hnud-ink) !important;
  color: #fff !important;
}

.hnud__tab:hover:not(.is-active),
.hnud__tab:focus-visible:not(.is-active) {
  background: var(--hnud-hover) !important;
  color: var(--hnud-ink) !important;
  outline: 2px solid transparent;
}

.hnud__panel {
  max-height: calc(100vh - 96px);
  min-height: 720px;
  overflow: hidden;
  overflow-y: auto;
  padding: 18px;
}

.hnud__pane {
  display: none;
}

.hnud__pane.is-active {
  display: grid;
  gap: 18px;
}

.hnud__section-title h3 {
  font-size: 1.28rem;
  margin: 0 0 4px;
}

.hnud__section-title span {
  color: var(--hnud-gold);
  display: block;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.hnud__section-title p {
  margin: 0;
}

.hnud__product-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hnud__product-card,
.hnud__swatch,
.hnud__tool-grid button,
.hnud__secondary,
.hnud__toolbar-actions button {
  background: #fff;
  border: 1px solid var(--hnud-line);
  border-radius: 12px;
  color: var(--hnud-ink);
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.hnud__product-card {
  background: #fff !important;
  color: var(--hnud-ink) !important;
  display: grid;
  gap: 3px;
  min-height: 84px;
  padding: 12px;
  text-align: left;
}

.hnud__product-card strong {
  align-items: center;
  background: var(--hnud-soft);
  border-radius: 10px;
  display: inline-flex;
  font-size: 0.76rem;
  height: 32px;
  justify-content: center;
  width: 42px;
}

.hnud__product-card span {
  font-weight: 900;
}

.hnud__product-card small {
  color: var(--hnud-muted);
}

.hnud__product-card:hover,
.hnud__swatch:hover,
.hnud__swatch.is-active,
.hnud__tool-grid button:hover,
.hnud__secondary:hover,
.hnud__toolbar-actions button:hover {
  background: var(--hnud-hover);
  border-color: var(--hnud-gold);
  box-shadow: 0 10px 24px rgba(184, 138, 58, 0.12);
  color: var(--hnud-ink) !important;
  transform: translateY(-1px);
}

.hnud__product-card.is-active {
  background: var(--hnud-ink) !important;
  border-color: var(--hnud-ink) !important;
  box-shadow: 0 16px 32px rgba(23, 32, 51, 0.16);
  color: #fff !important;
  transform: translateY(-1px);
}

.hnud__product-card.is-active:hover {
  background: var(--hnud-ink) !important;
}

.hnud__product-card.is-active strong {
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
}

.hnud__product-card.is-active small {
  color: rgba(255, 255, 255, 0.74);
}

.hnud__group {
  display: grid;
  gap: 8px;
}

.hnud__group label {
  font-size: 0.86rem;
  font-weight: 900;
}

.hnud__group input,
.hnud__group select,
.hnud__group textarea {
  background: #fff;
  border: 1px solid var(--hnud-line);
  border-radius: 10px;
  color: var(--hnud-ink);
  min-height: 46px;
  padding: 10px 12px;
  width: 100%;
}

.hnud__group input[type='color'] {
  padding: 4px;
}

.hnud__segmented {
  background: var(--hnud-soft);
  border-radius: 12px;
  display: grid;
  gap: 6px;
  grid-template-columns: 1fr 1fr;
  padding: 6px;
}

.hnud__segmented label {
  cursor: pointer;
}

.hnud__segmented input {
  position: absolute;
  opacity: 0;
}

.hnud__segmented span {
  align-items: center;
  border-radius: 9px;
  display: flex;
  font-weight: 900;
  justify-content: center;
  min-height: 42px;
}

.hnud__segmented input:checked + span {
  background: #fff !important;
  box-shadow: 0 8px 18px rgba(23, 32, 51, 0.08);
  color: var(--hnud-ink) !important;
}

.hnud__swatches {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hnud__swatch {
  align-items: center;
  display: flex;
  gap: 11px;
  min-height: 62px;
  padding: 13px 14px;
  position: relative;
  text-align: left;
  touch-action: manipulation;
  user-select: none;
}

.hnud__swatch span,
.hnud__swatch strong {
  pointer-events: none;
}

.hnud__swatch span {
  background: var(--swatch-color);
  border: 1px solid rgba(23, 32, 51, 0.18);
  border-radius: 999px;
  flex: 0 0 auto;
  height: 28px;
  width: 28px;
}

.hnud__swatch strong {
  font-size: 0.86rem;
}

.hnud__swatch.is-active {
  background: var(--hnud-hover);
  color: var(--hnud-ink) !important;
  box-shadow: inset 0 0 0 1px var(--hnud-gold-soft);
}

.hnud__custom-color {
  align-items: center;
  background: #fff;
  border: 1px solid var(--hnud-line);
  color: var(--hnud-ink);
  cursor: pointer;
  display: grid;
  font-size: 0.86rem;
  font-weight: 900;
  gap: 12px;
  grid-column: 1 / -1;
  grid-template-columns: 1fr 72px;
  min-height: 62px;
  padding: 10px 14px;
}

.hnud__custom-color:hover,
.hnud__custom-color:focus-within,
.hnud__custom-color.is-active {
  background: var(--hnud-hover);
  border-color: var(--hnud-gold);
  box-shadow: 0 10px 24px rgba(184, 138, 58, 0.12);
}

.hnud__custom-color input {
  background: transparent;
  border: 0;
  cursor: pointer;
  height: 42px;
  min-height: 42px;
  padding: 0;
  width: 72px;
}

.hnud__swatch:hover strong,
.hnud__swatch.is-active strong,
.hnud__tool-grid button:hover,
.hnud__secondary:hover,
.hnud__toolbar-actions button:hover {
  color: var(--hnud-ink) !important;
}

.hnud__sizes {
  border: 1px solid var(--hnud-line);
  border-radius: 16px;
  overflow: hidden;
}

.hnud__size-row {
  align-items: center;
  border-bottom: 1px solid var(--hnud-line);
  display: grid;
  grid-template-columns: 1fr 92px;
  gap: 10px;
  padding: 9px 12px;
}

.hnud__size-row:last-child {
  border-bottom: 0;
}

.hnud__size-row input {
  min-height: 36px;
  padding: 6px 8px;
  text-align: center;
}

.hnud__grid,
.hnud__tool-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hnud__tool-grid button,
.hnud__secondary {
  font-weight: 900;
  min-height: 44px;
  padding: 10px;
}

.hnud__preview-card {
  display: grid;
  grid-template-rows: auto minmax(560px, 1fr);
  min-height: 720px;
  overflow: hidden;
}

.hnud__sr-only {
  height: 1px;
  left: -10000px;
  overflow: hidden;
  position: absolute;
  top: auto;
  width: 1px;
}

.hnud__toolbar,
.hnud__bottom-bar {
  align-items: center;
  display: flex;
  gap: 14px;
  justify-content: space-between;
  padding: 16px 18px;
}

.hnud__toolbar {
  border-bottom: 1px solid var(--hnud-line);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  overflow: visible;
  row-gap: 10px;
}

.hnud__toolbar > div:first-child {
  grid-column: 1 / -1;
  min-width: 0;
}

.hnud__toolbar > div:first-child span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hnud__toolbar > div:first-child small {
  display: block;
  line-height: 1.35;
  max-width: none;
}

.hnud__bottom-bar {
  border-top: 1px solid var(--hnud-line);
}

.hnud__toolbar span,
.hnud__bottom-bar strong {
  display: block;
  font-weight: 900;
}

.hnud__toolbar-actions {
  align-items: center;
  flex: 0 0 auto;
  display: flex;
  gap: 8px;
  white-space: nowrap;
}

.hnud__view-switcher {
  background: var(--hnud-soft);
  border-radius: 12px;
  display: flex;
  flex: 0 0 auto;
  gap: 4px;
  padding: 5px;
}

.hnud__view-switcher button {
  background: transparent;
  border: 0;
  border-radius: 9px;
  color: var(--hnud-muted);
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 900;
  min-height: 34px;
  padding: 7px 12px;
}

.hnud__view-switcher button.is-active {
  background: #fff !important;
  color: var(--hnud-ink) !important;
  box-shadow: 0 8px 18px rgba(23, 32, 51, 0.08);
}

.hnud__view-switcher button:hover,
.hnud__view-switcher button:focus-visible {
  background: rgba(255, 255, 255, 0.74) !important;
  color: var(--hnud-ink) !important;
  outline: 2px solid transparent;
}

.hnud__toolbar-actions button {
  min-height: 38px;
  min-width: 38px;
  padding: 7px 11px;
}

.hnud__canvas-shell {
  align-items: center;
  background:
    linear-gradient(rgba(23, 32, 51, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 32, 51, 0.045) 1px, transparent 1px),
    #f8fafc;
  background-size: 34px 34px;
  display: flex;
  justify-content: center;
  overflow: hidden;
  padding: 30px 28px;
  position: relative;
}

.hnud__canvas-note {
  display: none;
}

.hnud__canvas {
  align-items: center;
  display: flex;
  height: 640px;
  justify-content: center;
  transition: transform 0.2s ease;
  width: 640px;
}

.hnud__garment {
  --garment-color: #16233f;
  --garment-image: none;
  background-image: linear-gradient(115deg, rgba(255, 255, 255, 0.14), transparent 32%);
  background-color: var(--garment-color);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain, auto;
  border-radius: 34px 34px 24px 24px;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.16), 0 34px 60px rgba(23, 32, 51, 0.28);
  height: 510px;
  position: relative;
  width: 380px;
}

.hnud__garment.has-photo {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  box-shadow: 0 18px 44px rgba(23, 32, 51, 0.18);
}

.hnud__garment.has-raster {
  background-color: transparent;
  background-image: none;
  background-blend-mode: normal;
}

.hnud__garment.has-svg {
  background-color: transparent;
  background-image: none;
}

.hnud__garment.has-photo .hnud__neck {
  display: none;
}

.hnud__garment.has-photo::before {
  display: none;
}

.hnud__garment.has-photo::after {
  display: none;
}

.hnud__garment.has-svg::before {
  display: none;
}

.hnud__garment-art {
  align-items: center;
  bottom: 0;
  color: var(--garment-color);
  display: flex;
  justify-content: center;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

.hnud__garment-art img,
.hnud__garment-art svg {
  display: block;
  height: 100%;
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  width: 100%;
}

.hnud__garment-art .hnud__inline-svg {
  color: var(--garment-color);
}

.hnud__garment::before,
.hnud__garment::after {
  background: var(--garment-color);
  content: '';
  position: absolute;
  top: 44px;
  width: 76px;
  height: 242px;
  z-index: -1;
}

.hnud__garment::before {
  border-radius: 32px 12px 24px 24px;
  left: -58px;
  transform: rotate(7deg);
}

.hnud__garment::after {
  border-radius: 12px 32px 24px 24px;
  right: -58px;
  transform: rotate(-7deg);
}

.hnud__neck {
  background: rgba(255, 255, 255, 0.34);
  border-radius: 0 0 48px 48px;
  height: 74px;
  left: 50%;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 126px;
  z-index: 2;
}

.hnud__print-zone {
  border: 0;
  border-radius: 0;
  height: 100%;
  left: 0;
  overflow: visible;
  position: absolute;
  top: 0;
  transform: none;
  width: 100%;
  z-index: 3;
}

.hnud__garment.has-photo .hnud__print-zone {
  border-color: transparent;
}

.hnud__layer {
  -webkit-appearance: none;
  appearance: none;
  background: transparent !important;
  background-color: transparent !important;
  border: 1px solid transparent;
  color: var(--hnud-gold);
  cursor: grab;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  left: 50%;
  line-height: 1.12;
  min-height: 28px;
  min-width: 34px;
  padding: 2px 5px;
  position: absolute;
  text-align: center;
  top: 50%;
  transform-origin: center;
  user-select: none;
  white-space: pre-wrap;
  z-index: 4;
}

.hnud__layer--text {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  max-height: none;
  max-width: none;
  overflow-wrap: normal;
  white-space: pre;
  width: max-content;
}

.hnud__layer:active {
  cursor: grabbing;
}

.hnud__layer.is-selected {
  background: transparent !important;
  background-color: transparent !important;
  border-color: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 0 2px rgba(184, 138, 58, 0.78), 0 10px 22px rgba(23, 32, 51, 0.18);
}

.hnud .hnud__layer,
.hnud .hnud__layer:hover,
.hnud .hnud__layer:focus,
.hnud .hnud__layer:focus-visible,
.hnud .hnud__layer:active,
.hnud .hnud__layer.is-selected,
.hnud .hnud__layer.is-selected:hover,
.hnud .hnud__layer.is-selected:focus,
.hnud .hnud__layer.is-selected:focus-visible,
.hnud .hnud__layer.is-selected:active {
  background-color: transparent !important;
  border-color: transparent;
  color: inherit;
  outline: 0 !important;
}

.hnud .hnud__layer.is-selected,
.hnud .hnud__layer.is-selected:hover,
.hnud .hnud__layer.is-selected:focus,
.hnud .hnud__layer.is-selected:focus-visible,
.hnud .hnud__layer.is-selected:active {
  border-color: rgba(255, 255, 255, 0.92);
}

.hnud .hnud__layer--text,
.hnud .hnud__layer--text:hover,
.hnud .hnud__layer--text:focus,
.hnud .hnud__layer--text:focus-visible,
.hnud .hnud__layer--text:active,
.hnud .hnud__layer--text.is-selected,
.hnud .hnud__layer--text.is-selected:hover,
.hnud .hnud__layer--text.is-selected:focus,
.hnud .hnud__layer--text.is-selected:focus-visible,
.hnud .hnud__layer--text.is-selected:active {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
}

.hnud__layer--image {
  background: transparent !important;
  height: 112px;
  max-height: 100%;
  max-width: 100%;
  overflow: visible;
  padding: 0;
  width: 140px;
}

.hnud__layer--image .hnud__layer-content {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  width: 100%;
}

.hnud__layer-image {
  display: block;
  height: 100%;
  image-rendering: auto;
  max-height: none;
  max-width: none;
  object-fit: contain;
  pointer-events: none;
  transform: translateZ(0);
  user-select: none;
  width: 100%;
}

.hnud.is-dragging-layer .hnud__layer-image,
.hnud.is-resizing-layer .hnud__layer-image,
.hnud.is-rotating-layer .hnud__layer-image {
  will-change: transform;
}

.hnud__garment[data-method='Embroidered'] .hnud__layer {
  filter: drop-shadow(1px 1px 0 rgba(255, 255, 255, 0.32));
}

.hnud__garment--shirt .hnud__neck,
.hnud__garment--blazer .hnud__neck {
  background: rgba(255, 255, 255, 0.74);
  clip-path: polygon(0 0, 50% 100%, 100% 0, 100% 45%, 50% 88%, 0 45%);
}

.hnud__garment--t-shirt {
  border-radius: 24px 24px 18px 18px;
}

.hnud__garment--view-back .hnud__neck {
  opacity: 0.18;
}

.hnud__garment--view-left,
.hnud__garment--view-right {
  width: 230px;
}

.hnud__garment--view-left::before,
.hnud__garment--view-right::after {
  display: none;
}

.hnud__garment--dress {
  border-radius: 90px 90px 28px 28px;
  clip-path: polygon(21% 0, 79% 0, 94% 100%, 6% 100%);
}

.hnud__garment--cap {
  border-radius: 180px 180px 46px 46px;
  height: 220px;
  margin-top: 120px;
}

.hnud__garment--cap::before {
  border-radius: 0 0 100px 100px;
  height: 60px;
  left: 55px;
  top: 188px;
  transform: none;
  width: 210px;
}

.hnud__garment--cap::after,
.hnud__garment--scarf::before,
.hnud__garment--scarf::after,
.hnud__garment--tie::before,
.hnud__garment--tie::after {
  display: none;
}

.hnud__garment--cap .hnud__neck,
.hnud__garment--scarf .hnud__neck,
.hnud__garment--tie .hnud__neck {
  display: none;
}

.hnud__garment--scarf {
  border-radius: 28px;
  height: 430px;
  width: 190px;
}

.hnud__garment--tie {
  clip-path: polygon(50% 0, 82% 18%, 62% 100%, 38% 100%, 18% 18%);
  height: 430px;
  width: 180px;
}

.hnud__checkout {
  align-self: start;
  display: grid;
  gap: 12px;
  padding: 18px;
  position: sticky;
  top: var(--hnud-sticky-top);
}

.hnud__price-line {
  align-items: center;
  border-bottom: 1px solid var(--hnud-line);
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
}

.hnud__price-line span {
  color: var(--hnud-muted);
}

.hnud__price-line strong {
  font-weight: 900;
}

.hnud__price-line--total {
  border-bottom: 0;
  font-size: 1.1rem;
}

.hnud__checkout p {
  margin: 0;
}

.hnud__submit {
  background: #172033 !important;
  border: 0;
  border-radius: 12px;
  color: #fff !important;
  cursor: pointer;
  font-weight: 900;
  min-height: 52px;
  padding: 13px 18px;
}

.hnud__submit:hover,
.hnud__submit:focus-visible,
.hnud__cartbar button:hover,
.hnud__cartbar button:focus-visible {
  background: #0f172a !important;
  color: #fff !important;
  outline: 2px solid transparent;
}

.hnud__submit:disabled {
  cursor: wait;
  opacity: 0.65;
}

.hnud__status {
  color: #0f7a45;
  font-weight: 800;
  margin: 0;
  min-height: 22px;
}

.hnud__status--error {
  color: #b42318;
}

.hnud .hnud__tab,
.hnud .hnud__tab:hover,
.hnud .hnud__tab:focus,
.hnud .hnud__tab:focus-visible,
.hnud .hnud__tab:active,
.hnud .hnud__tool-grid button,
.hnud .hnud__tool-grid button:hover,
.hnud .hnud__tool-grid button:focus,
.hnud .hnud__tool-grid button:focus-visible,
.hnud .hnud__tool-grid button:active,
.hnud .hnud__secondary,
.hnud .hnud__secondary:hover,
.hnud .hnud__secondary:focus,
.hnud .hnud__secondary:focus-visible,
.hnud .hnud__secondary:active,
.hnud .hnud__toolbar-actions button,
.hnud .hnud__toolbar-actions button:hover,
.hnud .hnud__toolbar-actions button:focus,
.hnud .hnud__toolbar-actions button:focus-visible,
.hnud .hnud__toolbar-actions button:active {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff !important;
  color: var(--hnud-ink) !important;
  text-decoration: none !important;
}

.hnud .hnud__tab.is-active,
.hnud .hnud__tab.is-active:hover,
.hnud .hnud__tab.is-active:focus,
.hnud .hnud__tab.is-active:focus-visible,
.hnud .hnud__tab.is-active:active {
  background: var(--hnud-ink) !important;
  border-color: transparent !important;
  color: #fff !important;
}

.hnud .hnud__tab.is-active span {
  color: var(--hnud-gold) !important;
}

.hnud .hnud__view-switcher button,
.hnud .hnud__view-switcher button:hover,
.hnud .hnud__view-switcher button:focus,
.hnud .hnud__view-switcher button:focus-visible,
.hnud .hnud__view-switcher button:active {
  -webkit-appearance: none;
  appearance: none;
  background: transparent !important;
  border-color: transparent !important;
  color: var(--hnud-muted) !important;
  text-decoration: none !important;
}

.hnud .hnud__view-switcher button.is-active,
.hnud .hnud__view-switcher button.is-active:hover,
.hnud .hnud__view-switcher button.is-active:focus,
.hnud .hnud__view-switcher button.is-active:focus-visible,
.hnud .hnud__view-switcher button.is-active:active,
.hnud .hnud__segmented input:checked + span,
.hnud .hnud__segmented input:focus + span,
.hnud .hnud__segmented input:active + span {
  background: #fff !important;
  border-color: transparent !important;
  color: var(--hnud-ink) !important;
}

.hnud .hnud__product-card:hover,
.hnud .hnud__product-card:focus,
.hnud .hnud__product-card:focus-visible,
.hnud .hnud__product-card:active,
.hnud .hnud__swatch:hover,
.hnud .hnud__swatch:focus,
.hnud .hnud__swatch:focus-visible,
.hnud .hnud__swatch:active {
  background: var(--hnud-hover) !important;
  border-color: var(--hnud-gold) !important;
  color: var(--hnud-ink) !important;
}

.hnud .hnud__product-card.is-active,
.hnud .hnud__product-card.is-active:hover,
.hnud .hnud__product-card.is-active:focus,
.hnud .hnud__product-card.is-active:focus-visible,
.hnud .hnud__product-card.is-active:active {
  background: var(--hnud-ink) !important;
  border-color: var(--hnud-ink) !important;
  color: #fff !important;
}

.hnud .hnud__swatch.is-active,
.hnud .hnud__swatch.is-active:hover,
.hnud .hnud__swatch.is-active:focus,
.hnud .hnud__swatch.is-active:focus-visible,
.hnud .hnud__swatch.is-active:active {
  background: var(--hnud-hover) !important;
  border-color: var(--hnud-gold) !important;
  color: var(--hnud-ink) !important;
}

.hnud,
.hnud *,
.hnud *::before,
.hnud *::after {
  border-radius: 0 !important;
}

.hnud {
  --hnud-ink: var(--e-global-color-primary, #000000);
  --hnud-muted: var(--e-global-color-text, #696969);
  --hnud-gold: var(--e-global-color-accent, #ababab);
  --hnud-gold-soft: rgba(171, 171, 171, 0.16);
  --hnud-paper: #ffffff;
  --hnud-surface: var(--e-global-color-secondary, #ffffff);
  --hnud-line: rgba(0, 0, 0, 0.14);
  --hnud-soft: #eeeeee;
  --hnud-hover: #f7f7f7;
  --hnud-font-primary: var(--e-global-typography-primary-font-family, "Playfair Display"), Georgia, serif;
  --hnud-font-primary-weight: var(--e-global-typography-primary-font-weight, 600);
  --hnud-font-secondary: var(--e-global-typography-secondary-font-family, "Lora"), Georgia, serif;
  --hnud-font-secondary-weight: var(--e-global-typography-secondary-font-weight, 400);
  --hnud-font-text: var(--e-global-typography-text-font-family, "Lora"), Georgia, serif;
  --hnud-font-text-weight: var(--e-global-typography-text-font-weight, 400);
  --hnud-font-accent: var(--e-global-typography-accent-font-family, "Roboto"), Arial, sans-serif;
  --hnud-font-accent-weight: var(--e-global-typography-accent-font-weight, 500);
  background: #fff;
  color: var(--hnud-ink);
  font-family: var(--hnud-font-text);
  font-weight: var(--hnud-font-text-weight);
  max-width: none;
  padding: 0;
}

.hnud__studio {
  background: #fff;
  border: 1px solid var(--hnud-line);
  display: grid;
  gap: 0;
  grid-template-columns: 76px 390px minmax(620px, 1fr) 252px;
  min-height: 820px;
}

.hnud__tabs,
.hnud__panel,
.hnud__preview-card,
.hnud__checkout {
  border: 0;
  box-shadow: none;
}

.hnud__tabs {
  background: #050505;
  gap: 0;
  grid-template-rows: repeat(4, 96px) 1fr;
  min-height: 820px;
  padding: 0;
  top: var(--hnud-sticky-top);
}

.hnud .hnud__tab,
.hnud .hnud__tab:hover,
.hnud .hnud__tab:focus,
.hnud .hnud__tab:focus-visible,
.hnud .hnud__tab:active {
  background: #050505 !important;
  border: 0;
  border-bottom: 1px solid #222;
  color: #fff !important;
  display: flex;
  flex-direction: column;
  font-size: 12px;
  font-weight: 800;
  justify-content: center;
  letter-spacing: 0.04em;
  min-height: 96px;
  padding: 12px 8px;
  text-transform: uppercase;
}

.hnud .hnud__tab span {
  color: #9ca3af !important;
  font-size: 11px;
  margin-bottom: 8px;
}

.hnud .hnud__tab.is-active,
.hnud .hnud__tab.is-active:hover,
.hnud .hnud__tab.is-active:focus,
.hnud .hnud__tab.is-active:focus-visible,
.hnud .hnud__tab.is-active:active {
  background: #fff !important;
  color: var(--hnud-ink) !important;
}

.hnud .hnud__tab.is-active span {
  color: var(--hnud-gold) !important;
}

.hnud__panel {
  background: #fff;
  border-right: 1px solid var(--hnud-line);
  box-sizing: border-box;
  max-height: none;
  min-height: 820px;
  overflow-y: auto;
  padding: 28px 22px 72px;
}

.hnud__pane.is-active {
  gap: 20px;
}

.hnud__section-title span {
  color: var(--hnud-gold);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.hnud__section-title h3 {
  color: var(--hnud-ink);
  font-size: 24px;
  line-height: 1.1;
  margin: 0 0 6px;
}

.hnud__section-title p {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.45;
}

.hnud__product-grid {
  gap: 0;
  grid-template-columns: 1fr 1fr;
}

.hnud__product-card {
  border: 1px solid var(--hnud-line);
  min-height: 92px;
  padding: 12px;
}

.hnud__product-card.is-active,
.hnud__product-card.is-active:hover,
.hnud__product-card.is-active:focus {
  background: var(--hnud-ink) !important;
  border-color: var(--hnud-ink) !important;
}

.hnud__pane[data-hnud-pane='product'] > .hnud__group,
.hnud__pane[data-hnud-pane='details'] > .hnud__group,
.hnud__pane[data-hnud-pane='details'] > .hnud__grid,
.hnud__pane[data-hnud-pane='images'] > .hnud__group,
.hnud__pane[data-hnud-pane='text'] > .hnud__group,
.hnud__pane[data-hnud-pane='text'] > .hnud__grid {
  background: #e9eaec;
  border: 1px solid #e2e4e8;
  padding: 16px;
}

.hnud__group label,
.hnud__size-row span {
  color: #414956;
  font-size: 15px;
  font-weight: 800;
}

.hnud__group input,
.hnud__group select,
.hnud__group textarea {
  border: 1px solid #c8ccd3;
  min-height: 42px;
}

.hnud__segmented {
  background: transparent;
  gap: 10px;
  padding: 0;
}

.hnud__segmented span {
  background: #f4f5f7;
  border: 1px solid #d8dbe1;
  color: #666d78;
  min-height: 62px;
}

.hnud__segmented input:checked + span {
  background: #fff !important;
  border-color: var(--hnud-ink) !important;
  box-shadow: none;
  color: var(--hnud-ink) !important;
}

.hnud__swatches {
  align-items: center;
  background: #e9eaec;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 12px 0 0;
}

.hnud__swatch {
  background: transparent !important;
  border: 0;
  box-shadow: none !important;
  height: 28px;
  min-height: 28px;
  padding: 0;
  width: 28px;
}

.hnud__swatch span {
  box-shadow: 0 2px 5px rgba(17, 19, 24, 0.24);
  height: 28px;
  width: 28px;
}

.hnud__swatch strong {
  clip: rect(0 0 0 0);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.hnud__swatch.is-active span {
  outline: 3px solid #fff;
  box-shadow: 0 0 0 1px var(--hnud-ink), 0 2px 5px rgba(17, 19, 24, 0.24);
}

.hnud__custom-color {
  background: #fff;
  border-color: #d8dbe1;
  grid-template-columns: 1fr 84px;
  margin-top: 6px;
}

.hnud__sizes {
  border: 0;
  display: grid;
  gap: 10px 20px;
  grid-template-columns: 1fr 1fr;
}

.hnud__size-row {
  border: 0;
  grid-template-columns: 48px 1fr;
  padding: 0;
}

.hnud__size-row input {
  background: #fff;
  border: 1px solid #c8ccd3;
  min-height: 40px;
}

.hnud__preview-card {
  background: #fff;
  display: grid;
  grid-template-rows: 58px minmax(720px, 1fr);
  min-height: 820px;
  overflow: hidden;
  position: relative;
}

.hnud__toolbar {
  background: #fff;
  border-bottom: 1px solid var(--hnud-line);
  display: grid;
  align-items: center;
  grid-template-columns: minmax(260px, 1fr) auto auto;
  gap: 14px;
  padding: 10px 16px;
}

.hnud__toolbar > div:first-child {
  grid-column: auto;
  min-width: 0;
}

.hnud__toolbar span {
  font-size: 16px;
  line-height: 1.15;
}

.hnud__toolbar small {
  font-size: 12px;
}

.hnud__view-switcher {
  background: #e9ecef;
  gap: 0;
  padding: 0;
}

.hnud__view-switcher button {
  min-height: 38px;
  padding: 8px 16px;
}

.hnud .hnud__view-switcher button.is-active,
.hnud .hnud__view-switcher button.is-active:hover,
.hnud .hnud__view-switcher button.is-active:focus,
.hnud .hnud__view-switcher button.is-active:focus-visible {
  background: #fff !important;
  box-shadow: none;
}

.hnud__canvas-shell {
  background: #fff;
  display: grid;
  min-height: 720px;
  overflow: hidden;
  padding: 54px 32px 38px;
  place-items: center;
}

.hnud__canvas-shell::before {
  color: #5d6470;
  content: 'Create with ease! FREE design review on every order';
  font-size: 16px;
  left: 0;
  position: absolute;
  right: 0;
  text-align: center;
  top: 18px;
  z-index: 2;
}

.hnud__canvas {
  background: #fff;
  height: min(76vh, 780px);
  min-height: 650px;
  overflow: visible;
  width: min(62vw, 820px);
}

.hnud__garment {
  height: min(70vh, 720px);
  width: min(44vw, 560px);
}

.hnud__garment.has-photo {
  background: transparent;
}

.hnud__print-zone {
  overflow: hidden;
  touch-action: none;
}

.hnud__garment.has-photo .hnud__print-zone {
  -webkit-mask-image: var(--garment-image);
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-image: var(--garment-image);
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
}

.hnud__layer {
  transition: box-shadow 0.14s ease, opacity 0.14s ease;
  will-change: transform;
}

.hnud.is-dragging-layer .hnud__layer,
.hnud.is-resizing-layer .hnud__layer,
.hnud.is-rotating-layer .hnud__layer {
  transition: none;
}

.hnud__layer-content {
  display: block;
  pointer-events: none;
}

.hnud__layer.is-selected {
  border-color: rgba(75, 85, 99, 0.65);
  box-shadow: 0 0 0 1px rgba(75, 85, 99, 0.32);
}

.hnud__layer.is-selected::before {
  border: 1px dashed rgba(75, 85, 99, 0.55);
  bottom: -7px;
  content: '';
  left: -7px;
  pointer-events: none;
  position: absolute;
  right: -7px;
  top: -7px;
}

.hnud__layer.is-selected::after {
  display: none;
}

.hnud__layer-handle {
  align-items: center;
  background: #4b5563;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.28);
  display: none;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 900;
  height: 22px;
  justify-content: center;
  line-height: 1;
  pointer-events: auto;
  position: absolute;
  width: 22px;
  z-index: 8;
}

.hnud__layer.is-selected .hnud__layer-handle {
  display: flex;
}

.hnud__layer-handle--scale {
  bottom: -18px;
  cursor: nwse-resize;
  right: -18px;
}

.hnud__layer-handle--scale::before {
  content: '↘';
}

.hnud__layer-handle--rotate {
  cursor: grab;
  left: -18px;
  top: -18px;
}

.hnud__layer-handle--rotate::before {
  content: '↻';
}

.hnud__layer-handle--delete {
  background: #ef4444;
  cursor: pointer;
  right: -18px;
  top: -18px;
}

.hnud__layer-handle--delete::before {
  content: '×';
  font-size: 18px;
}

.hnud.is-rotating-layer .hnud__layer-handle--rotate {
  cursor: grabbing;
}

.hnud.is-exporting-preview .hnud__layer,
.hnud.is-exporting-preview .hnud__layer:hover,
.hnud.is-exporting-preview .hnud__layer:focus,
.hnud.is-exporting-preview .hnud__layer:active,
.hnud.is-exporting-preview .hnud__layer.is-selected {
  background: transparent !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
  outline: 0 !important;
}

.hnud.is-exporting-preview .hnud__layer::before,
.hnud.is-exporting-preview .hnud__layer::after,
.hnud.is-exporting-preview .hnud__layer.is-selected::before,
.hnud.is-exporting-preview .hnud__layer.is-selected::after,
.hnud.is-exporting-preview .hnud__layer-handle {
  display: none !important;
}

.hnud__bottom-bar {
  display: none !important;
}

.hnud__bottom-bar {
  background: rgba(17, 19, 24, 0.92);
  bottom: 74px;
  color: #fff;
  gap: 14px;
  left: 14px;
  padding: 10px 12px;
  position: absolute;
  z-index: 5;
}

.hnud__bottom-bar span {
  color: rgba(255, 255, 255, 0.68);
}

.hnud__bottom-bar strong {
  color: #fff;
  font-size: 12px;
}

.hnud__bottom-bar .hnud__toolbar-actions button {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #fff !important;
  min-height: 32px;
}

.hnud__checkout {
  align-self: stretch;
  background: #fff;
  border-left: 1px solid var(--hnud-line);
  gap: 16px;
  min-height: 820px;
  padding: 22px 18px;
  position: sticky;
  top: var(--hnud-sticky-top);
}

.hnud__price-line {
  padding: 12px 0;
}

.hnud__price-line strong {
  color: var(--hnud-ink);
  font-size: 17px;
}

.hnud__submit {
  background: var(--hnud-ink) !important;
  border-bottom: 0 !important;
  color: #fff !important;
  font-size: 15px;
  letter-spacing: 0.01em;
  margin-bottom: 20px;
  min-height: 50px;
  position: relative;
}

.hnud__submit::after {
  background: var(--hnud-line);
  bottom: -20px;
  content: '';
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
}

.hnud__submit:hover,
.hnud__submit:focus-visible {
  background: #2f343c !important;
}

.hnud {
  overflow-x: clip;
  width: 100%;
}

.hnud__studio {
  grid-template-columns: 76px minmax(292px, 340px) minmax(0, 1fr) minmax(176px, 196px);
  margin: 0 auto;
  max-width: min(1480px, 100%);
  min-height: 720px;
  width: 100%;
}

.hnud__tabs,
.hnud__panel,
.hnud__preview-card,
.hnud__checkout {
  min-width: 0;
}

.hnud__tabs {
  height: auto;
  grid-template-rows: repeat(4, 74px);
  max-height: min(520px, calc(100vh - var(--hnud-sticky-top) - 18px));
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  position: sticky;
  scrollbar-width: thin;
  top: var(--hnud-sticky-top);
}

.hnud .hnud__tab,
.hnud .hnud__tab:hover,
.hnud .hnud__tab:focus,
.hnud .hnud__tab:focus-visible,
.hnud .hnud__tab:active {
  font-size: 11px;
  min-height: 74px;
  padding: 10px 6px;
}

.hnud__panel {
  min-height: 720px;
  padding: 22px 18px;
}

.hnud__pane.is-active {
  gap: 16px;
}

.hnud__section-title h3 {
  font-size: 22px;
}

.hnud__section-title p {
  font-size: 13px;
}

.hnud__product-card {
  min-height: 84px;
  padding: 10px;
}

.hnud__pane[data-hnud-pane='product'] > .hnud__group,
.hnud__pane[data-hnud-pane='details'] > .hnud__group,
.hnud__pane[data-hnud-pane='details'] > .hnud__grid,
.hnud__pane[data-hnud-pane='images'] > .hnud__group,
.hnud__pane[data-hnud-pane='text'] > .hnud__group,
.hnud__pane[data-hnud-pane='text'] > .hnud__grid {
  padding: 14px;
}

.hnud__segmented span {
  min-height: 54px;
}

.hnud__swatches {
  gap: 8px;
}

.hnud__swatch,
.hnud__swatch span {
  height: 26px;
  min-height: 26px;
  width: 26px;
}

.hnud__preview-card {
  grid-template-rows: auto minmax(540px, 1fr);
  min-height: 720px;
}

.hnud__toolbar {
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 10px;
  min-width: 0;
  padding: 9px 14px;
}

.hnud__toolbar > div:first-child {
  min-width: 0;
}

.hnud__toolbar span {
  font-size: 15px;
}

.hnud__toolbar small {
  font-size: 12px;
}

.hnud__view-switcher {
  max-width: 100%;
}

.hnud__view-switcher button {
  font-size: 12px;
  min-height: 36px;
  padding: 7px 12px;
}

.hnud__toolbar-actions button {
  min-height: 36px;
  min-width: 36px;
  padding: 6px 10px;
}

.hnud__canvas-shell {
  min-height: 640px;
  padding: 44px 24px 28px;
  place-items: start center;
}

.hnud__canvas-shell::before {
  font-size: 14px;
  top: 16px;
}

.hnud__canvas {
  height: clamp(500px, 60vh, 640px);
  max-width: 100%;
  min-height: 520px;
  width: 720px;
}

.hnud__garment {
  height: min(92%, 650px);
  max-width: 72%;
  width: 500px;
}

.hnud__garment--view-left,
.hnud__garment--view-right {
  max-width: 48%;
  width: 310px;
}

.hnud__garment--cap {
  height: min(46%, 280px);
  max-width: 70%;
  width: 460px;
}

.hnud__garment--scarf,
.hnud__garment--tie {
  height: min(88%, 620px);
  max-width: 36%;
  width: 260px;
}

.hnud__checkout {
  align-self: start;
  box-sizing: border-box;
  gap: 14px;
  height: auto;
  max-height: min(520px, calc(100vh - var(--hnud-sticky-top) - 18px));
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 18px 12px 72px;
  position: sticky;
  scrollbar-width: thin;
  top: var(--hnud-sticky-top);
}

.hnud__tabs::-webkit-scrollbar,
.hnud__checkout::-webkit-scrollbar {
  width: 6px;
}

.hnud__tabs::-webkit-scrollbar-thumb,
.hnud__checkout::-webkit-scrollbar-thumb {
  background: rgba(17, 19, 24, 0.28);
}

.hnud__price-line {
  gap: 10px;
  min-width: 0;
  padding: 10px 0;
}

.hnud__price-line span {
  min-width: 0;
}

.hnud__price-line strong {
  font-size: 15px;
  text-align: right;
  white-space: nowrap;
}

.hnud__checkout p {
  font-size: 12px;
  line-height: 1.35;
}

.hnud__submit {
  border-bottom: 0 !important;
  margin-bottom: 20px;
  position: relative;
  width: 100%;
}

.hnud__status--success {
  color: #0f7a45;
}

.hnud__status--success::before {
  content: none;
}

.hnud__toast {
  align-items: center;
  background: rgba(0, 0, 0, 0.96);
  border: 2px solid var(--hnud-gold);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.36);
  color: #fff;
  display: flex;
  font-size: 18px;
  font-weight: 900;
  gap: 12px;
  justify-content: center;
  left: 50%;
  line-height: 1.4;
  margin: 0;
  max-width: min(620px, calc(100vw - 32px));
  min-height: 0;
  opacity: 0;
  padding: 22px 28px;
  position: fixed;
  text-align: center;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.96);
  transition: opacity 0.18s ease, transform 0.18s ease;
  width: min(620px, calc(100vw - 32px));
  z-index: 2147483647;
}

.hnud__toast.is-visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.hnud__toast-icon {
  align-items: center;
  background: var(--hnud-gold);
  color: var(--hnud-ink);
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 22px;
  font-weight: 900;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.hnud__brand strong,
.hnud__section-title h3,
.hnud__product-card strong,
.hnud__price-line strong,
.hnud__cartbar strong,
.hnud__bottom-bar strong,
.hnud__preview-card h1,
.hnud__preview-card h2,
.hnud__preview-card h3 {
  font-family: var(--hnud-font-primary);
  font-weight: var(--hnud-font-primary-weight);
}

.hnud__section-title p,
.hnud__checkout p,
.hnud__bottom-bar span,
.hnud__toolbar small,
.hnud__swatch strong,
.hnud__product-card small {
  font-family: var(--hnud-font-text);
  font-weight: var(--hnud-font-text-weight);
}

.hnud button,
.hnud__tab,
.hnud__deal,
.hnud__section-title span,
.hnud__group label,
.hnud__price-line span,
.hnud__product-card span,
.hnud__swatch span {
  font-family: var(--hnud-font-accent);
  font-weight: var(--hnud-font-accent-weight);
}

.hnud input,
.hnud select,
.hnud textarea {
  font-family: var(--hnud-font-text);
  font-weight: var(--hnud-font-text-weight);
}

@media (max-width: 1180px) {
  .hnud__studio {
    grid-template-columns: 104px minmax(300px, 380px) 1fr;
  }

  .hnud__checkout {
    grid-column: 2 / -1;
    position: static;
  }
}

@media (max-width: 860px) {
  .hnud {
    --hnud-sticky-top: 24px;
  }

  .hnud__appbar,
  .hnud__toolbar,
  .hnud__bottom-bar {
    align-items: stretch;
    flex-direction: column;
  }

  .hnud__deal {
    text-align: left;
  }

  .hnud__cartbar {
    flex-wrap: wrap;
  }

  .hnud__studio {
    grid-template-columns: 1fr;
  }

  .hnud__tabs {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: none;
    min-height: 0;
    position: static;
  }

  .hnud__tab {
    min-height: 48px;
  }

  .hnud__panel,
  .hnud__preview-card {
    min-height: auto;
  }

  .hnud__checkout {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .hnud {
    padding: 0 12px;
  }

  .hnud__product-grid,
  .hnud__swatches,
  .hnud__grid,
  .hnud__tool-grid {
    grid-template-columns: 1fr;
  }

  .hnud__canvas-shell {
    min-height: 450px;
    padding: 20px 8px;
  }

  .hnud__canvas {
    transform: scale(0.78);
  }
}
