/* Chargie Google Login button — Google brand-compliant */
.cgl-wrapper {
    margin: 0 0 1.25rem;
}
.cgl-button,
a.cgl-button,
.cgl-button:link,
.cgl-button:visited {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    width: 100%;
    padding: 0.625rem 1rem;
    background: #fff;
    color: #1f1f1f;
    border: 1px solid #747775;
    border-radius: 0.5rem;
    font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.25;
    text-decoration: none !important;
    box-shadow: none;
    transition: box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
    box-sizing: border-box;
    cursor: pointer;
}
.cgl-button__label,
a.cgl-button .cgl-button__label {
    text-decoration: none !important;
    border-bottom: none !important;
}
.cgl-button:hover {
    background: #f7f8f8;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
.cgl-button:active {
    background: #eef0f1;
}
.cgl-button:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.35);
}
.cgl-button__icon {
    display: inline-flex;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}
.cgl-button__icon svg {
    width: 100%;
    height: 100%;
    display: block;
}
.cgl-button__label {
    color: inherit;
}

/* "or" separator between the Google button and the WP/WC form below */
.cgl-separator {
    position: relative;
    text-align: center;
    margin: 1rem 0 0.5rem;
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1;
}
.cgl-separator::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e5e7eb;
}
.cgl-separator span {
    position: relative;
    background: #fff;
    padding: 0 0.75rem;
}
