/* =========================
   Purchase Wizard CSS
   Path: shop/static/shop/css/purchase_wizard.css
   Loaded before theme.css
   ========================= */

/* ---------- Base ---------- */

.wizard-body {
    min-height: 100vh;
    background:
        radial-gradient(circle at top right, rgba(13, 110, 253, .10), transparent 32%),
        linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
    color: #212529;
}

.wizard-shell {
    min-height: 100vh;
}

.wizard-container {
    max-width: 1220px;
}

.wizard-page {
    display: grid;
    gap: 1rem;
}

.wizard-title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.6;
}

.wizard-section-title {
    font-size: .95rem;
    font-weight: 800;
    margin-bottom: .75rem;
}

.wizard-hidden {
    display: none !important;
}

/* ---------- Layout / Cart Summary ---------- */

.wizard-layout {
    display: grid;
    gap: 1rem;
}

.wizard-main-content {
    min-width: 0;
}

.wizard-cart-summary-wrap {
    display: none;
}

.wizard-cart-summary {
    overflow: hidden;
}

@media (min-width: 992px) {
    .wizard-layout {
        grid-template-columns: 8fr 4fr;
        align-items: start;
    }

    .wizard-main-content {
        order: 1;
    }

    .wizard-cart-summary-wrap {
        display: block;
        position: sticky;
        top: 1rem;
        order: 2;
    }
}

@media (max-width: 991.98px) {
    .wizard-cart-summary-wrap {
        display: block;
        position: fixed;
        right: 0;
        bottom: 58px;
        left: 0;
        z-index: 1029;
        padding: 0 .5rem;
    }

    .wizard-cart-summary {
        width: min(100%, 540px);
        margin: 0 auto;
        border-radius: 14px 14px 0 0;
    }

    .wizard-cart-summary .card-body {
        padding: .65rem .75rem !important;
    }

    .wizard-cart-summary .h6 {
        font-size: .9rem;
    }

    .wizard-cart-summary .small {
        font-size: .74rem;
    }
}

/* ---------- Cart Summary ---------- */

.wizard-cart-top-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: .75rem;
}

.wizard-cart-discount-box {
    flex: 1 1 auto;
    min-width: 0;
    text-align: right;
}

.wizard-cart-amount-box {
    flex: 0 0 auto;
    text-align: left;
    white-space: nowrap;
}

.wizard-cart-mobile-row {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: .75rem !important;
    direction: rtl !important;
}

.wizard-cart-mobile-discount {
    order: 0 !important;
    flex: 0 0 auto !important;
    text-align: right !important;
    white-space: nowrap;
    margin-left: auto !important;
    margin-bottom: 0 !important;
    font-size: .68rem;
    line-height: 1.6;
}

.wizard-cart-mobile-price {
    order: 1 !important;
    flex: 1 1 auto !important;
    min-width: 0;
    text-align: left !important;
    margin-right: auto !important;
}

.wizard-cart-mobile-discount strong,
.wizard-cart-mobile-price .h6,
.wizard-cart-mobile-price span,
.wizard-cart-mobile-price strong {
    font-size: .74rem;
    line-height: 1.7;
}

@media (max-width: 767.98px) {
    .wizard-cart-summary .card-body {
        padding: .55rem .7rem !important;
    }
}

@media (max-width: 575.98px) {
    .wizard-cart-top-row {
        align-items: center;
        gap: .5rem;
    }

    .wizard-cart-discount-box,
    .wizard-cart-amount-box {
        font-size: .74rem;
    }

    .wizard-cart-amount-box .h6 {
        font-size: .78rem;
    }
}

/* ---------- Volume Progress ---------- */

.wizard-volume-progress-track {
    background: rgba(15, 23, 42, .08);
}

.wizard-volume-progress {
    width: calc(var(--wizard-volume-progress-display-value, 0) * 1%) !important;
    background-color: hsl(calc(var(--wizard-volume-progress-value, 0) * 1.2),
            70%,
            42%) !important;
    transition:
        width .55s cubic-bezier(.22, 1, .36, 1),
        background-color .45s ease;
}

/* ---------- Header / Progress ---------- */

.wizard-progress-box {
    width: min(100%, 320px);
}

.progress-wrap {
    display: grid;
    gap: .45rem;
}

.progress {
    height: .55rem;
    background-color: #e9ecef;
    border-radius: 999px;
    overflow: hidden;
}

.progress span {
    display: block;
    height: 100%;
    width: var(--progress-width);
    background-color: var(--site-accent);
    border-radius: inherit;
}

.progress-meta {
    font-size: .8rem;
    color: #6c757d;
    text-align: left;
}

.progress-bar {
    background-color: var(--site-accent);
}

/* ---------- Forms ---------- */

.wizard-form {
    display: grid;
    gap: 1rem;
}

.wizard-auth-form {
    display: grid;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--bs-border-color);
}

.wizard-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .625rem;
    padding-top: 1rem;
    border-top: 1px solid var(--bs-border-color);
}

.wizard-actions.center {
    justify-content: center;
}

.wizard-actions .btn {
    min-width: 120px;
}

.wizard-disabled-btn:disabled,
button[data-address-submit]:disabled {
    cursor: not-allowed;
    pointer-events: none;
}

button[data-address-submit].btn-primary:disabled,
button[data-address-submit].btn-primary.disabled {
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: var(--site-accent);
    --bs-btn-disabled-border-color: var(--site-accent);

    color: #fff !important;
    background-color: var(--site-accent) !important;
    border-color: var(--site-accent) !important;
    opacity: .65;
}

/* ---------- Sticky Actions ---------- */

.wizard-page:has(.wizard-mobile-sticky-actions) {
    padding-bottom: 74px;
}

.wizard-mobile-sticky-actions {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1030;
    border-top: 1px solid var(--bs-border-color);
    box-shadow: 0 -.25rem .75rem rgba(0, 0, 0, .08);
}

.wizard-mobile-sticky-actions .wizard-actions {
    width: min(100%, 720px);
    margin: 0 auto;
    padding-top: 0;
    border-top: 0;
    flex-direction: row;
    flex-wrap: nowrap;
}

.wizard-mobile-sticky-actions .btn {
    min-width: 0;
    width: auto;
    white-space: nowrap;
}

@media (max-width: 991.98px) {
    .wizard-page:has(.wizard-mobile-sticky-actions) {
        padding-bottom: 64px;
    }

    .wizard-page:has(.wizard-cart-summary):has(.wizard-mobile-sticky-actions) {
        padding-bottom: 148px;
    }

    .wizard-mobile-sticky-actions .wizard-actions {
        width: min(100%, 540px);
    }

    .wizard-mobile-sticky-actions .btn {
        font-size: .78rem;
        padding-inline: .35rem;
    }
}

/* ---------- Django Form Helpers ---------- */

.input {
    display: block;
    width: 100%;
    padding: .65rem .85rem;
    font-size: .95rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    transition:
        border-color .15s ease-in-out,
        box-shadow .15s ease-in-out;
}

.input:focus {
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25);
}

textarea.input {
    min-height: 120px;
    resize: vertical;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1rem;
}

.form-col-4 {
    grid-column: span 4;
}

.form-col-6 {
    grid-column: span 6;
}

.form-col-12 {
    grid-column: span 12;
}

.errorlist {
    margin: .35rem 0 0;
    padding: 0;
    list-style: none;
    color: var(--bs-danger);
    font-size: .8rem;
}

/* ---------- Alerts / Status ---------- */

.wizard-messages {
    display: grid;
    gap: .75rem;
}

.wizard-alert {
    padding: .75rem 1rem;
    border-radius: var(--bs-border-radius);
    border: 1px solid transparent;
    font-size: .9rem;
    line-height: 1.9;
}

.wizard-alert.is-ok {
    color: var(--bs-success-text-emphasis);
    background-color: var(--bs-success-bg-subtle);
    border-color: var(--bs-success-border-subtle);
}

.wizard-alert.is-bad {
    color: var(--bs-danger-text-emphasis);
    background-color: var(--bs-danger-bg-subtle);
    border-color: var(--bs-danger-border-subtle);
}

.status {
    padding: .75rem 1rem;
    border-radius: var(--bs-border-radius);
    color: var(--bs-info-text-emphasis);
    background-color: var(--bs-info-bg-subtle);
    border: 1px solid var(--bs-info-border-subtle);
    font-size: .9rem;
    line-height: 1.9;
}

.status.ok {
    color: var(--bs-success-text-emphasis);
    background-color: var(--bs-success-bg-subtle);
    border-color: var(--bs-success-border-subtle);
}

.status.bad {
    color: var(--bs-danger-text-emphasis);
    background-color: var(--bs-danger-bg-subtle);
    border-color: var(--bs-danger-border-subtle);
}

.status.warn {
    color: var(--bs-warning-text-emphasis);
    background-color: var(--bs-warning-bg-subtle);
    border-color: var(--bs-warning-border-subtle);
}

.empty {
    margin: 0;
    padding: 1rem;
    border-radius: var(--bs-border-radius);
    color: #6c757d;
    background-color: #f8f9fa;
    border: 1px dashed var(--bs-border-color);
}

/* ---------- Context / Badges ---------- */

.wizard-context {
    padding: .75rem 1rem;
    border-radius: var(--bs-border-radius);
    color: var(--bs-primary-text-emphasis);
    background-color: var(--bs-primary-bg-subtle);
    border: 1px solid var(--bs-primary-border-subtle);
    font-size: .9rem;
}

.wizard-step-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .5rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: .35rem .6rem;
    border-radius: 999px;
    font-size: .8rem;
    font-weight: 700;
    color: var(--bs-primary-text-emphasis);
    background-color: var(--bs-primary-bg-subtle);
    border: 1px solid var(--bs-primary-border-subtle);
}

/* ---------- Choice Lists ---------- */

.choice-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: .75rem;
}

.choice-list li {
    margin: 0;
}

.choice-list label {
    margin: 0;
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .85rem 1rem;
    border: 1px solid var(--bs-border-color);
    border-radius: var(--bs-border-radius-lg);
    background: var(--bs-body-bg);
    cursor: pointer;
    transition:
        border-color .15s ease,
        background-color .15s ease,
        box-shadow .15s ease;
}

.choice-list label:hover {
    border-color: var(--site-accent);
    background-color: var(--bs-primary-bg-subtle);
}

.choice-list input[type="radio"],
.choice-list input[type="checkbox"] {
    width: 1.1rem;
    height: 1.1rem;
    flex: 0 0 auto;
    accent-color: var(--site-accent);
}

.choice-list label:has(input:checked) {
    border-color: var(--site-accent);
    background-color: var(--bs-primary-bg-subtle);
    box-shadow: 0 .5rem 1rem rgba(13, 110, 253, .10);
    font-weight: 800;
}

@media (min-width: 768px) {

    .wizard-choice-list,
    .wizard-choice-group {
        max-width: 420px;
        margin-inline: auto;
    }

    .wizard-choice-list .btn,
    .wizard-choice-group .btn {
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    .wizard-choice-list {
        max-width: 100%;
    }
}

/* ---------- Wizard Choice Buttons ---------- */

.wizard-choice-list .btn-outline-primary {
    --bs-btn-color: var(--site-accent);
    --bs-btn-border-color: var(--site-accent);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--site-accent);
    --bs-btn-hover-border-color: var(--site-accent);
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--site-accent);
    --bs-btn-active-border-color: var(--site-accent);
}

.wizard-choice-list .btn-check:checked+.btn-outline-primary,
.wizard-choice-list .btn-check:checked+label.btn-outline-primary {
    color: #fff !important;
    background-color: var(--site-accent) !important;
    border-color: var(--site-accent) !important;
}

.wizard-choice-list .btn-check:checked+.btn-outline-primary *,
.wizard-choice-list .btn-check:checked+label.btn-outline-primary * {
    color: #fff !important;
}

.wizard-choice-description {
    color: var(--bs-secondary-color) !important;
}

.wizard-choice-list .btn-check:checked+.btn-outline-primary .wizard-choice-description,
.wizard-choice-list .btn-check:checked+label.btn-outline-primary .wizard-choice-description {
    color: rgba(255, 255, 255, 0.82) !important;
}

/* ---------- Product Cards ---------- */

.wizard-product-list {
    display: grid;
    gap: 1rem;
}

.wizard-product-card {
    border: 1px solid var(--bs-border-color);
    border-radius: var(--bs-border-radius-lg);
    background-color: var(--bs-body-bg);
    overflow: hidden;
}

.wizard-product-main {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: .75rem;
    padding: 1rem;
    cursor: pointer;
}

.wizard-product-main input[type="checkbox"] {
    width: 1.15rem;
    height: 1.15rem;
    accent-color: var(--site-accent);
}

.wizard-product-info {
    display: grid;
    gap: .25rem;
}

.wizard-product-info strong {
    font-weight: 800;
}

.wizard-product-info small {
    color: #6c757d;
    line-height: 1.8;
}

.wizard-product-price {
    color: #6c757d;
    font-size: .85rem;
    white-space: nowrap;
}

.wizard-dependent-options {
    display: grid;
    gap: .75rem;
    padding: 1rem;
    border-top: 1px solid var(--bs-border-color);
    background-color: #f8f9fa;
}

.wizard-option-box {
    display: grid;
    gap: .5rem;
}

.wizard-option-title {
    font-size: .85rem;
    font-weight: 800;
    color: #495057;
}

.wizard-option-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: .5rem;
}

.wizard-option-box li label {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .65rem .75rem;
    border: 1px solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    background-color: #fff;
    cursor: pointer;
}

.wizard-option-box input[type="radio"],
.wizard-option-box input[type="checkbox"] {
    width: 1rem;
    height: 1rem;
    accent-color: var(--site-accent);
}

/* ---------- Summary / Invoice ---------- */

.wizard-summary,
.wizard-totals,
.wizard-invoice,
.wizard-installments,
.wizard-installments-live,
.payment-card,
.wizard-auth-card {
    display: grid;
    gap: 1rem;
}

.card-title {
    margin: 0;
    font-size: 1rem;
    font-weight: 800;
}

.summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .75rem 0;
    border-bottom: 1px solid var(--bs-border-color);
    font-size: .9rem;
}

.summary-row:last-child {
    border-bottom: 0;
}

.summary-row.final {
    margin-top: .25rem;
    padding: 1rem;
    border-radius: var(--bs-border-radius);
    border: 1px solid var(--bs-primary-border-subtle);
    background-color: var(--bs-primary-bg-subtle);
    font-weight: 800;
}

.summary-row strong {
    white-space: nowrap;
}

.table-wrap {
    width: 100%;
    overflow-x: auto;
}

.table-wrap table {
    width: 100%;
    margin-bottom: 0;
    vertical-align: middle;
    border-collapse: collapse;
}

.table-wrap table th,
.table-wrap table td {
    padding: .75rem;
    border-bottom: 1px solid var(--bs-border-color);
    white-space: nowrap;
}

.table-wrap table th {
    font-size: .85rem;
    color: #6c757d;
    font-weight: 800;
    background-color: #f8f9fa;
}

.table-wrap table tr:last-child td {
    border-bottom: 0;
}

.amount {
    direction: ltr;
    text-align: left;
    font-variant-numeric: tabular-nums;
}

.tag {
    display: inline-flex;
    align-items: center;
    margin: .125rem;
    padding: .25rem .55rem;
    border-radius: 999px;
    font-size: .78rem;
    color: var(--bs-secondary-text-emphasis);
    background-color: var(--bs-secondary-bg-subtle);
    border: 1px solid var(--bs-secondary-border-subtle);
}

/* ---------- Payment ---------- */

.pay-info {
    display: grid;
    gap: .5rem;
}

.pay-info .label {
    color: #6c757d;
    font-size: .85rem;
}

.pay-info-card {
    padding: 1rem;
    border-radius: var(--bs-border-radius-lg);
    border: 1px solid var(--bs-primary-border-subtle);
    background-color: var(--bs-primary-bg-subtle);
    color: var(--bs-primary-text-emphasis);
    font-size: 1.15rem;
    font-weight: 800;
}

#payment-plan-preview {
    transition:
        opacity .15s ease,
        filter .15s ease;
}

#payment-plan-preview.is-loading {
    opacity: .55;
    filter: blur(.3px);
    pointer-events: none;
}

/* ---------- Success ---------- */

.success-card {
    text-align: center;
    justify-items: center;
    padding: 2rem 1rem;
}

.success-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-success-text-emphasis);
    background-color: var(--bs-success-bg-subtle);
    border: 1px solid var(--bs-success-border-subtle);
    font-size: 2.25rem;
    font-weight: 900;
}

.success-title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 800;
}

.success-text {
    margin: 0;
    color: #6c757d;
    font-size: .9rem;
    line-height: 2;
}

/* ---------- Resume / Restart Modal ---------- */

.wizard-resume-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(15, 23, 42, .55);
    backdrop-filter: blur(8px);
}

.wizard-resume-dialog {
    width: min(460px, 100%);
    padding: 1.5rem;
    text-align: center;
    background: #fff;
    border-radius: var(--bs-border-radius-xl);
    border: 1px solid var(--bs-border-color);
    box-shadow: 0 2rem 5rem rgba(15, 23, 42, .28);
    animation: wizardModalIn .18s ease-out both;
}

@keyframes wizardModalIn {
    from {
        opacity: 0;
        transform: translateY(14px) scale(.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.wizard-resume-icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 1rem;
    border-radius: var(--bs-border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-primary-text-emphasis);
    background-color: var(--bs-primary-bg-subtle);
    border: 1px solid var(--bs-primary-border-subtle);
    font-size: 1.85rem;
    font-weight: 900;
}

.wizard-resume-dialog h2 {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 800;
}

.wizard-resume-dialog p {
    margin: .75rem 0 1.25rem;
    color: #6c757d;
    font-size: .9rem;
    line-height: 2;
}

.wizard-resume-actions {
    display: grid;
    gap: .625rem;
}

.wizard-resume-actions .btn {
    width: 100%;
    min-height: 44px;
}

/* ---------- Dropdown ---------- */

.dropdown-menu .form-check-input {
    margin-left: .5rem;
}

.dropdown-menu .dropdown-item {
    cursor: pointer;
    white-space: normal;
}

.dropdown-menu .dropdown-item:has(input:checked) {
    background-color: var(--bs-primary-bg-subtle);
    color: var(--bs-primary-text-emphasis);
    font-weight: 700;
}

/* ---------- LTR / OTP ---------- */

input[name="phone"],
input[inputmode="tel"],
input[inputmode="numeric"] {
    direction: ltr !important;
    text-align: left !important;
    unicode-bidi: plaintext !important;
}

.otp-code-input,
input[name="code"] {
    direction: ltr !important;
    text-align: center !important;
    unicode-bidi: plaintext !important;
    letter-spacing: .12em;
}

.otp-code-input::placeholder,
input[name="code"]::placeholder {
    text-align: center !important;
    letter-spacing: 0;
}

/* ---------- Utility ---------- */

@media (max-width: 767.98px) {
    .hide-on-mobile {
        display: none !important;
    }
}

@media (min-width: 768px) {
    .show-on-mobile {
        display: none !important;
    }
}

/* ---------- Responsive ---------- */

@media (max-width: 991.98px) {
    .progress-meta {
        text-align: right;
    }

    .wizard-progress-box {
        width: 100%;
    }

    .form-col-4,
    .form-col-6 {
        grid-column: span 12;
    }

    .wizard-actions .btn {
        width: 100%;
    }

    .summary-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .choice-list label {
        align-items: flex-start;
    }

    .wizard-product-main {
        grid-template-columns: auto 1fr;
    }

    .wizard-product-price {
        grid-column: 2;
        white-space: normal;
    }
}

@media (max-width: 575.98px) {
    .wizard-title {
        font-size: 1.1rem;
    }

    .wizard-resume-dialog {
        padding: 1.125rem;
    }
}




.wizard-page .bi::before,
.wizard-cart-summary .bi::before,
.wizard-mobile-sticky-actions .bi::before,
[data-wizard-price-popover] .bi::before,
[data-wizard-item-price-popover] .bi::before,
[data-wizard-variant-price-popover] .bi::before,
[data-wizard-item-discount-popover] .bi::before,
[data-wizard-variant-discount-popover] .bi::before,
[data-wizard-item-shipping-popover] .bi::before,
[data-wizard-variant-shipping-popover] .bi::before {
    display: inline-block !important;
    transform-origin: center center !important;
    animation: wizard-icon-pop-every-10s 10s ease-in-out infinite !important;
}

@keyframes wizard-icon-pop-every-10s {

    0%,
    90%,
    100% {
        transform: scale(1);
    }

    94% {
        transform: scale(1.45);
    }

    97% {
        transform: scale(1);
    }
}

.flow-category-chevron {
    transition: transform 0.25s ease;
}

.flow-category-chevron.rotate-180 {
    transform: rotate(180deg);
}



/* ---------- Wizard Icon Buttons - بزرگتر شدن ایکون‌ها ---------- */
.wizard-price-icon-btn,
.wizard-variant-price-icon-btn,
.wizard-discount-help-icon-btn {
    width: 22px;       /* قبلاً 17-19px */
    height: 22px;
    min-width: 22px;
    font-size: 12px;   /* قبلاً 8-10px */
}

.wizard-price-icon-btn i,
.wizard-variant-price-icon-btn i,
.wizard-discount-help-icon-btn i {
    font-size: 12px;   /* قبلاً 8-10px */
    line-height: 1.1;  /* کمی افزایش برای تعادل با اندازه جدید */
}

/* اگر خواستیم کمی فضای بین ایکون و متن روی دکمه‌ها بیشتر شود */
.wizard-choice-content {
    gap: .6rem; /* قبلاً .5rem یا .35rem */
}

/* افزایش اندازه متن روی دکمه‌ها کمی */
.wizard-choice-title {
    font-size: 1rem; /* قبلاً .95rem یا کمتر */
}

.wizard-choice-description {
    font-size: .82rem; /* کمی بزرگتر برای خوانایی */
    line-height: 1.55;
}

/* هاور روی ایکون‌ها کمی بیشتر دیده شود */
.wizard-price-icon-btn:hover,
.wizard-variant-price-icon-btn:hover,
.wizard-discount-help-icon-btn:hover {
    transform: scale(1.2); /* کمی بزرگتر روی هاور */
}