/* ==========================================
   سیستم فروش کارت به کارت سئوبیلیتی - نسخه 4.0
   ========================================== */

.scc-wrapper {
    margin: 20px 0;
    direction: rtl;
    font-family: inherit;
    box-sizing: border-box;
}

/* --- دکمه‌ها --- */
.scc-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease-in-out;
    text-align: center;
    box-sizing: border-box;
}

.scc-btn-primary { 
    background: #0073aa; 
    color: #fff; 
}

.scc-btn-primary:hover { 
    background: #005177; 
}

.scc-btn-success { 
    background: #27ae60; 
    color: #fff; 
}

.scc-btn-success:hover {
    background: #219150;
}

.scc-copy-btn {
    cursor: pointer;
    padding: 4px 10px;
    font-size: 12px;
    background: #2196f3;
    color: #fff;
    border: none;
    border-radius: 4px;
}

/* --- باکس dynamic قیمت --- */
.scc-custom-price-box {
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    line-height: 1.6;
}

.scc-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    font-size: 1.1em;
}

.scc-install-note {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed rgba(0, 0, 0, 0.15);
    font-size: 0.88em;
    opacity: 0.95;
}

/* --- پنجره پاپ‌آپ (Modal) --- */
.scc-modal {
    position: fixed;
    z-index: 999999;
    left: 0; 
    top: 0;
    width: 100%; 
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(3px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    box-sizing: border-box;
}

.scc-modal-content {
    background: #fff;
    margin: auto;
    padding: 25px;
    border-radius: 12px;
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    text-align: right;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    position: relative;
}

.scc-close {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 24px;
    font-weight: bold;
    color: #888;
    cursor: pointer;
}

.scc-close:hover {
    color: #e74c3c;
}

/* --- کارت بانکی --- */
.scc-card-info {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 13px;
}

.scc-card-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}

.scc-card-num {
    font-weight: bold;
    letter-spacing: 1px;
    color: #1e88e5;
}

/* --- فیلدهای فرم --- */
.scc-field {
    margin-bottom: 12px;
}

.scc-field label {
    display: block;
    margin-bottom: 5px;
    font-size: 13px;
    font-weight: 600;
    color: #334155;
}

.scc-field input[type="text"],
.scc-field input[type="file"] {
    width: 100%;
    padding: 9px 12px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    box-sizing: border-box;
    font-size: 14px;
}

.scc-field input:focus {
    border-color: #0073aa;
    outline: none;
}

/* --- پیام موفقیت --- */
.scc-alert-info {
    background: #e0f2fe;
    border-right: 4px solid #0284c7;
    color: #0369a1;
    padding: 14px;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.6;
}

.scc-support-note {
    background: #fff8e1;
    border: 1px solid #ffe082;
    color: #795548;
    padding: 12px;
    border-radius: 6px;
    font-size: 13px;
    line-height: 1.6;
}