/* BASIC css start */
/* ========================================
   FALLING LAND 기본 하단
======================================== */

#footer {
    position: relative;
    width: 100%;
    min-width: 0;
    margin: 150px 0 0;
    color: #282828;
    background: #f7f4ee;
    border-top: 1px solid #dedbd5;
}

#footer a {
    color: inherit;
    text-decoration: none;
}

#footer ul,
#footer li,
#footer p,
#footer h2,
#footer h3 {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* 상단 정보 영역 */

#footer .fl-footer-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 0.7fr;
    gap: 55px;
    width: 100%;
    max-width: 1540px;
    margin: 0 auto;
    padding: 65px 55px 55px;
}

/* 브랜드 */

#footer .fl-footer-brand h2 {
    color: #1c1c1c;
    font-size: 25px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.7px;
}

#footer .fl-footer-slogan {
    margin-top: 16px;
    color: #666;
    font-size: 13px;
    line-height: 1.6;
}

#footer .fl-footer-instagram {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 29px;
    color: #444;
    font-size: 12px;
}

#footer .fl-footer-instagram i {
    font-size: 18px;
}

#footer .fl-footer-instagram:hover {
    color: #000;
}

/* 공통 제목 */

#footer .fl-footer-section h3 {
    margin-bottom: 19px;
    color: #1c1c1c;
    font-size: 13px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.5px;
}

/* 고객센터 */

#footer .fl-footer-phone {
    color: #1c1c1c;
    font-size: 21px;
    line-height: 1;
    font-weight: 700;
}

#footer .fl-footer-description {
    margin-top: 14px;
    color: #666;
    font-size: 12px;
    line-height: 1.75;
}

#footer .fl-footer-contact,
#footer .fl-footer-notice {
    margin-top: 17px;
    color: #8a8a8a;
    font-size: 11px;
    line-height: 1.65;
}

/* 이용안내 */

#footer .fl-footer-guide li {
    margin-bottom: 11px;
}

#footer .fl-footer-guide li:last-child {
    margin-bottom: 0;
}

#footer .fl-footer-guide a {
    position: relative;
    display: inline-block;
    color: #666;
    font-size: 12px;
    line-height: 1.3;
}

#footer .fl-footer-guide a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -3px;
    left: 0;
    height: 1px;
    background: #333;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.2s ease;
}

#footer .fl-footer-guide a:hover {
    color: #222;
}

#footer .fl-footer-guide a:hover::after {
    transform: scaleX(1);
}

/* 사업자 정보 */

#footer .fl-company-area {
    width: 100%;
    padding: 26px 55px 30px;
    background: #efebe4;
    border-top: 1px solid #dedbd5;
}

#footer .fl-company-info,
#footer .fl-copyright {
    width: 100%;
    max-width: 1540px;
    margin-right: auto;
    margin-left: auto;
}

#footer .fl-company-info {
    color: #777;
    font-size: 11px;
    line-height: 1.75;
}

#footer .fl-company-info p {
    display: flex;
    flex-wrap: wrap;
    gap: 2px 19px;
}

#footer .fl-company-info a {
    color: #444;
    text-decoration: underline;
    text-underline-offset: 2px;
}

#footer .fl-copyright {
    margin-top: 13px;
    color: #929292;
    font-size: 10px;
    letter-spacing: 0.25px;
}

/* 결제·에스크로 로고 */

#footer .footerShopInfoBottom {
    display: block;
    width: 100%;
    padding: 0 55px 28px;
    background: #efebe4;
}

#footer .shop-escrow {
    width: 100%;
    max-width: 1540px;
    margin: 0 auto;
}

/* ========================================
   태블릿
======================================== */

@media screen and (max-width: 1100px) {
    #footer {
        margin-top: 110px;
    }

    #footer .fl-footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 45px 35px;
        padding: 50px 40px;
    }

    #footer .fl-company-area {
        padding-right: 40px;
        padding-left: 40px;
    }

    #footer .footerShopInfoBottom {
        padding-right: 40px;
        padding-left: 40px;
    }
}

/* ========================================
   모바일
======================================== */

@media screen and (max-width: 600px) {
    #footer {
        margin-top: 80px;
    }

    #footer .fl-footer-inner {
        grid-template-columns: 1fr;
        gap: 38px;
        padding: 42px 22px;
    }

    #footer .fl-footer-brand h2 {
        font-size: 22px;
    }

    #footer .fl-footer-phone {
        font-size: 19px;
    }

    #footer .fl-company-area {
        padding: 24px 22px 27px;
    }

    #footer .fl-company-info p {
        display: block;
    }

    #footer .fl-company-info span {
        display: block;
    }

    #footer .footerShopInfoBottom {
        padding: 0 22px 25px;
    }
}

/* =========================================================
   FALLING LAND - 우측 하단 SNS 플로팅
   ========================================================= */

.fl-floating-sns {
    position: fixed;
    right: 18px;
    bottom: 118px;
    z-index: 99999;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
}

.fl-floating-sns-btn {
    display: block;
    width: 34px;
    height: 34px;

    border-radius: 8px;
    overflow: hidden;

    text-decoration: none !important;
    box-sizing: border-box;

    transition: transform 0.2s ease, opacity 0.2s ease;
}

.fl-floating-sns-btn img {
    display: block;
    width: 100%;
    height: 100%;

    object-fit: cover;
    border: 0;
}

.fl-floating-sns-btn:hover {
    transform: translateY(-2px);
    opacity: 0.85;
}

/* =========================================================
   FALLING LAND - FOOTER KAKAO
   ========================================================= */

#footer .fl-footer-kakao {
    display: flex;
    align-items: center;
    width: fit-content;
    gap: 7px;
    margin-top: 10px;

    color: #333;
    font-size: 12px;
    line-height: 17px;
    text-decoration: none;
}

#footer .fl-footer-kakao i {
    font-size: 17px;
    color: #333;
}

#footer .fl-footer-kakao:hover {
    opacity: 0.65;
}

/* =========================================================
   FALLING LAND - FOOTER 4단 균등 정렬
   ========================================================= */

#footer .fl-footer-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 60px;
    align-items: start;
}

#footer .fl-footer-brand,
#footer .fl-footer-section {
    width: 100%;
    margin: 0;
    box-sizing: border-box;
}
/* BASIC css end */

