.store-request-part-page {
    background: #ffffff;
    padding: 72px 16px 44px;
}

.store-request-part-page .store-container {
    max-width: 1140px;
}

.store-request-alert-wrap {
    position: fixed;
    top: 82px;
    right: 16px;
    z-index: 1080;
    width: min(380px, calc(100vw - 32px));
}

.store-request-alert-wrap .store-alert {
    align-items: flex-start;
    margin-bottom: 8px;
    border-width: 1px;
    box-shadow: none !important;
}

.store-alert-success,
.store-alert--success {
    background: #ecfdf5;
    border-color: #bbf7d0;
}

.store-alert-danger,
.store-alert-error,
.store-alert--danger {
    background: #fef2f2;
    border-color: #fecaca;
}

.request-part-card {
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    background: #ffffff;
    padding: 22px;
    box-shadow: none !important;
}

.request-part-header {
    margin-bottom: 16px;
    text-align: left;
}

.request-part-eyebrow {
    display: inline-flex;
    margin-bottom: 5px;
    color: #2563eb;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .09em;
    line-height: 1.2;
    text-transform: uppercase;
}

.request-part-header h1 {
    margin: 0;
    color: #0f172a;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1.15;
}

.request-part-header p {
    margin: 6px 0 0;
    color: #64748b;
    font-size: 13px;
    line-height: 1.45;
}

.request-part-account-note,
.request-part-source,
.request-part-success {
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 12.5px;
    line-height: 1.45;
}

.request-part-account-note {
    margin-bottom: 14px;
    border: 1px solid #bfdbfe;
    background: #eff6ff;
    color: #1e40af;
}

.request-part-success {
    display: grid;
    gap: 2px;
    margin-bottom: 14px;
    border: 1px solid #bbf7d0;
    background: #ecfdf5;
    color: #166534;
}

.request-part-section {
    margin: 16px 0 10px;
    padding-top: 14px;
    border-top: 1px solid #edf2f7;
}

.request-part-section:first-of-type {
    margin-top: 0;
}

.request-part-section h2 {
    margin: 0;
    color: #0f172a;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -.01em;
}

.request-part-form .store-form-label {
    display: block;
    margin-bottom: 5px;
    color: #334155;
    font-size: 12.5px;
    font-weight: 700;
    line-height: 1.25;
}

.request-part-form .store-form-control {
    min-height: 40px;
    width: 100%;
    border-radius: 8px;
    border-color: #cbd5e1;
    color: #0f172a;
    font-size: 13px;
    line-height: 1.35;
    padding: 8px 11px;
}

.request-part-form select.store-form-control {
    padding-right: 30px;
}

.request-part-form textarea.store-form-control {
    min-height: 78px;
    resize: vertical;
}

.request-part-form .store-form-control:focus {
    border-color: #2563eb;
    box-shadow: none !important;
    outline: 2px solid rgba(37, 99, 235, .18);
    outline-offset: 1px;
}

.request-part-form .store-form-control[readonly] {
    background: #f8fafc;
    color: #475569;
    cursor: default;
}

.request-part-form .store-form-control.is-invalid,
.request-part-form .store-form-control[aria-invalid="true"] {
    border-color: #dc2626;
}

.request-part-form .store-form-control.is-invalid:focus,
.request-part-form .store-form-control[aria-invalid="true"]:focus {
    outline-color: rgba(220, 38, 38, .2);
}

.request-part-form .store-field-error {
    min-height: 16px;
    margin-top: 3px;
    color: #dc2626;
    font-size: 11.5px;
    line-height: 1.35;
}

.request-part-source {
    display: grid;
    gap: 2px;
    margin-top: 12px;
    border: 1px dashed #cbd5e1;
    background: #f8fafc;
    color: #475569;
}

.request-part-source strong {
    color: #0f172a;
}

.request-part-actions {
    justify-content: space-between;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid #edf2f7;
}

.request-part-actions .store-btn {
    min-height: 40px;
    padding: 8px 16px;
}

.request-part-spinner {
    display: none;
    width: 14px;
    height: 14px;
    margin-right: 7px;
    border: 2px solid rgba(255, 255, 255, .55);
    border-top-color: #ffffff;
    border-radius: 999px;
    animation: request-part-spin .8s linear infinite;
}

.request-part-form.is-submitting .request-part-spinner {
    display: inline-block;
}

@keyframes request-part-spin {
    to { transform: rotate(360deg); }
}

@media (max-width: 767.98px) {
    .store-request-part-page {
        padding: 64px 12px 34px;
    }

    .request-part-card {
        padding: 16px;
        border-radius: 12px;
    }

    .request-part-header {
        margin-bottom: 14px;
    }

    .request-part-header h1 {
        font-size: 22px;
    }

    .request-part-section {
        margin: 14px 0 9px;
        padding-top: 12px;
    }

    .request-part-actions {
        align-items: stretch;
        flex-direction: column-reverse;
        gap: 8px;
    }

    .request-part-actions .store-btn {
        width: 100%;
        justify-content: center;
    }

    .store-request-alert-wrap {
        top: 72px;
        right: 12px;
        width: calc(100vw - 24px);
    }
}
