.profile-page {
    padding: 32px 0 60px;
    background: var(--my-bg-light);
    min-height: calc(100vh - 200px);
}

.profile-card-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.profile-card {
    width: 100%;
    max-width: 760px;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    box-shadow: 0 16px 40px rgba(14, 7, 89, 0.06);
}

.profile-banner {
    height: 180px;
    background: linear-gradient(135deg, var(--my-primary) 0%, #ff8a65 100%);
}

.profile-body {
    position: relative;
    text-align: center;
    padding: 0 32px 36px;
}

.profile-avatar-wrap {
    margin-top: -72px;
    margin-bottom: 18px;
}

.profile-avatar {
    width: 144px;
    height: 144px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid #fff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.profile-name {
    font-size: 32px;
    font-weight: 700;
    color: var(--my-secondary);
    margin-bottom: 20px;
}

.profile-meta-list {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.profile-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #fafafa;
    border: 1px solid #f1f1f1;
    border-radius: 999px;
    color: #64748b;
    font-size: 14px;
}

.profile-meta-item i {
    color: var(--my-primary);
}

.profile-product-section {
    margin-top: 12px;
}

.section-heading-wrap {
    margin-bottom: 24px;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--my-secondary);
    margin-bottom: 8px;
}

.section-subtitle {
    font-size: 15px;
    color: var(--my-text-gray);
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .profile-banner {
        height: 150px;
    }

    .profile-avatar {
        width: 120px;
        height: 120px;
    }

    .profile-name {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .profile-page {
        padding: 20px 0 40px;
    }

    .profile-card {
        border-radius: 18px;
    }

    .profile-body {
        padding: 0 20px 28px;
    }

    .profile-banner {
        height: 120px;
    }

    .profile-avatar-wrap {
        margin-top: -56px;
    }

    .profile-avatar {
        width: 110px;
        height: 110px;
    }

    .profile-name {
        font-size: 24px;
    }

    .profile-meta-list {
        flex-direction: column;
        align-items: stretch;
    }

    .profile-meta-item {
        justify-content: center;
        border-radius: 12px;
    }

    .section-title {
        font-size: 24px;
    }
}