
/* VandUtilaje.ro v0.8.0 - seller/dealer profiles */

.dashboard-head-actions{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}

.profile-shell{
    display:grid;
    grid-template-columns:280px minmax(0,1fr);
    gap:28px;
    align-items:start;
}

.profile-preview-card,
.profile-main{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:16px;
    box-shadow:0 3px 16px rgba(17,24,39,.04);
}

.profile-preview-card{
    padding:20px;
    position:sticky;
    top:20px;
}

.profile-preview-card h3{
    margin:8px 0 10px;
}

.profile-preview-card p{
    margin:8px 0;
    color:#6b7280;
}

.profile-type,
.seller-badge{
    display:inline-flex;
    align-items:center;
    min-height:28px;
    padding:0 10px;
    border-radius:999px;
    background:#fff3e8;
    color:#c86108;
    font-size:11px;
    font-weight:800;
    letter-spacing:.04em;
    text-transform:uppercase;
}

.profile-main{
    padding:24px;
}

.profile-section + .profile-section{
    margin-top:26px;
    padding-top:26px;
    border-top:1px solid #eef0f2;
}

.profile-section h2{
    margin:0 0 16px;
}

.profile-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:14px;
}

.profile-grid label{
    display:flex;
    flex-direction:column;
    gap:7px;
}

.profile-grid label > span{
    font-size:11px;
    font-weight:800;
    color:#6b7280;
    text-transform:uppercase;
    letter-spacing:.04em;
}

.profile-grid .wide{
    grid-column:1/-1;
}

.profile-grid input,
.profile-grid textarea{
    width:100%;
    min-width:0;
    border:1px solid #d1d5db;
    border-radius:10px;
    padding:11px 12px;
    background:#fff;
    font:inherit;
}

.profile-grid input:focus,
.profile-grid textarea:focus{
    outline:none;
    border-color:#f47b12;
    box-shadow:0 0 0 3px rgba(244,123,18,.10);
}

.account-type-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:12px;
    margin-bottom:18px;
}

.account-type-option{
    display:flex;
    gap:12px;
    align-items:flex-start;
    padding:16px;
    border:1px solid #d1d5db;
    border-radius:12px;
    cursor:pointer;
    background:#fff;
}

.account-type-option:has(input:checked){
    border-color:#f47b12;
    box-shadow:0 0 0 3px rgba(244,123,18,.08);
}

.account-type-option input{
    margin-top:3px;
    accent-color:#f47b12;
}

.account-type-option span{
    display:grid;
    gap:4px;
}

.account-type-option small{
    color:#6b7280;
    line-height:1.4;
}

.seller-hero{
    padding:46px 0 34px;
    background:#f7f8fa;
    border-bottom:1px solid #e5e7eb;
}

.seller-hero-grid{
    display:grid;
    grid-template-columns:minmax(0,1fr) 320px;
    gap:34px;
    align-items:start;
}

.seller-hero h1{
    margin:10px 0 12px;
    font-size:42px;
}

.seller-description{
    max-width:760px;
    line-height:1.65;
    color:#4b5563;
    white-space:pre-line;
}

.seller-meta{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin-top:18px;
    color:#6b7280;
    font-size:14px;
}

.seller-contact-card{
    display:grid;
    gap:10px;
    padding:20px;
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:16px;
    box-shadow:0 3px 16px rgba(17,24,39,.05);
}

.seller-contact-card strong{
    margin-bottom:3px;
}

.seller-results-head{
    display:flex;
    align-items:end;
    justify-content:space-between;
    gap:16px;
    margin-bottom:20px;
}

.seller-results-head h2{
    margin:4px 0 0;
}

.seller-results-head > strong{
    font-size:30px;
}

@media(max-width:900px){
    .profile-shell,
    .seller-hero-grid{
        grid-template-columns:1fr;
    }

    .profile-preview-card{
        position:static;
    }
}

@media(max-width:640px){
    .profile-main{
        padding:16px;
    }

    .profile-grid,
    .account-type-grid{
        grid-template-columns:1fr;
    }

    .seller-hero h1{
        font-size:32px;
    }
}
