/* Vocalyy — cookie consent banner styles */

#vy-cookie-banner {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 99999;
    pointer-events: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
#vy-cookie-banner.vy-cc-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.vy-cc-card {
    max-width: 1080px;
    margin: 0 auto;
    background: #0b0b0e;
    color: #fafafa;
    border-radius: 16px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.32), 0 0 0 1px rgba(255, 255, 255, 0.06);
    font-family: inherit;
}

.vy-cc-text {
    flex: 1;
    min-width: 0;
}

.vy-cc-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: 0.02em;
}

.vy-cc-msg {
    font-size: 13.5px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.78);
}

.vy-cc-link {
    color: #FD3A25;
    text-decoration: underline;
    font-weight: 600;
}
.vy-cc-link:hover { color: #ff5a45; }

.vy-cc-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.vy-cc-btn {
    border: none;
    border-radius: 999px;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}

.vy-cc-btn-primary {
    background: #FD3A25;
    color: #fff;
    box-shadow: 0 4px 14px rgba(253, 58, 37, 0.35);
}
.vy-cc-btn-primary:hover {
    background: #e62d18;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(253, 58, 37, 0.45);
}

.vy-cc-btn-secondary {
    background: rgba(255, 255, 255, 0.10);
    color: #fafafa;
}
.vy-cc-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.18);
}

@media (max-width: 720px) {
    #vy-cookie-banner { left: 8px; right: 8px; bottom: 8px; }
    .vy-cc-card {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        padding: 16px 18px;
        border-radius: 14px;
    }
    .vy-cc-actions {
        flex-direction: row;
    }
    .vy-cc-btn {
        flex: 1;
        padding: 12px 16px;
    }
    .vy-cc-msg { font-size: 13px; }
}
