/*!
 * Nuso Giya Homepage UI — stylesheet
 * Mobile-first, green & white premium theme.
 */

:root {
	--ngh-green-900: #0a2a20;
	--ngh-green-800: #0d3b2c;
	--ngh-green-700: #0f8a4c;
	--ngh-green-600: #14a25a;
	--ngh-green-500: #1dbf6a;
	--ngh-green-100: #e6f7ee;
	--ngh-green-50: #f2fbf6;
	--ngh-gold: #f5b301;
	--ngh-red: #d6342c;
	--ngh-blue: #2f6fed;
	--ngh-blue-dark: #1e54c9;
	--ngh-ink: #16211f;
	--ngh-gray-600: #667085;
	--ngh-gray-400: #98a2b3;
	--ngh-gray-200: #eaecef;
	--ngh-gray-100: #f4f6f5;
	--ngh-white: #ffffff;
	--ngh-radius-sm: 10px;
	--ngh-radius-md: 16px;
	--ngh-radius-lg: 22px;
	--ngh-shadow-sm: 0 2px 8px rgba(16, 40, 34, 0.06);
	--ngh-shadow-md: 0 8px 24px rgba(16, 40, 34, 0.10);
	--ngh-shadow-lg: 0 14px 36px rgba(16, 40, 34, 0.14);
	--ngh-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

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

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

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

.ngh-root button {
	font-family: inherit;
	cursor: pointer;
}

/* ==========================================================================
   Sticky Header
   ========================================================================== */

.ngh-header {
	position: sticky;
	top: 0;
	z-index: 40;
	background: var(--ngh-white);
	padding: 14px 16px 12px;
	box-shadow: 0 1px 0 rgba(16, 40, 34, 0.05);
}

.ngh-header-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 14px;
}

.ngh-logo {
	display: flex;
	align-items: center;
	gap: 9px;
}

.ngh-logo-mark {
	width: 38px;
	height: 38px;
	flex-shrink: 0;
	border-radius: 8px;
	overflow: hidden;
}

.ngh-logo-mark img,
.ngh-logo-mark svg {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.ngh-logo-text {
	display: flex;
	flex-direction: column;
	line-height: 1.15;
}

.ngh-logo-title {
	font-size: 19px;
	font-weight: 800;
	color: var(--ngh-green-900);
	letter-spacing: -0.01em;
}

.ngh-logo-tagline {
	font-size: 12px;
	font-weight: 600;
	color: var(--ngh-green-600);
}

.ngh-header-actions {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-shrink: 0;
}

.ngh-notif-btn {
	position: relative;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--ngh-gray-100);
	color: var(--ngh-green-900);
	flex-shrink: 0;
	border: 0;
	transition: background 0.2s ease, transform 0.2s ease;
}

.ngh-notif-btn:hover {
	background: var(--ngh-green-100);
	transform: translateY(-1px);
}

.ngh-notif-btn svg {
	width: 22px;
	height: 22px;
}

.ngh-notif-badge,
.ngh-cart-badge {
	position: absolute;
	top: -2px;
	right: -2px;
	min-width: 18px;
	height: 18px;
	border-radius: 999px;
	background: var(--ngh-green-600);
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 4px;
	border: 2px solid var(--ngh-white);
}

.ngh-cart-badge {
	background: var(--ngh-red);
	top: -3px;
	right: -3px;
}

.ngh-notif-badge[hidden] {
	display: none;
}

/* ==========================================================================
   Notification Dropdown Panel
   ========================================================================== */

.ngh-notif-overlay {
	position: fixed;
	inset: 0;
	background: rgba(11, 46, 62, 0.35);
	z-index: 90;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.2s ease;
}

.ngh-notif-overlay.is-open {
	opacity: 1;
	visibility: visible;
}

.ngh-notif-panel {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	width: min(360px, 88vw);
	background: var(--ngh-white);
	z-index: 95;
	box-shadow: var(--ngh-shadow-lg);
	display: flex;
	flex-direction: column;
	transform: translateX(100%);
	transition: transform 0.3s cubic-bezier(0.65, 0, 0.35, 1);
}

.ngh-notif-panel.is-open {
	transform: translateX(0);
}

.ngh-notif-panel-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 18px 14px;
	border-bottom: 1px solid var(--ngh-gray-200);
}

.ngh-notif-panel-head h3 {
	margin: 0;
	font-size: 16px;
	font-weight: 800;
	color: var(--ngh-ink);
}

.ngh-notif-markall {
	background: none;
	border: 0;
	color: var(--ngh-green-700);
	font-size: 12.5px;
	font-weight: 700;
	padding: 4px;
}

.ngh-notif-panel-body {
	flex: 1;
	overflow-y: auto;
	padding: 8px 10px 20px;
}

.ngh-notif-loading,
.ngh-notif-empty,
.ngh-notif-error {
	padding: 30px 16px;
	text-align: center;
	color: var(--ngh-gray-600);
	font-size: 13.5px;
}

.ngh-notif-item {
	display: flex;
	flex-direction: column;
	gap: 3px;
	padding: 12px 10px;
	border-radius: var(--ngh-radius-sm);
	cursor: pointer;
	transition: background 0.15s ease;
}

.ngh-notif-item:hover {
	background: var(--ngh-gray-100);
}

.ngh-notif-item.is-unread {
	background: var(--ngh-green-50);
}

.ngh-notif-item.is-unread:hover {
	background: var(--ngh-green-100);
}

.ngh-notif-item-title {
	font-size: 13.5px;
	font-weight: 700;
	color: var(--ngh-ink);
	display: flex;
	align-items: center;
	gap: 6px;
}

.ngh-notif-item.is-unread .ngh-notif-item-title::before {
	content: "";
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--ngh-green-600);
	flex-shrink: 0;
}

.ngh-notif-item-msg {
	font-size: 12.5px;
	color: var(--ngh-gray-600);
	line-height: 1.4;
}

.ngh-notif-item-time {
	font-size: 11px;
	color: var(--ngh-gray-400);
	margin-top: 1px;
}

.ngh-search-form {
	position: relative;
	display: flex;
	align-items: center;
	background: var(--ngh-gray-100);
	border: 1px solid var(--ngh-gray-200);
	border-radius: 999px;
	padding: 4px 4px 4px 16px;
	gap: 8px;
}

.ngh-search-icon {
	width: 18px;
	height: 18px;
	color: var(--ngh-gray-400);
	flex-shrink: 0;
}

.ngh-search-input {
	flex: 1;
	border: 0;
	background: transparent;
	outline: none;
	font-size: 14px;
	padding: 10px 0;
	color: var(--ngh-ink);
	min-width: 0;
}

.ngh-search-input::placeholder {
	color: var(--ngh-gray-400);
}

.ngh-search-btn {
	width: 48px;
	height: 48px;
	border-radius: var(--ngh-radius-md);
	background: var(--ngh-green-700);
	border: 0;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: background 0.2s ease, transform 0.15s ease;
}

.ngh-search-btn svg {
	width: 20px;
	height: 20px;
}

.ngh-search-btn:hover {
	background: var(--ngh-green-600);
	transform: scale(1.04);
}

/* ==========================================================================
   Hero Banner Slider
   ========================================================================== */

.ngh-hero {
	margin: 14px 16px 0;
	border-radius: var(--ngh-radius-lg);
	overflow: hidden;
	position: relative;
	box-shadow: var(--ngh-shadow-md);
	background: linear-gradient(125deg, var(--ngh-green-900) 0%, var(--ngh-green-700) 100%);
}

.ngh-hero-track {
	display: flex;
	transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
	width: 100%;
}

.ngh-hero-slide {
	min-width: 100%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 26px 18px 32px;
}

/* "100% Genuine" shield badge — protrudes near the top-right corner of the
   hero banner, matching the reference design. Only present on slide 1. */
.ngh-hero-shield {
	position: absolute;
	top: 14px;
	right: 14px;
	width: 58px;
	height: 66px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.25));
	z-index: 3;
}

.ngh-hero-shield svg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.ngh-hero-shield-pct {
	position: relative;
	color: #fff;
	font-size: 13px;
	font-weight: 800;
	line-height: 1;
	margin-top: -6px;
}

.ngh-hero-shield-label {
	position: relative;
	color: var(--ngh-gold);
	font-size: 6.5px;
	font-weight: 800;
	letter-spacing: 0.06em;
	margin-top: 2px;
}

.ngh-hero-copy {
	display: flex;
	flex-direction: column;
	gap: 2px;
	z-index: 2;
}

.ngh-hero-eyebrow {
	color: rgba(255, 255, 255, 0.85);
	font-size: 14px;
	font-weight: 500;
}

.ngh-hero-title {
	color: #fff;
	font-size: 26px;
	font-weight: 800;
	line-height: 1.15;
	margin: 2px 0;
}

.ngh-hero-highlight {
	color: var(--ngh-gold);
	font-size: 20px;
	font-weight: 800;
}

.ngh-hero-art {
	width: 42%;
	max-width: 155px;
	flex-shrink: 0;
	padding-right: 6px;
}

.ngh-hero-art svg {
	width: 100%;
	height: auto;
}

.ngh-hero-dots {
	position: absolute;
	bottom: 12px;
	left: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
}

.ngh-hero-dot {
	width: 6px;
	height: 6px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.45);
	cursor: pointer;
	transition: all 0.25s ease;
}

.ngh-hero-dot.is-active {
	width: 20px;
	background: #fff;
}

/* ==========================================================================
   Horizontal Category Icons
   ========================================================================== */

.ngh-cat-icons {
	margin-top: 22px;
	padding: 0 16px;
}

.ngh-cat-icons-scroll {
	display: flex;
	gap: 16px;
	overflow-x: auto;
	scrollbar-width: none;
	padding-bottom: 4px;
}

.ngh-cat-icons-scroll::-webkit-scrollbar {
	display: none;
}

.ngh-cat-icon-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	flex-shrink: 0;
	width: 66px;
	text-align: center;
}

.ngh-cat-icon-circle {
	width: 62px;
	height: 62px;
	border-radius: 50%;
	background: var(--ngh-gray-100);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	box-shadow: 0 4px 14px rgba(16, 40, 34, 0.09);
}

.ngh-cat-icon-item:hover .ngh-cat-icon-circle {
	transform: translateY(-3px);
	box-shadow: var(--ngh-shadow-md);
}

.ngh-cat-icon-circle img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ngh-cat-icon-circle--more {
	color: var(--ngh-green-700);
	background: var(--ngh-gray-100);
}

.ngh-cat-icon-circle--more svg {
	width: 20px;
	height: 20px;
}

.ngh-cat-icon-label {
	font-size: 12.5px;
	font-weight: 600;
	color: var(--ngh-ink);
}

/* ==========================================================================
   Trust Features
   ========================================================================== */

.ngh-trust {
	margin: 20px 16px 0;
	border: 1px solid var(--ngh-gray-200);
	border-radius: var(--ngh-radius-md);
	padding: 16px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	background: var(--ngh-white);
}

.ngh-trust-item {
	display: flex;
	align-items: center;
	gap: 12px;
}

.ngh-trust-icon {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: var(--ngh-green-50);
	color: var(--ngh-green-700);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.ngh-trust-icon svg {
	width: 20px;
	height: 20px;
}

.ngh-trust-copy {
	display: flex;
	flex-direction: column;
	gap: 1px;
}

.ngh-trust-copy strong {
	font-size: 14px;
	font-weight: 700;
	color: var(--ngh-ink);
}

.ngh-trust-copy small {
	font-size: 12.5px;
	color: var(--ngh-gray-600);
}

@media (min-width: 560px) {
	.ngh-trust {
		flex-direction: row;
		justify-content: space-between;
	}
}

/* ==========================================================================
   Section headings (shared)
   ========================================================================== */

.ngh-section {
	margin-top: 26px;
	padding: 0 16px;
}

.ngh-section-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 14px;
}

.ngh-section-title {
	font-size: 18px;
	font-weight: 800;
	color: var(--ngh-ink);
	margin: 0;
}

.ngh-section-link {
	font-size: 13.5px;
	font-weight: 700;
	color: var(--ngh-green-700);
}

.ngh-empty-msg {
	color: var(--ngh-gray-600);
	font-size: 14px;
}

/* ==========================================================================
   Product Cards
   ========================================================================== */

.ngh-popular-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
}

@media (min-width: 560px) {
	.ngh-popular-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (min-width: 900px) {
	.ngh-popular-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.ngh-product-card {
	background: var(--ngh-white);
	border: 1px solid var(--ngh-gray-200);
	border-radius: var(--ngh-radius-md);
	overflow: hidden;
	box-shadow: var(--ngh-shadow-sm);
	transition: box-shadow 0.25s ease, transform 0.25s ease;
	display: flex;
	flex-direction: column;
}

.ngh-product-card:hover {
	box-shadow: var(--ngh-shadow-lg);
	transform: translateY(-2px);
}

.ngh-product-card--compact {
	width: 100%;
}

.ngh-card-media {
	position: relative;
	background: var(--ngh-white);
	aspect-ratio: 1 / 1;
	overflow: hidden;
	padding: 14px;
}

.ngh-card-media-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

.ngh-card-image {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: transform 0.4s ease;
}

.ngh-product-card:hover .ngh-card-image {
	transform: scale(1.05);
}

.ngh-card-badges {
	position: absolute;
	top: 8px;
	left: 8px;
	display: flex;
	flex-direction: column;
	gap: 4px;
	z-index: 2;
}

.ngh-badge {
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.02em;
	padding: 3px 7px;
	border-radius: 999px;
	color: #fff;
	text-transform: uppercase;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
	width: fit-content;
}

.ngh-badge--sale {
	background: var(--ngh-red);
}

.ngh-badge--new {
	background: var(--ngh-green-600);
}

.ngh-badge--trending {
	background: var(--ngh-gold);
	color: #3a2a00;
}

.ngh-badge--bestseller {
	background: var(--ngh-green-900);
}

.ngh-card-body {
	padding: 12px;
	display: flex;
	flex-direction: column;
	gap: 5px;
	flex: 1;
}

.ngh-card-title-link {
	display: block;
}

.ngh-card-title {
	font-size: 13.5px;
	font-weight: 700;
	line-height: 1.3;
	margin: 0;
	color: var(--ngh-ink);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.ngh-card-desc {
	font-size: 12px;
	color: var(--ngh-gray-600);
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.ngh-card-merchant {
	font-size: 11px;
	color: var(--ngh-gray-400);
	margin: 0;
}

.ngh-card-merchant span {
	color: var(--ngh-gray-600);
	font-weight: 600;
}

.ngh-card-rating {
	display: flex;
	align-items: center;
	gap: 4px;
}

.ngh-stars {
	display: inline-flex;
	align-items: center;
	gap: 1px;
	color: var(--ngh-gold);
}

.ngh-star {
	width: 12px;
	height: 12px;
}

.ngh-star--empty {
	color: var(--ngh-gray-200);
}

.ngh-review-count {
	font-size: 11px;
	color: var(--ngh-gray-400);
}

.ngh-card-price-row {
	margin-top: 4px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
}

.ngh-card-price {
	font-size: 15px;
	font-weight: 800;
	color: var(--ngh-green-800);
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.ngh-card-price del {
	font-size: 12px;
	font-weight: 500;
	color: var(--ngh-gray-400);
	margin-right: 4px;
}

.ngh-card-price ins {
	text-decoration: none;
}

/* Floating green cart button — anchored beside the price, matching the
   Nuso Giya reference UI (icon-only, rounded-square, drop shadow). */
.ngh-btn-cart-float {
	flex-shrink: 0;
	width: 36px;
	height: 36px;
	border: 0;
	border-radius: 11px;
	background: var(--ngh-green-700);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 10px rgba(15, 138, 76, 0.35);
	transition: transform 0.15s ease, filter 0.2s ease, background 0.2s ease;
}

.ngh-btn-cart-float:hover {
	filter: brightness(0.95);
	transform: translateY(-1px);
}

.ngh-btn-cart-float:active {
	transform: scale(0.94);
}

.ngh-btn-cart-float.is-added {
	background: var(--ngh-green-900);
}

.ngh-btn-cart-float.is-loading {
	opacity: 0.7;
}

.ngh-btn-disabled,
.ngh-btn-cart-float:disabled {
	background: var(--ngh-gray-200);
	color: var(--ngh-gray-400);
	cursor: not-allowed;
	box-shadow: none;
}

.ngh-icon-cart {
	width: 17px;
	height: 17px;
}

.ngh-btn-buynow-link {
	display: block;
	margin-top: 8px;
	text-align: center;
	background: var(--ngh-gold);
	color: #3a2a00;
	font-weight: 700;
	font-size: 12.5px;
	border-radius: var(--ngh-radius-sm);
	padding: 9px 10px;
	transition: filter 0.2s ease;
}

.ngh-btn-buynow-link:hover {
	filter: brightness(0.95);
}

/* ==========================================================================
   Special Offer Banner
   ========================================================================== */

.ngh-offer {
	margin: 26px 16px 0;
	background: var(--ngh-green-50);
	border-radius: var(--ngh-radius-lg);
	padding: 22px 18px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	overflow: hidden;
	position: relative;
}

.ngh-offer-copy {
	display: flex;
	flex-direction: column;
	gap: 3px;
	z-index: 2;
}

.ngh-offer-label {
	font-size: 13px;
	font-weight: 700;
	color: var(--ngh-green-700);
}

.ngh-offer-title {
	font-size: 21px;
	font-weight: 800;
	color: var(--ngh-green-900);
	margin: 0;
}

.ngh-offer-sub {
	font-size: 13px;
	color: var(--ngh-gray-600);
	margin: 0 0 8px;
}

.ngh-btn-offer {
	background: var(--ngh-green-700);
	color: #fff;
	padding: 10px 20px;
	border-radius: 999px;
	width: fit-content;
}

.ngh-offer-art {
	width: 42%;
	max-width: 150px;
	flex-shrink: 0;
}

.ngh-offer-art svg {
	width: 100%;
	height: auto;
}

/* ==========================================================================
   Categories Grid
   ========================================================================== */

.ngh-categories-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
}

.ngh-grid-cat-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	text-align: center;
	background: var(--ngh-white);
	border: 1px solid var(--ngh-gray-200);
	border-radius: var(--ngh-radius-md);
	padding: 14px 8px;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.ngh-grid-cat-item:hover {
	box-shadow: var(--ngh-shadow-md);
	transform: translateY(-2px);
}

.ngh-grid-cat-thumb {
	width: 100%;
	aspect-ratio: 1 / 1;
	border-radius: var(--ngh-radius-sm);
	overflow: hidden;
	background: var(--ngh-gray-100);
}

.ngh-grid-cat-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ngh-grid-cat-label {
	font-size: 12.5px;
	font-weight: 700;
	color: var(--ngh-ink);
}

@media (min-width: 480px) {
	.ngh-categories-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

@media (min-width: 768px) {
	.ngh-categories-grid {
		grid-template-columns: repeat(5, 1fr);
	}
}

/* ==========================================================================
   Sticky Bottom Navigation
   ========================================================================== */

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

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

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

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

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

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

/* ==========================================================================
   Floating center Cart button (bottom navigation)
   ========================================================================== */

.ngh-bottom-nav--has-fab {
	position: relative;
}

.ngh-fab-cart-wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
	min-width: 56px;
	margin-top: -30px;
	flex-shrink: 0;
}

.ngh-fab-cart {
	position: relative;
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background: linear-gradient(150deg, var(--ngh-blue) 0%, var(--ngh-blue-dark) 100%);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 4px solid var(--ngh-white);
	box-shadow: 0 10px 20px rgba(47, 111, 237, 0.4);
	transition: transform 0.18s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s ease;
}

.ngh-fab-cart svg {
	width: 24px;
	height: 24px;
}

.ngh-fab-cart-wrap:hover .ngh-fab-cart {
	transform: translateY(-2px) scale(1.04);
	box-shadow: 0 14px 26px rgba(47, 111, 237, 0.45);
}

.ngh-fab-cart-wrap:active .ngh-fab-cart {
	transform: scale(0.92);
}

.ngh-fab-cart .ngh-cart-badge {
	top: -2px;
	right: -2px;
	border-color: var(--ngh-white);
}

/* Five-item Buyer nav (Home / Wallet / Cart / Orders / Profile) needs a
   little less horizontal padding so it stays comfortable on narrow phones. */
.ngh-bottom-nav--buyer {
	padding-left: 6px;
	padding-right: 6px;
}

.ngh-bottom-nav--buyer .ngh-bottom-nav-item {
	min-width: 50px;
}

/* ==========================================================================
   Larger screens — widen content, multi-column grids
   ========================================================================== */

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

	.ngh-hero-title {
		font-size: 32px;
	}
}

@media (min-width: 1024px) {
	.ngh-root {
		max-width: 1100px;
	}
}

/* Fade/slide-in animation for sections as they enter viewport */
.ngh-section,
.ngh-cat-icons,
.ngh-trust,
.ngh-offer {
	animation: nghFadeUp 0.5s ease both;
}

@keyframes nghFadeUp {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ==========================================================================
   Bottom nav "Coming Soon" buttons (Wallet / My Orders / Profile / Seller tabs)
   ========================================================================== */

button.ngh-bottom-nav-item {
	background: none;
	border: 0;
	font-family: inherit;
}

/* ==========================================================================
   "Coming Soon" toast
   ========================================================================== */

.ngh-toast {
	position: fixed;
	left: 50%;
	bottom: 96px;
	transform: translateX(-50%) translateY(12px);
	background: var(--ngh-green-900);
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	padding: 10px 18px;
	border-radius: 999px;
	box-shadow: var(--ngh-shadow-lg);
	z-index: 60;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.25s ease, transform 0.25s ease;
}

.ngh-toast.is-visible {
	opacity: 1;
	transform: translateX(-50%) translateY(0);
}

/* ==========================================================================
   Seller landing screen
   ========================================================================== */

.ngh-seller-hero {
	margin: 40px 20px 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 6px;
	padding: 20px 16px 40px;
}

.ngh-seller-hero-art {
	width: 150px;
	max-width: 60%;
	margin-bottom: 8px;
}

.ngh-seller-hero-art svg {
	width: 100%;
	height: auto;
}

.ngh-seller-hero-title {
	font-size: 20px;
	font-weight: 800;
	color: var(--ngh-ink);
	margin: 0;
}

.ngh-seller-hero-sub {
	font-size: 14px;
	color: var(--ngh-gray-600);
	margin: 0 0 6px;
}

.ngh-seller-hero-badge {
	background: var(--ngh-green-50);
	color: var(--ngh-green-700);
	font-weight: 700;
	font-size: 12.5px;
	padding: 6px 16px;
	border-radius: 999px;
}

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

.ngh-guest-account {
	padding-top: 8px;
}

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

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

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

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

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

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

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

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

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

.ngh-guest-btn {
	width: 100%;
	max-width: 340px;
	padding: 14px 16px;
	border-radius: 14px;
	font-size: 15px;
	font-weight: 700;
	border: 0;
	transition: transform 0.15s ease, filter 0.2s ease, background 0.2s ease;
}

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

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

.ngh-guest-btn-login:hover {
	filter: brightness(0.95);
}

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

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

.ngh-guest-links {
	width: 100%;
	max-width: 340px;
	border-top: 1px solid var(--ngh-gray-200);
}

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

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

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

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

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

/* The real WooCommerce login/registration forms — hidden until the person
   taps Login/Register above, then revealed and scrolled into view. Never
   removed from the DOM, so the forms remain fully functional and
   accessible/indexable even without JavaScript. */
.ngh-guest-auth-forms {
	max-width: 420px;
	margin: 8px auto 0;
	padding: 0 22px 20px;
	scroll-margin-top: 90px;
}

.ngh-guest-auth-forms:not(.is-visible) {
	display: none;
}
