/* BASIC css start */
.shop-footer * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }
    .shop-footer a {
        text-decoration: none;
        color: inherit;
    }
    .shop-footer ul {
        list-style: none;
    }

    /* 푸터 전체 컨테이너 */
    .shop-footer {
        background-color: #f9f9f9;
        margin-top: 40px;
        color: #000;
        text-align: center;
        border-top: 1px solid #eeeeee;
    }

    /* 1. 소셜 아이콘 영역 */
    .ft-social {
        padding: 10px 0;
        display: flex;
        justify-content: center;
        gap: 25px;
    }
    .ft-social a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* 2. 진회색 메뉴 바 */
    .ft-menu {
        background-color: #555;
        display: flex;
        justify-content: center;
        gap: 25px;
        padding: 7px 0;
    }
    .ft-menu a {
        color: #fff;
        font-size: 12px;
    }

    /* 3. 사업자 정보 영역 */
    .ft-info-wrap {
        padding: 17px 15px 12px;
    }
    
    /* 토글 버튼(a태그) */
    .ft-info-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        font-weight: 400;
        cursor: pointer;
        margin-bottom: 11px;
        letter-spacing: -0.02em;
    }
    .ft-info-toggle svg {
        margin-left: 7px;
        transition: transform 0.3s ease;
        transform: rotate(180deg);
    }
    /* 토글 열림 상태일 때 화살표 회전 */
    .ft-info-toggle.open svg {
        transform: rotate(0deg);
    }

    /* 숨겨진 상세 정보 */
    .ft-info-details {
        font-size: 11px;
        color: #333333;
        line-height: 1;
        word-break: keep-all;
        letter-spacing: -0.02em;
    }
    .ft-info-details p {
        margin-bottom: 4px;
    }
    .ft-info-details .divider {
        color: #dddddd;
        margin: 0 4px;
        font-size: 13px;
    }
    .ft-info-details .bold-link {
        font-weight: bold;
        text-decoration: underline;
        font-size: 9px;
        letter-spacing: 0;
    }
    .ft-escrow {
        margin-top: 10px;
    }

    /* 4. 약관 및 카피라이트 */
    .ft-policies {
        margin-top: 11px;
        font-size: 11px;
        color: #999;
        letter-spacing: -0.02em;
    }
    .ft-policies a:nth-of-type(2) { 
        color: #555; 
    }
    .ft-policies .divider {
        margin: 0 5px;
        color: #dddddd;
    }
    .ft-copyright {
        margin-top: 9px;
        font-size: 11px;
        color: #999;
    }

    /* 5. 하단 PC/APP 버튼 영역 */
    .ft-bottom-btns {
        display: flex;
        justify-content: center;
        gap: 15px;
        padding: 15px;
        border-top: 2px solid #e5e5e5;
    }
    .ft-bottom-btns a {
        display: flex;
        width: 100px;
        background-color: #eeeeee;
        color: #555555;
        font-size: 12px;
        font-weight: 400;
        border-radius: 30px;
        letter-spacing: -0.02em;
        height: 26px;
        align-items: center;
        justify-content: center;
    }
.ft-social a[aria-label="Instagram"] img {
    width: 19px;
}
.ft-social a[aria-label="Facebook"] img {
    width: 9px;
}
.ft-social a[aria-label="YouTube"] img {
    width: 20px;
}


.quick-menu {
    position: fixed; 
    bottom:65px;
    right:15px;   
    z-index: 10; 
}

.quick-menu a img {width:40px;}
 

/* BASIC css end */

