/**
 * FILE: assets/css/ova-wa-button.css
 * VERSION: 1.0.0 (Phase 1.5 — Floating WhatsApp Button)
 * PURPOSE: Styles for OVA floating WhatsApp button and PDPA consent notice.
 */

/* ── Wrapper + position variants ───────────────────────────────────────────── */
#ova-wa-btn-wrap {
    position: fixed;
    z-index:  9999;
}
.ova-wa-btn-pos-bottom-right { bottom: 24px; right: 24px; }
.ova-wa-btn-pos-bottom-left  { bottom: 24px; left:  24px; }
.ova-wa-btn-pos-top-right    { top:    24px; right: 24px; }
.ova-wa-btn-pos-top-left     { top:    24px; left:  24px; }

/* ── Button ─────────────────────────────────────────────────────────────────── */
#ova-wa-btn {
    display:         flex;
    align-items:     center;
    gap:             8px;
    background:      #25D366;
    color:           #fff;
    border-radius:   50px;
    padding:         12px 20px;
    text-decoration: none;
    font-weight:     600;
    font-size:       15px;
    font-family:     inherit;
    box-shadow:      0 4px 12px rgba(37, 211, 102, 0.4);
    transition:      transform 0.2s ease, box-shadow 0.2s ease;
    white-space:     nowrap;
}
#ova-wa-btn:hover,
#ova-wa-btn:focus {
    transform:       translateY(-2px);
    box-shadow:      0 6px 18px rgba(37, 211, 102, 0.5);
    color:           #fff;
    text-decoration: none;
    outline:         none;
}
#ova-wa-btn svg {
    flex-shrink: 0;
}
.ova-wa-btn-label {
    line-height: 1;
}

/* ── PDPA consent notice card ────────────────────────────────────────────────── */
.ova-wa-pdpa {
    position:      absolute;
    bottom:        calc(100% + 12px);
    right:         0;
    width:         280px;
    background:    #ffffff;
    border:        1px solid #e2e8f0;
    border-radius: 12px;
    padding:       16px;
    box-shadow:    0 8px 24px rgba(0, 0, 0, 0.12);
    font-size:     13px;
    line-height:   1.5;
    color:         #334155;
}

/* Reposition for left-aligned button placements */
.ova-wa-btn-pos-bottom-left .ova-wa-pdpa,
.ova-wa-btn-pos-top-left    .ova-wa-pdpa {
    right: auto;
    left:  0;
}

/* Reposition for top placements */
.ova-wa-btn-pos-top-right .ova-wa-pdpa,
.ova-wa-btn-pos-top-left  .ova-wa-pdpa {
    bottom: auto;
    top:    calc(100% + 12px);
}

.ova-wa-pdpa p {
    margin: 0 0 4px;
}
.ova-wa-pdpa a {
    color:           #25D366;
    text-decoration: underline;
}

.ova-wa-pdpa-actions {
    display:    flex;
    gap:        8px;
    margin-top: 12px;
}

#ova-wa-pdpa-accept {
    flex:          1;
    background:    #25D366;
    color:         #ffffff;
    border:        none;
    border-radius: 8px;
    padding:       8px 12px;
    cursor:        pointer;
    font-weight:   600;
    font-size:     13px;
    transition:    background 0.15s ease;
}
#ova-wa-pdpa-accept:hover {
    background: #1ebe5d;
}

#ova-wa-pdpa-dismiss {
    background:    transparent;
    color:         #64748b;
    border:        1px solid #cbd5e1;
    border-radius: 8px;
    padding:       8px 12px;
    cursor:        pointer;
    font-size:     13px;
    transition:    border-color 0.15s ease, color 0.15s ease;
}
#ova-wa-pdpa-dismiss:hover {
    border-color: #94a3b8;
    color:        #334155;
}
