/* VaiFrame Cookie Consent Banner Styles */
/* - 모든 페이지 공통 (layout.nc header에서 자동 로드) */
/* - 화면 하단 고정 + 브랜드 그라디언트 Accept 버튼 */

.vf-cookie-banner {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 99999;
    background: #1f2937;
    color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    padding: 16px 20px;
    display: none;
    align-items: center;
    gap: 16px;
    font-family: 'Inter', 'Pretendard', system-ui, -apple-system, sans-serif;
    font-size: 14px;
    line-height: 1.5;
}

.vf-cookie-banner.is-show {
    display: flex;
}

.vf-cookie-banner .vf-cb-text {
    flex: 1 1 auto;
    min-width: 0;
}

.vf-cookie-banner .vf-cb-text strong {
    display: block;
    font-weight: 600;
    margin-bottom: 2px;
    color: #ffffff;
}

.vf-cookie-banner .vf-cb-text a {
    color: #a5b4fc;
    text-decoration: underline;
    cursor: pointer;
}

.vf-cookie-banner .vf-cb-text a:hover {
    color: #c7d2fe;
}

.vf-cookie-banner .vf-cb-actions {
    flex: 0 0 auto;
    display: flex;
    gap: 8px;
}

.vf-cookie-banner .vf-cb-btn {
    appearance: none;
    border: 0;
    cursor: pointer;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    padding: 9px 18px;
    transition: opacity 0.15s ease, transform 0.1s ease;
}

.vf-cookie-banner .vf-cb-btn:hover {
    opacity: 0.92;
}

.vf-cookie-banner .vf-cb-btn:active {
    transform: translateY(1px);
}

.vf-cookie-banner .vf-cb-btn-primary {
    background: linear-gradient(135deg, #4f46e5, #a855f7);
    color: #ffffff;
}

@media (max-width: 640px)
{
    .vf-cookie-banner {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 14px 16px;
        left: 12px;
        right: 12px;
        bottom: 12px;
    }

    .vf-cookie-banner .vf-cb-actions {
        justify-content: flex-end;
    }
}