/* ==========================================================================
   Quote Wizard v2 — 6-Step Dark Theme Design
   Colors: gold (#c5a028, #dbb832, #a88720), dark (#0f0f0f, #1a1a18), white
   ========================================================================== */

/* ==========================================================================
   CTA Buttons (product page) — hierarchy: decoration dominant
   ========================================================================== */
.oh-quote-cta {
    margin: 1.5rem 0 0.75rem;
    text-align: center;
}

.oh-quote-cta__primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    padding: 18px 40px;
    background: linear-gradient(135deg, #c5a028 0%, #dbb832 50%, #a88720 100%);
    background-size: 200% 100%;
    color: #fff;
    font-family: inherit;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, background-position 0.4s;
    box-shadow: 0 6px 24px rgba(197, 160, 40, 0.35);
    animation: ohCTAPulse 3s ease-in-out infinite;
}

@keyframes ohCTAPulse {
    0%, 70%  { box-shadow: 0 6px 24px rgba(197, 160, 40, 0.35); }
    85%      { box-shadow: 0 6px 32px rgba(197, 160, 40, 0.55); }
    100%     { box-shadow: 0 6px 24px rgba(197, 160, 40, 0.35); }
}

.oh-quote-cta__primary:hover {
    transform: translateY(-2px);
    background-position: 100% 0;
    box-shadow: 0 8px 32px rgba(197, 160, 40, 0.5);
    animation: none;
}

.oh-quote-cta__primary:active {
    transform: translateY(0);
    box-shadow: 0 4px 16px rgba(197, 160, 40, 0.3);
}

.oh-quote-cta__primary svg {
    flex-shrink: 0;
}

.oh-quote-cta__subtitle {
    text-align: center;
    font-size: 0.75rem;
    color: #8b7340;
    margin: 0.5rem 0 0;
    font-weight: 500;
}

.oh-quote-cta__secondary {
    display: inline;
    margin-top: 0.5rem;
    padding: 0;
    background: none;
    color: #999;
    font-family: inherit;
    font-size: 0.8rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    border: none;
    cursor: pointer;
    transition: color 0.2s, text-decoration-color 0.2s;
    text-decoration: underline transparent;
    text-underline-offset: 2px;
}

.oh-quote-cta__secondary:hover {
    color: #bbb;
    text-decoration-color: #bbb;
}

/* CTA Social Proof */
.oh-cta-social-proof {
    text-align: center;
    font-size: 12px;
    color: #888;
    margin-top: 8px;
}

.oh-cta-social-proof__icon {
    color: #c5a028;
}

.oh-cta-social-proof strong {
    color: #c5a028;
    font-weight: 700;
}

/* --- Overlay --- */
.oh-wizard-overlay {
    position: fixed;
    inset: 0;
    z-index: 100000;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.oh-wizard-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

/* --- Main Card --- */
.oh-wizard {
    position: relative;
    width: 95vw;
    max-width: 520px;
    max-height: 90vh;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(197, 160, 40, 0.1);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: ohWizIn 0.35s cubic-bezier(.4, 0, .2, 1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    margin: 0 auto;
}

@keyframes ohWizIn {
    from { opacity: 0; transform: translateY(24px) scale(0.96); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* --- Header --- */
.oh-wizard__header {
    padding: 20px 24px 16px;
    background: #0f0f0f;
    border-bottom: 1px solid rgba(197, 160, 40, 0.15);
    flex-shrink: 0;
}

.oh-wizard__header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.oh-wizard__title {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.3px;
}

.oh-wizard__close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #999;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(.4, 0, .2, 1);
    line-height: 1;
}

.oh-wizard__close:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

/* --- Progress Bar --- */
.oh-wizard__progress {
    position: relative;
    height: 5px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 12px;
}

.oh-wizard__progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #a88720, #c5a028, #dbb832);
    border-radius: 5px;
    transition: width 0.5s cubic-bezier(.4, 0, .2, 1);
    box-shadow: 0 0 10px rgba(197, 160, 40, 0.4);
}

/* --- Step Indicators --- */
.oh-wizard__steps-nav {
    display: flex;
    gap: 4px;
    justify-content: space-between;
}

.oh-wizard__step-ind {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    cursor: default;
    opacity: 0.35;
    transition: opacity 0.25s;
    background: none;
    border: none;
    padding: 4px 2px;
    font-family: inherit;
}

.oh-wizard__step-ind.is-active {
    opacity: 1;
}

.oh-wizard__step-ind.is-completed {
    opacity: 0.7;
    cursor: pointer;
}

.oh-wizard__step-ind.is-completed:hover {
    opacity: 1;
}

.oh-wizard__step-icon {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.25s;
}

.oh-wizard__step-ind.is-active .oh-wizard__step-icon {
    color: #dbb832;
}

.oh-wizard__step-ind.is-completed .oh-wizard__step-icon {
    color: #c5a028;
}

.oh-wizard__step-label {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    white-space: nowrap;
}

.oh-wizard__step-ind.is-active .oh-wizard__step-label {
    color: #dbb832;
}

/* --- Body (scrollable) --- */
.oh-wizard__body {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
    background: #1a1a18;
    scrollbar-width: thin;
    scrollbar-color: rgba(197, 160, 40, 0.2) transparent;
}

.oh-wizard__body::-webkit-scrollbar { width: 5px; }
.oh-wizard__body::-webkit-scrollbar-track { background: transparent; }
.oh-wizard__body::-webkit-scrollbar-thumb {
    background: rgba(197, 160, 40, 0.2);
    border-radius: 5px;
}

/* --- Step Panels --- */
.oh-wizard__step {
    display: none;
}

.oh-wizard__step.is-active {
    display: block;
    animation: ohStepFade 0.3s ease;
}

@keyframes ohStepFade {
    from { opacity: 0; transform: translateX(12px); }
    to   { opacity: 1; transform: translateX(0); }
}

.oh-wizard__step-title {
    margin: 0 0 4px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

.oh-wizard__step-desc {
    margin: 0 0 20px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ==========================================================================
   Step 1 — Color
   ========================================================================== */
.oh-wiz-colors {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}

.oh-wiz-color {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 3px solid transparent;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(.4, 0, .2, 1);
    background-size: cover;
    background-position: center;
    padding: 0;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.oh-wiz-color:hover {
    transform: scale(1.08);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.oh-wiz-color.is-selected {
    border-color: #c5a028;
    transform: scale(1.08);
    box-shadow: 0 0 0 3px rgba(197, 160, 40, 0.3), 0 4px 16px rgba(0, 0, 0, 0.3);
}

.oh-wiz-color__check {
    position: absolute;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 11px;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
}

.oh-wiz-color.is-selected .oh-wiz-color__check {
    display: flex;
}

/* Selected color info box */
.oh-wiz-color-info {
    display: none;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(197, 160, 40, 0.08);
    border: 1px solid rgba(197, 160, 40, 0.15);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
}

.oh-wiz-color-info.is-visible {
    display: flex;
}

.oh-wiz-color-info__swatch {
    width: 24px;
    height: 24px;
    border-radius: 8px;
    flex-shrink: 0;
    background-size: cover;
}

/* ==========================================================================
   Step 2 — Sizes & Quantities
   ========================================================================== */
.oh-wiz-sizes {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.oh-wiz-size {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    transition: all 0.25s cubic-bezier(.4, 0, .2, 1);
}

.oh-wiz-size.has-qty {
    border-color: rgba(197, 160, 40, 0.3);
    background: rgba(197, 160, 40, 0.05);
}

.oh-wiz-size__label {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    min-width: 50px;
}

.oh-wiz-size__qty {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.oh-wiz-size__btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(197, 160, 40, 0.1);
    border: 1px solid rgba(197, 160, 40, 0.2);
    color: #dbb832;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.2s;
}

.oh-wiz-size__btn:first-child { border-radius: 8px 0 0 8px; }
.oh-wiz-size__btn:last-child  { border-radius: 0 8px 8px 0; }
.oh-wiz-size__btn:hover {
    background: rgba(197, 160, 40, 0.2);
}

.oh-wiz-size__input {
    width: 56px;
    height: 36px;
    text-align: center;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(197, 160, 40, 0.2);
    border-left: none;
    border-right: none;
    color: #fff;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 700;
    -moz-appearance: textfield;
    outline: none;
}

.oh-wiz-size__input:focus {
    background: rgba(0, 0, 0, 0.6);
}

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

/* Total banner */
.oh-wiz-total-banner {
    padding: 12px 16px;
    border-radius: 10px;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 700;
    transition: all 0.25s;
}

.oh-wiz-total-banner.is-ok {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    color: #4ade80;
}

.oh-wiz-total-banner.is-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #f87171;
}

/* ==========================================================================
   Step 3 — Decoration
   ========================================================================== */
.oh-wiz-decos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.oh-wiz-deco-card {
    position: relative;
    padding: 20px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(.4, 0, .2, 1);
    font-family: inherit;
    color: #fff;
}

.oh-wiz-deco-card:hover {
    border-color: rgba(197, 160, 40, 0.3);
    background: rgba(197, 160, 40, 0.03);
    transform: translateY(-2px);
}

.oh-wiz-deco-card.is-selected {
    border-color: #c5a028;
    background: rgba(197, 160, 40, 0.08);
    box-shadow: 0 4px 20px rgba(197, 160, 40, 0.15);
}

.oh-wiz-deco-card__badge {
    position: absolute;
    top: -8px;
    right: -8px;
    padding: 3px 10px;
    background: linear-gradient(135deg, #c5a028, #dbb832);
    color: #0f0f0f;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(197, 160, 40, 0.3);
}

.oh-wiz-deco-card__icon {
    width: 32px;
    height: 32px;
    margin: 0 auto 10px;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.25s;
}

.oh-wiz-deco-card.is-selected .oh-wiz-deco-card__icon {
    color: #dbb832;
}

.oh-wiz-deco-card__name {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.oh-wiz-deco-card__desc {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.4;
}

/* Recommendation text */
.oh-wiz-deco-rec {
    margin-bottom: 16px;
    padding: 10px 14px;
    background: rgba(197, 160, 40, 0.06);
    border-left: 3px solid #c5a028;
    border-radius: 0 8px 8px 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.oh-wiz-deco-rec strong {
    color: #dbb832;
}

/* Print size selector */
.oh-wiz-print-sizes {
    margin-bottom: 16px;
}

.oh-wiz-print-sizes__label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.oh-wiz-print-sizes__options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.oh-wiz-pill {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.6);
    font-family: inherit;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.oh-wiz-pill:hover {
    border-color: rgba(197, 160, 40, 0.3);
    color: #fff;
}

.oh-wiz-pill.is-selected {
    background: rgba(197, 160, 40, 0.12);
    border-color: #c5a028;
    color: #dbb832;
    font-weight: 700;
}

/* Positions (multi-select chips) */
.oh-wiz-positions {
    margin-bottom: 16px;
}

.oh-wiz-positions__label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.oh-wiz-positions__options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* ==========================================================================
   Step 4 — Pattern / Upload
   ========================================================================== */
.oh-wiz-preview-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.oh-wiz-tshirt-preview {
    flex-shrink: 0;
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.oh-wiz-tshirt-preview svg {
    width: 200px;
    height: 220px;
}

.oh-wiz-upload-col {
    flex: 1;
    min-width: 0;
}

.oh-wiz-upload-area {
    border: 2px dashed rgba(197, 160, 40, 0.2);
    border-radius: 14px;
    padding: 24px 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s;
    background: rgba(255, 255, 255, 0.02);
    margin-bottom: 12px;
}

.oh-wiz-upload-area:hover,
.oh-wiz-upload-area.is-dragover {
    border-color: #c5a028;
    background: rgba(197, 160, 40, 0.04);
}

.oh-wiz-upload-area__icon {
    color: #c5a028;
    margin-bottom: 8px;
}

.oh-wiz-upload-area__text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin: 0;
}

.oh-wiz-upload-area__text strong {
    color: #dbb832;
}

.oh-wiz-upload-area__hint {
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.7rem;
    margin: 6px 0 0;
}

/* Uploaded file display */
.oh-wiz-uploaded {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(34, 197, 94, 0.06);
    border: 1px solid rgba(34, 197, 94, 0.15);
    border-radius: 10px;
    margin-bottom: 12px;
    cursor: pointer;
}

.oh-wiz-uploaded__icon {
    color: #4ade80;
    flex-shrink: 0;
}

.oh-wiz-uploaded__name {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.oh-wiz-uploaded__change {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.7rem;
}

/* Notes textarea */
.oh-wiz-notes {
    width: 100%;
    min-height: 80px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: #fff;
    font-family: inherit;
    font-size: 0.85rem;
    resize: vertical;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s;
}

.oh-wiz-notes:focus {
    border-color: rgba(197, 160, 40, 0.3);
}

.oh-wiz-notes::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   Step 5 — Packaging
   ========================================================================== */
.oh-wiz-pkg-section {
    margin-bottom: 20px;
}

.oh-wiz-pkg-section__title {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    margin-bottom: 10px;
}

.oh-wiz-pkg-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.oh-wiz-pkg-opt {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.25s;
    font-family: inherit;
    color: #fff;
    text-align: left;
    width: 100%;
}

.oh-wiz-pkg-opt:hover {
    border-color: rgba(197, 160, 40, 0.2);
}

.oh-wiz-pkg-opt.is-selected {
    border-color: #c5a028;
    background: rgba(197, 160, 40, 0.06);
}

.oh-wiz-pkg-opt__radio {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
    position: relative;
    transition: border-color 0.2s;
}

.oh-wiz-pkg-opt.is-selected .oh-wiz-pkg-opt__radio {
    border-color: #c5a028;
}

.oh-wiz-pkg-opt.is-selected .oh-wiz-pkg-opt__radio::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #c5a028;
}

.oh-wiz-pkg-opt__text {
    flex: 1;
}

.oh-wiz-pkg-opt__name {
    font-size: 0.9rem;
    font-weight: 600;
}

.oh-wiz-pkg-opt__price {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 2px;
}

/* ==========================================================================
   Step 6 — Summary
   ========================================================================== */
.oh-wiz-summary-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.oh-wiz-summary-preview {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.oh-wiz-summary-preview svg {
    width: 140px;
    height: 160px;
}

.oh-wiz-summary-table {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.oh-wiz-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.oh-wiz-summary-row__label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

.oh-wiz-summary-row__value {
    font-size: 0.85rem;
    color: #fff;
    font-weight: 600;
    word-break: break-word;
    max-width: 60%;
    text-align: right;
}

/* Price card */
.oh-wiz-price-card {
    padding: 20px;
    background: linear-gradient(135deg, rgba(197, 160, 40, 0.1), rgba(219, 184, 50, 0.06));
    border: 1px solid rgba(197, 160, 40, 0.2);
    border-radius: 14px;
    margin-bottom: 20px;
}

.oh-wiz-price-card__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 4px;
}

.oh-wiz-price-card__row span:last-child {
    color: #fff;
    font-weight: 600;
}

.oh-wiz-price-card__divider {
    height: 1px;
    background: rgba(197, 160, 40, 0.2);
    margin: 10px 0;
}

.oh-wiz-price-card__total {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.oh-wiz-price-card__total-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
}

.oh-wiz-price-card__total-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #dbb832;
}

.oh-wiz-price-card__brutto {
    text-align: right;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 2px;
}

.oh-wiz-price-card__express {
    margin-top: 8px;
    padding: 6px 10px;
    background: rgba(239, 68, 68, 0.08);
    border-radius: 6px;
    font-size: 0.7rem;
    color: #f87171;
    text-align: center;
}

.oh-wiz-price-note {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.25);
    font-style: italic;
    text-align: center;
    margin-bottom: 16px;
}

/* Turnstile container */
.oh-wiz-turnstile {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

/* ==========================================================================
   Footer — Navigation
   ========================================================================== */
.oh-wizard__footer {
    padding: 16px 24px;
    background: #0f0f0f;
    border-top: 1px solid rgba(197, 160, 40, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.oh-wizard__btn-back {
    padding: 12px 24px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s;
}

.oh-wizard__btn-back:hover {
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.oh-wizard__btn-next {
    flex: 1;
    padding: 14px 24px;
    background: linear-gradient(135deg, #a88720 0%, #c5a028 40%, #dbb832 100%);
    border: none;
    border-radius: 12px;
    color: #0f0f0f;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(.4, 0, .2, 1);
    box-shadow: 0 4px 16px rgba(197, 160, 40, 0.25);
    text-transform: uppercase;
}

.oh-wizard__btn-next:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(197, 160, 40, 0.4);
}

.oh-wizard__btn-next:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* ==========================================================================
   Success Modal
   ========================================================================== */
.oh-wiz-success-overlay {
    position: fixed;
    inset: 0;
    z-index: 100001;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.oh-wiz-success-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

.oh-wiz-success-modal {
    background: #1a1a18;
    border: 1px solid rgba(197, 160, 40, 0.2);
    border-radius: 20px;
    padding: 48px 40px;
    text-align: center;
    max-width: 420px;
    width: 100%;
    animation: ohWizIn 0.35s ease;
}

.oh-wiz-success-modal__icon {
    margin-bottom: 16px;
}

.oh-wiz-success-modal__title {
    margin: 0 0 8px;
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
}

.oh-wiz-success-modal__text {
    margin: 0 0 24px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.oh-wiz-success-modal__primary {
    display: block;
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #a88720, #c5a028, #dbb832);
    color: #0f0f0f;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 800;
    text-decoration: none;
    text-align: center;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 16px rgba(197, 160, 40, 0.3);
}

.oh-wiz-success-modal__primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(197, 160, 40, 0.45);
    color: #0f0f0f;
}

.oh-wiz-success-modal__secondary {
    display: block;
    width: 100%;
    margin-top: 12px;
    padding: 12px 24px;
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.oh-wiz-success-modal__secondary:hover {
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
    .oh-wizard__body {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .oh-wizard-overlay {
        padding: 0;
        align-items: flex-end;
    }

    .oh-wizard {
        width: 100%;
        max-width: 100%;
        max-height: 100vh;
        border-radius: 16px 16px 0 0;
    }

    .oh-wizard__header {
        padding: 16px 16px 12px;
    }

    .oh-wizard__body {
        padding: 16px;
    }

    .oh-wizard__footer {
        padding: 12px 16px;
    }

    .oh-wiz-colors {
        gap: 8px;
    }

    .oh-wiz-color {
        width: 38px;
        height: 38px;
        border-radius: 12px;
    }

    .oh-wiz-decos {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .oh-wiz-preview-row {
        flex-direction: column;
        align-items: center;
    }

    .oh-wiz-tshirt-preview {
        width: 160px;
    }

    .oh-wiz-tshirt-preview svg {
        width: 160px;
        height: 180px;
    }

    .oh-wiz-summary-grid {
        grid-template-columns: 1fr;
    }

    .oh-wiz-summary-preview {
        justify-content: center;
    }

    .oh-wizard__btn-next {
        font-size: 0.85rem;
        padding: 12px 16px;
    }

    .oh-wizard__step-label {
        font-size: 0.5rem;
    }
}

@media (max-width: 480px) {
    .oh-wiz-decos {
        grid-template-columns: 1fr;
    }

    .oh-wiz-success-modal {
        padding: 36px 24px;
    }
}

/* ==========================================================================
   Reduced Motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
    .oh-wizard,
    .oh-wizard__step,
    .oh-wizard__progress-fill,
    .oh-wiz-color,
    .oh-wiz-deco-card,
    .oh-wizard__btn-next,
    .oh-quote-cta__primary {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }
}
