
/* [디자인토큰 SSOT] 챗봇 위젯 전체 폰트 상속 — MS Shell Dlg 방지 및 메인폰트 강제 연동 */
#givia-chat-widget-root,
#borom-chat-widget-root,
.gwc-trigger-btn,
.gwc-backdrop,
.gwc-drawer,
.gwc-drawer *,
.gwc-trigger-btn * {
    font-family: var(--font-family, 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, system-ui, 'Segoe UI', Roboto, 'Helvetica Neue', 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif) !important;
}
/* ==========================================================================
   Borom WebMCP - Channel Talk (ALF) Style Chat Popup & Drawer Styles (GWC)
   ========================================================================== */

/* 1. 플로팅 트리거 버튼 (우측 하단 원형 캡슐) */
.gwc-trigger-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 99998;
    padding: 12px 18px;
    background: #ffffff;
    color: #1e293b;
    border: 1px solid #e2e8f0;
    border-radius: 9999px;
    box-shadow: 0 10px 25px -4px rgba(0, 0, 0, 0.12), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: -apple-system, BlinkMacSystemFont, "Pretendard", "Segoe UI", Roboto, sans-serif;
}

.gwc-trigger-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 14px 30px -4px rgba(0, 0, 0, 0.16);
}

.gwc-trigger-icon {
    font-size: 22px;
    line-height: 1;
}

.gwc-trigger-text {
    text-align: left;
    line-height: 1.25;
}

.gwc-trigger-sub {
    font-size: 10px;
    font-weight: 700;
    color: #2563eb;
    display: block;
}

.gwc-trigger-main {
    font-size: 13px;
    font-weight: 800;
    color: #0f172a;
}

/* 2. 채널톡 스타일 컴팩트 팝업 컨테이너 (모달 카드 형태) */
.gwc-backdrop {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 99999;
    width: 390px;
    max-width: calc(100vw - 32px);
    height: var(--gwc-h-desk, min(680px, calc(100vh - 48px)));
    max-height: calc(100vh - 48px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px) scale(0.96);
    transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: -apple-system, BlinkMacSystemFont, "Pretendard", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
}

.gwc-backdrop.open {
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translateY(0) scale(1) !important;
}

@media (max-width: 1024px) {
    .gwc-backdrop {
        width: 380px;
        height: var(--gwc-h-tab, min(620px, calc(100vh - 40px)));
        max-height: calc(100vh - 40px);
    }
}

@media (max-width: 480px) {
    .gwc-backdrop {
        bottom: 0;
        right: 0;
        left: 0;
        width: 100vw;
        max-width: 100vw;
        height: var(--gwc-h-mob, 100%);
        max-height: 100vh;
        border-radius: 0;
    }
    .gwc-backdrop .gwc-drawer {
        border-radius: 0 !important;
        border: none !important;
    }
}

/* 3. 모달 카드 셸 */
.gwc-drawer {
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.14), 0 1px 3px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #f1f5f9;
}

/* 4. 상단 채널톡 미니멀 헤더 */
.gwc-header {
    background: #0f172a;
    color: #ffffff;
    padding: 14px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

.gwc-header-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.gwc-back-btn {
    background: transparent;
    border: none;
    color: inherit;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    padding: 0 4px;
    opacity: 0.85;
    transition: opacity 0.15s;
}

.gwc-back-btn:hover {
    opacity: 1;
}

.gwc-header-avatar {
    font-size: 20px;
    line-height: 1;
}

.gwc-header-title {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.2px;
}

.gwc-header-close {
    background: transparent;
    border: none;
    color: inherit;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    padding: 6px;
    border-radius: 50%;
    opacity: 0.85;
    transition: all 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gwc-header-close:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.12);
}

/* 5. 스크롤 대화창 본문 (마우스 휠 스크롤 완벽 보장) */
.gwc-log {
    flex: 1 1 0% !important;
    min-height: 0 !important;
    max-height: 100% !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    overscroll-behavior: contain !important;
    touch-action: pan-y !important;
    -webkit-overflow-scrolling: touch !important;
    pointer-events: auto !important;
    padding: 16px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.gwc-log::-webkit-scrollbar {
    width: 6px;
}

.gwc-log::-webkit-scrollbar-track {
    background: transparent;
}

.gwc-log::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

.gwc-log::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* 6. 채널톡 초기 환영 카드 */
.gwc-welcome-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 16px 18px;
    margin-bottom: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.gwc-w-title {
    font-size: 14px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
    letter-spacing: -0.2px;
}

.gwc-w-greeting {
    font-size: 12.5px;
    line-height: 1.6;
    color: #334155;
    white-space: pre-line;
    margin-bottom: 12px;
}

.gwc-w-hours {
    font-size: 11px;
    line-height: 1.5;
    color: #64748b;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 8px 12px;
    margin-bottom: 10px;
    white-space: pre-line;
}

.gwc-w-guide {
    font-size: 11.5px;
    color: #0f172a;
    font-weight: 600;
    margin-bottom: 12px;
}

/* 퀵 링크 버튼 목록 */
.gwc-quick-links-wrap {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 10px;
}

.gwc-action-pill {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 12.5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.15s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.gwc-action-pill:after {
    content: "›";
    font-size: 16px;
    line-height: 1;
    opacity: 0.7;
}

.gwc-action-pill:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.gwc-pill-blue {
    background: #f0fdf4;
    background: #eff6ff;
    color: #1d4ed8;
    border: 1px solid #bfdbfe;
}
.gwc-pill-blue:hover {
    background: #dbeafe;
}

.gwc-pill-orange {
    background: #fff7ed;
    color: #c2410c;
    border: 1px solid #fed7aa;
}
.gwc-pill-orange:hover {
    background: #ffedd5;
}

.gwc-pill-purple {
    background: #f8fafc;
    color: #1e293b;
    border: 1px solid #cbd5e1;
}
.gwc-pill-purple:hover {
    background: #f1f5f9;
}

.gwc-pill-indigo {
    background: #f1f5f9;
    color: #0f172a;
    border: 1px solid #cbd5e1;
}
.gwc-pill-indigo:hover {
    background: #e2e8f0;
}

/* 7. 추천 질문 말풍선 */
.gwc-suggested-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 2px;
}

.gwc-suggested-bubble {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #334155;
    padding: 7px 12px;
    border-radius: 9999px;
    font-size: 11.5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s ease;
    text-align: left;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}

.gwc-suggested-bubble:hover {
    border-color: #2563eb;
    color: #2563eb;
    background: #f0f7ff;
    transform: translateY(-1px);
}

/* 8. 커스텀 빠른 입력 폼 (모던 클린 디자인 - 보라색 제거) */
.gwc-custom-form-card {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    margin-top: 4px;
}

.gwc-cform-header {
    background: #f8fafc;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    border-bottom: 1px solid #f1f5f9;
    user-select: none;
}

.gwc-cform-title {
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 6px;
}

.gwc-cform-title-icon {
    font-size: 14px;
}

.gwc-cform-toggle-btn {
    font-size: 11px;
    font-weight: 600;
    color: #2563eb;
    background: #eff6ff;
    padding: 3px 8px;
    border-radius: 6px;
    border: 1px solid #bfdbfe;
    transition: all 0.15s;
}

.gwc-cform-toggle-btn:hover {
    background: #dbeafe;
}

.gwc-cform-fields-wrap {
    padding: 14px 16px 8px 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gwc-cform-field-full {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.gwc-cform-label {
    font-size: 12px;
    font-weight: 700;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 5px;
}

.gwc-cform-label-icon {
    font-size: 13px;
    line-height: 1;
}

/* 모바일 앱 스타일 사진 업로드 필드 (클린 모던 그레이/블루 톤) */
.gwc-image-upload-box-full {
    width: 100%;
}

.gwc-img-drop-area-app {
    width: 100%;
    box-sizing: border-box;
    border: 2px dashed #cbd5e1;
    border-radius: 14px;
    background: #f8fafc;
    padding: 18px 14px;
    text-align: center;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.gwc-img-drop-area-app:hover {
    border-color: #2563eb;
    background: #f0f7ff;
    transform: translateY(-1px);
}

.gwc-img-app-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    transition: all 0.2s ease;
}

.gwc-img-drop-area-app:hover .gwc-img-app-icon-wrap {
    background: #2563eb;
    color: #ffffff;
    border-color: #2563eb;
    transform: scale(1.05);
}

.gwc-camera-icon-svg {
    width: 22px;
    height: 22px;
}

.gwc-img-app-text-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.gwc-img-app-title {
    font-size: 13px;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.4;
}

.gwc-img-app-desc {
    font-size: 11.5px;
    font-weight: 500;
    color: #64748b;
    line-height: 1.4;
}

.gwc-img-app-action-btn {
    margin-top: 4px;
    padding: 6px 14px;
    background: #2563eb;
    color: #ffffff;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 2px 6px rgba(37, 99, 235, 0.25);
    transition: all 0.15s ease;
}

.gwc-img-drop-area-app:hover .gwc-img-app-action-btn {
    background: #1d4ed8;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.35);
}

/* 하위 호환용 드롭 영역 */
.gwc-img-drop-area {
    width: 100%;
    box-sizing: border-box;
    border: 2px dashed #cbd5e1;
    border-radius: 14px;
    background: #f8fafc;
    padding: 16px;
    text-align: center;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.2s ease;
}

.gwc-img-drop-icon {
    font-size: 24px;
    line-height: 1;
    background: #ffffff;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
}

.gwc-img-drop-info {
    text-align: left;
    flex: 1;
}

.gwc-img-drop-title {
    font-size: 12.5px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 2px;
}

.gwc-img-drop-sub {
    font-size: 11px;
    color: #2563eb;
    font-weight: 500;
}

.gwc-img-preview-box {
    position: relative;
    text-align: center;
    margin-top: 8px;
    background: #f1f5f9;
    border-radius: 12px;
    padding: 8px;
    border: 1px solid #cbd5e1;
}

.gwc-img-preview-box img {
    max-height: 140px;
    max-width: 100%;
    border-radius: 8px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.gwc-img-clear-btn {
    position: absolute;
    top: 6px;
    right: 6px;
    background: rgba(15, 23, 42, 0.8);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    cursor: pointer;
    font-size: 12px;
    line-height: 24px;
    text-align: center;
    transition: background 0.15s;
}

.gwc-img-clear-btn:hover {
    background: #ef4444;
}

/* 세부사항 필드 모던 인풋/텍스트에어리어 */
.gwc-cform-input {
    width: 100%;
    box-sizing: border-box;
    padding: 10px 12px;
    border: 1.5px solid #cbd5e1;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 500;
    color: #1e293b;
    background: #ffffff;
    outline: none;
    transition: all 0.15s ease;
    font-family: inherit;
}

.gwc-cform-input:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.gwc-cform-textarea {
    resize: vertical;
    min-height: 68px;
    line-height: 1.6;
}

.gwc-cform-submit {
    margin: 12px 16px 16px 16px;
    width: calc(100% - 32px);
    padding: 12px 16px;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 13.5px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.2);
    transition: all 0.15s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.gwc-cform-submit:hover {
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.35);
    transform: translateY(-1px);
}

.gwc-btn-icon {
    font-size: 14px;
    line-height: 1;
}

/* 9. 일반 채팅 메시지 말풍선 */
.gwc-msg {
    display: flex;
    gap: 8px;
    max-width: 88%;
}

.gwc-msg-user {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.gwc-msg-bubble {
    padding: 10px 14px;
    border-radius: 16px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.6;
    word-break: break-word;
}

.gwc-msg-assistant .gwc-msg-bubble {
    background: #f8fafc;
    color: #0f172a;
    border: 1px solid #e2e8f0;
    border-top-left-radius: 3px;
}

.gwc-msg-user .gwc-msg-bubble {
    background: #2563eb;
    color: #ffffff;
    border-top-right-radius: 3px;
    box-shadow: 0 2px 6px rgba(37, 99, 235, 0.2);
}

/* 견적 카드 */
.gwc-quote-card {
    background: #ffffff;
    border: 1.5px solid #2563eb;
    border-radius: 14px;
    padding: 14px;
    margin-top: 8px;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.08);
}

.gwc-quote-card h5 {
    margin: 0 0 6px 0;
    font-size: 13.5px;
    font-weight: 700;
    color: #1e293b;
}

.gwc-quote-card-btn {
    display: block;
    width: 100%;
    margin-top: 8px;
    padding: 9px;
    background: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s;
}

.gwc-quote-card-btn:hover {
    background: #1d4ed8;
}

/* ==========================================================================
   10. 하단 알약(Pill Shape) 스타일 모던 채팅 입력 바
   ========================================================================== */
.gwc-bottom-area {
    padding: 10px 16px 14px 16px;
    background: #ffffff;
    border-top: 1px solid #f1f5f9;
    flex-shrink: 0;
}

/* 일체형 알약 캡슐 바: [📎] [메시지 인풋] [↑ 전송버튼] */
.gwc-pill-input-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 9999px;
    padding: 4px 6px 4px 10px;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.gwc-pill-input-bar:focus-within {
    background: #ffffff;
    border-color: #2563eb;
    box-shadow: 0 0 0 3.5px rgba(37, 99, 235, 0.12), 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* 첨부 클립 아이콘 버튼 */
.gwc-attach-pill-btn {
    background: transparent;
    border: none;
    color: #64748b;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    border-radius: 50%;
    transition: all 0.15s ease;
    flex-shrink: 0;
    line-height: 1;
}

.gwc-attach-pill-btn:hover {
    color: #2563eb;
    background: #eff6ff;
}

.gwc-attach-icon-svg {
    display: block;
}

/* 둥근 알약 내부 보더리스 인풋 텍스트 필드 */
.gwc-pill-input-field {
    flex: 1;
    border: none !important;
    background: transparent !important;
    outline: none !important;
    box-shadow: none !important;
    padding: 8px 4px !important;
    font-size: 13.5px !important;
    font-weight: 500 !important;
    color: #0f172a !important;
    line-height: 1.4 !important;
    font-family: inherit !important;
    min-width: 0;
}

.gwc-pill-input-field::placeholder {
    color: #94a3b8;
    font-size: 13px;
}

/* 원형 블루 전송 버튼 */
.gwc-pill-send-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #2563eb;
    color: #ffffff;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 800;
    flex-shrink: 0;
    transition: all 0.15s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 6px rgba(37, 99, 235, 0.3);
}

.gwc-pill-send-btn:hover {
    background: #1d4ed8;
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.4);
}

.gwc-pill-send-btn:active {
    transform: scale(0.94);
}

/* 하위 호환용 레거시 input-box 오버라이드 */
.gwc-input-box {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    background: #f8fafc !important;
    border: 1.5px solid #e2e8f0 !important;
    border-radius: 9999px !important;
    padding: 4px 6px 4px 10px !important;
    flex-direction: row !important;
}

.gwc-input-box input {
    flex: 1 !important;
    border: none !important;
    background: transparent !important;
    outline: none !important;
    padding: 8px 4px !important;
    font-size: 13px !important;
    color: #0f172a !important;
}

.gwc-send-icon-btn {
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    background: #2563eb !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: 0 2px 6px rgba(37, 99, 235, 0.3) !important;
}

/* 하단 첨부 이미지 미니 칩 (사진 첨부 시 알약 바로 위에 노출) */
.gwc-bottom-img-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 8px;
    padding: 4px 8px;
    margin-bottom: 8px;
    width: fit-content;
    max-width: 100%;
}

.gwc-bottom-img-chip img {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    object-fit: cover;
    display: block;
}

.gwc-bottom-img-label {
    font-size: 11px;
    font-weight: 600;
    color: #1d4ed8;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 180px;
}

.gwc-bottom-chip-del {
    background: rgba(15, 23, 42, 0.5);
    border: none;
    color: #ffffff;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    font-size: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: background 0.15s;
}

.gwc-bottom-chip-del:hover {
    background: #ef4444;
}

.gwc-disclaimer {
    font-size: 10px;
    color: #94a3b8;
    text-align: center;
    margin-top: 8px;
}

/* 11. 하단 우측 원형 X 닫기 버튼 (상단 닫기로 일원화하여 제거됨) */

.gwc-fab-close:hover {
    transform: scale(1.06);
    color: #0f172a;
}


.gwc-trigger-icon-svg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    line-height: 1;
    flex-shrink: 0;
}
.gwc-trigger-icon-svg svg {
    width: 100%;
    height: 100%;
    display: block;
}
.gwc-trigger-icon-img {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    object-fit: cover;
    display: block;
    flex-shrink: 0;
}


/* [커서 반응성 강화] 플로팅 챗버튼 및 자식 요소 전체 pointer 보장 */
.gwc-trigger-btn {
    cursor: pointer !important;
    user-select: none !important;
    -webkit-user-select: none !important;
}

.gwc-trigger-btn:hover {
    cursor: pointer !important;
    transform: translateY(-3px) scale(1.03) !important;
    box-shadow: 0 16px 32px -4px rgba(0, 0, 0, 0.22) !important;
    filter: brightness(1.06) !important;
}

.gwc-trigger-btn:active {
    cursor: pointer !important;
    transform: translateY(-1px) scale(0.98) !important;
}

.gwc-trigger-btn * {
    pointer-events: none !important;
    cursor: pointer !important;
}
