/* Shop request wizard — aligned with finomarket create-shopping.html */

.shop-request-wizard-page {
    margin: 0;
    min-height: 100dvh;
}

.shop-request-wizard-page .wizard-container .wizard-steps.grid-cols-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
}

.pg-mode-card {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    border: 1.5px solid #e2e8f0;
    border-radius: 14px;
    padding: 14px;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    background: #fff;
}

.pg-mode-card:has(input:checked) {
    border-color: #fa193f;
    box-shadow: 0 0 0 3px rgba(250, 25, 63, 0.12);
    background: #fff7f8;
}

.pg-mode-card input {
    margin-top: 4px;
    flex-shrink: 0;
}

.pg-mode-card__body {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pg-mode-card__body strong {
    font-size: 14px;
    color: #0f172a;
}

.pg-mode-card__body small {
    font-size: 12px;
    line-height: 1.7;
    color: #64748b;
}

.shop-request-wizard-page .pg-required,
.personal-gateway-page .pg-required {
    color: #fa193f;
    font-weight: 700;
    margin-inline-start: 2px;
}

@media (max-width: 640px) {
    .pg-mode-card {
        padding: 12px;
    }

    .pg-mode-card__body strong {
        font-size: 13px;
    }

    .pg-mode-card__body small {
        font-size: 11px;
    }
}

.sr-step-lead {
    color: #64748b;
    font-size: 13px;
    line-height: 1.8;
    margin: -8px 0 20px;
}

.sr-section-head {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 14px;
}

.sr-section-head strong {
    font-size: 15px;
    color: #0f172a;
}

.sr-section-head span {
    font-size: 12px;
    color: #64748b;
    line-height: 1.6;
}

.sr-section-head em {
    font-style: normal;
    color: #94a3b8;
    font-weight: 500;
}

.sr-plan-section {
    margin-bottom: 28px;
}

.sr-plan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
}

.sr-plan-card {
    position: relative;
    cursor: pointer;
    display: block;
}

.sr-plan-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.sr-plan-card__inner {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 150px;
    padding: 16px 14px;
    border: 1.5px solid #e2e8f0;
    border-radius: 14px;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.sr-plan-card:hover .sr-plan-card__inner {
    border-color: #fda4af;
}

.sr-plan-card input:checked + .sr-plan-card__inner {
    border-color: #fa193f;
    box-shadow: 0 0 0 3px rgba(250, 25, 63, 0.12);
    background: linear-gradient(180deg, #fff7f8, #fff);
    transform: translateY(-2px);
}

.sr-plan-card__badge {
    align-self: flex-start;
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 999px;
    background: #f1f5f9;
    color: #475569;
}

.sr-plan-card input:checked + .sr-plan-card__inner .sr-plan-card__badge {
    background: #ffe4e8;
    color: #be123c;
}

.sr-plan-card__name {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
}

.sr-plan-card__price {
    font-size: 13px;
    color: #334155;
    line-height: 1.5;
}

.sr-plan-card__price small {
    font-size: 11px;
    color: #94a3b8;
}

.sr-plan-card__desc {
    font-size: 12px;
    color: #64748b;
    line-height: 1.6;
}

.sr-plan-card__check {
    margin-top: auto;
    font-size: 12px;
    font-weight: 600;
    color: #fa193f;
    opacity: 0;
}

.sr-plan-card input:checked + .sr-plan-card__inner .sr-plan-card__check {
    opacity: 1;
}

.sr-billing-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 16px;
    padding: 12px 14px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.sr-billing-row > label {
    font-size: 13px;
    font-weight: 600;
    color: #334155;
    margin: 0;
}

.sr-billing-toggle {
    display: inline-flex;
    gap: 6px;
    background: #fff;
    padding: 4px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

.sr-billing-option {
    cursor: pointer;
    margin: 0;
}

.sr-billing-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.sr-billing-option span {
    display: block;
    padding: 7px 14px;
    border-radius: 8px;
    font-size: 12px;
    color: #64748b;
    transition: all 0.15s ease;
}

.sr-billing-option input:checked + span {
    background: #fa193f;
    color: #fff;
    font-weight: 600;
}

.sr-features-section {
    margin-top: 8px;
}

.sr-feature-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sr-feature-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
    margin: 0;
}

.sr-feature-item:hover {
    border-color: #fda4af;
}

.sr-feature-item:has(input:checked) {
    border-color: #fa193f;
    background: #fff7f8;
}

.sr-feature-item input {
    margin-top: 3px;
    flex-shrink: 0;
    accent-color: #fa193f;
}

.sr-feature-item__body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.sr-feature-item__title {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
}

.sr-feature-item__desc {
    font-size: 12px;
    color: #64748b;
    line-height: 1.7;
}

.sr-feature-item__price {
    font-size: 12px;
    color: #be123c;
    font-weight: 600;
}

@media (max-width: 640px) {
    .sr-plan-grid {
        grid-template-columns: 1fr;
    }

    .sr-billing-row {
        flex-direction: column;
        align-items: stretch;
    }
}

.shop-request-wizard-page .wizard-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 100dvh;
    background-color: #eaf2ff;
}

.shop-request-wizard-page .wizard-container .wizard-forms {
    width: 50%;
    flex: 0 0 50%;
    height: 100dvh;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.shop-request-wizard-page .wizard-container .wizard-steps {
    flex-shrink: 0;
    margin: 0;
    padding: 20px 40px 10px 40px;
    background-color: #fff;
    border-bottom: 1px solid #ddd;
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    gap: 10px;
}

.shop-request-wizard-page .wizard-container .wizard-steps .step {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    padding: 5px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: transparent;
    flex: 1;
    text-align: center;
}

.shop-request-wizard-page .wizard-container .wizard-steps .step .step-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 14px;
    color: #9e9e9e;
    border: 2px solid #ddd;
    transition: all 0.3s ease;
}

.shop-request-wizard-page .wizard-container .wizard-steps .step .step-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 11px;
    color: #9e9e9e;
    text-align: center;
}

.shop-request-wizard-page .wizard-container .wizard-steps .step.completed .step-circle,
.shop-request-wizard-page .wizard-container .wizard-steps .step.active .step-circle {
    background-color: #fa193f;
    color: #fff;
    border-color: #fa193f;
}

.shop-request-wizard-page .wizard-container .wizard-steps .step.completed .step-info,
.shop-request-wizard-page .wizard-container .wizard-steps .step.active .step-info {
    color: #04002c;
}

.shop-request-wizard-page .wizard-container .wizard-steps .step:hover .step-circle {
    border-color: #fa193f;
    color: #fa193f;
}

.shop-request-wizard-page .wizard-container .wizard-steps .step.active:hover .step-circle,
.shop-request-wizard-page .wizard-container .wizard-steps .step.completed:hover .step-circle {
    color: #fff;
}

.shop-request-wizard-page .wizard-container .wizard-body {
    flex: 1;
    overflow-y: auto;
    position: relative;
    padding: 20px 40px 120px 40px;
    background-color: #fff;
}

.shop-request-wizard-page .wizard-container .wizard-body .step {
    display: none;
    animation: srSwipeLeft 0.3s ease;
}

.shop-request-wizard-page .wizard-container .wizard-body .step.active {
    display: block;
}

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

.shop-request-wizard-page .wizard-container .wizard-body .step h4 {
    font-size: 24px;
    font-weight: 600;
    color: #04002c;
    margin-bottom: 20px;
}

.shop-request-wizard-page .wizard-container .wizard-body .theme-options {
    margin-top: 12px;
}

.shop-request-wizard-page .wizard-container .wizard-body .theme-options.theme-options--grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
}

.shop-request-wizard-page .wizard-container .wizard-body .theme-option {
    position: relative;
}

.shop-request-wizard-page .wizard-container .wizard-body .theme-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.shop-request-wizard-page .wizard-container .wizard-body .theme-option input[type="radio"]:checked + .theme-card {
    border-color: #fa193f;
    box-shadow: 0 8px 24px rgba(250, 25, 63, 0.16);
    transform: translateY(-2px);
}

.shop-request-wizard-page .wizard-container .wizard-body .theme-option input[type="radio"]:checked + .theme-card img {
    filter: grayscale(0);
    opacity: 1;
}

.shop-request-wizard-page .wizard-container .wizard-body .theme-option input[type="radio"]:checked + .theme-card .theme-title {
    color: #fa193f;
}

.shop-request-wizard-page .wizard-container .wizard-body .theme-option input[type="radio"]:checked + .theme-card .theme-status {
    opacity: 1;
    transform: translateY(0);
}

.shop-request-wizard-page .wizard-container .wizard-body .theme-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
    padding: 10px 10px 15px 10px;
    border: 2px solid #ddd;
    border-radius: 10px;
    background-color: #fff;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.25s ease;
}

.shop-request-wizard-page .wizard-container .wizard-body .theme-card:hover {
    border-color: #fa193f;
}

.shop-request-wizard-page .wizard-container .wizard-body .theme-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 8px;
    filter: grayscale(1);
    opacity: 0.72;
    transition: all 0.25s ease;
}

.shop-request-wizard-page .wizard-container .wizard-body .theme-card .theme-title {
    font-size: 14px;
    font-weight: 600;
    color: #04002c;
}

.shop-request-wizard-page .wizard-container .wizard-body .theme-card .theme-status {
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 4px 8px;
    border-radius: 999px;
    background-color: #fa193f;
    color: white;
    font-size: 12px;
    font-weight: 500;
    opacity: 0;
    transform: translateY(-4px);
    transition: all 0.25s ease;
}

/* Footer actions — override global .btn / .btn-secondary-outline */
.shop-request-wizard-page .wizard-container .wizard-actions {
    display: flex;
    position: fixed;
    bottom: 0;
    right: 0;
    width: 50%;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 15px;
    border-top: 1px solid #ddd;
    background-color: #fff;
    z-index: 20;
}

.shop-request-wizard-page .wizard-container .wizard-actions .btn {
    flex: 1;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px !important;
    min-height: 48px;
    height: auto;
    font-size: 15px;
    font-weight: 500;
    border-radius: 10px !important;
    transition: all 0.3s ease;
    cursor: pointer;
    line-height: 1.4;
    white-space: nowrap;
}

.shop-request-wizard-page .wizard-container .wizard-actions .btn .lucide,
.shop-request-wizard-page .wizard-container .wizard-actions .btn svg {
    width: 20px !important;
    height: 20px !important;
    position: static !important;
    flex-shrink: 0;
}

.shop-request-wizard-page .wizard-container .wizard-actions .btn:disabled {
    opacity: 0.5;
    cursor: not-allowed !important;
    background-color: transparent !important;
    border: 2px solid #ddd !important;
    color: #9e9e9e !important;
}

.shop-request-wizard-page .wizard-container .wizard-actions .btn:disabled .lucide,
.shop-request-wizard-page .wizard-container .wizard-actions .btn:disabled svg {
    color: #9e9e9e !important;
    stroke: #9e9e9e;
}

.shop-request-wizard-page .wizard-container .wizard-actions .btn.btn-primary {
    background-color: #fa193f !important;
    color: #fff !important;
    border: none !important;
}

.shop-request-wizard-page .wizard-container .wizard-actions .btn.btn-primary .lucide,
.shop-request-wizard-page .wizard-container .wizard-actions .btn.btn-primary svg {
    color: #fff !important;
    stroke: #fff;
}

.shop-request-wizard-page .wizard-container .wizard-actions .btn.btn-primary:hover:not(:disabled) {
    box-shadow: 0 6px 16px rgba(250, 25, 63, 0.3);
    transform: translateY(-2px);
    background-color: #fa193f !important;
    color: #fff !important;
}

.shop-request-wizard-page .wizard-container .wizard-actions .btn.btn-secondary-outline {
    background-color: transparent !important;
    color: #04002c !important;
    border: 2px solid #ddd !important;
}

.shop-request-wizard-page .wizard-container .wizard-actions .btn.btn-secondary-outline .lucide,
.shop-request-wizard-page .wizard-container .wizard-actions .btn.btn-secondary-outline svg {
    color: #6c6c73 !important;
    stroke: #6c6c73;
}

.shop-request-wizard-page .wizard-container .wizard-actions .btn.btn-secondary-outline:hover:not(:disabled) {
    border-color: #fa193f !important;
    color: #fa193f !important;
    background: transparent !important;
}

.shop-request-wizard-page .wizard-container .wizard-actions .btn.btn-secondary-outline:hover:not(:disabled) .lucide,
.shop-request-wizard-page .wizard-container .wizard-actions .btn.btn-secondary-outline:hover:not(:disabled) svg {
    stroke: #fa193f;
    color: #fa193f !important;
}

.shop-request-wizard-page .wizard-container .wizard-image .wizard-header {
    width: 100%;
    padding: 50px 40px 10px 40px;
    text-align: center;
    margin: 0;
}

.shop-request-wizard-page .wizard-container .wizard-header h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #04002c;
}

.shop-request-wizard-page .wizard-container .wizard-header p {
    font-size: 16px;
    color: #6c6c73;
    margin: 0;
}

.shop-request-wizard-page .wizard-container .wizard-image {
    width: 50%;
    flex: 0 0 50%;
    height: 100dvh;
    min-height: 100dvh;
    overflow: hidden;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1;
    background-color: #eaf2ff;
}

.shop-request-wizard-page .wizard-container .wizard-image .img-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

.shop-request-wizard-page .wizard-container .wizard-image .wizard-header {
    flex-shrink: 0;
    width: 100%;
}

/* Checkbox detail (sales channels) */
.shop-request-wizard-page .checkbox-group.has-detail .form-check-label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-right: 0;
}

.shop-request-wizard-page .checkbox-group.has-detail .form-check-input {
    flex-shrink: 0;
    float: none;
}

.shop-request-wizard-page .checkbox-group .checkbox-detail {
    display: none;
    margin-top: 8px;
}

.shop-request-wizard-page .checkbox-group .checkbox-detail.show {
    display: block;
}

.shop-request-wizard-page .sr-field-error {
    font-size: 12px;
    color: #ef4444;
    margin-top: 4px;
}

.shop-request-wizard-page .input-group .input.is-invalid {
    border-color: #ef4444;
}

.shop-request-wizard-page .form-radio .form-radio-input.is-invalid ~ .form-radio-label::before {
    border-color: #ef4444;
}

.shop-request-wizard-page .wizard-alert {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #b91c1c;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14px;
    margin-bottom: 16px;
}

.shop-request-wizard-page .sr-review-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    padding: 12px 8px;
    margin-bottom: 4px;
    background: #f8fafc;
    border-radius: 8px;
}

.shop-request-wizard-page .sr-review-row h5 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #04002c;
}

.shop-request-wizard-page .sr-review-row p {
    margin: 0;
    font-size: 14px;
    color: #6c6c73;
    word-break: break-word;
}

/* Domain input with inline https:// prefix */
.shop-request-wizard-page .sr-domain-group {
    position: relative;
}

.shop-request-wizard-page .sr-domain-group .input {
    padding-left: 5.75rem !important;
    padding-right: 0.75rem !important;
    direction: ltr;
    text-align: left;
}

.shop-request-wizard-page .sr-domain-group .domain-prefix {
    position: absolute;
    left: 4px;
    top: 30px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    background-color: #e2e8f0;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #04002c;
    z-index: 2;
    pointer-events: none;
    line-height: 1;
}

/* Success state — centered in right panel */
.shop-request-wizard-page .wizard-container--success .wizard-forms {
    width: 50%;
    flex: 0 0 50%;
    height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    box-sizing: border-box;
    background-color: #fff;
}

.shop-request-wizard-page .wizard-container--success .sr-success-panel {
    text-align: center;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    padding: 16px 8px;
}

.shop-request-wizard-page .wizard-container--success .sr-success-title {
    font-size: 22px;
    font-weight: 600;
    color: #04002c;
    margin: 0 0 12px;
}

.shop-request-wizard-page .wizard-container--success .sr-success-message {
    color: #6c6c73;
    font-size: 14px;
    line-height: 1.7;
    margin: 0 0 24px;
}

.shop-request-wizard-page .wizard-container--success .sr-success-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    min-height: 48px;
    margin: 0 auto;
}

.shop-request-wizard-page .sr-success-panel {
    text-align: center;
    padding: 48px 24px;
    max-width: 480px;
    margin: 0 auto;
}

.shop-request-wizard-page .sr-success-panel .sr-success-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: #22c55e;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shop-request-wizard-page .sr-success-panel .sr-success-icon svg {
    width: 32px;
    height: 32px;
    color: #fff;
}

@media (max-width: 1024px) {
    .shop-request-wizard-page .wizard-container {
        flex-direction: column-reverse;
        min-height: unset;
    }

    .shop-request-wizard-page .wizard-container .wizard-header {
        padding: 40px 20px 30px 20px;
    }

    .shop-request-wizard-page .wizard-container .wizard-header h2 {
        font-size: 24px;
    }

    .shop-request-wizard-page .wizard-container .wizard-header p {
        font-size: 14px;
    }

    .shop-request-wizard-page .wizard-container .wizard-body .step h4 {
        font-size: 20px;
    }

    .shop-request-wizard-page .wizard-container .wizard-image {
        width: 100%;
        flex: none;
        position: relative;
        height: auto;
        min-height: auto;
    }

    .shop-request-wizard-page .wizard-container .wizard-forms {
        width: 100%;
        flex: none;
        height: auto;
        min-height: auto;
    }

    .shop-request-wizard-page .wizard-container .wizard-actions {
        width: 100%;
    }

    .shop-request-wizard-page .wizard-container--success .wizard-forms {
        width: 100%;
        flex: none;
        height: auto;
        min-height: 60vh;
        padding: 32px 20px;
    }
}

@media (max-width: 768px) {
    .shop-request-wizard-page .wizard-container .wizard-body .theme-options.theme-options--grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .shop-request-wizard-page .wizard-container .wizard-header h2 {
        font-size: 20px;
    }

    .shop-request-wizard-page .wizard-container .wizard-header p {
        font-size: 13px;
    }

    .shop-request-wizard-page .wizard-container .wizard-body .step h4 {
        font-size: 18px;
    }
}

@media (max-width: 640px) {
    .shop-request-wizard-page .wizard-container .wizard-steps {
        padding: 20px 10px 10px 10px;
    }

    .shop-request-wizard-page .wizard-container .wizard-steps .step {
        gap: 5px;
    }

    .shop-request-wizard-page .wizard-container .wizard-steps .step .step-info {
        font-size: 12px;
    }

    .shop-request-wizard-page .wizard-container .wizard-body {
        padding-left: 20px;
        padding-right: 20px;
    }

    .shop-request-wizard-page .wizard-container .wizard-body .theme-card {
        padding: 5px 5px 10px 5px;
    }

    .shop-request-wizard-page .wizard-container .wizard-body .theme-card .theme-status {
        top: 10px;
        right: 10px;
        font-size: 10px;
    }
}

/* DNS Guide Box — مشابه تصویر ضمیمه */
.sr-dns-guide {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 16px 20px;
    margin-top: 16px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.sr-dns-guide__header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #fa193f;
}

.sr-dns-guide__header svg,
.sr-dns-guide__header .lucide {
    width: 18px;
    height: 18px;
    color: #fa193f;
}

.sr-dns-guide__text {
    font-size: 13px;
    color: #555;
    line-height: 2;
    margin: 0 0 12px;
}

.sr-dns-guide__text a {
    color: #3a62b9;
    font-weight: 500;
    text-decoration: none;
}

.sr-dns-guide__text a:hover {
    text-decoration: underline;
}

.sr-dns-guide__records {
    display: flex;
    align-items: center;
    gap: 12px;
    direction: ltr;
}

.sr-dns-record {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    letter-spacing: 0.3px;
}

/* Contract signing step */
.sr-contract-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 0 0 12px;
    font-size: 12px;
    color: #64748b;
}

.sr-contract-expand {
    border: 1px solid #e2e8f0;
    background: #fff;
    color: #3a62b9;
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 12px;
    cursor: pointer;
}

.sr-contract-box {
    max-height: min(42vh, 360px);
    overflow: auto;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    margin-bottom: 16px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
    position: relative;
}

.sr-contract-box::after {
    content: "";
    pointer-events: none;
    position: sticky;
    bottom: 0;
    display: block;
    height: 48px;
    margin-top: -48px;
    background: linear-gradient(to top, #f8fafc, transparent);
}

.sr-contract-box.is-expanded {
    max-height: none;
}

.sr-contract-box.is-expanded::after {
    display: none;
}

.sr-contract-box__inner {
    padding: 18px 20px 22px;
    font-size: 13px;
    line-height: 1.85;
    color: #475569;
}

.sr-contract-title {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 12px;
}

.sr-contract-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 13px;
    color: #334155;
    line-height: 1.7;
}

.sr-contract-check input {
    margin-top: 4px;
    flex-shrink: 0;
}
