/* ROBOKALI consent bubble + control bar — styles for the pricing page tour.
   Same pattern as agences-landing.css (.ag-* prefix), prefixed .pp-* here to
   avoid collision when the bundle is shared. */
.pp-consent-bubble {
    position: fixed;
    bottom: 220px;
    right: 60px;
    z-index: 10005;
    max-width: 340px;
    padding: 32px 22px 18px;
    border-radius: 18px;
    background: linear-gradient(145deg, #1a1040, #2d1b69);
    border: 1px solid rgba(102, 126, 234, 0.4);
    color: #e8e4f8;
    font-size: 0.9rem;
    line-height: 1.6;
    font-family: Inter, sans-serif;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(102, 126, 234, 0.15);
    pointer-events: auto;
    opacity: 0;
    transform: translateY(10px) scale(0.96);
    animation: ppConsentFadeIn 0.5s ease forwards;
}
.pp-consent-bubble::after {
    content: '';
    position: absolute;
    bottom: -14px;
    right: 40px;
    width: 0; height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 14px solid #2d1b69;
    filter: drop-shadow(0 2px 3px rgba(0,0,0,0.3));
}
@keyframes ppConsentFadeIn { to { opacity: 1; transform: translateY(0) scale(1); } }
.pp-consent-bubble p { margin: 0 0 16px; font-weight: 400; }
.pp-consent-bubble .pp-voice-badge {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px; height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.35rem; color: #fff;
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.5), 0 0 0 4px #1a1040;
    animation: ppVoicePulse 1.8s ease-in-out infinite;
}
.pp-consent-bubble .pp-voice-badge::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(102, 126, 234, 0.5);
    animation: ppVoiceRipple 1.8s ease-out infinite;
    pointer-events: none;
}
@keyframes ppVoicePulse {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50%      { transform: translateX(-50%) scale(1.08); }
}
@keyframes ppVoiceRipple {
    0%   { opacity: 0.8; transform: scale(1); }
    100% { opacity: 0;   transform: scale(1.6); }
}
.pp-consent-bubble .pp-consent-buttons {
    display: flex; gap: 10px; align-items: center; justify-content: center;
}
.pp-consent-bubble .pp-btn-yes {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 18px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff; border: none; border-radius: 10px;
    cursor: pointer; font-size: 0.85rem; font-weight: 600;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.pp-consent-bubble .pp-btn-yes:hover {
    transform: scale(1.06);
    box-shadow: 0 4px 18px rgba(102, 126, 234, 0.4);
}
.pp-consent-bubble .pp-btn-no {
    display: inline-flex; align-items: center;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    cursor: pointer; font-size: 0.82rem; font-weight: 500;
    transition: background 0.2s ease, color 0.2s ease;
}
.pp-consent-bubble .pp-btn-no:hover {
    background: rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 480px) {
    .pp-consent-bubble { right: 10px; bottom: 150px; max-width: 280px; font-size: 0.82rem; padding: 28px 16px 14px; }
    .pp-consent-bubble .pp-consent-buttons { flex-direction: column; gap: 8px; }
    .pp-consent-bubble .pp-btn-yes,
    .pp-consent-bubble .pp-btn-no { width: 100%; justify-content: center; }
}

/* Control bar */
#pp-landing-controls {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 10006;
    display: flex;
    flex-direction: row;
    gap: 4px;
    background: rgba(15, 12, 41, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(102, 126, 234, 0.25);
    border-radius: 10px;
    padding: 4px 6px;
}
#pp-landing-controls button {
    background: none;
    border: none;
    color: rgba(255,255,255,0.5);
    cursor: pointer;
    font-size: 0.8rem;
    width: 28px;
    height: 28px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all 0.15s;
}
#pp-landing-controls button:hover {
    color: #fff;
    background: rgba(102, 126, 234, 0.3);
}
#pp-landing-controls #pp-lc-stop {
    color: rgba(239, 68, 68, 0.5);
}
#pp-landing-controls #pp-lc-stop:hover {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.15);
}
#pp-landing-controls #pp-lc-mute.muted {
    color: #f59e0b;
}
@media (max-width: 768px) {
    #pp-landing-controls {
        bottom: 4px;
        left: 12px;
        right: auto;
    }
    #pp-landing-controls button { width: 26px; height: 26px; font-size: 0.72rem; }
}
