
/* 마이페이지 제목 */
.mypageWrap{
    padding-top: 60px;
}
.mypageFrame{
    margin-top: var(--space-3x-large);
    margin-bottom: var(--space-3x-large);
}
.mpTitle{
    text-align: center;
    padding-bottom: var(--space-large);
    border-bottom: 1px solid var(--font-color);
}
.mpTitle h2{
    font-size: var(--heading2);
    font-weight: bold;
    margin-bottom: 1rem;
}

/* 프로필 박스 */
.proBox{
    display: flex;
    align-items: center;
    max-width: 926px;
    margin: 4rem auto;
}
.proBox>div:nth-of-type(1){
    display: flex;
    align-items: center;
}
.proBox>div{
    flex: 1;
    text-align: center;
}
.profile{
    flex: 1;
}
.profile>div{
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
}

/* 위시리스트 장바구니 */
.proBtn{
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-right: 1rem;
}
.proBtn a{
    padding: 0.4rem 0;
    width: 150px;
    border: 1px solid var(--main-color);
    background-color: #fff;
    color: var(--main-color);
    cursor: pointer;
}
.proBtn a:hover{
    background-color: var(--main-color);
    color: #fff;
}


/* 비교하기 문의내역 와콤 포인트 */
.proTxt{
    display: flex;
    justify-content: space-around;
    padding: 1rem 2.5rem;
    flex: 2;
    background-color: var(--background-color);
}
.proTxt>div{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.proTxt img{
    margin-bottom: 0.5rem;
}
.proTxt p{
    font-size: 0.8rem;
}
.proTxt>div p:nth-of-type(1){
    font-size: 0.8rem;
    font-weight: 600;
}



/* 주문배송현황 박스 */
.deliveryBox{
    border: 1px solid var(--font-color);
    max-width: 926px;
    padding: 1.2rem;
    margin: 0 auto;
}
.deliveryBox h4{
    font-weight: 700;
}
.order-status-container{
    display: flex;
    gap: var(--space-normal);
    margin-top: var(--space-normal);
    justify-content: center;
    align-items: center;
}
.order-progress{
    display: flex;
    align-items: flex-end;
    gap: 1rem;
    border-right: 1px solid var(--font-color);
    padding-right: 3rem;
}
.step{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.circle{
    padding: var(--space-large) 2.3rem;
    background-color: var(--background-color);
    border-radius: 50px;
    margin-bottom: var(--space-normal);
}
.step-title{
    font-weight: 600;
}


/* 취소 반품 교환 */
.order-summary {
    margin-left: 3rem;
}

.order-summary div {
    margin-bottom: 1rem;
}

.order-summary span {
    margin-left: 0.5rem;
}




@media (max-width:768px){
    .mypageWrap{
        padding-top: 50px;
    }
    .proBox{
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr;
        align-items: center;       

    }
    .profile{
        display: flex;
        gap: 1rem;
        margin: 1rem;
        flex: 1.5;
        justify-content: center;
    }
    .profile>img{
        max-width: 70px;
    }
    .proBtn{
        flex: 1;
    }
    .proTxt{
        display: flex;
        gap: 3rem;
        padding: 1rem;
    }
    .deliveryBox{
        padding-bottom: 0;
    }
    .order-status-container{
        flex-direction: column;
    }
    .order-progress{
        border-right: none;
        border-bottom: 1px solid var(--font-color);
        padding: 0;
        padding-bottom: 1rem;
    }
    .order-summary {
        margin-left: 0;
        display: flex;

    }
    .order-summary>div{
        padding: 1rem 0;
    }
    .order-summary>div:nth-of-type(1){
        border-right: 1px solid var(--font-color);
        padding-right: 1.5rem;
    }
    .order-summary>div:nth-of-type(2){
        padding-left: 1.5rem;
    }
    .proBtn a {
        width: 100px;
    }

}

@media (max-width:300px){
    html{
        font-size: 10px;
    }
    .profile>img{
        max-width: 50px;
    }
    .proBtn a{
        padding: 0.4rem 0;
        width: 70px;
        border: 1px solid var(--main-color);
        background-color: #fff;
        color: var(--main-color);
        font-size: 10px;
    }
    .circle {
        padding: var(--space-normal) 1.3rem;
    }
    .step-title {
        white-space: nowrap;
    }
}