/* Profile Header Card with Image */
.profile-header-card {
    background: white;
    border-radius: var(--radius-sm);
    padding: 0.5rem 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    
}

.profile-image-wrapper {
    position: relative;
    display: inline-block;
}

.profile-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.seller-company-banner-image {
    width: 150px;
    border-radius: 0% !important;
}

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

.profile-image-placeholder {
    font-size: 4rem;
    color: #000000 !important;
}

.profile-image-upload {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #2c5aa0;
    border: 3px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Profile Info Card */
.profile-info-card {
    background: white;
    border-radius: var(--radius-sm);
    padding: 2rem 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.profile-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5aa0;
    margin: 0 0 1.5rem 0;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}