#syvo-wa-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999999;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

#syvo-wa-bubble {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0,0,0,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
}

#syvo-wa-bubble svg { width: 30px; height: 30px; fill: #fff; }

#syvo-wa-panel {
    position: absolute;
    bottom: 68px;
    right: 0;
    width: 280px;
    background: #fff;
    color: #222;
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.25);
    padding: 18px;
    display: none;
}

#syvo-wa-panel.syvo-visible { display: block; }

#syvo-wa-teaser {
    position: absolute;
    bottom: 68px;
    right: 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    background: #fff;
    color: #222;
    padding: 12px 16px;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.2);
    font-size: 13px;
    line-height: 1.4;
    max-width: 220px;
    cursor: pointer;
    opacity: 0;
    transform: translateY(6px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

#syvo-wa-teaser.syvo-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

#syvo-wa-teaser-close {
    background: none;
    border: none;
    color: #999;
    font-size: 12px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    order: 2;
}

#syvo-wa-panel h3 {
    margin: 0 0 6px;
    font-size: 15px;
}

#syvo-wa-panel p {
    margin: 0 0 14px;
    font-size: 12px;
    color: #666;
    line-height: 1.4;
}

#syvo-wa-panel label {
    display: block;
    font-size: 12px;
    color: #444;
    margin: 10px 0 4px;
}

#syvo-wa-panel input, #syvo-wa-panel textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 8px 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 13px;
}

#syvo-wa-panel textarea { resize: vertical; min-height: 50px; }

#syvo-wa-submit {
    width: 100%;
    margin-top: 14px;
    padding: 10px;
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

#syvo-wa-close {
    position: absolute;
    top: 10px;
    right: 12px;
    background: none;
    border: none;
    color: #999;
    font-size: 16px;
    cursor: pointer;
    line-height: 1;
}
