.wcBtn-popup {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, .4);
    z-index: 99;
    display: none;
}

.wc-popup {
    position: relative;
}

.wc-popup a {
    width: 100%;
    height: 100%;
    display: flex;
}

.wc-closeBtn {
    position: absolute;
    top: 25px; right: 25px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}


.floating-group {
    position: fixed;
    right: 40rem;
    bottom: 40rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform 0.4s, opacity 0.3s;
    z-index: 98;
}

.float-btn {
    width: 60rem;
    height: 60rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: 0.2s;
    text-decoration: none;
}

.float-btn:hover {
    transform: translateY(-3px);
}

.whatsapp {
    color: #fff;
    font-size: 36rem;
    background-color: var(--point-color);
}

.kakao {
    color: #fff;
    font-size: 30rem;
    background-color: var(--point-color);
}

.wechat {
    color: #fff;
    font-size: 34rem;
    background-color: var(--point-color);
}

.line {
    color: #fff;
    font-size: 34rem;
    background-color: var(--point-color);
}

.topBtn {
    color: #fff;
    font-size: 20rem;
    background-color: rgba(0, 0, 0, .3);
}

.float-btn img {
    width: 30px;
    height: auto;
}

.floating-group.hide {
    transform: translateX(100px);
    opacity: 0;
}



.btn-fixed {
    position: fixed;
    bottom: 3%; left: 50%;
    transform: translateX(-50%);
    width: 250rem;
    height: 60rem;
    color: #fff;
    font-size: 22rem;
    font-family: 'Tenor Sans';
    letter-spacing: 0;
    background-color: var(--point-color);
    border-radius: 50rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15rem;
    cursor: pointer;
    transition: 0.3s;
    opacity: .5;
    z-index: 95;
}
.btn-fixed:hover {
    opacity: 1 !important;
}

.btn-fixed i {
    font-size: 20rem;
    margin-bottom: -4px;
}

.form-slide {
    position: fixed;
    bottom: -100%;
    left: 50%;
    transform: translate(-50%, 0%);
    width: 85%;
    background: #fff;
    padding: 60px 50px 40px;
    border-radius: 40px 40px 0 0;
    box-shadow: 0 -15px 50px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 99;
}

.form-slide.active {
    bottom: 0;
}

.form-title {
    color: var(--point-color);
    font-size: 76rem;
    font-weight: 500;
    font-family: 'Tenor Sans';
    margin-bottom: 30rem;
}

.input-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
}

.input-item {
    display: flex;
    flex-direction: column;
    border-left: 1px solid #ddd;
    padding-left: 15px;
}

.input-item:first-child {
    border-left: none;
}

.input-item label {
    color: #444;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 10px;
    letter-spacing: 0;
}

.input-item label span {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: var(--point-color);
    z-index: 1;
}

.input-item input,
.input-item select {
    width: 100%;
    border: none;
    font-size: 20px;
    letter-spacing: 0;
    background: transparent;
}

.input-item input::placeholder {
    color: #aaa;
    font-weight: 300;
}

.input-item select.initial-color {
    color: #aaa;
}

.input-item select {
    color: #000;
}

.input-item select option {
    color: #000;
}

.form-policy {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
}

.form-policy label {
    color: #888;
    font-size: 14px;
    letter-spacing: 0;
}

.form-policy label a {
    text-decoration: underline;
}

.form-policy input[type="checkbox"] {
    width: 16px;
    height: 16px;
    border: 1px solid var(--point-color);
    accent-color: var(--point-color);
}

.submit-circle-btn {
    width: 80px;
    height: 80px;
    background: var(--point-color);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    line-height: 90px;
    transition: all 0.2s;
}

.submit-circle-btn:hover {
    transform: scale(1.05);
    background-color: #000;
}

.send-icon {
    color: #fff;
    font-size: 32px;
}

.form-left {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.close-btn {
    color: #000;
    font-size: 24px;
    border: none;
    cursor: pointer;
    background: none;
}

.form-right {
    float: right;
}


/*==================================================*/
@media (max-width: 1650px) {
    .form-slide {
        width: 50%;
        max-height: 80vh;
        overflow-y: auto;
    }
    
    .input-grid {
        grid-template-columns: repeat(1, 1fr);
        border: none;
    }

    .input-item {
        width: 100%;
        padding: 10rem 0;
        border-left: none;
        border-bottom: 1px solid #ddd;
    }

    .form-left {
        margin-bottom: 30rem;
    }
    
    .form-right {
        margin-top: 50rem;
    }

    .submit-circle-btn {
        width: 70px;
        height: 70px;
        line-height: 75px;
    }

    .send-icon {
        font-size: 26px;
    }
}


@media (max-width: 991px) {
    .wc-popup {
        width: 90%;
    }
    
    .form-slide {
        position: relative;
        position: fixed;
        bottom: 0;
        width: 100%;
        height: 100vh;
        max-height: 100vh;
        border-radius: 0;
        padding: 50rem;
        padding-top: 120rem;
        opacity: 0;
        visibility: hidden;
    }

    .form-slide.active {
        opacity: 1;
        visibility: visible;
    }

    .submit-circle-btn {
        position: static;
        width: 80rem;
        height: 80rem;
        line-height: 90rem;
    }

    .send-icon {
        font-size: 32rem;
    }

    .input-item label {
        margin-bottom: 15px;
    }
}


@media (max-width: 550px) {
    .floating-group {
        gap: 5px;
    }

    .float-btn {
        width: 70rem;
        height: 70rem;
    }

    .wechat {
        font-size: 40rem;
    }

    .kakao {
        font-size: 36rem;
    }
    
    .btn-fixed {
        width: 310rem;
        height: 80rem;
        font-size: 28rem;
    }

    .form-policy label {
        font-size: 11px;
    }

    .form-policy input[type="checkbox"] {
        width: 12px;
        height: 12px;
    }
}