/* --- Premium Seller Card Styles --- */
.user-profile-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: 'Inter', sans-serif;
}

.user-info-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    margin-top: -120px;/* smaller space on top */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    border: 1px solid #f0f0f0;
}

.user-title {
    position: absolute;
    top: -12px;
    left: 30px;
    background: #ff4d4d;
    color: #fff;
    padding: 4px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(255, 77, 77, 0.3);
}

.user-header {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.user-avatar {
    width: 100px;
    height: 100px;
    border-radius: 18px;
    overflow: hidden;
    border: 3px solid #f8f9fa;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    flex-shrink: 0;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-details {
    flex-grow: 1;
}

.user-name-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.user-name-title h2 {
    margin: 0;
    font-size: 26px;
    font-weight: 800;
    color: #1a1a1a;
}

.showroom-rating {
    display: flex;
    gap: 3px;
    color: #ffc107;
    font-size: 14px;
}

.user-meta {
    display: flex;
    gap: 20px;
    color: #6c757d;
    font-size: 14px;
    flex-wrap: wrap;
}

.user-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.user-meta i {
    color: #ff4d4d;
    font-size: 12px;
}

.user-badge-wrapper {
    margin-left: auto;
}

.user-badge {
    height: 60px;
    width: auto;
}

.contact-buttons {
    display: flex;
    gap: 12px;
}

.btn-modern {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none !important;
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-modern.call {
    background: #f8f9fa;
    color: #1a1a1a;
    border: 1px solid #e9ecef;
}

.btn-modern.call:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}

.btn-modern.whatsapp {
    background: #25d366;
    color: #fff;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.btn-modern.whatsapp:hover {
    background: #21bd5c;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.3);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    border-top: 1px solid #f0f0f0;
    padding-top: 25px;
}

.stat-box {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 15px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid transparent;
}

.stat-box:hover {
    background: #fff;
    border-color: #247a34;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.stat-number {
    font-size: 24px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.stat-number {
    font-size: 24px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 13px;
    color: #6c757d;
    font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .user-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    .user-name-title {
        justify-content: center;
    }
    .user-meta {
        justify-content: center;
    }
    .user-badge-wrapper {
        margin: 0 auto;
    }
    .contact-buttons {
        width: 100%;
    }
    .btn-modern {
        flex: 1;
        justify-content: center;
    }
}
