body{
    background:#f5f7fb;
    font-family:Arial,Helvetica,sans-serif;
}

.container{
    width:1200px;
    max-width:95%;
    margin:40px auto;
}

.back-btn{
    text-decoration:none;
    color:#333;
    display:inline-block;
    margin-bottom:20px;
    font-weight:600;
}

.business-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    background:#fff;
    border-radius:15px;
    padding:25px;
    box-shadow:0 3px 12px rgba(0,0,0,.06);
}

.logo{
    width:90px;
    height:90px;
    border-radius:12px;
    overflow:hidden;
    background:#f3f3f3;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-right:20px;
}

.logo img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.business-header .details{
    flex:1;
}

.business-header h1{
    margin:0;
    font-size:32px;
}

.badge{
    display:inline-block;
    padding:6px 14px;
    border-radius:50px;
    color:#fff;
    margin-top:12px;
    margin-right:8px;
    font-size:13px;
}

.approved{
    background:#28a745;
}

.pending{
    background:#f99529;
}

.rejected{
    background:#dc3545;
}

.featured{
    background:#0066ff;
}

.rating{
    text-align:right;
}

.score{
    font-size:36px;
    color:#f99529;
    font-weight:bold;
}

.actions{
    margin:25px 0;
}

.btn{
    display:inline-block;
    padding:12px 20px;
    border-radius:8px;
    background:#f99529;
    color:#fff;
    text-decoration:none;
    margin-right:10px;
}

.content-grid{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:25px;
}

.card{
    background:#fff;
    border-radius:15px;
    padding:25px;
    margin-bottom:25px;
    box-shadow:0 3px 12px rgba(0,0,0,.06);
}

.card h2{
    margin-top:0;
    margin-bottom:20px;
}

.info-table{
    width:100%;
}

.info-table th{
    width:170px;
    text-align:left;
    padding:12px;
    color:#666;
}

.info-table td{
    padding:12px;
}

.description{
    line-height:1.8;
    color:#555;
}

.owner-box{
    display:flex;
    align-items:center;
}

.owner-photo{
    width:70px;
    height:70px;
    border-radius:50%;
    background:#eee;
    overflow:hidden;
    margin-right:15px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.owner-photo img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.owner-photo i{
    font-size:60px;
    color:#bbb;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}

.stat-card{
    background:#fff7ef;
    border-radius:12px;
    padding:19px;
    text-align:center;
}

.stat-card i{
    color:#f99529;
    font-size:28px;
}

.stat-card h3{
    margin:12px 0 5px;
    font-size:24px;
}

.stat-card span{
    color:#777;
}

.gallery-grid{

display:grid;

grid-template-columns:
repeat(auto-fill,minmax(220px,1fr));

gap:18px;

}

.gallery-image{

width:100%;

height:180px;

border-radius:12px;

object-fit:cover;

transition:.3s;

cursor:pointer;

}

.gallery-image:hover{

transform:scale(1.05);

}

.review-card{

border-bottom:1px solid #eee;

padding:20px 0;

}

.review-card:last-child{

border:none;

}

.review-header{

display:flex;

justify-content:space-between;

align-items:center;

margin-bottom:10px;

}

.review-header h4{

margin:0;

font-size:18px;

}

.review-stars{

color:#ff9800;

font-size:18px;

margin-top:6px;

}

.review-date{

font-size:13px;

color:#888;

}

.review-body{

line-height:1.8;

margin-top:10px;

color:#444;

}

.owner-reply{

margin-top:20px;

padding:18px;

background:#fff8ef;

border-left:4px solid #f99529;

border-radius:8px;

}

.empty-box{

padding:60px;

text-align:center;

color:#999;

}

.empty-box i{

font-size:55px;

margin-bottom:15px;

color:#ddd;

}