* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Vazirmatn', sans-serif;
    background: #eef3f7;
    min-height: 100vh;
    padding: 30px 15px;
    color: #23385b;
}

.container {
    max-width: 1150px;
    margin: auto;
    background: #fff;
    border-radius: 40px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .08);
    overflow: hidden;
}

/* TOAST .toast {
    background: #18b26b;
    color: white;
    padding: 14px 22px;
    border-radius: 14px;
    width: fit-content;
    margin: 0 auto 40px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
}

.toast-close {
    cursor: pointer;
    font-size: 20px;
} */

/* STEPPER */
.stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 70px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 10px;
}

.step-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 90px;
    cursor: pointer;
}

.step-wrapper:hover .step {
    opacity: 0.8;
}

.step {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 4px solid #7b8595;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    background: white;
    color: #56657d;
    z-index: 2;
    transition: all 0.3s ease;
}

.step.active {
    border-color: #0a89d9;
    color: #0a89d9;
}

.step.done {
    border-color: #0a89d9;
    background: #0a89d9;
    color: white;
}

.step-title {
    margin-top: 12px;
    font-size: 14px;
    color: #6c7687;
    text-align: center;
    font-weight: 500;
    width: 100px;
    transition: color 0.3s;
}

.step.active + .step-title {
    color: #0a89d9;
}

.line {
    width: 90px;
    height: 5px;
    background: #dbe8f1;
    margin: 0 10px;
    border-radius: 20px;
    margin-bottom: 38px;
    transition: background 0.3s ease;
}

.line.active {
    background: #0a89d9;
}

/* SECTION */
.section {
    display: none;
    animation: fadeIn 0.3s ease;
}

.section.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.title-area {
    margin-bottom: 35px;
}

.main-title {
    font-size: 56px;
    font-weight: 800;
    color: #26385a;
    position: relative;
    padding-right: 18px;
    line-height: 1.3;
}

.main-title::before {
    content: "";
    position: absolute;
    right: 0;
    top: 10px;
    width: 6px;
    height: 70px;
    border-radius: 20px;
    background: #0a89d9;
}

.subtitle {
    margin-top: 15px;
    color: #64748b;
    font-size: 22px;
    line-height: 1.9;
}

/* DELIVERY STEP */
.delivery-wrapper {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.delivery-card {
    border: 2px solid #cfe6f6;
    border-radius: 35px;
    padding: 35px;
    background: #fff;
    transition: .2s;
    cursor: pointer;
}

.active-delivery {
    background: #eaf6ff;
    border-color: #0a89d9;
    box-shadow: 0 10px 30px rgba(10, 137, 217, .12);
}

.delivery-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 18px;
    margin-bottom: 25px;
}

.delivery-title {
    font-size: 40px;
    font-weight: 800;
    color: #005d92;
}

.delivery-icon {
    font-size: 38px;
}

.delivery-price {
    font-size: 24px;
    color: #23385b;
    font-weight: 600;
}

.delivery-form {
    margin-top: 35px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.delivery-select-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.delivery-select-group label {
    font-size: 22px;
    color: #56657c;
    font-weight: 600;
}

.delivery-select-group select {
    width: 100%;
    height: 75px;
    border-radius: 22px;
    border: 2px solid #b8def6;
    background: white;
    padding: 0 20px;
    font-family: 'Vazirmatn';
    font-size: 20px;
    color: #23385b;
    outline: none;
}

.card {
    border: 2px solid #cfe6f6;
    border-radius: 35px;
    padding: 35px;
    background: #fbfdff;
}

/* PRODUCT STEP */
.product-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.qty-input {
    width: 70px;
    height: 68px;
    border: none;
    background: transparent;
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    color: #164a74;
    font-family: 'Vazirmatn';
    outline: none;
    appearance: textfield;
    -moz-appearance: textfield;
}

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

.product-image {
    width: 260px;
}

.product-image img {
    width: 100%;
    object-fit: contain;
}

.product-content {
    flex: 1;
    min-width: 320px;
}

.product-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 35px;
    color: #1f2d4b;
}

.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 35px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    color: #5d6980;
}

.check {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 3px solid #14b86f;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #14b86f;
    font-weight: bold;
    flex-shrink: 0;
}

.bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 30px;
    flex-wrap: wrap;
}

.price {
    font-size: 50px;
    font-weight: 800;
    color: #004b74;
}

.price span {
    font-size: 26px;
    margin-right: 8px;
}

.quantity-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quantity-label {
    font-size: 22px;
    color: #64748b;
    font-weight: 600;
}

.quantity-controller {
    width: 240px;
    height: 90px;
    border-radius: 28px;
    border: 3px solid #b9ddf6;
    background: #edf7fd;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
}

.qty-btn {
    width: 68px;
    height: 68px;
    border: none;
    border-radius: 18px;
    background: white;
    color: #0a89d9;
    font-size: 42px;
    cursor: pointer;
    font-family: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-number {
    font-size: 36px;
    font-weight: 700;
    color: #164a74;
}

/* =================== CONFIRM STEP =================== */

.confirm-inline-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent;
    border: none;
    padding: 0;
    font-size: 28px;
    font-weight: 700;
    color: #004b74;
    font-family: 'Vazirmatn';
    width: 100%;
    outline: none;
}

.confirm-inline-select:disabled {
    opacity: 1;
    color: #004b74;
    cursor: default;
}

.confirm-inline-select.editing {
    background: white;
    border: 2px solid #b8def6;
    border-radius: 18px;
    padding: 14px 18px;
}

.confirm-card {
    background: #f3f7fa;
    border-radius: 35px;
    padding: 40px 45px;
    display: flex;
    flex-direction: column;
    gap: 34px;
}

.complementary-product {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 24px 0;
    border-bottom: 1px solid #dce8f2;
}

.complementary-product:last-child {
    border-bottom: none;
}

.comp-product-name {
    font-size: 24px;
    font-weight: 700;
    color: #23385b;
}

.comp-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.comp-qty-box {
    width: 170px;
    height: 58px;
    border-radius: 18px;
    border: 2px solid #b8def6;
    background: #edf7fd;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px;
}

.comp-btn {
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 12px;
    background: white;
    font-size: 28px;
    color: #0a89d9;
    cursor: pointer;
    font-family: inherit;
}

.comp-qty {
    font-size: 24px;
    font-weight: 700;
    color: #004b74;
}

.comp-delete {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    border: none;
    background: #fff0f0;
    color: #ff4d4f;
    font-size: 22px;
    cursor: pointer;
}

.addons-total-box {
    margin-top: 35px;
    background: #dfeef8;
    border-radius: 24px;
    padding: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ADDON PRODUCTS */

.addon-products {
    margin-top: 40px;
    border-top: 2px solid #dbe8f1;
    padding-top: 35px;
}

.addon-title {
    font-size: 28px;
    font-weight: 800;
    color: #23385b;
    margin-bottom: 25px;
}

.addon-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 22px;
    border: 2px solid #dbe8f1;
    border-radius: 24px;
    margin-bottom: 18px;
    background: #f8fbfe;
}

.addon-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.addon-name {
    font-size: 22px;
    font-weight: 700;
    color: #23385b;
}

.addon-price {
    font-size: 18px;
    color: #0a89d9;
    font-weight: 700;
}

.addon-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #edf7fd;
    border: 2px solid #b8def6;
    border-radius: 18px;
    padding: 8px 12px;
}

.addon-btn {
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 12px;
    background: white;
    color: #0a89d9;
    font-size: 28px;
    cursor: pointer;
    font-family: inherit;
    font-weight: 700;
}

.addon-qty {
    min-width: 30px;
    text-align: center;
    font-size: 24px;
    font-weight: 800;
    color: #23385b;
}

.addons-total-label {
    font-size: 28px;
    font-weight: 700;
    color: #23385b;
}

.addons-total-price {
    font-size: 42px;
    font-weight: 800;
    color: #004b74;
}

.confirm-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
    margin-top: 20px;
    border-bottom: 1px solid #dce8f2;
    padding-bottom: 24px;
}

.confirm-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.confirm-label {
    min-width: 240px;
    font-size: 24px;
    color: #42536d;
    font-weight: 700;
    text-align: right;
    line-height: 2;
}

.confirm-value {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 14px;
    color: #004b74;
    font-size: 28px;
    font-weight: 800;
    line-height: 2;
}

/* =================== EDITABLE FIELD =================== */

.editable-field {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    width: 100%;
}

/* =================== INLINE INPUT =================== */

.confirm-inline-input,
.confirm-inline-textarea,
.confirm-inline-select {
    width: 100%;
    border: none;
    background: transparent;
    font-size: 28px;
    font-weight: 700;
    color: #004b74;
    font-family: 'Vazirmatn';
    outline: none;
    padding: 0;
    transition: .2s;
}

/* textarea */

.confirm-inline-textarea {
    resize: none;
    min-height: 90px;
    line-height: 2.1;
}

/* readonly */

.confirm-inline-input[readonly],
.confirm-inline-textarea[readonly],
.confirm-inline-select[disabled] {
    cursor: default;
}

/* editing mode */

.confirm-inline-input.editing,
.confirm-inline-textarea.editing,
.confirm-inline-select.editing {
    background: white;
    border: 2px solid #b8def6;
    border-radius: 18px;
    padding: 14px 18px;
    box-shadow: 0 6px 18px rgba(10, 137, 217, .08);
}

/* =================== EDIT BUTTON =================== */

.inline-edit-btn {
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 14px;
    background: #e8f4fd;
    cursor: pointer;
    font-size: 18px;
    color: #0a89d9;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: .2s;
}

.inline-edit-btn:hover {
    background: #d8ecfb;
    transform: translateY(-2px);
}

/* =================== SELECT STYLE =================== */

.confirm-inline-select {
    appearance: none;
    cursor: pointer;
}

/* =================== MOBILE =================== */

@media (max-width: 768px) {

    .confirm-card {
        padding: 24px 20px;
        border-radius: 28px;
        gap: 24px;
    }

    .confirm-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .confirm-label {
        min-width: auto;
        font-size: 18px;
    }

    .confirm-value {
        width: 100%;
        font-size: 20px;
    }

    .confirm-inline-input,
    .confirm-inline-textarea,
    .confirm-inline-select {
        font-size: 20px;
    }

    .confirm-inline-textarea {
        min-height: 110px;
    }

    .inline-edit-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* SHIPPING STEP */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-group label {
    font-size: 20px;
    font-weight: 600;
    color: #42536d;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 2px solid #d6e7f5;
    background: #f9fcff;
    border-radius: 20px;
    padding: 18px 20px;
    font-size: 17px;
    font-family: 'Vazirmatn';
    outline: none;
}

.form-group textarea {
    resize: none;
    min-height: 140px;
}

.full-width {
    grid-column: 1 / 3;
}

/* RECEIPT UPLOAD */
.receipt-info-box {
    background: #e1f1fc;
    border-radius: 24px;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.receipt-card-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.card-number-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    font-weight: 700;
    color: #0b6295;
}

.copy-btn {
    cursor: pointer;
    background: none;
    border: none;
    font-size: 20px;
    color: #62789b;
    display: flex;
    align-items: center;
    transition: color 0.2s;
}

.copy-btn:hover {
    color: #0a89d9;
}

.bank-name {
    font-size: 16px;
    color: #49638c;
    font-weight: 500;
}

.receipt-amount {
    font-size: 20px;
    color: #23385b;
    font-weight: 500;
}

.receipt-amount strong {
    font-size: 26px;
    color: #032a42;
    font-weight: 800;
}

.upload-zone {
    border: 3px dashed #b7dbf5;
    background: #fff;
    border-radius: 35px;
    padding: 50px 30px;
    text-align: center;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 30px;
}

.upload-zone:hover {
    background: #f4fafe;
    border-color: #0a89d9;
}

.upload-icon {
    width: 64px;
    height: 64px;
    background: #f0f7fd;
    border: 2px solid #bce0f9;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #0a89d9;
}

.upload-text {
    font-size: 20px;
    font-weight: 700;
    color: #0b6295;
}

.uploaded-files-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.file-progress-item {
    border: 2px solid #bce0f9;
    background: #f7fbfe;
    border-radius: 20px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.file-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.file-icon {
    font-size: 24px;
    color: #56657d;
}

.file-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.file-name {
    font-size: 16px;
    font-weight: 700;
    color: #23385b;
}

.file-status {
    font-size: 14px;
    color: #6c7687;
}

.file-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.delete-file-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
    color: #6c7687;
    transition: color 0.2s;
}

.delete-file-btn:hover {
    color: #e12525;
}

.spinner {
    width: 26px;
    height: 26px;
    border: 3px solid #dcecf7;
    border-top: 3px solid #0a89d9;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* SUCCESS */
.success-section {
    text-align: center;
    padding: 60px 20px;
}

.success-icon {
    font-size: 80px;
    margin-bottom: 30px;
}

.success-title {
    font-size: 48px;
    font-weight: 800;
    color: #18b26b;
    margin-bottom: 20px;
}

.success-subtitle {
    font-size: 22px;
    color: #64748b;
    line-height: 1.9;
}

.error-message {
    display: none;
    margin-top: 8px;
    font-size: 14px;
    color: #ef4444;
    font-weight: 500;
    padding-right: 4px;
}

.input-error {
    border-color: #ef4444 !important;
    background: #fff5f5 !important;
}

.error-text {
    color: #ef4444;
    font-size: 14px;
    margin-top: 6px;
    font-weight: 500;
}

.delivery-card.disabled-delivery {
    opacity: 0.45;
    filter: grayscale(1);
    transform: scale(0.98);
}

.delivery-card.active-delivery {
    background: #eaf6ff;
    border-color: #0a89d9;
    box-shadow: 0 10px 30px rgba(10, 137, 217, .12);
}

.delivery-error {
    display: none;
    margin-top: 14px;
    color: #ef4444;
    font-size: 14px;
    font-weight: 600;
}

.delivery-select-error {
    border-color: #ef4444 !important;
    background: #fff5f5 !important;
}

/* ACTIONS */
.actions {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.left-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-family: inherit;
    font-weight: 700;
    transition: .2s;
}

.btn-primary {
    background: #0a89d9;
    color: white;
    padding: 20px 55px;
    font-size: 28px;
    box-shadow: 0 10px 0 #00527f;
}

.btn-primary:hover {
    transform: translateY(4px);
    box-shadow: 0 6px 0 #00527f;
}

.btn-primary:disabled {
    background: #a0c8e8;
    box-shadow: 0 10px 0 #7ba8c4;
    cursor: not-allowed;
}

.btn-secondary {
    background: #eef8ff;
    border: 2px solid #b8def6;
    color: #0a89d9;
    padding: 20px 55px;
    font-size: 28px;
}

.btn-secondary:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    body {
        padding: 0;
    }

    .container {
        border-radius: 0;
        padding: 25px 18px 40px;
    }

    /* ===== STEPPER FIX ===== */
    .stepper {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        width: 100%;
        overflow: visible;
        flex-wrap: nowrap;
        padding: 0 4px;
        margin-bottom: 40px;
        gap: 0;
    }

    .step-wrapper {
        flex: 1;
        min-width: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .step {
        width: 32px;
        height: 32px;
        font-size: 13px;
        border-width: 2px;
        flex-shrink: 0;
    }

    .step-title {
        font-size: 9px;
        width: 100%;
        text-align: center;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        padding: 0 2px;
        margin-top: 5px;
    }

    .line {
        flex: 1;
        max-width: 28px;
        height: 3px;
        margin: 0;
        margin-top: 14px;
        align-self: flex-start;
    }

    /* ===== ADDON CARD FIX ===== */
    .sub-product-card {
        flex-direction: column;
        gap: 10px;
        padding: 14px;
        border-radius: 16px;
    }

    .sub-product-image img {
        width: 100%;
        height: 180px;
        border-radius: 12px;
        object-fit: cover;
    }

    .sub-product-top {
        flex-direction: row;
        align-items: flex-start;
        font-size: 0.95rem;
        gap: 10px;
    }

    .sub-product-price {
        font-size: 0.95rem;
        white-space: nowrap;
    }

    .sub-product-bottom {
        justify-content: flex-start;
    }

    .sub-qty-box {
        flex-direction: row;
        align-items: center;
        gap: 10px;
    }

    .sub-qty-input {
        width: 70px;
        height: 38px;
    }

    /* ===== INVOICE FIX ===== */
    .invoice-product-item {
        flex-wrap: wrap;
        gap: 8px;
        padding: 12px 0;
    }

    .invoice-product-info {
        flex: 1 1 100%;
    }

    .invoice-product-name {
        font-size: 0.9rem;
    }

    .invoice-product-price {
        font-size: 0.8rem;
    }

    .invoice-qty-controller {
        flex: 1;
        justify-content: flex-start;
    }

    .invoice-qty-btn {
        width: 28px;
        height: 28px;
        border-radius: 8px;
        font-size: 1rem;
    }

    .invoice-qty-input {
        width: 48px;
        height: 32px;
        font-size: 0.85rem;
    }

    .invoice-line-total {
        min-width: auto;
        font-size: 0.9rem;
        text-align: right;
        flex: 1;
        justify-content: flex-end;
        display: flex;
    }

    .invoice-total-box {
        font-size: 0.95rem;
        flex-wrap: wrap;
        gap: 6px;
    }

    /* ===== REST OF MOBILE ===== */
    .main-title {
        font-size: 34px;
        padding-right: 15px;
    }

    .main-title::before {
        height: 45px;
    }

    .subtitle {
        font-size: 17px;
    }

    .card {
        padding: 22px 18px;
        border-radius: 28px;
    }

    .product-title {
        font-size: 30px;
    }

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

    .feature {
        font-size: 18px;
    }

    .bottom-row {
        flex-direction: column-reverse;
        align-items: flex-start;
    }

    .quantity-controller {
        width: 100%;
    }

    .price {
        font-size: 36px;
    }

    .delivery-card {
        padding: 22px 18px;
        border-radius: 28px;
    }

    .delivery-title {
        font-size: 24px;
    }

    .delivery-price {
        font-size: 17px;
    }

    .delivery-form {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .delivery-select-group label {
        font-size: 16px;
    }

    .delivery-select-group select {
        height: 60px;
        border-radius: 16px;
        font-size: 16px;
    }

    .confirm-card {
        padding: 25px 20px;
        border-radius: 26px;
        gap: 24px;
    }

    .confirm-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .confirm-label {
        min-width: auto;
        font-size: 18px;
    }

    .confirm-value {
        font-size: 20px;
        line-height: 1.8;
    }

    .confirm-value span {
        font-size: 16px;
    }

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

    .full-width {
        grid-column: auto;
    }

    .actions {
        flex-direction: column;
    }

    .left-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .btn-primary, .btn-secondary {
        font-size: 22px;
        padding: 18px;
    }

    .receipt-info-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 18px;
    }

    .card-number-wrapper {
        font-size: 18px;
    }

    .receipt-amount {
        font-size: 16px;
        width: 100%;
        border-top: 1px solid #bce0f9;
        padding-top: 12px;
    }

    .receipt-amount strong {
        font-size: 20px;
    }

    .upload-zone {
        padding: 35px 20px;
    }

    .upload-text {
        font-size: 16px;
    }
}
