/* thevitaminshots Account Hub — corner sign-in widget */

.tvsauth-widget-root { position: fixed; z-index: 99990; }
.tvsauth-widget-root[data-position="top-right"]    { top: 90px; right: 18px; }
.tvsauth-widget-root[data-position="top-left"]     { top: 90px; left: 18px; }
.tvsauth-widget-root[data-position="bottom-right"] { bottom: 18px; right: 18px; }
.tvsauth-widget-root[data-position="bottom-left"]  { bottom: 18px; left: 18px; }

.tvsauth-w {
	width: 268px;
	background: #fff;
	border: 1px solid rgba(26,23,18,.1);
	border-radius: 16px;
	box-shadow: 0 14px 40px -18px rgba(26,23,18,.45);
	padding: 16px;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
	font-size: 14px;
	line-height: 1.45;
	color: #1A1712;
	box-sizing: border-box;
	animation: tvsauth-w-in .3s ease both;
}

@keyframes tvsauth-w-in {
	from { opacity: 0; transform: translateY(-8px); }
	to   { opacity: 1; transform: none; }
}

.tvsauth-w-close {
	position: absolute;
	top: 6px; right: 8px;
	width: 26px; height: 26px;
	border: none;
	background: transparent;
	color: #9b958b;
	font-size: 18px;
	line-height: 1;
	cursor: pointer;
	border-radius: 50%;
}
.tvsauth-w-close:hover { background: rgba(26,23,18,.06); color: #1A1712; }

.tvsauth-w-title { margin: 0 0 3px; font-size: 13px; color: #6d675e; }
.tvsauth-w-name  { margin: 0 0 2px; font-size: 16px; font-weight: 700; }
.tvsauth-w-mail  { margin: 0 0 12px; font-size: 12px; color: #9b958b; word-break: break-all; }

.tvsauth-w-profile { display: flex; align-items: center; gap: 11px; margin-bottom: 12px; }
.tvsauth-w-avatar {
	width: 44px; height: 44px;
	border-radius: 50%;
	object-fit: cover;
	flex: none;
	background: #f2efe8;
	border: 2px solid var(--tvsauth-brand, #F1C349);
}
.tvsauth-w-profile div { min-width: 0; }
.tvsauth-w-profile .tvsauth-w-mail { margin: 0; }

.tvsauth-w-cta {
	display: block;
	width: 100%;
	min-height: 46px;
	padding: 12px 14px;
	border: none;
	border-radius: 12px;
	background: var(--tvsauth-brand, #F1C349);
	color: var(--tvsauth-ink, #fff);
	font-size: 15px;
	font-weight: 700;
	text-align: center;
	text-decoration: none !important;
	cursor: pointer;
	box-sizing: border-box;
	transition: filter .15s ease, transform .12s ease;
}
.tvsauth-w-cta:hover { filter: brightness(.96); transform: translateY(-1px); }
.tvsauth-w-cta[disabled] { opacity: .65; cursor: default; transform: none; }

.tvsauth-w-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	width: 100%;
	min-height: 44px;
	margin-top: 8px;
	padding: 10px 14px;
	border-radius: 12px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none !important;
	box-sizing: border-box;
	cursor: pointer;
}
.tvsauth-w-btn--google { background: #fff; color: #24211d !important; border: 1px solid #dcd8d0; }
.tvsauth-w-btn--google:hover { box-shadow: 0 6px 16px -10px rgba(0,0,0,.5); }
.tvsauth-w-btn--apple  { background: #000; color: #fff !important; border: 1px solid #000; }
.tvsauth-w-btn svg { display: block; }

.tvsauth-w-alt {
	display: block;
	width: 100%;
	margin-top: 10px;
	background: none;
	border: none;
	font-size: 13px;
	color: #6d675e;
	text-decoration: underline;
	cursor: pointer;
	text-align: center;
}
.tvsauth-w-alt:hover { color: #1A1712; }

.tvsauth-w-msg { margin: 10px 0 0; font-size: 12.5px; color: #6d675e; text-align: center; }
.tvsauth-w-msg.is-error { color: #a32118; }

.tvsauth-w-onetap { margin-top: 10px; }

@media (max-width: 600px) {
	.tvsauth-widget-root[data-position="top-right"],
	.tvsauth-widget-root[data-position="top-left"] { top: auto; bottom: 12px; left: 12px; right: 12px; }
	.tvsauth-widget-root[data-position="bottom-right"],
	.tvsauth-widget-root[data-position="bottom-left"] { bottom: 12px; left: 12px; right: 12px; }
	.tvsauth-w { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
	.tvsauth-w { animation: none; }
	.tvsauth-w-cta:hover { transform: none; }
}
