.lordnk-wrapper {
    direction: rtl;
    text-align: right;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: #ffffff;
    padding: 24px 12px;
}

.lordnk-card {
    max-width: 780px;
    margin: 24px auto;
    background-color: #ffffff;
    border: 1px solid #000000;
    border-radius: 12px;
    padding: 24px 20px 28px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.04);
}

/* عناوين */
.lordnk-title,
.lordnk-bank-title {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 18px;
}

/* نموذج الشحن */
.lordnk-form {
    margin-top: 8px;
}

.lordnk-field {
    margin-bottom: 14px;
}

.lordnk-field-row {
    display: flex;
    gap: 14px;
    margin-bottom: 14px;
}

.lordnk-field-row .lordnk-field {
    flex: 1;
    margin-bottom: 0;
}

.lordnk-field label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 4px;
}

.lordnk-field input,
.lordnk-field select {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #000000;
    font-size: 13px;
    background-color: #ffffff;
}

.lordnk-field input:focus,
.lordnk-field select:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(0,0,0,0.07);
}

/* زر أساسي */
.lordnk-submit-wrapper {
    text-align: center;
    margin-top: 18px;
}

.lordnk-primary-btn {
    min-width: 210px;
    border-radius: 30px;
    padding: 12px 28px;
    border: none;
    background-color: #001f4d;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0,0,0,0.16);
    transition: transform 0.1s ease, box-shadow 0.1s ease, background-color 0.15s ease;
}

.lordnk-primary-btn:hover {
    background-color: #012964;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

.lordnk-primary-btn:active {
    transform: translateY(0);
    box-shadow: 0 3px 10px rgba(0,0,0,0.18);
}

/* رسالة نجاح / خطأ */
.lordnk-message-area {
    margin-bottom: 16px;
}

.lordnk-success,
.lordnk-error {
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.8;
}

.lordnk-success {
    background-color: #e6f7e6;
    border: 1px solid #5cb85c;
    color: #256b25;
}

.lordnk-error {
    background-color: #fdeaea;
    border: 1px solid #d9534f;
    color: #a94442;
}

/* قسم ملخص الطلب */
.lordnk-order-summary {
    border-radius: 10px;
    border: 1px solid #000000;
    padding: 14px 14px 8px;
    background-color: #ffffff;
    margin-bottom: 16px;
}

/* قسم البنك */
.lordnk-bank-card {
    margin-top: 24px;
}

.lordnk-bank-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 10px;
}

.lordnk-bank-logo-slot {
    min-width: 72px;
    max-width: 120px;
}

.lordnk-bank-logo-img {
    display: block;
    max-width: 100%;
    height: auto;
}

.lordnk-bank-section {
    border-radius: 10px;
    border: 1px solid #000000;
    padding: 14px 14px 8px;
    background-color: #ffffff;
    margin-bottom: 16px;
}

.lordnk-bank-field {
    border-radius: 8px;
    border: 1px solid #000000;
    padding: 8px 10px 6px;
    margin-bottom: 8px;
}

.lordnk-bank-field:last-child {
    margin-bottom: 0;
}

.lordnk-bank-label {
    font-size: 13px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 4px;
}

.lordnk-bank-value {
    font-size: 13px;
    color: #000000;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    word-break: break-all;
}

/* زر النسخ تحت المعلومات */
.lordnk-copy-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    padding: 4px 12px;
    border-radius: 999px;
    border: 1px solid #000000;
    background-color: #000000;
    color: #ffffff;
    cursor: pointer;
    white-space: nowrap;
    width: auto !important;
    min-width: 0 !important;
    margin: 0;
    line-height: 1.2;
}

.lordnk-copy-btn:hover {
    opacity: 0.86;
}

/* رفع الإيصال */
.lordnk-upload-label {
    font-size: 14px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 8px;
}

.lordnk-upload-input input[type="file"] {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #000000;
    background-color: #ffffff;
    font-size: 13px;
}

/* الملاحظة الحمراء */
.lordnk-note {
    margin-top: 6px;
    margin-bottom: 16px;
    font-size: 13px;
    color: #c71b1b;
    line-height: 1.8;
}

/* موبايل */
@media (max-width: 600px) {
    .lordnk-card {
        padding: 18px 14px 22px;
        margin: 18px auto;
    }

    .lordnk-field-row {
        flex-direction: column;
        gap: 0;
    }

    .lordnk-bank-header {
        flex-direction: row-reverse;
        align-items: center;
    }
}
