.kbs-proforma-wrap{
direction:rtl;
font-family:inherit;
display:flex;
justify-content:center;
width:100%;
padding:20px 0;
}

.kbs-proforma-card{
width:100%;
max-width:920px;
background:#ffffff;
border:1px solid #eceff3;
border-radius:18px;
padding:40px;
box-shadow:0 10px 35px rgba(15,23,42,0.05);
}

.kbs-proforma-header{
text-align:center;
margin-bottom:30px;
}

.kbs-proforma-header h2{
margin:0 0 10px;
font-size:28px;
font-weight:800;
color:#111827;
}

.kbs-proforma-header p{
margin:0;
color:#6b7280;
font-size:15px;
}

.kbs-alert.success{
background:#ecfdf5;
color:#065f46;
border:1px solid #a7f3d0;
border-radius:14px;
padding:14px 16px;
margin-bottom:22px;
font-size:14px;
}

.kbs-proforma-form{
width:100%;
}

/* grid */

.kbs-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:22px;
margin-bottom:22px;
}

/* fields */

.kbs-field{
margin-bottom:18px;
}

.kbs-field label{
display:block;
font-size:14px;
font-weight:700;
margin-bottom:10px;
color:#111827;
}

.kbs-field .req{
color:#dc2626;
font-weight:700;
font-size:13px;
}

.kbs-field input,
.kbs-field textarea{
width:100%;
border:1px solid #e5e7eb;
background:#f9fafb;
color:#111827;
border-radius:14px;
padding:14px 16px;
outline:none;
transition:all .25s ease;
font-size:15px;
box-sizing:border-box;
}

/* focus */

.kbs-field input:focus,
.kbs-field textarea:focus{
border-color:#e02422;
background:#ffffff;
box-shadow:0 0 0 3px rgba(224,36,34,0.12);
}

.kbs-field textarea{
min-height:140px;
resize:vertical;
}

/* placeholder */

.kbs-field input::placeholder,
.kbs-field textarea::placeholder{
color:#b5b5b5;
opacity:1;
}

/* product search */

.kbs-products-field{
position:relative;
}

.kbs-product-search{
position:relative;
}

.kbs-suggestions{
position:absolute;
top:calc(100% + 8px);
right:0;
left:0;
background:#ffffff;
border:1px solid #e5e7eb;
border-radius:14px;
box-shadow:0 12px 30px rgba(0,0,0,0.08);
z-index:50;
overflow:hidden;
display:none;
max-height:260px;
overflow-y:auto;
}

.kbs-suggestion-item{
padding:12px 14px;
cursor:pointer;
border-bottom:1px solid #f3f4f6;
transition:.2s ease;
background:#ffffff;
}

.kbs-suggestion-item:hover{
background:#f3f7ff;
}

.kbs-suggestion-title{
font-size:14px;
font-weight:700;
color:#111827;
}

.kbs-suggestion-price{
font-size:12px;
color:#6b7280;
margin-top:4px;
}

/* selected products */

.kbs-selected-products{
display:flex;
flex-wrap:wrap;
gap:10px;
margin-top:14px;
}

.kbs-selected-item{
display:inline-flex;
align-items:center;
gap:8px;
background:#eff6ff;
border:1px solid #bfdbfe;
color:#1d4ed8;
border-radius:999px;
padding:8px 12px;
font-size:13px;
font-weight:600;
}

.kbs-remove-product{
border:none;
background:transparent;
color:#dc2626;
cursor:pointer;
font-size:16px;
line-height:1;
padding:0;
}

/* submit button */

.kbs-proforma-form .kbs-submit-btn{
width:100%;
border:none !important;
background:#e02422 !important;
color:#ffffff !important;
padding:15px 18px;
border-radius:14px;
font-size:16px;
font-weight:800;
cursor:pointer;
transition:all .25s ease;
margin-top:8px;
}

.kbs-proforma-form .kbs-submit-btn:hover{
background:#c81d1b !important;
transform:translateY(-1px);
box-shadow:0 12px 25px rgba(224,36,34,0.25);
}

/* mobile */

@media (max-width:768px){

.kbs-proforma-card{
padding:24px;
border-radius:16px;
}

.kbs-grid{
grid-template-columns:1fr;
gap:0;
}

.kbs-proforma-header h2{
font-size:24px;
}

}
