@charset "utf-8";
/* ========================================
   Side Floating Buttons (PC Only)
   우측 하단 quick메뉴 위 원형 플로팅 버튼: 팝업 다시보기 + TOP
   ======================================== */

/* 컨테이너 — 좌측 하단 고정 */
.wz-side-btn {
    position: fixed;
    left: 0;
    bottom: 35px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

/* 개별 버튼 공통 — quick menu li와 동일한 원형 스타일 */
.wz-side-btn__item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--point-color, #182954);
    color: #fff;
    border: none;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    box-shadow: 2px 2px 1rem 0px rgba(0, 0, 0, 0.25);
    font-family: var(--site-font, 'Pretendard Variable', sans-serif);
    line-height: 1.2;
    text-decoration: none;
    outline: none;
    padding: 0;
    gap: 3px;
}

/* 아이콘 */
.wz-side-btn__icon {
    width: 18px;
    height: 18px;
    fill: currentColor;
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

/* 텍스트 */
.wz-side-btn__label {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: -0.02em;
    white-space: nowrap;
    opacity: 0.9;
}

/* 호버 */
.wz-side-btn__item:hover {
    transform: translateY(-3px) scale(1.08);
    box-shadow: 2px 4px 1.4rem 0px rgba(0, 0, 0, 0.35);
}

.wz-side-btn__item:active {
    transform: scale(0.94);
}

/* 팝업보기 버튼: 팝업 있을 때만 표시 */
.wz-side-btn__item--popup { display: none; }
body.has-popup .wz-side-btn__item--popup { display: flex; }

/* TOP 버튼: 스크롤 위치 기반 투명도 */
.wz-side-btn__item--top {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.wz-side-btn__item--top.is-active {
    opacity: 1;
    pointer-events: auto;
}

/* 모바일 숨기기 */
@media all and (max-width: 768px) {
    .wz-side-btn {
        display: none !important;
    }
}
