/* ==========================================
   Business Profile
========================================== */

.business-page{
    padding:30px 0;
}

.business-page .business-card{
    border:none;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    background:#fff;
}

/* ================= Header ================= */

.business-page .card-header{
    background:#fff;
    border-bottom:1px solid #edf1f5;
    padding:22px 30px;
}

.business-page .card-header h3{
    margin:0;
    font-size:24px;
    font-weight:700;
    color:#1f2937;
}

.business-page .card-header i{
    color:#0d6efd;
    margin-right:8px;
}

/* ================= Body ================= */

.business-page .card-body{
    padding:35px;
}

/* ================= Logo ================= */

.logo-box{
    background:#fafafa;
    border:2px dashed #d7dce2;
    border-radius:15px;
    padding:25px;
    text-align:center;
}

.logo-preview{
    width:180px;
    height:180px;
    object-fit:contain;
    border-radius:12px;
    border:1px solid #ddd;
    background:#fff;
    padding:10px;
}

/* ================= Labels ================= */

.business-page .form-label{
    display:block;
    margin-bottom:8px;
    font-size:14px;
    font-weight:600;
    color:#374151;
}

/* ================= Inputs ================= */

.business-page input,
.business-page textarea,
.business-page select{

    width:100%;
    border:1px solid #d8dde6;
    border-radius:12px;
    padding:12px 15px;
    font-size:15px;
    transition:.3s;
    background:#fff;
}

.business-page input{
    height:50px;
}

.business-page textarea{
    min-height:120px;
    resize:vertical;
}

.business-page input:focus,
.business-page textarea:focus,
.business-page select:focus{

    border-color:#0d6efd;
    box-shadow:0 0 0 .15rem rgba(13,110,253,.15);
    outline:none;
}

/* ================= File Input ================= */

.business-page input[type=file]{

    padding:10px;
    background:#f8f9fb;
}

/* ================= Footer ================= */

.business-page .card-footer{

    background:#fff;
    border-top:1px solid #edf1f5;
    padding:20px 30px;
}

/* ================= Button ================= */

.btn-save{

    background:#0d6efd;
    color:#fff;
    border:none;
    border-radius:12px;
    height:50px;
    padding:0 35px;
    font-size:15px;
    font-weight:600;
    transition:.3s;
}

.btn-save:hover{

    background:#0b5ed7;
    transform:translateY(-2px);
    box-shadow:0 10px 20px rgba(13,110,253,.25);
}

/* ================= Responsive ================= */

@media(max-width:991px){

.logo-box{

    margin-bottom:30px;
}

.logo-preview{

    width:150px;
    height:150px;
}

.business-page .card-body{

    padding:25px;
}

}

@media(max-width:576px){

.business-page{

    padding:15px 0;
}

.business-page .card-header{

    padding:18px;
}

.business-page .card-body{

    padding:18px;
}

.business-page .card-footer{

    padding:18px;
}

.btn-save{

    width:100%;
}

}