/* ═══════════════════════════════════════════════
   Web Toolkit — Social Buttons (Frontend)
   ═══════════════════════════════════════════════ */

/* Base */
.wt-social-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin: 16px 0;
}

.wt-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border-radius: 6px;
    text-decoration: none !important;
    font-size: 13.5px;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: all 0.25s ease;
    cursor: pointer;
    border: none;
    white-space: nowrap;
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}

.wt-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(0,0,0,0.18);
    text-decoration: none !important;
}

.wt-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.wt-icon img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    display: block;
}

.wt-label {
    line-height: 1;
}

/* ─── STYLE A : Mixed Colors ─────────────────── */
.style-a .wt-whatsapp {
    background: #25D366;
    color: #fff !important;
}
.style-a .wt-whatsapp:hover { background: #1ebe5d; }

.style-a .wt-google-news {
    background: #4285F4;
    color: #fff !important;
}
.style-a .wt-google-news:hover { background: #2b6fe0; }

.style-a .wt-google-source {
    background: #fff;
    color: #333 !important;
    border: 1.5px solid #dadce0;
    box-shadow: 0 1px 4px rgba(0,0,0,0.10);
}
.style-a .wt-google-source:hover { background: #f8f9fa; }

/* ─── STYLE B : Red News Theme ───────────────── */
.style-b .wt-btn {
    background: #d32f2f;
    color: #fff !important;
}
.style-b .wt-whatsapp:hover  { background: #b71c1c; }
.style-b .wt-google-news:hover { background: #c62828; }
.style-b .wt-google-source:hover { background: #b71c1c; }

/* ─── STYLE C : Blue Professional ───────────── */
.style-c .wt-btn {
    background: #1a73e8;
    color: #fff !important;
}
.style-c .wt-whatsapp:hover  { background: #1557b0; }
.style-c .wt-google-news:hover { background: #1565c0; }
.style-c .wt-google-source:hover { background: #1557b0; }

/* ─── STYLE D : Dark Premium ─────────────────── */
.style-d .wt-btn {
    background: #1e1e2e;
    color: #fff !important;
    border: 1px solid rgba(255,255,255,0.08);
}
.style-d .wt-whatsapp:hover  { background: #2a2a3e; }
.style-d .wt-google-news:hover { background: #2a2a3e; }
.style-d .wt-google-source:hover { background: #2a2a3e; }

/* ─── Mobile ─────────────────────────────────── */
@media (max-width: 480px) {
    .wt-social-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    .wt-btn {
        justify-content: center;
        padding: 11px 16px;
        font-size: 14px;
    }
}
