/* VENDOG Social Login — front-end styles */

/* ─── Container ──────────────────────────────────────────────── */
.vendog-social-login {
    margin: 0 0 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ─── Shared button ───────────────────────────────────────────── */
.vendog-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 11px 18px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.18s ease, box-shadow 0.18s ease, transform 0.1s ease;
    text-decoration: none;
    border: 1px solid transparent;
    letter-spacing: 0.01em;
    box-sizing: border-box;
}

.vendog-btn:active { transform: scale(0.98); }

.vendog-btn .vendog-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* ─── Google ──────────────────────────────────────────────────── */
.vendog-btn-google {
    background: #fff;
    color: #3c4043;
    border-color: #dadce0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.vendog-btn-google:hover {
    background: #f8f9fa;
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
    color: #3c4043;
}

/* ─── Apple ───────────────────────────────────────────────────── */
.vendog-btn-apple { background: #000; color: #fff; border-color: #000; }
.vendog-btn-apple:hover { background: #1a1a1a; color: #fff; }

/* ─── Loading state ───────────────────────────────────────────── */
.vendog-btn.vendog-loading { opacity: 0.7; pointer-events: none; cursor: wait; }
.vendog-btn.vendog-loading::after {
    content: '';
    width: 14px;
    height: 14px;
    border: 2px solid currentColor;
    border-top-color: transparent;
    border-radius: 50%;
    animation: vendog-spin 0.7s linear infinite;
    margin-left: 6px;
}
@keyframes vendog-spin { to { transform: rotate(360deg); } }

/* ─── Hide WooCommerce's own "Or continue with" social heading ── */
/* WooCommerce core outputs this when it detects social login hooks */
.woocommerce-form-login .woocommerce-social-login,
.woocommerce-form-register .woocommerce-social-login,
.woocommerce-social-login-section,
.wc-social-login { display: none !important; }

/* ─── Mobile ──────────────────────────────────────────────────── */
@media (max-width: 480px) {
    .vendog-btn { padding: 13px 16px; font-size: 15px; }
}
