.owner-card{
background:#fff;
border-radius:18px;
padding:22px;
box-shadow:0 4px 18px rgba(0,0,0,.08);
margin:25px 0;
overflow:hidden;
}

/* =========================
TOP
========================= */

.owner-top{
display:flex;
align-items:center;
gap:20px;
margin-bottom:20px;
}

.owner-photo{
width:90px;
height:90px;
border-radius:50%;
object-fit:cover;
border:3px solid #2563eb;
flex-shrink:0;
background:#f8fafc;
}

.owner-info{
flex:1;
min-width:0;
}

.owner-info h3{
margin:0;
font-size:22px;
font-weight:700;
line-height:1.3;
word-break:break-word;
}

.verified{
display:inline-block;
background:#16a34a;
color:#fff;
padding:4px 8px;
border-radius:20px;
font-size:11px;
margin-left:8px;
vertical-align:middle;
}

.owner-rating{
margin-top:8px;
font-weight:bold;
font-size:15px;
color:#f59e0b;
}

.owner-location{
margin-top:6px;
color:#666;
font-size:15px;
}

/* =========================
STATS
========================= */

.owner-stats{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:15px;
margin:22px 0;
}

.stat-box{
background:#f8fafc;
border-radius:12px;
padding:16px;
text-align:center;
border:1px solid #edf2f7;
transition:.25s;
}

.stat-box:hover{
transform:translateY(-2px);
box-shadow:0 4px 12px rgba(0,0,0,.08);
}

.stat-value{
font-size:22px;
font-weight:700;
}

.stat-label{
margin-top:6px;
font-size:13px;
color:#666;
}

/* =========================
ONLINE STATUS
========================= */

.owner-online{
margin-bottom:20px;
padding:13px;
border-radius:10px;
font-size:14px;
font-weight:600;
text-align:center;
}

.owner-online.online{
background:#dcfce7;
color:#15803d;
}

.owner-online.offline{
background:#f1f5f9;
color:#475569;
}

/* =========================
BUTTONS
========================= */

.owner-action-grid{
display:grid;
grid-template-columns:repeat(5,1fr);
gap:12px;
margin:20px 0;
}

.owner-btn{
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-decoration:none;
padding:14px 8px;
border-radius:12px;
font-size:13px;
font-weight:600;
border:none;
cursor:pointer;
transition:.25s;
min-height:54px;
}

.owner-btn:hover{
transform:translateY(-2px);
}

.owner-call{
background:#16a34a;
color:#fff;
}

.owner-chat{
background:#2563eb;
color:#fff;
}

.owner-save{
background:#ef4444;
color:#fff;
}

.owner-share{
background:#7c3aed;
color:#fff;
}

.owner-profile{
background:#111827;
color:#fff;
}

/* =========================
ABOUT
========================= */

.owner-about{
margin-top:25px;
padding-top:20px;
border-top:1px solid #e5e7eb;
}

.owner-about h4{
margin-bottom:10px;
font-size:18px;
}

.owner-about p{
line-height:1.8;
color:#555;
margin:0;
}

/* =========================
TABLET
========================= */

@media(max-width:992px){

.owner-action-grid{
grid-template-columns:repeat(3,1fr);
}

}

/* =========================
MOBILE
========================= */

@media(max-width:768px){

.owner-card{
padding:15px;
margin:15px 0;
border-radius:15px;
}

.owner-top{
flex-direction:column;
text-align:center;
gap:12px;
margin-bottom:15px;
}

.owner-photo{
width:90px;
height:90px;
margin:auto;
}

.owner-info{
width:100%;
}

.owner-info h3{
font-size:20px;
}

.owner-rating,
.owner-location{
font-size:14px;
}

.owner-stats{
grid-template-columns:repeat(3,1fr);
gap:8px;
margin:18px 0;
}

.stat-box{
padding:10px 6px;
border-radius:10px;
}

.stat-value{
font-size:17px;
}

.stat-label{
font-size:11px;
line-height:1.3;
}

.owner-online{
padding:10px;
font-size:13px;
margin-bottom:15px;
}

.owner-action-grid{
grid-template-columns:repeat(2,1fr);
gap:10px;
}

.owner-btn{
flex-direction:row;
justify-content:center;
align-items:center;
gap:6px;
padding:12px;
font-size:14px;
min-height:48px;
}

.owner-profile{
grid-column:1/3;
}

.owner-about{
margin-top:18px;
padding-top:18px;
font-size:14px;
}

}

/* =========================
SMALL MOBILE
========================= */

@media(max-width:480px){

.owner-card{
padding:12px;
}

.owner-photo{
width:80px;
height:80px;
}

.owner-info h3{
font-size:18px;
}

.owner-stats{
gap:6px;
}

.stat-box{
padding:8px 4px;
}

.stat-value{
font-size:15px;
}

.stat-label{
font-size:10px;
}

.owner-btn{
font-size:13px;
padding:10px;
}

}