:root {
    --g73-blue: #063bd8;
    --g73-orange: #ff620f;
    --g73-gray: #b9b9b9;
    --g73-light-gray: #f7f7f7;
    --g73-dark: #111111;
    --g73-radius: 12px;
}

.g73-sticker-builder,
.g73-sticker-builder * {
    box-sizing: border-box;
}

.g73-sticker-builder {
    max-width: 1280px;
    margin: 0 auto;
    padding: 22px 18px 34px;
    background: #ffffff;
    color: var(--g73-dark);
    font-family: Arial, Helvetica, sans-serif;
}

.g73-sticker-title-wrap {
    width: 60%;
    text-align: center;
}

.g73-sticker-title {
    margin: 0 0 4px;
    color: var(--g73-blue);
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.g73-sticker-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.62fr) minmax(360px, 1fr);
    gap: 14px;
    align-items: start;
}

.g73-sticker-left,
.g73-sticker-right {
    min-width: 0;
}

.g73-preview-card,
.g73-option-card,
.g73-summary-card {
    border: 2px solid var(--g73-gray);
    border-radius: var(--g73-radius);
    background: #ffffff;
}

.g73-preview-card {
    min-height: 640px;
    overflow: hidden;
}

.g73-preview-stage {
    position: relative;
    display: flex;
    min-height: 640px;
    align-items: center;
    justify-content: center;
    padding: 34px;
    background: #fff;
}

.g73-preview-empty {
    color: #b9b9b9;
    text-align: center;
    font-weight: 800;
}

.g73-preview-empty span,
.g73-preview-empty small {
    display: block;
}

.g73-preview-empty span {
    color: var(--g73-blue);
    font-size: 22px;
    margin-bottom: 8px;
}

.g73-preview-empty small {
    color: #b9b9b9;
    font-size: 13px;
}

.g73-preview-image {
    display: none;
    max-width: 100%;
    max-height: 580px;
    object-fit: contain;
}

.g73-preview-file {
    display: grid;
    place-items: center;
    gap: 8px;
    width: min(360px, 90%);
    min-height: 180px;
    padding: 28px;
    border: 2px dashed #d1d1d1;
    border-radius: 16px;
    color: #999;
    text-align: center;
}

.g73-preview-file strong {
    color: var(--g73-blue);
    font-size: 20px;
    word-break: break-word;
}

.g73-left-bottom {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 292px;
    gap: 14px;
    margin-top: 14px;
    align-items: stretch;
}

.g73-upload-zone {
    min-height: 330px;
    position: relative;
}

.g73-file-input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.g73-upload-button {
    display: inline-flex;
    width: 210px;
    min-height: 56px;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--g73-gray);
    border-radius: 10px;
    background: #ffffff;
    color: var(--g73-blue);
    font-size: 20px;
    font-weight: 900;
    cursor: pointer;
    transition: transform .15s ease, border-color .15s ease;
}

.g73-upload-button:hover,
.g73-upload-button:focus {
    border-color: var(--g73-blue);
    transform: translateY(-1px);
}

.g73-mascot {
    display: block;
    max-width: 235px;
    max-height: 300px;
    margin: 22px 0 0 82px;
    object-fit: contain;
}

.g73-mascot-placeholder {
    width: 225px;
    height: 265px;
    margin: 24px 0 0 60px;
    border-radius: 24px;
    border: 2px dashed #d7d7d7;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--g73-blue);
    font-size: 48px;
    font-weight: 900;
    opacity: .35;
}

.g73-summary-card {
    padding: 17px 18px 15px;
}

.g73-summary-card h2,
.g73-option-card h2 {
    margin: 0 0 12px;
    color: var(--g73-blue);
    font-size: 21px;
    line-height: 1.1;
    font-weight: 900;
}

.g73-summary-card dl,
.g73-analysis-list {
    margin: 0;
}

.g73-summary-card dl div,
.g73-analysis-list div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 0 0 14px;
}

.g73-summary-card dt,
.g73-analysis-list dt {
    color: #b0b0b0;
    font-size: 13px;
    font-weight: 800;
}

.g73-summary-card dd,
.g73-analysis-list dd {
    margin: 0;
    color: #777;
    font-size: 13px;
    font-weight: 700;
    text-align: right;
    overflow-wrap: anywhere;
}

.g73-summary-card dd strong {
    color: var(--g73-blue);
    white-space: nowrap;
}

.g73-summary-total {
    border-top: 1px solid #eeeeee;
    padding-top: 12px;
}

.g73-summary-total span {
    display: block;
    color: var(--g73-blue);
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 18px;
}

.g73-summary-total strong {
    display: block;
    color: var(--g73-blue);
    font-size: 19px;
    font-weight: 900;
    text-align: right;
}

.g73-sticker-right {
    display: grid;
    gap: 14px;
}

.g73-option-card {
    padding: 26px 22px 24px;
}

.g73-card-artwork-name {
    padding-top: 28px;
}

.g73-text-input,
.g73-number-input {
    width: 100%;
    height: 60px;
    border: 2px solid var(--g73-gray);
    border-radius: 11px;
    background: #ffffff;
    color: var(--g73-dark);
    font-size: 22px;
    font-weight: 800;
    padding: 10px 14px;
    outline: 0;
    transition: border-color .15s ease, box-shadow .15s ease;
}

.g73-text-input:focus,
.g73-number-input:focus {
    border-color: var(--g73-blue);
    box-shadow: 0 0 0 3px rgba(6, 59, 216, .08);
}

.g73-two-col-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 38px;
    align-items: start;
}

.g73-muted-label {
    display: block;
    margin-bottom: 10px;
    color: #b0b0b0;
    font-size: 18px;
    font-weight: 900;
}

.g73-pill-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.g73-pill {
    display: inline-flex;
    min-height: 60px;
    min-width: 135px;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--g73-gray);
    border-radius: 11px;
    background: #ffffff;
    color: var(--g73-blue);
    font-size: 18px;
    font-weight: 900;
    white-space: nowrap;
    cursor: pointer;
    padding: 0 12px;
}

.g73-pill input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.g73-pill.is-active {
    border-color: var(--g73-blue);
    box-shadow: 0 0 0 3px rgba(6, 59, 216, .08);
}

.g73-radio-row {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: center;
    margin-top: 18px;
    color: #b0b0b0;
    font-size: 18px;
    font-weight: 900;
}

.g73-radio-row span {
    color: var(--g73-blue);
    margin-right: 12px;
}

.g73-radio-row label,
.g73-order-type-card label,
.g73-agreement-row label {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    cursor: pointer;
}

.g73-radio-row input,
.g73-order-type-card input,
.g73-agreement-row input {
    width: 23px;
    height: 23px;
    accent-color: var(--g73-blue);
}

.g73-dimensions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.g73-dimensions-grid label {
    color: #a7a7a7;
    font-size: 14px;
    font-weight: 900;
}

.g73-dimensions-grid label span {
    font-size: 12px;
}

.g73-dimensions-grid input,
.g73-dimensions-grid select {
    margin-top: 6px;
}

.g73-size-select {
    appearance: auto;
}

.g73-actual-size,
.g73-field-note {
    margin: 18px 0 0;
    color: #b0b0b0;
    font-size: 13px;
    font-weight: 900;
}

.g73-actual-size strong {
    color: var(--g73-blue);
}

.g73-field-note.is-error {
    color: #d43d2a;
}

.g73-analysis-list div {
    grid-template-columns: 110px 1fr;
    margin-bottom: 14px;
}

.g73-analysis-list dd {
    text-align: left;
}

.g73-order-type-card {
    padding-top: 22px;
    padding-bottom: 22px;
}

.g73-order-type-card h2 {
    font-size: 30px;
    margin-bottom: 14px;
}

.g73-order-type-card label {
    display: flex;
    margin-bottom: 15px;
    color: #a6a6a6;
    font-size: 18px;
    font-weight: 900;
}

.g73-agreement-row {
    color: var(--g73-blue);
    font-size: 13px;
    font-weight: 900;
    line-height: 1.3;
}

.g73-agreement-row a {
    color: var(--g73-blue);
    text-decoration: underline;
}

.g73-add-to-cart {
    width: 68%;
    min-height: 58px;
    justify-self: center;
    border: 0;
    border-radius: 8px;
    background: var(--g73-orange);
    color: #ffffff;
    font-size: 30px;
    font-weight: 900;
    cursor: pointer;
    transition: transform .15s ease, opacity .15s ease;
}

.g73-add-to-cart:hover,
.g73-add-to-cart:focus {
    transform: translateY(-1px);
}

.g73-add-to-cart:disabled {
    cursor: not-allowed;
    opacity: .55;
    transform: none;
}

.g73-submit-message {
    margin: 0;
    color: #d43d2a;
    font-size: 13px;
    font-weight: 800;
    text-align: center;
}

.g73-cart-thumb {
    width: 120px !important;
    height: 120px !important;
    object-fit: contain;
    background: #fff;
}

@media (max-width: 1024px) {
    .g73-sticker-title-wrap {
        width: 100%;
    }

    .g73-sticker-layout {
        grid-template-columns: 1fr;
    }

    .g73-preview-card,
    .g73-preview-stage {
        min-height: 520px;
    }
}

@media (max-width: 720px) {
    .g73-sticker-builder {
        padding: 16px 12px 28px;
    }

    .g73-left-bottom,
    .g73-two-col-options,
    .g73-dimensions-grid {
        grid-template-columns: 1fr;
    }

    .g73-preview-card,
    .g73-preview-stage {
        min-height: 380px;
    }

    .g73-preview-image {
        max-height: 320px;
    }

    .g73-summary-card {
        order: 2;
    }

    .g73-mascot,
    .g73-mascot-placeholder {
        margin-left: auto;
        margin-right: auto;
    }

    .g73-add-to-cart {
        width: 100%;
    }
}


/* v1.1 polish fixes */
.g73-preview-file[hidden] {
    display: none !important;
}

.g73-preview-card {
    min-height: 560px;
}

.g73-preview-stage {
    min-height: 560px;
}

.g73-preview-image {
    max-height: 500px;
}

.g73-mascot {
    width: auto;
    max-width: 285px;
    max-height: 420px;
    margin: 20px 0 0 48px;
}

.g73-upload-zone {
    min-height: 420px;
}

.g73-add-to-cart {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    line-height: 1 !important;
    padding: 0 24px !important;
    min-height: 62px;
    width: 72%;
    white-space: nowrap;
}

.g73-add-to-cart:disabled {
    opacity: .55;
}

@media (max-width: 1024px) {
    .g73-preview-card,
    .g73-preview-stage {
        min-height: 460px;
    }
    .g73-preview-image {
        max-height: 420px;
    }
}

@media (max-width: 720px) {
    .g73-preview-card,
    .g73-preview-stage {
        min-height: 340px;
    }
    .g73-mascot {
        max-height: 320px;
        margin-left: auto;
        margin-right: auto;
    }
    .g73-upload-zone {
        min-height: auto;
    }
}


/* v1.3 production test fixes */
.g73-preview-stage {
    cursor: pointer;
}

.g73-preview-stage.has-artwork {
    background-color: #ffffff;
    background-image:
        linear-gradient(45deg, #e9e9e9 25%, transparent 25%),
        linear-gradient(-45deg, #e9e9e9 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #e9e9e9 75%),
        linear-gradient(-45deg, transparent 75%, #e9e9e9 75%);
    background-size: 28px 28px;
    background-position: 0 0, 0 14px, 14px -14px, -14px 0;
}

.g73-preview-stage.has-artwork .g73-preview-image {
    background: transparent;
}


/* v1.4 polish: equal option buttons + working agreement tooltip */
.g73-pill-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: stretch;
}

.g73-pill,
.g73-radio-row label {
    width: 140px;
    min-width: 140px;
    height: 48px;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
    line-height: 1.15;
}

.g73-radio-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.g73-radio-row > span {
    width: 100%;
    margin-bottom: 2px;
}

.g73-add-to-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1;
}

.g73-agreement-row {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.g73-agreement-help {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    border: 1px solid #1e73be;
    background: #fff;
    color: #1e73be;
    font-weight: 800;
    font-size: 13px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
}

.g73-agreement-tooltip {
    position: absolute;
    left: 0;
    bottom: calc(100% + 10px);
    width: min(420px, 92vw);
    padding: 12px 14px;
    background: #111827;
    color: #fff;
    border-radius: 10px;
    font-size: 13px;
    line-height: 1.35;
    box-shadow: 0 12px 30px rgba(0,0,0,.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(4px);
    transition: opacity .15s ease, transform .15s ease, visibility .15s ease;
    z-index: 20;
}

.g73-agreement-tooltip:after {
    content: "";
    position: absolute;
    left: 18px;
    top: 100%;
    border-width: 7px 7px 0 7px;
    border-style: solid;
    border-color: #111827 transparent transparent transparent;
}

.g73-agreement-row:hover .g73-agreement-tooltip,
.g73-agreement-row.is-tooltip-open .g73-agreement-tooltip,
.g73-agreement-help:focus + .g73-agreement-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@media (max-width: 520px) {
    .g73-pill,
    .g73-radio-row label {
        width: calc(50% - 5px);
        min-width: 0;
    }

    .g73-radio-row label {
        width: calc(33.333% - 7px);
    }
}


/* v1.5 production polish: compact scale, blue values, laminate pills */
.g73-sticker-builder {
    max-width: 1180px;
    padding: 12px 14px 24px;
}

.g73-sticker-title {
    font-size: clamp(28px, 2.7vw, 38px);
    margin-bottom: 2px;
}

.g73-sticker-layout {
    grid-template-columns: minmax(0, 1.58fr) minmax(350px, .95fr);
    gap: 12px;
}

.g73-preview-card,
.g73-preview-stage {
    min-height: 455px !important;
}

.g73-preview-stage {
    padding: 24px;
}

.g73-preview-image {
    max-height: 410px !important;
}

.g73-left-bottom {
    grid-template-columns: minmax(0, 1fr) 286px;
    gap: 12px;
    margin-top: 12px;
}

.g73-upload-zone {
    min-height: 310px !important;
}

.g73-mascot {
    max-width: 245px;
    max-height: 300px;
    margin: 16px 0 0 58px;
}

.g73-sticker-right {
    gap: 12px;
}

.g73-option-card {
    padding: 18px 20px 18px;
}

.g73-card-artwork-name {
    padding-top: 20px;
}

.g73-summary-card {
    padding: 16px 18px 14px;
}

.g73-summary-card h2,
.g73-option-card h2 {
    margin-bottom: 10px;
    font-size: 20px;
}

.g73-summary-card dl div,
.g73-analysis-list div {
    margin-bottom: 10px;
}

.g73-text-input,
.g73-number-input {
    height: 52px;
    color: var(--g73-blue) !important;
    font-size: 21px;
}

.g73-number-input option {
    color: var(--g73-blue);
}

.g73-two-col-options {
    gap: 22px;
}

.g73-muted-label {
    font-size: 16px;
    margin-bottom: 8px;
}

.g73-pill {
    width: 128px;
    min-width: 128px;
    height: 48px;
    min-height: 48px;
    padding: 0 10px;
    font-size: 16px;
}

.g73-laminate-options {
    margin-top: 14px;
}

.g73-laminate-pill-group {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.g73-laminate-pill-group .g73-pill {
    width: 100%;
    min-width: 0;
}

.g73-pill.is-active {
    background: var(--g73-blue);
    border-color: var(--g73-blue);
    color: #fff;
    box-shadow: 0 0 0 3px rgba(6, 59, 216, .08);
}

.g73-dimensions-grid {
    gap: 12px;
}

.g73-actual-size,
.g73-field-note {
    margin-top: 12px;
}

.g73-summary-card dd,
.g73-analysis-list dd,
.g73-summary-card dd strong,
.g73-actual-size strong,
.g73-summary-total strong {
    color: var(--g73-blue) !important;
}

.g73-order-type-card {
    padding-top: 18px;
    padding-bottom: 14px;
}

.g73-order-type-card h2 {
    font-size: 28px;
    margin-bottom: 12px;
}

.g73-order-type-card label {
    margin-bottom: 10px;
}

.g73-add-to-cart {
    width: 72%;
    min-height: 54px !important;
    font-size: 28px;
}

.g73-submit-message {
    min-height: 0;
}

@media (max-width: 1024px) {
    .g73-sticker-builder { max-width: 100%; }
    .g73-preview-card, .g73-preview-stage { min-height: 430px !important; }
    .g73-preview-image { max-height: 380px !important; }
}

@media (max-width: 720px) {
    .g73-preview-card, .g73-preview-stage { min-height: 330px !important; }
    .g73-preview-image { max-height: 290px !important; }
    .g73-laminate-pill-group { grid-template-columns: 1fr; }
}

/* v1.6 refinements */
.g73-dimensions-grid label {
    display: block;
    min-width: 0;
}

.g73-dimensions-grid select,
.g73-dimensions-grid input {
    width: 100%;
    min-width: 0;
}

.g73-dpi-value.is-excellent {
    color: var(--g73-orange) !important;
}

.g73-dpi-value.is-acceptable {
    color: var(--g73-blue) !important;
}

.g73-dpi-value.is-low {
    color: #d71920 !important;
}

/* v1.7 minimum order summary refinement */
.g73-summary-minimum {
    border-top: 1px solid #eeeeee;
    padding-top: 10px;
    margin-top: 8px;
}

.g73-summary-minimum div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    align-items: center;
    margin-bottom: 8px;
}

.g73-summary-minimum span {
    color: #b0b0b0;
    font-size: 13px;
    font-weight: 800;
}

.g73-summary-minimum strong {
    color: var(--g73-blue);
    font-size: 13px;
    font-weight: 900;
    text-align: right;
}

.g73-summary-total {
    margin-top: 10px;
}

.g73-summary-total strong {
    color: var(--g73-orange) !important;
    font-size: 22px;
}


/* v1.8 final polish: remove section card borders + match quantity control */
.g73-option-card,
.g73-summary-card {
    border: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
}

.g73-summary-card {
    background: #fafafa !important;
    border-radius: 10px !important;
}

.g73-dimensions-grid label {
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    gap: 6px !important;
    min-height: 82px !important;
}

.g73-dimensions-grid label > select,
.g73-dimensions-grid label > input {
    margin-top: 0 !important;
}

.g73-dimensions-grid .g73-number-input,
.g73-dimensions-grid .g73-size-select {
    width: 100% !important;
    height: 52px !important;
    min-height: 52px !important;
    border: 2px solid var(--g73-gray) !important;
    border-radius: 11px !important;
    background-color: #ffffff !important;
    color: var(--g73-blue) !important;
    font-size: 21px !important;
    font-weight: 800 !important;
    padding: 10px 14px !important;
    line-height: 1 !important;
}

.g73-dimensions-grid select.g73-number-input {
    appearance: auto !important;
    -webkit-appearance: auto !important;
    -moz-appearance: auto !important;
}


/* v1.9 final grid alignment: sticker options, laminate, and dimensions */
.g73-two-col-options {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 18px !important;
    align-items: start !important;
}

.g73-two-col-options > div {
    min-width: 0 !important;
}

.g73-two-col-options .g73-pill-group {
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-template-rows: repeat(2, 52px) !important;
    gap: 10px !important;
}

.g73-two-col-options .g73-pill,
.g73-laminate-pill-group .g73-pill {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 52px !important;
    height: 52px !important;
    padding: 0 10px !important;
}

.g73-laminate-options {
    margin-top: 18px !important;
}

.g73-laminate-pill-group {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 10px !important;
    width: 100% !important;
}

.g73-dimensions-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 14px !important;
    align-items: end !important;
}

.g73-dimensions-grid label {
    display: grid !important;
    grid-template-rows: 22px 52px !important;
    gap: 8px !important;
    min-height: 0 !important;
    color: #a7a7a7 !important;
    font-size: 15px !important;
    font-weight: 900 !important;
    line-height: 1.1 !important;
    white-space: nowrap !important;
}

.g73-dimensions-grid label span {
    font-size: inherit !important;
}

.g73-dimensions-grid .g73-number-input,
.g73-dimensions-grid .g73-size-select {
    height: 52px !important;
    min-height: 52px !important;
    width: 100% !important;
    margin: 0 !important;
}

@media (max-width: 720px) {
    .g73-two-col-options,
    .g73-dimensions-grid {
        grid-template-columns: 1fr !important;
    }

    .g73-laminate-pill-group {
        grid-template-columns: 1fr !important;
    }
}


/* v2.0 final production polish */
.g73-preview-stage {
    align-items: center !important;
    justify-content: center !important;
}

.g73-preview-image {
    object-position: center center !important;
}

.g73-artwork-status {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin: 8px 0 0;
    color: var(--g73-blue);
    font-size: 12px;
    font-weight: 900;
}

.g73-artwork-status[hidden] {
    display: none !important;
}

.g73-artwork-status span {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 3px 9px;
    border-radius: 999px;
    background: #f5f7ff;
    color: var(--g73-blue);
    line-height: 1;
}

.g73-artwork-status span::before {
    content: "✓";
    margin-right: 5px;
    color: var(--g73-blue);
    font-weight: 900;
}

.g73-artwork-status span.is-excellent {
    color: var(--g73-orange);
}

.g73-artwork-status span.is-excellent::before {
    color: var(--g73-orange);
}

.g73-artwork-status span.is-low {
    color: #d71920;
    background: #fff4f4;
}

.g73-artwork-status span.is-low::before {
    content: "!";
    color: #d71920;
}

.g73-production-time {
    color: var(--g73-orange) !important;
}

.g73-summary-total span {
    font-size: 22px !important;
}

.g73-summary-total strong {
    font-size: 28px !important;
    line-height: 1.1 !important;
}

.g73-add-to-cart {
    width: 84% !important;
}

.g73-summary-card h2,
.g73-option-card h2 {
    font-size: 21px !important;
    font-weight: 900 !important;
    color: var(--g73-blue) !important;
}

@media (max-width: 720px) {
    .g73-add-to-cart {
        width: 100% !important;
    }
}

/* v2.2 admin image setting and production-time lock */
.g73-sticker-builder .g73-summary-card .g73-production-time,
.g73-sticker-builder .g73-summary-card dd .g73-production-time {
    color: var(--g73-orange) !important;
    font-weight: 900 !important;
}

/* v2.3 larger configurable Sticker Builder image area */
.g73-upload-zone {
    min-height: 430px !important;
    overflow: visible !important;
}
.g73-mascot {
    width: var(--g73-mascot-width, 360px) !important;
    max-width: min(var(--g73-mascot-width, 360px), 100%) !important;
    max-height: 390px !important;
    margin: 24px auto 0 auto !important;
    object-fit: contain !important;
}
@media (max-width: 720px) {
    .g73-upload-zone {
        min-height: 330px !important;
    }
    .g73-mascot {
        max-height: 300px !important;
    }
}
