/*!
 * Nuso Giya - Guest Account Tab — stylesheet
 * Mobile-first, green & white premium theme, isolated from any other
 * plugin's CSS (own ngat- prefixed classes, own stylesheet handle).
 */

:root {
	--ngat-green-900: #0a2a20;
	--ngat-green-700: #0f8a4c;
	--ngat-green-50: #f2fbf6;
	--ngat-ink: #16211f;
	--ngat-gray-600: #667085;
	--ngat-gray-400: #98a2b3;
	--ngat-gray-200: #eaecef;
	--ngat-white: #ffffff;
	--ngat-shadow-lg: 0 -6px 20px rgba(16, 40, 34, 0.08);
	--ngat-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

#ngat-wrapper,
.ngat-root {
	font-family: var(--ngat-font);
	color: var(--ngat-ink);
	background: var(--ngat-white);
	-webkit-font-smoothing: antialiased;
}

.ngat-root * {
	box-sizing: border-box;
}

.ngat-root img {
	max-width: 100%;
	display: block;
}

.ngat-root a {
	text-decoration: none;
	color: inherit;
}

@media (min-width: 700px) {
	.ngat-root {
		max-width: 900px;
		margin: 0 auto;
	}
}

/* ==========================================================================
   Guest Account screen
   ========================================================================== */

.ngat-card {
	max-width: 420px;
	margin: 0 auto;
	padding: 28px 22px 12px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.ngat-logo {
	width: 110px;
	height: 110px;
	margin-bottom: 6px;
}

.ngat-logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.ngat-brand {
	font-size: 26px;
	font-weight: 800;
	color: var(--ngat-green-900);
	margin: 4px 0 0;
}

.ngat-tagline {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	color: var(--ngat-green-700);
	font-weight: 700;
	font-size: 13.5px;
	margin: 2px 0 26px;
}

.ngat-tagline span {
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--ngat-green-700);
}

.ngat-welcome-eyebrow {
	color: var(--ngat-gray-600);
	font-size: 15px;
	margin: 0;
}

.ngat-welcome-title {
	font-size: 26px;
	font-weight: 800;
	color: var(--ngat-green-900);
	margin: 2px 0 8px;
}

.ngat-welcome-sub {
	color: var(--ngat-gray-600);
	font-size: 14px;
	margin: 0 0 22px;
	max-width: 300px;
}

.ngat-btn {
	display: block;
	width: 100%;
	max-width: 340px;
	padding: 14px 16px;
	border-radius: 14px;
	font-size: 15px;
	font-weight: 700;
	border: 0;
	text-align: center;
	transition: transform 0.15s ease, filter 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

.ngat-btn-login {
	background: var(--ngat-green-700);
	color: #fff;
	margin-bottom: 12px;
}

.ngat-btn-login:hover {
	filter: brightness(0.95);
	color: #fff;
}

.ngat-btn-register {
	background: var(--ngat-white);
	color: var(--ngat-ink);
	border: 1.5px solid var(--ngat-gray-200);
	margin-bottom: 24px;
}

.ngat-btn-register:hover {
	border-color: var(--ngat-green-700);
	color: var(--ngat-green-700);
}

.ngat-links {
	width: 100%;
	max-width: 340px;
	border-top: 1px solid var(--ngat-gray-200);
	margin: 0 auto;
}

.ngat-link-item {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 14px;
	background: none;
	border: 0;
	border-bottom: 1px solid var(--ngat-gray-200);
	padding: 15px 4px;
	text-align: left;
	color: var(--ngat-ink);
}

.ngat-link-icon {
	width: 22px;
	height: 22px;
	flex-shrink: 0;
	color: var(--ngat-green-700);
	display: flex;
}

.ngat-link-icon svg {
	width: 100%;
	height: 100%;
}

.ngat-link-label {
	flex: 1;
	font-size: 14.5px;
	font-weight: 600;
}

.ngat-link-chevron {
	width: 18px;
	height: 18px;
	color: var(--ngat-gray-400);
	flex-shrink: 0;
}

/* ==========================================================================
   Bottom navigation — Home / Account
   ========================================================================== */

.ngat-bottom-spacer {
	height: 82px;
}

.ngat-bottom-nav {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 50;
	background: var(--ngat-white);
	border-top: 1px solid var(--ngat-gray-200);
	display: flex;
	align-items: center;
	justify-content: space-around;
	padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
	box-shadow: var(--ngat-shadow-lg);
}

.ngat-bottom-nav-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 3px;
	color: var(--ngat-gray-400);
	font-size: 11.5px;
	font-weight: 600;
	transition: color 0.2s ease, transform 0.15s ease;
	min-width: 56px;
}

.ngat-bottom-nav-item svg {
	width: 22px;
	height: 22px;
}

.ngat-bottom-nav-item.is-active,
.ngat-bottom-nav-item:hover {
	color: var(--ngat-green-700);
}

.ngat-bottom-nav-item:active {
	transform: scale(0.94);
}
