/* 마이페이지 스타일 */
.mypage-header {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 480px;
    height: 56px;
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
    padding: 0 8px;
    z-index: 100;
}
.mypage-header__back {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mypage-header__title {
    flex: 1;
    text-align: center;
    font-size: 17px;
    font-weight: 600;
}
.mypage-header__right { width: 40px; }

.mypage-content {
    padding-top: 56px;
}

/* 사용자 정보 */
.user-info {
    padding: 24px 16px;
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    color: #fff;
}
.user-info__name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 4px;
}
.user-info__id {
    font-size: 14px;
    opacity: 0.8;
}
.user-info__point {
    display: flex;
    justify-content: space-between;
    background: rgba(255,255,255,0.15);
    border-radius: 8px;
    padding: 12px 16px;
    margin-top: 16px;
}
.user-info__point-item {
    text-align: center;
}
.user-info__point-label {
    font-size: 12px;
    opacity: 0.8;
    margin-bottom: 4px;
}
.user-info__point-value {
    font-size: 18px;
    font-weight: 700;
}

/* 로그인 안내 */
.login-prompt {
    padding: 40px 16px;
    text-align: center;
    background: #f5f5f5;
}
.login-prompt__text {
    font-size: 15px;
    color: #666;
    margin-bottom: 16px;
}
.login-prompt__btn {
    display: inline-block;
    padding: 12px 32px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 8px;
    font-weight: 500;
}

/* 메뉴 그룹 */
.menu-group {
    background: #fff;
    margin-top: 8px;
}
.menu-group__title {
    padding: 16px 16px 8px;
    font-size: 13px;
    color: #888;
}
.menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    border-bottom: 1px solid #f5f5f5;
}
.menu-item:last-child {
    border-bottom: none;
}
.menu-item__left {
    display: flex;
    align-items: center;
    gap: 12px;
}
.menu-item__icon {
    width: 24px;
    height: 24px;
    color: #666;
}
.menu-item__text {
    font-size: 15px;
    color: #333;
}
.menu-item__badge {
    background: #f44336;
    color: #fff;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 10px;
}
.menu-item__arrow {
    color: #ccc;
}

/* 로그아웃 */
.logout-btn {
    display: block;
    width: calc(100% - 32px);
    margin: 24px 16px;
    padding: 14px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    color: #666;
    font-size: 15px;
}

/* 홈페이지 정보 */
.site-info-section { 
    padding: 20px 20px 30px; 
    background: #fff7f0; 
}

.site-info-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #8B4513;
}

.site-info-preview { 
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 13px;
    color: #555;
}

.site-info-preview p {
    margin: 0;
    line-height: 1.3;
}

.site-info-extra {
    color: #8B4513;
    font-weight: 500;
}
