/* Sticky Contact Bar Plugin - v1.0 */

/* ── Desktop WhatsApp FAB ─────────────────────────────────────── */
#scb-wa-fab {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9000;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--scb-wa-color, #16A34A);
    color: #fff;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(22, 163, 74, 0.45);
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    cursor: pointer;
}

@media (min-width: 768px) {
    #scb-wa-fab {
        display: flex;
    }
}

#scb-wa-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 32px rgba(22, 163, 74, 0.55);
}

#scb-wa-fab svg {
    width: 28px;
    height: 28px;
    fill: #fff;
}

/* Tooltip */
#scb-wa-fab::after {
    content: attr(data-tooltip);
    position: absolute;
    right: 68px;
    background: rgba(0,0,0,0.75);
    color: #fff;
    font-size: 12px;
    white-space: nowrap;
    padding: 5px 10px;
    border-radius: 6px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
}

#scb-wa-fab:hover::after {
    opacity: 1;
}

/* ── Mobile Sticky Bar ────────────────────────────────────────── */
#scb-mobile-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9001;
    background: #fff;
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.10);
    display: flex;
}

@media (min-width: 768px) {
    #scb-mobile-bar {
        display: none;
    }
}

.scb-bar-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 10px 4px;
    text-decoration: none;
    border-right: 1px solid #f3f4f6;
    color: inherit;
    transition: background 0.15s;
    -webkit-tap-highlight-color: transparent;
}

.scb-bar-btn:last-child {
    border-right: none;
}

.scb-bar-btn:active {
    background: rgba(0,0,0,0.05);
}

.scb-bar-btn svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.scb-bar-btn span {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1;
}

/* WhatsApp button */
.scb-bar-btn.scb-btn-whatsapp svg {
    fill: var(--scb-wa-color, #16A34A);
}
.scb-bar-btn.scb-btn-whatsapp span {
    color: #111;
}

/* Call button */
.scb-bar-btn.scb-btn-call svg {
    fill: var(--scb-wa-color, #16A34A);
}
.scb-bar-btn.scb-btn-call span {
    color: #111;
}


/* Body padding so content isn't hidden behind bar */
body.scb-has-mobile-bar {
    padding-bottom: 64px;
}

/* ── Admin Page ───────────────────────────────────────────────── */
.scb-admin-wrap {
    max-width: 720px;
}

.scb-admin-wrap .scb-section {
    background: #fff;
    border: 1px solid #c3c4c7;
    border-radius: 4px;
    padding: 20px 24px;
    margin-bottom: 20px;
}

.scb-admin-wrap .scb-section h2 {
    margin-top: 0;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 15px;
}

.scb-admin-wrap table.form-table th {
    width: 200px;
}

.scb-color-preview {
    display: inline-block;
    width: 18px;
    height: 18px;
    border-radius: 3px;
    border: 1px solid #ccc;
    vertical-align: middle;
    margin-left: 6px;
}
