/* #TATARR Google Login — fake button vizibil "Continuă cu Google (Gmail)" + Google iframe invizibil dedesubt pentru click */
.tgl-button-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 6px 0 10px;
    gap: 6px;
    box-sizing: border-box;
}
.tgl-btn-stack {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 360px;
}
.tgl-fake-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 10px 18px;
    background: #1A73E8;
    color: #FFFFFF;
    border: 1px solid #1A73E8;
    border-radius: 999px;
    font-family: "Roboto", "Manrope", system-ui, sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    cursor: pointer;
    box-shadow:
        0 1px 3px rgba(0,0,0,0.18),
        0 1px 2px rgba(0,0,0,0.12);
    transition: background .2s ease, box-shadow .2s ease;
    user-select: none;
}
.tgl-fake-btn:hover { background: #1765CC; box-shadow: 0 2px 5px rgba(0,0,0,0.2), 0 2px 3px rgba(0,0,0,0.14); }
.tgl-fake-btn:active { background: #155CB8; }
.tgl-fake-btn .tgl-g-icon {
    width: 18px;
    height: 18px;
    background: #FFFFFF;
    border-radius: 50%;
    padding: 2px;
    flex-shrink: 0;
    box-sizing: content-box;
}
.tgl-fake-btn strong { font-weight: 700; margin-left: 2px; }

/* Google button RIDICAT SUS pe stack — invizibil dar interactiv (primește click-ul) */
.tgl-hidden-google {
    position: absolute !important;
    inset: 0 !important;
    opacity: 0;
    z-index: 2;
    cursor: pointer;
}
.tgl-hidden-google > div, .tgl-hidden-google iframe {
    width: 100% !important;
    height: 100% !important;
}

/* Hint sub buton — clarifica ca Gmail = Google */
.tgl-gmail-hint {
    font-family: "Manrope", system-ui, sans-serif;
    font-size: 11px;
    color: rgba(238,242,248,.55);
    font-style: italic;
    letter-spacing: 0.02em;
    text-align: center;
}
html[data-theme="light"] .tgl-gmail-hint { color: rgba(15,20,28,.55); }

.tgl-checkout-prompt {
    text-align: center;
    font-size: 13px;
    color: var(--ink-muted, rgba(238,242,248,.62));
    margin: 12px 0 6px;
    font-family: "Manrope", system-ui, sans-serif;
}
html[data-theme="light"] .tgl-checkout-prompt { color: rgba(15,20,28,.62); }

/* Divizor "sau cu email si parola" */
.tgl-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 12px 0 18px;
    font-family: "Manrope", system-ui, sans-serif;
    font-size: 10.5px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(238,242,248,.42);
}
.tgl-divider::before, .tgl-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(238,242,248,.18);
}
html[data-theme="light"] .tgl-divider { color: rgba(15,20,28,.42); }
html[data-theme="light"] .tgl-divider::before,
html[data-theme="light"] .tgl-divider::after { background: rgba(15,20,28,.18); }
