.profile-page {
    padding: 24px 0 64px
}

.profile-shell {
    padding: 24px;
    border-radius: 34px;
    background: linear-gradient(135deg, rgba(255, 230, 109, .14), rgba(78, 205, 196, .12), rgba(255, 107, 107, .1));
    box-shadow: 0 18px 34px rgba(90, 97, 138, .1)
}

.profile-sidebar,
.profile-panel {
    border-radius: 30px;
    background: #fff;
    box-shadow: 0 18px 34px rgba(90, 97, 138, .1)
}

.profile-card,
.profile-menu,
.profile-panel {
    padding: 24px
}

.profile-avatar {
    width: 84px;
    height: 84px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b6b, #ffd56f);
    color: #fff;
    font-family: "Baloo 2", cursive;
    font-size: 1.8rem;
    font-weight: 800
}

.profile-card h1,
.panel-head h2 {
    margin: 16px 0 8px;
    font-family: "Baloo 2", cursive;
    color: #2f3550
}

.profile-card p,
.order-item p,
.address-card p {
    color: #6f7693
}

.profile-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px
}

.profile-badges span,
.address-card span {
    display: inline-flex;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(78, 205, 196, .12);
    color: #2f3550;
    font-weight: 800
}

.profile-menu {
    display: grid;
    gap: 10px;
    margin-top: 18px
}

.profile-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 18px;
    color: #2f3550;
    font-weight: 800;
    background: rgba(255, 247, 238, .85)
}

.profile-menu a.active {
    background: linear-gradient(90deg, #ff6b6b, #ff8b8b);
    color: #fff
}

.profile-grid {
    display: grid;
    gap: 20px
}

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

.info-grid small {
    display: block;
    margin-bottom: 6px;
    color: #6f7693;
    font-weight: 700
}

.info-grid strong,
.order-item h3,
.address-card h3 {
    color: #2f3550
}

.order-list {
    display: grid;
    gap: 14px
}

.address-card h3,
.order-list h3 {
    font-size: 18px;
}

.order-item,
.address-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 247, 238, .85)
}

.address-card {
    display: block
}

@media (max-width:767.98px) {
    .info-grid {
        grid-template-columns: 1fr
    }

    .order-item {
        align-items: flex-start;
        flex-direction: column
    }
}