/**
 * Puczek Social Login – Button SVG icons and base styles.
 * Uses the same class names as Super Socializer for CSS compatibility
 * with existing checkout.css in pmpro-customizations.
 */

/* ─── Base container ─── */
.the_champ_login_container {
    width: 100%;
}

.the_champ_login_ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.the_champ_login_ul li {
    margin: 0;
    padding: 0;
}

/* ─── Base button (link-based, no JS needed) ─── */
.theChampLogin {
    display: flex;
    align-items: center;
    width: 100%;
    height: 48px;
    padding: 0 16px 0 14px;
    margin: 0;
    border-radius: 10px;
    cursor: pointer;
    box-sizing: border-box;
    text-decoration: none;
    transition: box-shadow 0.15s ease, filter 0.15s ease;
}

.theChampLogin:hover {
    filter: brightness(0.94);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

/* ─── Facebook button ─── */
.theChampFacebookLogin {
    background-color: #1877f2;
    box-shadow: 0 1px 4px rgba(24, 119, 242, 0.35);
}

.theChampFacebookLogoContainer {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    border-radius: 50%;
    background-color: #fff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.theChampFacebookLoginSvg {
    width: 26px;
    height: 26px;
    background-size: 140%;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%231877f2' d='M24 12.073c0-6.627-5.373-12-12-12s-12 5.373-12 12c0 5.99 4.388 10.954 10.125 11.854v-8.385H7.078v-3.47h3.047V9.43c0-3.007 1.792-4.669 4.533-4.669 1.312 0 2.686.235 2.686.235v2.953H15.83c-1.491 0-1.956.925-1.956 1.874v2.25h3.328l-.532 3.47h-2.796v8.385C19.612 23.027 24 18.062 24 12.073z'/%3E%3C/svg%3E");
}

/* ─── Google button ─── */
.theChampGoogleLogin {
    background-color: #fff;
    border: 1px solid #dadce0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.theChampGoogleLoginSvg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cpath fill='%23EA4335' d='M24 9.5c3.54 0 6.71 1.22 9.21 3.6l6.85-6.85C35.9 2.38 30.47 0 24 0 14.62 0 6.51 5.38 2.56 13.22l7.98 6.19C12.43 13.72 17.74 9.5 24 9.5z'/%3E%3Cpath fill='%234285F4' d='M46.98 24.55c0-1.57-.15-3.09-.38-4.55H24v9.02h12.94c-.58 2.96-2.26 5.48-4.78 7.18l7.73 6c4.51-4.18 7.09-10.36 7.09-17.65z'/%3E%3Cpath fill='%2334A853' d='M10.53 28.59c-.48-1.45-.76-2.99-.76-4.59s.27-3.14.76-4.59l-7.98-6.19C.92 16.46 0 20.12 0 24c0 3.88.92 7.54 2.56 10.78l7.97-6.19z'/%3E%3Cpath fill='%23FBBC05' d='M24 48c6.48 0 11.93-2.13 15.89-5.81l-7.73-6c-2.15 1.45-4.92 2.3-8.16 2.3-6.26 0-11.57-4.22-13.47-9.91l-7.98 6.19C6.51 42.62 14.62 48 24 48z'/%3E%3C/svg%3E");
}
