/* =========================================================
   Gamerly — Digital Gaming Cards & Subscriptions Theme
   Dark · Neon · Arabic RTL · Mobile-First
   ========================================================= */

:root {
	/* Surfaces */
	--g-bg:           #0A0B14;
	--g-bg-2:         #0F1120;
	--g-surface:      #161A2E;
	--g-surface-2:    #1D2240;
	--g-border:       #252B47;
	--g-border-soft:  #1D2240;

	/* Brand accents */
	--g-lime:         #B7F642;
	--g-lime-glow:    rgba(183, 246, 66, 0.35);
	--g-pink:         #FF3D8A;
	--g-pink-glow:    rgba(255, 61, 138, 0.35);
	--g-cyan:         #5BE9FF;
	--g-blue:         #5B7CFF;
	--g-yellow:       #FFC845;
	--g-orange:       #FF6B35;

	/* Text */
	--g-text:         #F4F5FB;
	--g-text-soft:    #B6BBD3;
	--g-text-muted:   #6B7194;
	--g-text-dim:     #4A5070;

	/* Brand logos */
	--brand-ps:        #006FCD;
	--brand-xbox:      #0E7A0D;
	--brand-nintendo:  #E60012;
	--brand-steam:     #66C0F4;
	--brand-netflix:   #E50914;
	--brand-spotify:   #1DB954;
	--brand-crunchy:   #F47521;
	--brand-discord:   #5865F2;
	--brand-apple:     #A2AAAD;
	--brand-google:    #4285F4;

	/* Radii */
	--g-r-sm: 8px;
	--g-r:    14px;
	--g-r-lg: 20px;
	--g-r-pill: 999px;

	/* Shadows & glow */
	--g-shadow:       0 12px 40px rgba(0, 0, 0, 0.5);
	--g-shadow-card:  0 8px 24px rgba(0, 0, 0, 0.35);
	--g-glow-lime:    0 0 0 1px rgba(183, 246, 66, 0.4), 0 0 24px rgba(183, 246, 66, 0.25);
	--g-glow-pink:    0 0 0 1px rgba(255, 61, 138, 0.4), 0 0 24px rgba(255, 61, 138, 0.25);

	/* Fonts */
	--g-font:         "Cairo", "Outfit", -apple-system, BlinkMacSystemFont, sans-serif;
	--g-font-display: "Cairo", "Outfit", sans-serif;
	--g-font-mono:    "JetBrains Mono", "Courier New", monospace;

	--g-ease:         cubic-bezier(0.22, 1, 0.36, 1);
}

/* =================== Reset & base =================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--g-font);
	font-weight: 400;
	line-height: 1.7;
	color: var(--g-text);
	background: var(--g-bg);
	direction: rtl;
	text-align: right;
	-webkit-font-smoothing: antialiased;
	font-feature-settings: "kern" 1, "liga" 1;
	overflow-x: hidden;
}

/* Animated background grid */
body::before {
	content: '';
	position: fixed;
	inset: 0;
	background-image:
		radial-gradient(circle at 15% 20%, rgba(183, 246, 66, 0.08) 0%, transparent 35%),
		radial-gradient(circle at 85% 80%, rgba(255, 61, 138, 0.06) 0%, transparent 35%),
		radial-gradient(circle at 50% 50%, rgba(91, 124, 255, 0.04) 0%, transparent 50%);
	pointer-events: none;
	z-index: 0;
}

a { color: var(--g-cyan); text-decoration: none; transition: color .2s var(--g-ease); }
a:hover { color: var(--g-lime); }

h1, h2, h3, h4, h5 {
	font-family: var(--g-font-display);
	color: var(--g-text);
	line-height: 1.2;
	margin: 0 0 .6em;
	font-weight: 800;
	letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.2rem, 4.5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.35rem; font-weight: 700; }

p { margin: 0 0 1em; color: var(--g-text-soft); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { padding-inline-start: 1.5rem; }

::selection { background: var(--g-lime); color: var(--g-bg); }

.screen-reader-text { position: absolute !important; clip: rect(1px,1px,1px,1px); width:1px; height:1px; overflow:hidden; }
.skip-link { position: absolute; right: -9999px; background: var(--g-lime); color: var(--g-bg); padding: 1rem; z-index: 999; font-weight: 700; }
.skip-link:focus { right: 1rem; top: 1rem; }

.container {
	max-width: 1320px;
	width: 100%;
	margin: 0 auto;
	padding: 0 24px;
	position: relative;
	z-index: 1;
}

		.eyebrow {
			display: inline-flex;
			align-items: center;
			gap: .5rem;
			padding: .4rem .9rem;
			background: rgba(183, 246, 66, 0.1);
			color: var(--g-lime);
			border: 1px solid rgba(183, 246, 66, 0.3);
			font-size: .82rem;
			font-weight: 600;
			border-radius: var(--g-r-pill);
			margin-bottom: 1.2rem;
			font-family: var(--g-font-mono);
			text-transform: uppercase;
			letter-spacing: .03em;
			white-space: nowrap;
		}
.eyebrow i { font-size: .75rem; }
.eyebrow--pink { background: rgba(255, 61, 138, 0.1); color: var(--g-pink); border-color: rgba(255, 61, 138, 0.3); }
.eyebrow--cyan { background: rgba(91, 233, 255, 0.1); color: var(--g-cyan); border-color: rgba(91, 233, 255, 0.3); }

/* =================== Buttons =================== */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .6rem;
	padding: .85rem 1.6rem;
	border-radius: var(--g-r-sm);
	font-family: inherit;
	font-weight: 700;
	font-size: .95rem;
	border: 1.5px solid transparent;
	cursor: pointer;
	transition: transform .2s var(--g-ease), box-shadow .25s var(--g-ease), background-color .25s var(--g-ease), color .25s var(--g-ease), border-color .25s var(--g-ease);
	white-space: nowrap;
	letter-spacing: -0.01em;
	text-decoration: none;
	position: relative;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-sm { padding: .55rem 1.05rem; font-size: .85rem; }
.btn-lg { padding: 1.05rem 1.9rem; font-size: 1rem; }
.btn-block { width: 100%; }

.btn-primary {
	background: var(--g-lime);
	color: var(--g-bg);
	box-shadow: 0 6px 24px rgba(183, 246, 66, 0.4);
}
.btn-primary:hover { background: #C6FF5C; color: var(--g-bg); box-shadow: 0 10px 32px rgba(183, 246, 66, 0.55); }

.btn-pink {
	background: var(--g-pink);
	color: #fff;
	box-shadow: 0 6px 24px rgba(255, 61, 138, 0.4);
}
.btn-pink:hover { background: #FF5DA1; color: #fff; }

.btn-ghost {
	background: transparent;
	color: var(--g-text);
	border-color: var(--g-border);
}
.btn-ghost:hover { background: var(--g-surface); border-color: var(--g-lime); color: var(--g-lime); }

.btn-dark { background: var(--g-surface-2); color: var(--g-text); border-color: var(--g-border); }
.btn-dark:hover { background: var(--g-bg-2); border-color: var(--g-lime); }

/* =================== Top bar =================== */
.top-bar {
	background: var(--g-bg-2);
	border-bottom: 1px solid var(--g-border-soft);
	color: var(--g-text-soft);
	font-size: .82rem;
	position: relative;
	z-index: 70;
}
.top-bar__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: .55rem 24px;
	gap: 1rem;
	flex-wrap: wrap;
	max-width: 1320px;
	margin: 0 auto;
}
.top-bar__msg i { color: var(--g-lime); margin-left: .35rem; }
.top-bar__links { display: flex; gap: 1.4rem; }
.top-bar__links a { color: var(--g-text-soft); }
.top-bar__links a:hover { color: var(--g-lime); }
.top-bar__links i { margin-left: .35rem; color: var(--g-lime); }

/* =================== Header =================== */
.site-header {
	background: rgba(15, 17, 32, 0.85);
	border-bottom: 1px solid var(--g-border-soft);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	position: sticky;
	top: 0;
	z-index: 80;
}
.site-header__inner {
	display: flex;
	align-items: center;
	gap: 2.5rem;
	padding: 1.1rem 24px;
	max-width: 1320px;
	margin: 0 auto;
}

.site-title {
	display: inline-flex;
	align-items: center;
	gap: .65rem;
	font-family: var(--g-font-display);
	font-weight: 900;
	font-size: 1.4rem;
	color: var(--g-text);
	letter-spacing: -0.02em;
}
.logo-mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px; height: 42px;
	background: linear-gradient(135deg, var(--g-lime) 0%, #6FE800 100%);
	color: var(--g-bg);
	border-radius: 10px;
	font-family: var(--g-font-mono);
	font-size: 1.3rem;
	font-weight: 900;
	box-shadow: 0 4px 16px rgba(183, 246, 66, 0.45);
	position: relative;
	overflow: hidden;
}
.logo-mark::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,.3) 50%, transparent 60%);
}
.logo-text { color: var(--g-text); }
.logo-text span { color: var(--g-lime); }

.header-actions { display: flex; align-items: center; gap: .7rem; }
.icon-btn {
	width: 42px; height: 42px;
	border-radius: 10px;
	background: var(--g-surface);
	color: var(--g-text-soft);
	border: 1px solid var(--g-border);
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: all .2s var(--g-ease);
}
.icon-btn:hover { background: var(--g-surface-2); color: var(--g-lime); border-color: var(--g-lime); }
.icon-btn .badge {
	position: absolute;
	top: -4px; left: -4px;
	background: var(--g-pink);
	color: #fff;
	font-size: .65rem;
	font-weight: 700;
	min-width: 18px;
	height: 18px;
	border-radius: 9px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 4px;
}

/* Search overlay */
.search-overlay {
	position: fixed; inset: 0;
	background: rgba(10, 11, 20, 0.95);
	backdrop-filter: blur(12px);
	z-index: 100;
	display: none;
	align-items: center;
	justify-content: center;
}
.search-overlay.is-open { display: flex; }
.search-overlay .container { max-width: 700px; }
.search-overlay input.search-field {
	width: 100%;
	padding: 1.3rem 2rem;
	font-size: 1.2rem;
	border: 2px solid var(--g-border);
	border-radius: var(--g-r);
	background: var(--g-surface);
	color: var(--g-text);
	font-family: inherit;
}
.search-overlay input:focus { outline: none; border-color: var(--g-lime); }
.search-close { position: absolute; top: 30px; left: 30px; background: var(--g-surface); border: 1px solid var(--g-border); color: var(--g-text); width: 44px; height: 44px; border-radius: 50%; cursor: pointer; font-size: 1.3rem; }

/* =================== Hero =================== */
.hero {
	position: relative;
	padding: 5rem 0 4rem;
	overflow: hidden;
}
.hero::before {
	content: '';
	position: absolute;
	top: -20%; left: -10%;
	width: 600px; height: 600px;
	background: radial-gradient(circle, var(--g-lime-glow) 0%, transparent 60%);
	filter: blur(40px);
	z-index: 0;
}
.hero::after {
	content: '';
	position: absolute;
	bottom: -20%; right: -10%;
	width: 500px; height: 500px;
	background: radial-gradient(circle, var(--g-pink-glow) 0%, transparent 60%);
	filter: blur(40px);
	z-index: 0;
}

.hero__inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
}

.hero__title {
	font-size: clamp(2.4rem, 5vw, 4.5rem);
	letter-spacing: -.03em;
	font-weight: 900;
	margin-bottom: 1.3rem;
	line-height: 1.05;
}
.hero__title em {
	font-style: normal;
	color: var(--g-lime);
	position: relative;
	display: inline-block;
}
.hero__title em::after {
	content: '';
	position: absolute;
	bottom: 4px;
	right: 0;
	width: 100%;
	height: 12px;
	background: var(--g-lime);
	opacity: 0.2;
	z-index: -1;
}

.hero__desc {
	font-size: 1.1rem;
	color: var(--g-text-soft);
	max-width: 560px;
	margin-bottom: 2rem;
	line-height: 1.7;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 2.5rem; }

.hero__brands {
	display: flex;
	gap: 1.5rem;
	align-items: center;
	flex-wrap: wrap;
	padding-top: 1.5rem;
	border-top: 1px solid var(--g-border-soft);
}
.hero__brands-label {
	color: var(--g-text-muted);
	font-size: .82rem;
	font-family: var(--g-font-mono);
	text-transform: uppercase;
	letter-spacing: .1em;
}
.hero__brands-row { display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap; }
.brand-pill {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	color: var(--g-text-soft);
	font-size: .9rem;
	font-weight: 600;
}
.brand-pill i { font-size: 1.4rem; }

/* Hero card stack */
.hero__visual {
	position: relative;
	height: 540px;
	perspective: 1200px;
}
.gift-card {
	position: absolute;
	width: 320px;
	height: 200px;
	border-radius: var(--g-r);
	padding: 1.3rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	box-shadow: var(--g-shadow);
	transition: transform .4s var(--g-ease);
	overflow: hidden;
	color: #fff;
}
.gift-card::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image:
		radial-gradient(circle at 100% 0%, rgba(255,255,255,.15) 0%, transparent 40%),
		linear-gradient(135deg, transparent 0%, rgba(0,0,0,0.2) 100%);
	pointer-events: none;
}
.gift-card .gc-brand {
	display: flex;
	align-items: center;
	gap: .5rem;
	font-weight: 800;
	font-size: 1.1rem;
}
.gift-card .gc-brand i { font-size: 1.8rem; }
.gift-card .gc-amount {
	font-family: var(--g-font-mono);
	font-size: 2.6rem;
	font-weight: 900;
	letter-spacing: -.04em;
}
.gift-card .gc-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: .8rem;
	opacity: .85;
}
.gift-card .gc-chip {
	width: 36px; height: 26px;
	background: linear-gradient(135deg, #FFDA6E, #C29B36);
	border-radius: 4px;
	display: inline-block;
	box-shadow: inset 0 -3px 0 rgba(0,0,0,.2);
}

.gift-card.ps    { background: linear-gradient(135deg, #006FCD 0%, #003B8B 100%); top: 20px; right: 0; transform: rotate(4deg); animation: cardFloat 7s ease-in-out infinite; }
.gift-card.xbox  { background: linear-gradient(135deg, #107C10 0%, #064706 100%); top: 130px; left: 0; transform: rotate(-5deg); animation: cardFloat 7s ease-in-out infinite 1.5s; z-index: 2; }
.gift-card.netflix { background: linear-gradient(135deg, #E50914 0%, #831010 100%); bottom: 90px; right: 60px; transform: rotate(2deg); animation: cardFloat 7s ease-in-out infinite 3s; z-index: 1; }
.gift-card.spotify { background: linear-gradient(135deg, #1DB954 0%, #0A6D32 100%); bottom: 0; left: 50px; transform: rotate(-3deg); animation: cardFloat 7s ease-in-out infinite 4.5s; }

@keyframes cardFloat {
	0%, 100% { transform: translateY(0) rotate(var(--rotate, 0deg)); }
	50% { transform: translateY(-15px) rotate(var(--rotate, 0deg)); }
}
.gift-card.ps      { --rotate: 4deg; }
.gift-card.xbox    { --rotate: -5deg; }
.gift-card.netflix { --rotate: 2deg; }
.gift-card.spotify { --rotate: -3deg; }

.hero-badge {
	position: absolute;
	top: 50%;
	right: 50%;
	transform: translate(50%, -50%);
	background: var(--g-bg);
	border: 1px solid var(--g-border);
	padding: .9rem 1.3rem;
	border-radius: var(--g-r-pill);
	box-shadow: var(--g-shadow);
	display: inline-flex;
	align-items: center;
	gap: .6rem;
	z-index: 10;
}
.hero-badge i { color: var(--g-lime); font-size: 1.2rem; }
.hero-badge strong { color: var(--g-text); font-size: .9rem; display: block; }
.hero-badge small { color: var(--g-text-muted); font-size: .75rem; }

/* =================== Marquee features =================== */
.features-strip {
	background: var(--g-bg-2);
	border-top: 1px solid var(--g-border-soft);
	border-bottom: 1px solid var(--g-border-soft);
	padding: 2.4rem 0;
}
.features-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
}
.feature-item {
	display: flex;
	align-items: center;
	gap: 1rem;
}
.feature-item > i {
	width: 52px; height: 52px;
	background: var(--g-surface);
	color: var(--g-lime);
	border-radius: var(--g-r-sm);
	border: 1px solid var(--g-border);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.3rem;
	flex-shrink: 0;
}
.feature-item h4 { margin: 0 0 .15rem; font-size: 1rem; font-weight: 700; color: var(--g-text); }
.feature-item p { margin: 0; color: var(--g-text-muted); font-size: .85rem; }

/* =================== Sections =================== */
.section { padding: 5rem 0; position: relative; }
.section-head { text-align: center; margin-bottom: 3rem; }
.section-head h2 { margin-bottom: .6rem; }
.section-head p { color: var(--g-text-soft); max-width: 580px; margin: 0 auto; }
.section-head--row {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	text-align: right;
	margin-bottom: 2.5rem;
	flex-wrap: wrap;
	gap: 1rem;
}
.section-head--row h2 { margin: 0; }

.link-arrow {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	color: var(--g-lime);
	font-weight: 600;
	font-size: .92rem;
	font-family: var(--g-font-mono);
	letter-spacing: .02em;
}
.link-arrow:hover { gap: .9rem; color: var(--g-lime); }

/* =================== Categories =================== */
.categories-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.2rem;
}
.category-card {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: .8rem;
	background: var(--g-surface);
	padding: 1.6rem 1.4rem;
	border-radius: var(--g-r);
	border: 1px solid var(--g-border);
	transition: transform .3s var(--g-ease), border-color .3s var(--g-ease), box-shadow .3s var(--g-ease);
	overflow: hidden;
	text-decoration: none;
	color: var(--g-text);
}
.category-card::before {
	content: '';
	position: absolute;
	top: 0; right: 0;
	width: 80px; height: 80px;
	background: var(--cat-color, var(--g-lime));
	border-radius: 50%;
	filter: blur(50px);
	opacity: 0;
	transition: opacity .3s var(--g-ease);
}
.category-card:hover {
	transform: translateY(-4px);
	border-color: var(--cat-color, var(--g-lime));
	box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}
.category-card:hover::before { opacity: 0.5; }

.category-card__icon {
	width: 52px; height: 52px;
	background: var(--g-bg);
	color: var(--cat-color, var(--g-lime));
	border-radius: 12px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	position: relative;
	z-index: 1;
}
.category-card h3 { font-size: 1.05rem; margin: 0; font-weight: 700; position: relative; z-index: 1; }
.category-card .count { color: var(--g-text-muted); font-size: .82rem; font-family: var(--g-font-mono); position: relative; z-index: 1; }
.category-card .arrow {
	position: absolute;
	bottom: 1.2rem;
	left: 1.4rem;
	color: var(--g-text-muted);
	transition: color .3s var(--g-ease), transform .3s var(--g-ease);
	z-index: 1;
}
.category-card:hover .arrow {
	color: var(--cat-color, var(--g-lime));
	transform: translateX(-4px);
}

/* Brand colors per category index */
.category-card:nth-child(8n+1) { --cat-color: var(--g-lime); }
.category-card:nth-child(8n+2) { --cat-color: var(--g-pink); }
.category-card:nth-child(8n+3) { --cat-color: var(--g-cyan); }
.category-card:nth-child(8n+4) { --cat-color: var(--g-yellow); }
.category-card:nth-child(8n+5) { --cat-color: var(--g-blue); }
.category-card:nth-child(8n+6) { --cat-color: var(--g-orange); }
.category-card:nth-child(8n+7) { --cat-color: var(--g-lime); }
.category-card:nth-child(8n+8) { --cat-color: var(--g-pink); }

/* =================== Products grid (gift card style) =================== */
.products-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.4rem;
}

.product-card {
	background: var(--g-surface);
	border-radius: var(--g-r);
	overflow: hidden;
	border: 1px solid var(--g-border);
	transition: transform .3s var(--g-ease), box-shadow .3s var(--g-ease), border-color .3s var(--g-ease);
	display: flex;
	flex-direction: column;
	position: relative;
	color: var(--g-text);
}
.product-card:hover {
	transform: translateY(-6px);
	border-color: var(--brand-color, var(--g-lime));
	box-shadow: 0 16px 40px rgba(0,0,0,0.45);
}

.product-card__brand-strip {
	height: 4px;
	background: var(--brand-color, var(--g-lime));
}

.product-card__thumb {
	position: relative;
	aspect-ratio: 16/10;
	overflow: hidden;
	background: linear-gradient(135deg, var(--brand-color, var(--g-surface-2)) 0%, var(--g-bg-2) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
}
.product-card__thumb::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image:
		radial-gradient(circle at 100% 0%, rgba(255,255,255,0.12) 0%, transparent 50%),
		linear-gradient(135deg, transparent 0%, rgba(0,0,0,0.3) 100%);
}
.product-card__thumb img {
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform .6s var(--g-ease);
}
.product-card:hover .product-card__thumb img { transform: scale(1.08); }

.product-card__brand-icon {
	position: absolute;
	top: 50%; right: 50%;
	transform: translate(50%, -50%);
	color: #fff;
	font-size: 3.5rem;
	opacity: 0.95;
	z-index: 1;
	filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
}

.product-badge {
	position: absolute;
	top: 10px; right: 10px;
	background: var(--g-lime);
	color: var(--g-bg);
	padding: .25rem .65rem;
	font-size: .72rem;
	font-weight: 800;
	border-radius: var(--g-r-pill);
	font-family: var(--g-font-mono);
	letter-spacing: .03em;
	text-transform: uppercase;
	z-index: 2;
}
.product-badge--خصم { background: var(--g-pink); color: #fff; }
.product-badge--جديد { background: var(--g-cyan); color: var(--g-bg); }
.product-badge--الأكثر-مبيعا, .product-badge--الأكثر-مبيعاً { background: var(--g-yellow); color: var(--g-bg); }
.product-badge--مميز { background: var(--g-blue); color: #fff; }

.product-card__stock {
	position: absolute;
	bottom: 10px;
	right: 10px;
	background: rgba(0,0,0,0.55);
	backdrop-filter: blur(8px);
	color: var(--g-lime);
	padding: .25rem .65rem;
	font-size: .72rem;
	font-weight: 600;
	border-radius: var(--g-r-pill);
	display: inline-flex;
	align-items: center;
	gap: .35rem;
	z-index: 2;
}
.product-card__stock::before {
	content: '';
	width: 6px; height: 6px;
	background: var(--g-lime);
	border-radius: 50%;
	box-shadow: 0 0 6px var(--g-lime);
	animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.product-card__body {
	padding: 1.1rem 1.2rem 1.2rem;
	display: flex;
	flex-direction: column;
	flex: 1;
	gap: .55rem;
}
.product-card__cat {
	font-size: .72rem;
	color: var(--brand-color, var(--g-lime));
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .05em;
	font-family: var(--g-font-mono);
}

.product-card__title { font-size: 1rem; margin: 0; line-height: 1.4; font-weight: 700; }
.product-card__title a { color: var(--g-text); }
.product-card__title a:hover { color: var(--g-lime); }

.product-card__rating {
	color: var(--g-yellow);
	font-size: .78rem;
	display: flex;
	align-items: center;
	gap: .25rem;
}
.product-card__rating span { color: var(--g-text-muted); margin-right: .35rem; font-family: var(--g-font-mono); }

.product-card__bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: auto;
	padding-top: .8rem;
	border-top: 1px solid var(--g-border);
}
.product-card__price { display: flex; flex-direction: column; gap: .15rem; }
.product-card__price .price-now {
	color: var(--g-lime);
	font-weight: 800;
	font-size: 1.2rem;
	font-family: var(--g-font-mono);
	letter-spacing: -.02em;
}
.product-card__price .price-was {
	color: var(--g-text-muted);
	text-decoration: line-through;
	font-size: .8rem;
	font-family: var(--g-font-mono);
}
.product-card__btn {
	width: 38px; height: 38px;
	background: var(--g-surface-2);
	color: var(--g-lime) !important;
	border: 1px solid var(--g-border);
	border-radius: 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: all .25s var(--g-ease);
}
.product-card__btn:hover {
	background: var(--g-lime);
	color: var(--g-bg) !important;
	border-color: var(--g-lime);
	box-shadow: 0 0 16px var(--g-lime-glow);
}

/* =================== Featured banner =================== */
.featured-banner {
	background: linear-gradient(120deg, var(--g-bg-2) 0%, var(--g-surface) 100%);
	border: 1px solid var(--g-border);
	border-radius: var(--g-r-lg);
	padding: 3rem 3rem;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
	align-items: center;
	position: relative;
	overflow: hidden;
	margin-bottom: 3rem;
}
.featured-banner::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -10%;
	width: 400px; height: 400px;
	background: radial-gradient(circle, var(--g-pink-glow) 0%, transparent 60%);
	filter: blur(30px);
}
.featured-banner .eyebrow { background: rgba(255, 61, 138, 0.12); color: var(--g-pink); border-color: rgba(255, 61, 138, 0.3); }
.featured-banner h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: .8rem; position: relative; z-index: 1; }
.featured-banner p { color: var(--g-text-soft); max-width: 460px; position: relative; z-index: 1; }
.featured-banner__visual {
	display: flex;
	justify-content: center;
	gap: 1rem;
	position: relative;
	z-index: 1;
}
.featured-banner__visual .gift-card {
	position: relative;
	width: 240px;
	height: 150px;
	transform: rotate(-6deg);
	margin: 0;
}
.featured-banner__visual .gift-card:nth-child(2) {
	transform: rotate(6deg) translateY(20px);
	margin-right: -40px;
}
.featured-banner__visual .gift-card .gc-amount { font-size: 2rem; }

/* =================== About / Trust =================== */
.section-trust { background: var(--g-bg-2); border-top: 1px solid var(--g-border-soft); border-bottom: 1px solid var(--g-border-soft); }
.trust-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}
.trust-stats {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
	margin-top: 2rem;
}
.trust-stat {
	background: var(--g-surface);
	padding: 1.5rem;
	border-radius: var(--g-r);
	border: 1px solid var(--g-border);
	text-align: center;
}
.trust-stat strong {
	display: block;
	font-family: var(--g-font-mono);
	font-size: 2.2rem;
	color: var(--g-lime);
	font-weight: 900;
	letter-spacing: -.02em;
}
.trust-stat span { color: var(--g-text-muted); font-size: .85rem; }

.trust-content .lead { font-size: 1.1rem; color: var(--g-text-soft); }
.check-list { list-style: none; padding: 0; margin: 1.5rem 0; }
.check-list li { display: flex; align-items: flex-start; gap: .65rem; padding: .5rem 0; font-size: 1rem; }
.check-list li > i { color: var(--g-lime); margin-top: .35rem; flex-shrink: 0; font-size: .9rem; }

.trust-visual {
	position: relative;
	height: 480px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.trust-controller {
	width: 380px;
	height: 380px;
	background: radial-gradient(circle, var(--g-surface) 0%, transparent 70%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}
.trust-controller > i {
	font-size: 14rem;
	color: var(--g-lime);
	opacity: 0.15;
}
.trust-controller .trust-orbit {
	position: absolute;
	inset: 0;
	border: 1px dashed var(--g-border);
	border-radius: 50%;
	animation: orbit 20s linear infinite;
}
.trust-orbit-item {
	position: absolute;
	width: 64px; height: 64px;
	background: var(--g-surface);
	border: 1px solid var(--g-border);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.8rem;
}
.trust-orbit-item:nth-child(1) { top: -32px; left: 50%; transform: translateX(-50%); color: var(--brand-ps); }
.trust-orbit-item:nth-child(2) { top: 50%; right: -32px; transform: translateY(-50%); color: var(--brand-xbox); }
.trust-orbit-item:nth-child(3) { bottom: -32px; left: 50%; transform: translateX(-50%); color: var(--brand-nintendo); }
.trust-orbit-item:nth-child(4) { top: 50%; left: -32px; transform: translateY(-50%); color: var(--brand-spotify); }

@keyframes orbit { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* =================== Testimonials =================== */
.section-testimonials { background: var(--g-bg); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial-card {
	background: var(--g-surface);
	padding: 1.8rem;
	border-radius: var(--g-r);
	border: 1px solid var(--g-border);
	position: relative;
	transition: border-color .3s var(--g-ease), transform .3s var(--g-ease);
}
.testimonial-card:hover { border-color: var(--g-lime); transform: translateY(-4px); }
.testimonial-card .stars { color: var(--g-yellow); margin-bottom: 1rem; }
.testimonial-card p { font-size: .98rem; color: var(--g-text); line-height: 1.7; }
.testimonial-author {
	display: flex;
	align-items: center;
	gap: .8rem;
	margin-top: 1.5rem;
	padding-top: 1.2rem;
	border-top: 1px solid var(--g-border);
}
.testimonial-author .avatar {
	width: 46px; height: 46px;
	background: linear-gradient(135deg, var(--g-lime), var(--g-cyan));
	color: var(--g-bg);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--g-font-display);
	font-weight: 900;
	font-size: 1.2rem;
}
.testimonial-author strong { display: block; color: var(--g-text); }
.testimonial-author small { color: var(--g-text-muted); font-family: var(--g-font-mono); font-size: .75rem; }

/* =================== CTA =================== */
.section-cta { padding: 4rem 0; }
.cta-box {
	background: linear-gradient(135deg, var(--g-surface) 0%, var(--g-bg-2) 100%);
	border: 1px solid var(--g-border);
	border-radius: var(--g-r-lg);
	padding: 4rem;
	display: grid;
	grid-template-columns: 1.3fr 1fr;
	align-items: center;
	gap: 2rem;
	position: relative;
	overflow: hidden;
}
.cta-box::before {
	content: '';
	position: absolute;
	top: -50%; right: -10%;
	width: 500px; height: 500px;
	background: radial-gradient(circle, var(--g-lime-glow) 0%, transparent 60%);
	filter: blur(40px);
}
.cta-box h2 { color: var(--g-text); position: relative; z-index: 1; }
.cta-box p { color: var(--g-text-soft); margin: 0; font-size: 1.05rem; position: relative; z-index: 1; }
.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: flex-end; position: relative; z-index: 1; }

/* =================== Footer =================== */
.site-footer { background: var(--g-bg); }

.footer-cta {
	background: var(--g-bg-2);
	color: var(--g-text);
	padding: 3rem 0;
	border-top: 1px solid var(--g-border-soft);
	border-bottom: 1px solid var(--g-border-soft);
}
.footer-cta__inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 2.5rem; align-items: center; }
.footer-cta h2 { color: var(--g-text); margin: 0 0 .4rem; font-size: 1.8rem; }
.footer-cta p { color: var(--g-text-soft); margin: 0; }
.newsletter-form {
	display: flex;
	gap: .5rem;
	background: var(--g-surface);
	padding: .4rem;
	border-radius: var(--g-r);
	border: 1px solid var(--g-border);
	flex-wrap: wrap;
	position: relative;
}
.newsletter-form input {
	flex: 1;
	background: transparent;
	border: none;
	padding: .85rem 1.2rem;
	color: var(--g-text);
	font-family: inherit;
	font-size: 1rem;
	min-width: 200px;
	outline: none;
}
.newsletter-form input::placeholder { color: var(--g-text-muted); }
.newsletter-success { display: none; position: absolute; bottom: -28px; right: 1rem; color: var(--g-lime); font-size: .85rem; }

.footer-main { padding: 4rem 0 2rem; background: var(--g-bg); color: var(--g-text-soft); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2.5rem; }
.footer-col h4.widget-title {
	color: var(--g-text);
	font-size: 1rem;
	margin: 0 0 1.2rem;
	font-family: var(--g-font-mono);
	text-transform: uppercase;
	letter-spacing: .08em;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { padding: .35rem 0; }
.footer-col ul a { color: var(--g-text-soft); font-size: .92rem; }
.footer-col ul a:hover { color: var(--g-lime); }
.footer-col .contact-list i { color: var(--g-lime); margin-left: .5rem; }

.footer-logo {
	display: flex;
	align-items: center;
	gap: .65rem;
	font-family: var(--g-font-display);
	font-size: 1.5rem;
	font-weight: 900;
	color: var(--g-text);
	margin-bottom: 1rem;
}

.social-links { display: flex; gap: .6rem; margin-top: 1.2rem; }
.social-links a {
	width: 40px; height: 40px;
	background: var(--g-surface);
	color: var(--g-text-soft);
	border: 1px solid var(--g-border);
	border-radius: 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: all .25s var(--g-ease);
}
.social-links a:hover { background: var(--g-lime); color: var(--g-bg); border-color: var(--g-lime); transform: translateY(-3px); }

.footer-bottom { background: var(--g-bg-2); padding: 1.3rem 0; color: var(--g-text-muted); border-top: 1px solid var(--g-border-soft); }
.footer-bottom__inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { margin: 0; font-size: .85rem; }
.payment-methods { display: flex; gap: .5rem; align-items: center; }
.payment-methods i { font-size: 1.4rem; color: var(--g-text-muted); }

/* =================== Page header (archive/single) =================== */
.page-header {
	padding: 4rem 0 3rem;
	background: var(--g-bg-2);
	border-bottom: 1px solid var(--g-border-soft);
	position: relative;
	overflow: hidden;
}
.page-header::before {
	content: '';
	position: absolute;
	top: -50%; left: -10%;
	width: 500px; height: 500px;
	background: radial-gradient(circle, var(--g-lime-glow) 0%, transparent 60%);
	filter: blur(40px);
}
.page-header .container { position: relative; z-index: 1; }
.page-header .page-title { margin: 0 0 .5rem; }
.page-header .page-description { color: var(--g-text-soft); max-width: 700px; }

.shop-toolbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.5rem 0;
	margin-bottom: 1rem;
	flex-wrap: wrap;
	gap: 1rem;
}
.shop-toolbar__count { color: var(--g-text-muted); font-family: var(--g-font-mono); font-size: .9rem; }
.shop-toolbar__filters { display: flex; flex-wrap: wrap; gap: .5rem; }
.filter-chip {
	padding: .5rem 1.1rem;
	border-radius: var(--g-r-pill);
	background: var(--g-surface);
	border: 1px solid var(--g-border);
	color: var(--g-text-soft);
	font-size: .88rem;
	font-weight: 600;
	transition: all .2s var(--g-ease);
}
.filter-chip:hover, .filter-chip.is-active {
	background: var(--g-lime);
	color: var(--g-bg);
	border-color: var(--g-lime);
}

.content-grid { display: grid; grid-template-columns: 1fr 320px; gap: 3rem; padding: 3rem 0; }
.posts-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.post-card {
	background: var(--g-surface);
	border-radius: var(--g-r);
	overflow: hidden;
	border: 1px solid var(--g-border);
}
.post-card__thumb { display: block; aspect-ratio: 16/10; overflow: hidden; }
.post-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.post-card__body { padding: 1.5rem; }
.post-card__title { font-size: 1.2rem; }
.post-card__title a { color: var(--g-text); }
.post-meta { display: flex; gap: 1rem; color: var(--g-text-muted); font-size: .85rem; margin-bottom: .8rem; }
.post-meta i { color: var(--g-lime); margin-left: .3rem; }

.pagination { margin-top: 2.5rem; display: flex; justify-content: center; }
.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px; height: 40px;
	padding: 0 .8rem;
	background: var(--g-surface);
	border: 1px solid var(--g-border);
	border-radius: var(--g-r-sm);
	margin: 0 .25rem;
	color: var(--g-text);
	font-weight: 600;
	font-family: var(--g-font-mono);
}
.pagination .page-numbers.current, .pagination .page-numbers:hover {
	background: var(--g-lime);
	color: var(--g-bg);
	border-color: var(--g-lime);
}

.no-results, .no-products { text-align: center; padding: 3rem; color: var(--g-text-muted); grid-column: 1/-1; }

.widget-area .widget { background: var(--g-surface); padding: 1.5rem; border-radius: var(--g-r); border: 1px solid var(--g-border); margin-bottom: 1.5rem; }
.widget-title {
	font-size: 1rem;
	margin: 0 0 1rem;
	padding-bottom: .8rem;
	border-bottom: 2px solid var(--g-lime);
	display: inline-block;
	font-family: var(--g-font-mono);
	text-transform: uppercase;
	letter-spacing: .08em;
	color: var(--g-text);
}

/* =================== Single Product =================== */
.single-product { padding: 3rem 0 5rem; }
.breadcrumbs {
	display: flex;
	align-items: center;
	gap: .5rem;
	color: var(--g-text-muted);
	font-size: .85rem;
	margin-bottom: 2rem;
	flex-wrap: wrap;
	font-family: var(--g-font-mono);
}
.breadcrumbs a { color: var(--g-text-muted); }
.breadcrumbs a:hover { color: var(--g-lime); }
.breadcrumbs i { font-size: .65rem; opacity: .5; }

.product-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	margin-bottom: 4rem;
}
.product-gallery {
	background: var(--g-surface);
	border: 1px solid var(--g-border);
	border-radius: var(--g-r-lg);
	overflow: hidden;
	position: relative;
	aspect-ratio: 4/3;
	display: flex;
	align-items: center;
	justify-content: center;
}
.product-gallery img { width: 100%; height: 100%; object-fit: cover; }
.gallery-placeholder { color: var(--g-text-muted); font-size: 5rem; }
.product-gallery .product-badge { font-size: .85rem; padding: .4rem .9rem; }

.product-cats a { color: var(--g-lime); font-weight: 600; font-size: .85rem; font-family: var(--g-font-mono); text-transform: uppercase; letter-spacing: .05em; }
.product-title { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin: .8rem 0 1rem; }
.product-rating { display: flex; align-items: center; gap: .8rem; margin-bottom: 1.5rem; }
.product-rating .stars { color: var(--g-yellow); }
.product-rating .rating-text { color: var(--g-text-muted); font-size: .85rem; font-family: var(--g-font-mono); }

.product-price-block {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex-wrap: wrap;
	padding: 1.4rem 0;
	border-top: 1px solid var(--g-border);
	border-bottom: 1px solid var(--g-border);
	margin-bottom: 1.5rem;
}
.product-price-block .price-now { font-size: 2.4rem; font-weight: 900; color: var(--g-lime); font-family: var(--g-font-mono); letter-spacing: -.03em; }
.product-price-block .price-was { color: var(--g-text-muted); text-decoration: line-through; font-size: 1.2rem; font-family: var(--g-font-mono); }
.product-price-block .price-discount {
	background: var(--g-pink);
	color: #fff;
	padding: .35rem .9rem;
	border-radius: var(--g-r-pill);
	font-size: .82rem;
	font-weight: 800;
	font-family: var(--g-font-mono);
}

.product-excerpt { color: var(--g-text-soft); font-size: 1.05rem; margin-bottom: 1.5rem; }

.product-actions { display: flex; flex-direction: column; gap: .7rem; margin-bottom: 2rem; }
.product-guarantees {
	list-style: none;
	padding: 1.5rem;
	margin: 0;
	background: var(--g-bg-2);
	border: 1px solid var(--g-border);
	border-radius: var(--g-r);
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: .9rem;
}
.product-guarantees li { display: flex; align-items: center; gap: .55rem; font-size: .9rem; color: var(--g-text-soft); }
.product-guarantees i { color: var(--g-lime); }

.product-tabs { margin: 4rem 0; }
.tabs-nav { display: flex; gap: 0; border-bottom: 2px solid var(--g-border); margin-bottom: 2rem; flex-wrap: wrap; }
.tab-btn {
	background: none;
	border: none;
	font-family: inherit;
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--g-text-muted);
	padding: 1rem 1.5rem;
	cursor: pointer;
	position: relative;
	transition: color .25s var(--g-ease);
}
.tab-btn::after {
	content: '';
	position: absolute;
	bottom: -2px; right: 0;
	width: 0; height: 2px;
	background: var(--g-lime);
	transition: width .3s var(--g-ease);
}
.tab-btn.is-active { color: var(--g-lime); }
.tab-btn.is-active::after { width: 100%; }
.tab-pane { display: none; }
.tab-pane.is-active { display: block; animation: fadeIn .4s var(--g-ease); }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.related-products { margin-top: 4rem; }

/* Comments */
.comments-area { background: var(--g-surface); padding: 2rem; border-radius: var(--g-r); margin-top: 2rem; border: 1px solid var(--g-border); }
.comments-area h3 { color: var(--g-text); }
.comments-list { list-style: none; padding: 0; }
.comments-list .comment { padding: 1.2rem 0; border-bottom: 1px solid var(--g-border); }
.comment-form input, .comment-form textarea {
	width: 100%;
	padding: .9rem 1rem;
	border: 1px solid var(--g-border);
	border-radius: var(--g-r-sm);
	font-family: inherit;
	font-size: 1rem;
	background: var(--g-bg-2);
	color: var(--g-text);
	margin-top: .35rem;
}
.comment-form textarea { resize: vertical; min-height: 140px; }
.comment-form input:focus, .comment-form textarea:focus { outline: none; border-color: var(--g-lime); }
.comment-form .submit { background: var(--g-lime); color: var(--g-bg); border: none; padding: .9rem 1.8rem; border-radius: var(--g-r-sm); font-family: inherit; font-weight: 700; cursor: pointer; }

/* =================== 404 =================== */
.error-404 { padding: 6rem 0; text-align: center; }
.error-404__inner { max-width: 600px; margin: 0 auto; }
.error-code {
	font-family: var(--g-font-mono);
	font-size: clamp(6rem, 14vw, 10rem);
	font-weight: 900;
	background: linear-gradient(135deg, var(--g-lime), var(--g-pink));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1;
	margin-bottom: 1rem;
	letter-spacing: -.05em;
}
.error-404 .hero__actions { justify-content: center; }
.error-404 .search-form { max-width: 400px; margin: 2.5rem auto 0; position: relative; }
.error-404 .search-form input { width: 100%; padding: .95rem 1.2rem; border: 1px solid var(--g-border); border-radius: var(--g-r-pill); font-family: inherit; font-size: 1rem; background: var(--g-surface); color: var(--g-text); }
.error-404 .search-form button { position: absolute; left: 6px; top: 50%; transform: translateY(-50%); background: var(--g-lime); color: var(--g-bg); border: none; width: 40px; height: 40px; border-radius: 50%; cursor: pointer; }

/* =================== Responsive =================== */
@media (max-width: 1024px) {
	.hero__inner, .trust-grid, .footer-cta__inner, .cta-box, .featured-banner { grid-template-columns: 1fr; }
	.hero__visual { height: 440px; margin-top: 2rem; }
	.products-grid { grid-template-columns: repeat(3, 1fr); }
	.categories-grid { grid-template-columns: repeat(3, 1fr); }
	.features-grid { grid-template-columns: repeat(2, 1fr); }
	.testimonials-grid { grid-template-columns: 1fr; }
	.footer-grid { grid-template-columns: 1fr 1fr; }
	.content-grid { grid-template-columns: 1fr; }
	.product-layout { grid-template-columns: 1fr; }
	.trust-visual { height: 350px; }
	.trust-controller { width: 280px; height: 280px; }
	.trust-controller > i { font-size: 10rem; }
}

@media (max-width: 768px) {
	.section { padding: 3.5rem 0; }
	.hero { padding: 3rem 0 2rem; }
	.top-bar__links { display: none; }
	.header-actions .btn span { display: none; }
	.header-actions .btn { padding: .6rem; }
	.site-header__inner { gap: 1rem; padding: .9rem 16px; }
	.container { padding: 0 16px; }
	.products-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
	.categories-grid { grid-template-columns: repeat(2, 1fr); gap: .8rem; }
	.hero__title { font-size: clamp(1.8rem, 8vw, 2.6rem); }
	.gift-card { width: 240px; height: 150px; padding: 1rem; }
	.gift-card .gc-amount { font-size: 2rem; }
	.section-head--row { flex-direction: column; align-items: flex-start; }
	.product-guarantees { grid-template-columns: 1fr; }
	.featured-banner { padding: 2rem 1.5rem; }
	.featured-banner__visual { transform: scale(0.8); }
	.footer-grid { grid-template-columns: 1fr; gap: 2rem; }
	.cta-box { padding: 2.5rem 1.5rem; text-align: center; }
	.cta-actions { justify-content: center; }
	.product-card__body { padding: 1rem; }
	.trust-stats { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
	.product-card__title { font-size: .92rem; }
	.product-card__price .price-now { font-size: 1.05rem; }
	.hero__brands-row { gap: 1rem; }
	.brand-pill { font-size: .82rem; }
	.brand-pill i { font-size: 1.2rem; }
	.feature-item { gap: .7rem; }
	.feature-item > i { width: 44px; height: 44px; font-size: 1.1rem; }
	.feature-item h4 { font-size: .9rem; }
	.feature-item p { font-size: .78rem; }
}

/* ============================================================
   GAMELO STORE — v2.1 RESPONSIVE & POLISH LAYER
   ============================================================ */

:root {
  --g-bg:        #0A0B14;
  --g-bg-2:      #11132A;
  --g-bg-soft:   rgba(255,255,255,.03);
  --g-text:      #E8EAF5;
  --g-text-soft: #A4AAC8;
  --g-text-muted:#6B7194;
  --g-border:    rgba(255,255,255,.08);
  --g-lime:      #B7F642;
  --g-pink:      #FF3D8A;
  --g-cyan:      #5BE9FF;
  --g-radius:    14px;
}

/* Base & layout */
body.rtl { direction: rtl; }
.container { max-width: 1240px; margin-inline: auto; padding-inline: 24px; width: 100%; }

/* ---------- TOP BAR (desktop) ---------- */
.top-bar { background: #06070d; border-bottom: 1px solid var(--g-border); }
.top-bar__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 8px 0; font-size: .82rem; color: var(--g-text-soft);
}
.top-bar__msg { display: flex; align-items: center; gap: 8px; color: #fff; font-weight: 600; }
.top-bar__msg i { color: var(--g-lime); }

.g-utility-bar { display: flex; align-items: center; gap: 8px; }
.g-utility-bar a, .g-utility-bar button {
  display: inline-flex; align-items: center; gap: 5px;
  color: #fff; background: transparent; border: 1px solid var(--g-border);
  padding: 5px 10px; border-radius: 7px; text-decoration: none;
  font-size: .76rem; font-family: inherit; cursor: pointer; transition: .15s;
  line-height: 1;
}
.g-utility-bar a:hover, .g-utility-bar button:hover {
  border-color: var(--g-lime); color: var(--g-lime);
}
.g-utility-bar .g-balance-pill {
  background: rgba(183,246,66,.1); border-color: rgba(183,246,66,.3);
  color: var(--g-lime); font-weight: 700; font-family: monospace;
  padding: 5px 12px; border-radius: 999px;
}

.g-currency-dd { position: relative; }
.g-currency-dd-menu {
  position: absolute; top: calc(100% + 4px); right: 0;
  background: var(--g-bg-2); border: 1px solid var(--g-border);
  border-radius: 8px; min-width: 100px; display: none; z-index: 300;
  overflow: hidden; box-shadow: 0 12px 30px rgba(0,0,0,.4);
}
.g-currency-dd.is-open .g-currency-dd-menu { display: block; }
.g-currency-dd-menu button {
  display: block; width: 100%; padding: 8px 14px; background: transparent;
  border: none; color: #fff; text-align: start; cursor: pointer;
  font-size: .82rem; border-radius: 0;
}
.g-currency-dd-menu button:hover { background: rgba(183,246,66,.08); color: var(--g-lime); }

/* ---------- HEADER ---------- */
.site-header { background: var(--g-bg); border-bottom: 1px solid var(--g-border); position: sticky; top: 0; z-index: 100; }
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 14px 24px; min-height: 64px;
}
.site-title { display: flex; align-items: center; gap: 10px; text-decoration: none; color: #fff; font-weight: 900; font-size: 1.3rem; font-family: 'Outfit', sans-serif; flex-shrink: 0; }
.site-title .logo-mark { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 9px; background: var(--g-lime); color: var(--g-bg); font-weight: 900; font-size: 1.3rem; }
.site-branding { flex-shrink: 0; }

/* ---------- MAIN NAV (desktop) ---------- */
.main-navigation { flex: 1; display: flex; justify-content: center; }
#primary-menu, .main-navigation ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; align-items: center; gap: 4px;
}
#primary-menu > li { position: relative; }
#primary-menu > li > a {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 10px 14px; border-radius: 8px;
  color: var(--g-text-soft); font-weight: 600; font-size: .9rem;
  text-decoration: none; transition: .15s;
}
#primary-menu > li > a:hover { color: #fff; background: rgba(255,255,255,.04); }
#primary-menu > li.current-menu-item > a,
#primary-menu > li.current_page_item > a { color: var(--g-lime); }

/* ---------- MEGA MENU (categories dropdown) ---------- */
#primary-menu .g-mega-menu {
  position: absolute; top: 100%; inset-inline-end: 0;
  background: var(--g-bg-2); border: 1px solid var(--g-border);
  border-radius: 14px; padding: 8px; margin: 0;
  min-width: 280px; max-height: 460px; overflow-y: auto;
  box-shadow: 0 18px 50px rgba(0,0,0,.5);
  display: none; flex-direction: column; gap: 0;
  z-index: 200;
}
#primary-menu .menu-item-has-children:hover > .g-mega-menu,
#primary-menu .menu-item-has-children:focus-within > .g-mega-menu { display: flex; }
#primary-menu .g-mega-menu li { width: 100%; padding: 0; border: none; }
#primary-menu .g-mega-menu a {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; padding: 9px 12px; color: var(--g-text-soft);
  font-size: .85rem; text-decoration: none; border-radius: 8px;
  transition: .12s;
}
#primary-menu .g-mega-menu a:hover { background: rgba(183,246,66,.08); color: #fff; }
#primary-menu .g-mega-menu .g-cat-count {
  background: rgba(183,246,66,.15); color: var(--g-lime);
  padding: 2px 8px; border-radius: 999px; font-size: 11px;
  font-family: monospace; font-weight: 700; min-width: 26px; text-align: center;
  flex-shrink: 0;
}

/* ---------- HEADER ACTIONS ---------- */
.header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.icon-btn, .g-bell {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,.04); border: 1px solid var(--g-border);
  color: #fff; cursor: pointer; transition: .15s;
}
.icon-btn:hover, .g-bell:hover { border-color: var(--g-lime); color: var(--g-lime); }

/* ---------- HAMBURGER ---------- */
.menu-toggle {
  display: none; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,.04); border: 1px solid var(--g-border);
  cursor: pointer; padding: 0; gap: 4px; flex-direction: column;
}
.menu-toggle span { display: block; width: 20px; height: 2px; background: #fff; transition: .22s; }
.menu-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- SECTIONS GENERAL ---------- */
.section { padding: 70px 0; }
.section-head { text-align: center; margin-bottom: 36px; }
.section-head--row {
  display: flex; align-items: end; justify-content: space-between;
  text-align: start; gap: 20px; margin-bottom: 28px;
}
.section-head h2 {
  color: #fff; font-size: clamp(1.5rem, 3vw, 2.1rem);
  margin: 8px 0 6px; line-height: 1.25;
}
.section-head p, .section-head .lead { color: var(--g-text-soft); margin: 0; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 20px; border-radius: 10px;
  background: transparent; border: 1px solid var(--g-border);
  color: #fff; text-decoration: none; font-weight: 600;
  font-family: inherit; font-size: .92rem; cursor: pointer; transition: .15s;
  white-space: nowrap; line-height: 1;
}
.btn-primary { background: var(--g-lime); color: var(--g-bg); border-color: transparent; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(183,246,66,.32); }
.btn-pink { background: var(--g-pink); color: #fff; border-color: transparent; }
.btn-ghost:hover { border-color: var(--g-lime); color: var(--g-lime); }
.btn-sm { padding: 7px 14px; font-size: .8rem; }
.btn-lg { padding: 14px 24px; font-size: 1rem; }
.btn-block { display: flex; justify-content: center; width: 100%; }

/* ---------- SPECS / TOOLBAR ---------- */
.product-specs { list-style: none; padding: 0; margin: 18px 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px; }
.product-specs li { background: var(--g-bg-soft); padding: 9px 12px; border-radius: 8px; color: var(--g-text-soft); font-size: .85rem; border: 1px solid var(--g-border); }
.product-specs strong { color: #fff; }

.filter-chip { display: inline-flex; align-items: center; padding: 6px 13px; border-radius: 999px; background: rgba(255,255,255,.04); border: 1px solid var(--g-border); color: var(--g-text-soft); font-size: .8rem; text-decoration: none; transition: .15s; }
.filter-chip:hover { border-color: var(--g-lime); color: var(--g-lime); }
.filter-chip.is-active { background: var(--g-lime); color: var(--g-bg); border-color: transparent; font-weight: 700; }

/* ---------- PAGE HEADERS ---------- */
.page-header { padding: 50px 0 30px; background: linear-gradient(135deg, #0F1120 0%, #1D2240 100%); text-align: center; border-bottom: 1px solid var(--g-border); }
.page-header .page-title { color: #fff; font-size: clamp(1.6rem, 3vw, 2.4rem); margin: 6px 0; }
.page-header .page-description { color: var(--g-text-soft); margin: 0 auto; max-width: 600px; }

/* ---------- SEARCH OVERLAY ---------- */
.search-overlay { position: fixed; inset: 0; background: rgba(10,11,20,.95); backdrop-filter: blur(10px); display: none; align-items: flex-start; justify-content: center; padding: 100px 20px 20px; z-index: 9000; }
.search-overlay.is-open { display: flex; }
.search-overlay input[type="search"] { width: 100%; max-width: 600px; background: rgba(255,255,255,.06); color: #fff; border: 2px solid var(--g-border); padding: 16px 20px; border-radius: 12px; font-size: 1.1rem; font-family: inherit; }
.search-overlay input:focus { outline: none; border-color: var(--g-lime); }
.search-close { position: absolute; top: 24px; right: 24px; background: rgba(255,255,255,.05); border: none; color: #fff; width: 44px; height: 44px; border-radius: 50%; cursor: pointer; font-size: 1.4rem; }

/* ---------- SKIP LINK ---------- */
.skip-link { position: absolute; top: -40px; inset-inline-start: 0; background: #000; color: #fff; padding: 8px; z-index: 9999; }
.skip-link:focus { top: 0; }

/* ---------- REVIEWS GRID ---------- */
.section-reviews { padding: 70px 0; }
.reviews-grid { display: grid; gap: 16px; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.review-card { background: var(--g-bg-soft); border: 1px solid var(--g-border); border-radius: 14px; padding: 20px; display: flex; flex-direction: column; gap: 12px; transition: .2s; }
.review-card:hover { border-color: rgba(183,246,66,.3); transform: translateY(-3px); }
.review-stars { color: #fbbf24; font-size: .95rem; }
.review-text { color: var(--g-text); line-height: 1.65; margin: 0; font-size: .92rem; flex: 1; }
.review-product { display: inline-flex; align-items: center; gap: 6px; font-size: .78rem; color: var(--g-lime); text-decoration: none; padding: 6px 10px; background: rgba(183,246,66,.08); border-radius: 7px; align-self: flex-start; border: 1px solid rgba(183,246,66,.18); }
.review-product:hover { background: rgba(183,246,66,.15); }
.review-author { display: flex; align-items: center; gap: 10px; padding-top: 10px; border-top: 1px solid var(--g-border); }
.review-author .avatar { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, var(--g-lime) 0%, var(--g-pink) 100%); display: flex; align-items: center; justify-content: center; color: var(--g-bg); font-weight: 900; }
.review-author strong { display: block; color: #fff; font-size: .88rem; }
.review-author small { color: var(--g-text-muted); font-size: .72rem; }

#tab-reviews .comments-area { display: none; }

/* ============================================================
   ≤1024px — Tablets
   ============================================================ */
@media (max-width: 1024px) {
  .container { padding-inline: 18px; }
  .hero__inner { grid-template-columns: 1fr !important; gap: 28px; text-align: center; }
  .hero__visual { max-width: 460px; margin: 0 auto; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .product-layout { grid-template-columns: 1fr !important; gap: 24px; }
  #primary-menu > li > a { padding: 8px 10px; font-size: .85rem; }
}

/* ============================================================
   ≤768px — MOBILE (the critical breakpoint)
   ============================================================ */
@media (max-width: 768px) {

  /* Tight container */
  .container { padding-inline: 14px; }

  /* Top bar — single compact row */
  .top-bar__inner { padding: 6px 0; gap: 8px; font-size: .72rem; }
  .top-bar__msg { font-size: .7rem; gap: 5px; flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .g-utility-bar { gap: 4px; flex-shrink: 0; }
  .g-utility-bar a, .g-utility-bar button { padding: 4px 8px; font-size: .68rem; gap: 3px; }
  .g-utility-bar .g-balance-pill { padding: 4px 9px; font-size: .72rem; }
  /* Hide labels — keep only icons + currency code */
  .g-utility-bar a.g-utility-hide-mob { display: none; }

  /* HIDE currency switcher and language switcher on mobile (cluttering the top bar) */
  .g-currency-dd { display: none !important; }
  .g-utility-bar a[data-lang] { display: none !important; }

  /* Header */
  .site-header__inner { padding: 10px 14px; min-height: 58px; gap: 8px; }
  .site-title { font-size: 1.05rem; }
  .site-title .logo-mark { width: 32px; height: 32px; font-size: 1.05rem; border-radius: 8px; }

  /* HIDE desktop nav, SHOW hamburger */
  .main-navigation { display: none !important; }
  .menu-toggle { display: flex; }
  .header-actions .btn-sm { padding: 7px 10px; }
  .header-actions .btn-sm span { display: none; }

  /* MOBILE SIDEBAR DRAWER */
  /* Overlay backdrop */
  .main-navigation.is-open::before {
    content: ''; position: fixed; inset: 0;
    background: rgba(0,0,0,.55); backdrop-filter: blur(2px);
    z-index: -1;
  }
  .main-navigation.is-open {
    display: block !important;
    position: fixed; top: 0; bottom: 0; right: 0;
    width: min(320px, 85vw);
    background: var(--g-bg); padding: 20px 16px;
    overflow-y: auto; z-index: 9999;
    flex: none; justify-content: flex-start;
    box-shadow: -6px 0 32px rgba(0,0,0,.45);
    border-left: 1px solid var(--g-border);
    animation: slideInFromRight .22s ease;
  }
  @keyframes slideInFromRight {
    from { transform: translateX(100%); opacity: 0; }
    to   { transform: translateX(0);    opacity: 1; }
  }
  .main-navigation.is-open #primary-menu {
    display: flex !important; flex-direction: column !important;
    align-items: stretch !important; gap: 4px !important; padding: 0; margin: 0;
  }
  .main-navigation.is-open #primary-menu > li {
    display: block !important; width: 100%; padding: 0; border: none;
  }
  .main-navigation.is-open #primary-menu > li > a {
    display: flex !important; align-items: center; justify-content: space-between;
    padding: 14px 16px; border-radius: 10px;
    background: var(--g-bg-soft); border: 1px solid var(--g-border);
    color: #fff !important; font-size: .95rem; font-weight: 600;
    text-decoration: none;
  }
  /* Mega menu becomes inline collapsible inside mobile menu */
  .main-navigation.is-open #primary-menu .g-mega-menu {
    position: static !important; display: none !important;
    background: transparent; border: none; box-shadow: none; padding: 6px 0 0;
    max-height: none; min-width: 0; margin: 0;
    flex-direction: column !important; gap: 2px;
  }
  .main-navigation.is-open #primary-menu .menu-item-has-children.is-expanded .g-mega-menu {
    display: flex !important;
  }
  .main-navigation.is-open #primary-menu .g-mega-menu li {
    display: block !important; width: 100%; padding: 0; border: none;
  }
  .main-navigation.is-open #primary-menu .g-mega-menu a {
    display: flex !important; align-items: center; justify-content: space-between;
    padding: 11px 14px; margin-inline-start: 14px;
    background: rgba(255,255,255,.02); border: 1px solid rgba(255,255,255,.04);
    border-radius: 8px; font-size: .85rem; color: var(--g-text-soft) !important;
  }
  .main-navigation.is-open #primary-menu .g-mega-menu .g-cat-count {
    background: rgba(183,246,66,.15); color: var(--g-lime);
    font-size: 10px; padding: 2px 7px;
  }

  /* Sections — tighter */
  .section { padding: 40px 0; }
  .section-head { margin-bottom: 24px; }
  .section-head--row { flex-direction: column; align-items: flex-start; gap: 8px; margin-bottom: 22px; }
  .section-head h2 { font-size: 1.35rem !important; }

  /* Hero */
  .hero { padding: 30px 0 !important; }
  .hero__title { font-size: 1.7rem !important; line-height: 1.3; }
  .hero__desc { font-size: .88rem; }
  .hero__actions { flex-direction: column; gap: 8px; width: 100%; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__brands-row { justify-content: center; flex-wrap: wrap; gap: 6px; }
  .brand-pill { font-size: .68rem; padding: 4px 9px; }
  .brand-pill i { font-size: .9rem; }
  .hero__visual { transform: scale(.8); margin: -20px auto -10px; }

  /* Features strip */
  .features-strip { padding: 20px 0; }
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .feature-item { padding: 12px 10px !important; flex-direction: column !important; text-align: center; gap: 6px !important; }
  .feature-item > i { width: 38px !important; height: 38px !important; font-size: 1rem !important; }
  .feature-item h4 { font-size: .82rem !important; margin: 0 !important; }
  .feature-item p { font-size: .7rem !important; }

  /* Categories grid */
  .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .category-card { padding: 18px 12px !important; }
  .category-card__icon { width: 44px !important; height: 44px !important; font-size: 1.2rem !important; margin-bottom: 8px !important; }
  .category-card h3 { font-size: .85rem !important; margin: 4px 0 !important; }
  .category-card .count { font-size: .72rem; }

  /* Products grid */
  .products-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 12px; }
  .product-card__body { padding: 12px !important; }
  .product-card__title { font-size: .88rem !important; line-height: 1.35; min-height: auto !important; }
  .product-card__price .price-now { font-size: .95rem !important; }
  .product-card__rating { font-size: .7rem; }
  .product-card__cat { font-size: .68rem !important; }

  /* Featured banner */
  .featured-banner { grid-template-columns: 1fr !important; gap: 22px; padding: 26px 18px !important; text-align: center; }
  .featured-banner__visual { transform: scale(.75); justify-content: center; }

  /* Trust + stats */
  .trust-grid { grid-template-columns: 1fr !important; gap: 24px; }
  .trust-visual { display: none; }
  .trust-stats { grid-template-columns: repeat(2, 1fr) !important; gap: 10px; padding: 18px !important; }
  .trust-stat strong { font-size: 1.4rem !important; }
  .trust-stat span { font-size: .72rem !important; }

  /* Testimonials & reviews */
  .testimonials-grid, .reviews-grid { grid-template-columns: 1fr !important; gap: 12px; }

  /* CTA */
  .cta-box { flex-direction: column !important; gap: 16px; padding: 24px 18px !important; text-align: center; }
  .cta-actions { flex-direction: column; width: 100%; gap: 8px; }
  .cta-actions .btn { width: 100%; justify-content: center; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr !important; gap: 24px !important; }
  .footer-about { grid-column: 1 / -1; text-align: center; }
  .footer-about .social-links { justify-content: center; }
  .footer-bottom__inner { flex-direction: column; gap: 8px; text-align: center; padding: 14px 0; }
  .payment-methods { justify-content: center; flex-wrap: wrap; }

  /* Single product */
  .product-title { font-size: 1.25rem !important; }
  .product-gallery { min-height: 220px; padding: 24px !important; }
  .product-tabs { margin-top: 28px; }
  .product-tabs .tabs-nav { overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; }
  .tabs-nav .tab-btn { white-space: nowrap; font-size: .8rem; padding: 9px 14px !important; }
  .product-specs { grid-template-columns: 1fr !important; }
  .product-guarantees { grid-template-columns: 1fr 1fr !important; }
  .product-guarantees li { font-size: .78rem; padding: 9px !important; }

  /* Account page */
  .g-account-wrap { grid-template-columns: 1fr !important; gap: 14px; padding: 20px 0; }
  .g-account-side { position: relative; top: 0; padding: 14px; }
  .g-account-user img { width: 44px; height: 44px; }
  .g-account-user strong { font-size: .92rem; }
  .g-account-user small { font-size: .72rem; word-break: break-all; }
  .g-account-balance { padding: 12px; margin-bottom: 10px; }
  .g-account-balance strong { font-size: 1.25rem; word-break: break-word; }
  .g-account-nav {
    display: flex; flex-direction: row; flex-wrap: nowrap;
    overflow-x: auto; gap: 6px; padding-bottom: 6px;
    -webkit-overflow-scrolling: touch; scroll-snap-type: x mandatory;
  }
  .g-account-nav li { list-style: none; }
  .g-account-nav a { flex-shrink: 0; padding: 8px 14px; font-size: .8rem; white-space: nowrap; scroll-snap-align: start; border-radius: 8px; }
  .g-account-nav a i { display: none; }
  .g-account-main { padding: 16px; overflow: hidden; }
  .g-account-main h2 { font-size: 1.2rem; }
  .g-account-main h3 { font-size: 1rem; }

  /* Profile + password forms: vertical layout, full-width inputs */
  .g-account-pane .g-grid-2 { grid-template-columns: 1fr !important; gap: 12px !important; }
  .g-account-pane .g-form label {
    display: block; font-size: .82rem; color: var(--g-text-soft, #b6bbd3);
    margin-bottom: 12px; font-weight: 600;
  }
  .g-account-pane .g-form input,
  .g-account-pane .g-form select,
  .g-account-pane .g-form textarea {
    display: block; width: 100%; box-sizing: border-box;
    margin-top: 6px; padding: 11px 13px;
    background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
    border-radius: 9px; color: #fff; font-size: .92rem; font-family: inherit;
  }
  .g-account-pane .g-form input[type="file"] {
    padding: 8px; font-size: .8rem; line-height: 1.4;
  }
  .g-account-pane .g-form input[type="file"]::file-selector-button {
    background: var(--g-lime, #B7F642); color: #0A0B14;
    border: none; padding: 7px 12px; border-radius: 6px;
    font-weight: 700; cursor: pointer; margin-inline-end: 10px;
  }
  .g-account-pane .g-form button[type="submit"] { width: 100%; justify-content: center; }

  /* Stats cards on profile dashboard tighter */
  .g-account-pane .g-cards-4 { grid-template-columns: 1fr 1fr !important; gap: 8px !important; }
  .g-account-pane .g-cards-4 .g-card { padding: 14px 10px !important; text-align: center; }
  .g-account-pane .g-cards-4 .g-card h3 { font-size: .78rem !important; margin: 4px 0 !important; }
  .g-account-pane .g-cards-4 .g-card p { font-size: .95rem !important; word-break: break-word; }

  /* Hero on account page tighter */
  .g-hero-page .lead { word-break: break-word; }

  /* Referral link box on mobile */
  .g-account-pane input[readonly] { font-size: .72rem !important; word-break: break-all; }
  .g-account-pane .g-box { padding: 14px; }

  /* Tables → cards */
  .g-table { display: block; }
  .g-table thead { display: none; }
  .g-table tbody, .g-table tr { display: block; }
  .g-table tr { border: 1px solid var(--g-border); border-radius: 10px; padding: 10px 12px; margin-bottom: 8px; background: var(--g-bg-soft); }
  .g-table td { display: flex; justify-content: space-between; padding: 5px 0; border: none; border-bottom: 1px solid rgba(255,255,255,.03); font-size: .8rem; }
  .g-table td:last-child { border-bottom: none; }
  .g-table td::before { content: attr(data-label); color: var(--g-text-muted); font-weight: 600; margin-inline-end: 12px; flex-shrink: 0; }

  /* Page headers / hero */
  .page-header, .g-hero-page { padding: 30px 0 22px !important; }
  .page-header .page-title, .g-hero-page h1 { font-size: 1.5rem !important; }
  .g-hero-page .lead { font-size: .88rem; }
  .g-page-content { padding: 26px 0 50px; }
  .g-grid-2 { grid-template-columns: 1fr; gap: 16px; }
  .g-cards-4 { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .g-cards-4 .g-card { padding: 18px 12px !important; }
  .g-cards-4 .g-card i { font-size: 1.6rem !important; }
  .g-cards-4 .g-card h3 { font-size: .92rem !important; }
  .g-box { padding: 18px; }

  /* Forms */
  .g-form input, .g-form select, .g-form textarea { padding: 10px 12px; font-size: .92rem; }

  /* Steps */
  .g-steps li { padding: 16px 14px; gap: 12px; }
  .g-steps .num { width: 40px; height: 40px; font-size: 1rem; flex-shrink: 0; }
  .g-steps h3 { font-size: .98rem; }
  .g-steps p { font-size: .85rem; }

  /* FAQ */
  .g-faq-item summary { padding: 13px 14px; font-size: .85rem; gap: 8px; }
  .g-faq-item summary .num { width: 22px; height: 22px; font-size: .72rem; }
  .g-faq-item p { padding: 0 14px 14px 42px; font-size: .85rem; line-height: 1.7; }

  /* Shop toolbar */
  .shop-toolbar { gap: 8px !important; padding: 12px !important; }
  .shop-toolbar select, .shop-toolbar input[type="number"], .shop-toolbar input[type="text"] { flex: 1 0 calc(50% - 6px); min-width: 0; padding: 8px 10px !important; font-size: .8rem !important; }
  .shop-toolbar .btn { flex: 1 0 100%; justify-content: center; }
  .shop-toolbar__filters { gap: 5px !important; }
  .filter-chip { font-size: .7rem; padding: 5px 10px; }

  /* Buy box */
  .g-buy-box { padding: 16px; }
  .g-buy-box h3 { font-size: .95rem; }
  .g-buy-box .row { flex-direction: column; gap: 6px; }
  .g-buy-box .row input { width: 100%; padding: 9px 11px; font-size: .88rem; }
  .g-buy-fields label { font-size: .8rem; }

  /* Floating WhatsApp button */
  .g-whatsapp-fab { bottom: 16px; left: 16px; width: 52px; height: 52px; font-size: 1.5rem; }
  .g-whatsapp-fab::after { display: none; }

  /* Bell drawer fullscreen-friendly */
  .g-bell-drawer { position: fixed !important; top: 64px !important; right: 12px !important; left: 12px !important; width: auto !important; max-height: 70vh !important; overflow-y: auto !important; }

  /* Toasts */
  .g-toast { left: 16px !important; right: 16px !important; bottom: 80px !important; }

  /* Tap targets */
  button, .btn, a.btn, .product-card__btn, .menu-toggle, .icon-btn, .g-bell { min-height: 42px; }
}

/* ============================================================
   ≤480px — Small phones
   ============================================================ */
@media (max-width: 480px) {
  .top-bar__msg { display: none; }
  .top-bar__inner { justify-content: center; }
  .products-grid { grid-template-columns: 1fr 1fr !important; }
  .categories-grid { grid-template-columns: 1fr 1fr !important; }
  .features-grid { grid-template-columns: 1fr 1fr !important; }
  .footer-grid { grid-template-columns: 1fr !important; gap: 22px !important; }
  .footer-about { grid-column: auto; }
  .trust-stats { grid-template-columns: repeat(2, 1fr) !important; }
  .hero__title { font-size: 1.55rem !important; }
  .hero__visual { transform: scale(.7); margin: -40px auto -30px; }
  .gift-card { padding: 16px !important; }
  .gc-amount { font-size: 1.5rem !important; }
  .g-cards-4 { grid-template-columns: 1fr !important; }
  .product-guarantees { grid-template-columns: 1fr !important; }
  .breadcrumbs { font-size: .72rem; flex-wrap: wrap; }
}

/* ============================================================
   ≤360px — Very small phones
   ============================================================ */
@media (max-width: 360px) {
  .products-grid { grid-template-columns: 1fr !important; }
  .categories-grid { grid-template-columns: 1fr !important; }
}

/* ============================================================
   Landscape phones
   ============================================================ */
@media (max-width: 900px) and (orientation: landscape) and (max-height: 500px) {
  .hero { padding: 24px 0 !important; }
  .hero__visual { display: none; }
}

/* ============================================================
   GAMELO STORE — v2.2 BASE LAYER (account tabs, toast, modal, forms)
   These styles were MISSING from the original CSS which is why the
   account page looked broken on desktop and the success modal had no
   visual treatment. This layer adds the foundation.
   ============================================================ */

/* ---------- Account page — desktop layout ---------- */
.g-hero-page {
  padding: 56px 0 28px;
  border-bottom: 1px solid var(--g-border);
  background: linear-gradient(135deg, #0F1120 0%, #181C36 100%);
}
.g-hero-page .eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(183,246,66,.1); border: 1px solid rgba(183,246,66,.25);
  color: var(--g-lime); padding: 5px 14px; border-radius: 999px;
  font-size: .8rem; font-weight: 700; margin-bottom: 14px;
}
.g-hero-page h1 {
  color: #fff; font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: 6px 0 8px; line-height: 1.2;
}
.g-hero-page .lead { color: var(--g-text-soft); margin: 0; font-size: 1rem; }

.g-account-wrap {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
  padding: 32px 0 80px;
  align-items: start;
}
.g-account-side {
  position: sticky; top: 80px;
  background: var(--g-bg-2);
  border: 1px solid var(--g-border);
  border-radius: 16px;
  padding: 20px;
  display: flex; flex-direction: column; gap: 16px;
}
.g-account-user {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 16px; border-bottom: 1px solid var(--g-border);
}
.g-account-user img {
  width: 52px; height: 52px; border-radius: 50%;
  border: 2px solid rgba(183,246,66,.4);
  object-fit: cover;
}
.g-account-user > div { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.g-account-user strong { color: #fff; font-size: .98rem; }
.g-account-user small { color: var(--g-text-soft); font-size: .78rem; overflow: hidden; text-overflow: ellipsis; }

.g-account-balance {
  background: linear-gradient(135deg, rgba(183,246,66,.08), rgba(91,233,255,.04));
  border: 1px solid rgba(183,246,66,.18);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
}
.g-account-balance small {
  display: block; color: var(--g-text-soft); font-size: .75rem;
  margin-bottom: 6px; font-weight: 600;
}
.g-account-balance strong {
  display: block; color: var(--g-lime);
  font-family: var(--g-font-mono, monospace);
  font-size: 1.7rem; font-weight: 800;
  margin-bottom: 10px;
}

.g-account-nav {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 2px;
}
.g-account-nav li { padding: 0; border: none; }
.g-account-nav a {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 14px; border-radius: 10px;
  color: var(--g-text-soft); text-decoration: none;
  font-size: .9rem; font-weight: 600;
  transition: background .15s, color .15s;
}
.g-account-nav a i { width: 18px; color: var(--g-text-muted); transition: color .15s; }
.g-account-nav a:hover {
  background: rgba(255,255,255,.04); color: #fff;
}
.g-account-nav a:hover i { color: var(--g-lime); }
.g-account-nav a.is-active {
  background: rgba(183,246,66,.1);
  color: var(--g-lime);
  box-shadow: inset 3px 0 0 var(--g-lime);
}
.g-account-nav a.is-active i { color: var(--g-lime); }

.g-account-main {
  background: var(--g-bg-2);
  border: 1px solid var(--g-border);
  border-radius: 16px;
  padding: 28px;
  min-height: 400px;
}
.g-account-main h2 {
  color: #fff; margin: 0 0 22px;
  font-size: 1.5rem;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--g-border);
}
.g-account-main h3 { color: #fff; font-size: 1.05rem; margin: 24px 0 12px; }

/* The critical fix: panes hidden by default, only .is-active shows. */
.g-account-pane { display: none; animation: gFadeIn .35s ease; }
.g-account-pane.is-active { display: block; }
@keyframes gFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- Generic boxes/cards/grids used across the account ---------- */
.g-box {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--g-border);
  border-radius: 12px;
  padding: 20px;
}
.g-grid-2 {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.g-cards-4 {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  margin-bottom: 8px;
}
.g-cards-4 .g-card {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--g-border);
  border-radius: 12px;
  padding: 18px 16px;
  text-align: start;
  transition: transform .2s, border-color .2s;
}
.g-cards-4 .g-card:hover {
  transform: translateY(-2px);
  border-color: rgba(183,246,66,.3);
}
.g-cards-4 .g-card i {
  display: inline-block;
  font-size: 1.4rem;
  color: var(--g-lime);
  margin-bottom: 8px;
}
.g-cards-4 .g-card h3 {
  margin: 0 0 6px; font-size: .85rem;
  color: var(--g-text-soft); font-weight: 600;
}
.g-cards-4 .g-card p { margin: 0; font-weight: 700; }

.g-balance {
  font-family: var(--g-font-mono, monospace);
  color: var(--g-lime); font-weight: 800;
}

/* ---------- Tables (desktop) — already responsive on mobile ---------- */
.g-table {
  width: 100%; border-collapse: collapse;
  background: rgba(255,255,255,.02);
  border: 1px solid var(--g-border);
  border-radius: 12px; overflow: hidden;
  font-size: .9rem;
}
.g-table thead {
  background: rgba(255,255,255,.04);
  color: var(--g-text-soft);
  text-transform: uppercase;
  font-size: .75rem; letter-spacing: .03em;
}
.g-table th, .g-table td {
  text-align: start; padding: 12px 14px;
  border-bottom: 1px solid var(--g-border);
}
.g-table tr:last-child td { border-bottom: none; }
.g-table tbody tr { transition: background .15s; }
.g-table tbody tr:hover { background: rgba(183,246,66,.04); }

/* ---------- Status pills ---------- */
.g-status-pill {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 11px; border-radius: 999px;
  font-size: .72rem; font-weight: 700; letter-spacing: .02em;
  border: 1px solid transparent;
  white-space: nowrap;
}
.g-status--new            { background: rgba(91,124,255,.12); color: #93AAFF; border-color: rgba(91,124,255,.3); }
.g-status--pending_review { background: rgba(255,200,69,.12); color: #FFC845; border-color: rgba(255,200,69,.3); }
.g-status--pending_data   { background: rgba(255,107,53,.12); color: #FFA070; border-color: rgba(255,107,53,.3); }
.g-status--processing     { background: rgba(91,233,255,.12); color: #5BE9FF; border-color: rgba(91,233,255,.3); }
.g-status--completed      { background: rgba(183,246,66,.14); color: var(--g-lime); border-color: rgba(183,246,66,.35); }
.g-status--cancelled      { background: rgba(255,61,138,.12); color: #FF87B5; border-color: rgba(255,61,138,.3); }
.g-status--rejected       { background: rgba(255,61,61,.12); color: #FF6B6B; border-color: rgba(255,61,61,.3); }

/* ---------- Order detail cards (the <details> blocks) ---------- */
.g-faq-item {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--g-border);
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color .25s, box-shadow .25s;
}
.g-faq-item[open] { border-color: rgba(183,246,66,.3); }
.g-faq-item.is-flash {
  border-color: var(--g-lime);
  box-shadow: 0 0 0 3px rgba(183,246,66,.18), 0 12px 40px rgba(183,246,66,.15);
  animation: gFlash 1.6s ease 1;
}
@keyframes gFlash {
  0%   { box-shadow: 0 0 0 0   rgba(183,246,66,.5); }
  50%  { box-shadow: 0 0 0 12px rgba(183,246,66,0); }
  100% { box-shadow: 0 0 0 3px rgba(183,246,66,.18); }
}
.g-faq-item summary {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 18px;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.g-faq-item summary::-webkit-details-marker { display: none; }
.g-faq-item summary .num {
  background: rgba(183,246,66,.12); color: var(--g-lime);
  padding: 4px 10px; border-radius: 8px;
  font-family: var(--g-font-mono, monospace);
  font-weight: 800; font-size: .82rem;
  flex-shrink: 0;
}
.g-faq-item summary > .fas.fa-chevron-down {
  color: var(--g-text-muted); transition: transform .2s; font-size: .75rem;
}
.g-faq-item[open] summary > .fas.fa-chevron-down { transform: rotate(180deg); }
.g-faq-item p { padding: 0 22px 18px 60px; color: var(--g-text-soft); margin: 0; }

/* ---------- Check list (icon + text) ---------- */
.g-checks {
  list-style: none; padding: 0; margin: 8px 0;
  display: flex; flex-direction: column; gap: 6px;
}
.g-checks li {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.02);
  border: 1px solid var(--g-border);
  padding: 10px 14px; border-radius: 8px;
  color: var(--g-text-soft); font-size: .88rem;
}
.g-checks li i { color: var(--g-lime); width: 14px; }
.g-checks li code { color: #fff; font-family: var(--g-font-mono, monospace); }

/* ---------- Alerts ---------- */
.g-alert {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 16px; border-radius: 10px;
  margin: 12px 0; font-size: .9rem;
  border: 1px solid;
}
.g-alert i { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.g-alert--info    { background: rgba(91,233,255,.08); border-color: rgba(91,233,255,.3); color: #BDF1FF; }
.g-alert--info i  { color: var(--g-cyan); }
.g-alert--success { background: rgba(183,246,66,.08); border-color: rgba(183,246,66,.3); color: #E0FCB1; }
.g-alert--success i { color: var(--g-lime); }
.g-alert--warning { background: rgba(255,200,69,.08); border-color: rgba(255,200,69,.3); color: #FFE3A5; }
.g-alert--warning i { color: var(--g-yellow); }
.g-alert--error   { background: rgba(255,61,138,.08); border-color: rgba(255,61,138,.3); color: #FFB6D2; }
.g-alert--error i { color: var(--g-pink); }

/* ---------- Forms ---------- */
.g-form { display: flex; flex-direction: column; gap: 14px; }
.g-form label {
  display: flex; flex-direction: column; gap: 6px;
  color: var(--g-text-soft); font-size: .85rem;
  font-weight: 600;
}
.g-form input, .g-form select, .g-form textarea {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--g-border);
  color: #fff; padding: 11px 14px;
  border-radius: 10px; font-family: inherit;
  font-size: .95rem; transition: border-color .15s, box-shadow .15s;
}
.g-form input:focus, .g-form select:focus, .g-form textarea:focus {
  outline: none; border-color: var(--g-lime);
  box-shadow: 0 0 0 3px rgba(183,246,66,.15);
}
.g-form .req { color: var(--g-pink); margin-inline-start: 4px; }

/* ---------- Buy box (product page) ---------- */
.g-buy-box {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--g-border);
  border-radius: 14px;
  padding: 22px;
  margin: 22px 0;
}
.g-buy-box h3 {
  color: #fff; font-size: 1.05rem;
  margin: 0 0 14px;
  display: flex; align-items: center; gap: 8px;
}
.g-buy-box .row { display: flex; gap: 8px; }
.g-buy-box .row input {
  flex: 1; padding: 10px 14px; border-radius: 10px;
  background: rgba(255,255,255,.04); border: 1px solid var(--g-border);
  color: #fff; font-family: inherit;
}
.g-buy-fields { display: grid; gap: 10px; margin-bottom: 12px; }
.g-buy-fields label {
  display: flex; flex-direction: column; gap: 5px;
  color: var(--g-text-soft); font-size: .85rem; font-weight: 600;
}
.g-buy-fields input,
.g-buy-fields select,
.g-buy-fields textarea {
  padding: 10px 12px; border-radius: 9px;
  background: rgba(255,255,255,.04); border: 1px solid var(--g-border);
  color: #fff; font-family: inherit;
}

/* Loading state for action buttons */
.btn.is-loading, button.is-loading {
  position: relative; opacity: .8; cursor: progress;
  pointer-events: none;
}

/* ---------- Bell drawer ---------- */
.g-bell-drawer {
  position: absolute; top: calc(100% + 6px); inset-inline-end: 0;
  background: var(--g-bg-2); border: 1px solid var(--g-border);
  border-radius: 12px; width: 340px; max-height: 460px;
  overflow-y: auto; padding: 10px;
  box-shadow: 0 18px 50px rgba(0,0,0,.5);
  display: none; z-index: 200;
}
.g-bell-drawer.is-open { display: block; }
.g-bell-drawer h4 {
  color: #fff; margin: 6px 8px 10px; font-size: .92rem;
  padding-bottom: 8px; border-bottom: 1px solid var(--g-border);
}
.g-bell-item {
  display: flex; flex-direction: column; gap: 4px;
  padding: 12px 14px; border-radius: 10px;
  background: rgba(255,255,255,.03); border: 1px solid var(--g-border);
  margin-bottom: 6px; text-decoration: none; color: var(--g-text-soft);
  font-size: .84rem; transition: background .15s, border-color .15s;
}
.g-bell-item:hover { background: rgba(183,246,66,.05); border-color: rgba(183,246,66,.25); color: #fff; }
.g-bell-item strong { color: #fff; font-size: .9rem; }
.g-bell-item small  { color: var(--g-text-muted); font-size: .72rem; }
.g-bell-item.is-read { opacity: .6; }
.g-bell-count {
  position: absolute; top: -4px; inset-inline-end: -4px;
  background: var(--g-pink); color: #fff;
  font-size: 10px; font-weight: 800;
  min-width: 18px; height: 18px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0 5px; border: 2px solid var(--g-bg);
}
.g-bell-count.hide { display: none; }

/* ---------- Rating input ---------- */
.gamelo-rating-input {
  display: inline-flex; gap: 4px; font-size: 1.5rem; color: rgba(255,255,255,.18);
}
.gamelo-rating-input i { cursor: pointer; transition: color .15s, transform .15s; }
.gamelo-rating-input i.is-on { color: #fbbf24; }
.gamelo-rating-input i:hover { transform: scale(1.15); }

/* ---------- Toasts ---------- */
.g-toasts {
  position: fixed; bottom: 24px; inset-inline-start: 24px;
  display: flex; flex-direction: column; gap: 10px;
  z-index: 9999; pointer-events: none;
}
.g-toast {
  pointer-events: auto;
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--g-bg-2); color: #fff;
  padding: 12px 18px; border-radius: 10px;
  border: 1px solid var(--g-border);
  box-shadow: 0 18px 40px rgba(0,0,0,.5);
  font-size: .9rem; font-weight: 600;
  min-width: 260px; max-width: 380px;
  transform: translateX(-20px); opacity: 0;
  transition: transform .3s var(--g-ease, ease), opacity .3s ease;
}
[dir="rtl"] .g-toast,
body.rtl .g-toast { transform: translateX(20px); }
.g-toast.is-in   { transform: translateX(0); opacity: 1; }
.g-toast.is-out  { transform: translateY(8px); opacity: 0; }
.g-toast--success { border-color: rgba(183,246,66,.4); }
.g-toast--success i { color: var(--g-lime); font-size: 1.2rem; }
.g-toast--error   { border-color: rgba(255,61,138,.4); }
.g-toast--error i { color: var(--g-pink); font-size: 1.2rem; }
.g-toast--warning { border-color: rgba(255,200,69,.4); }
.g-toast--warning i { color: var(--g-yellow); font-size: 1.2rem; }
.g-toast--info    { border-color: rgba(91,233,255,.4); }
.g-toast--info i  { color: var(--g-cyan); font-size: 1.2rem; }

/* ---------- Success modal (post-purchase) ---------- */
.g-modal {
  position: fixed; inset: 0; z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
  padding: 20px;
}
.g-modal.is-open { opacity: 1; visibility: visible; }
.g-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(5,6,12,.75);
  backdrop-filter: blur(8px);
}
.g-modal__panel {
  position: relative; z-index: 1;
  width: 100%; max-width: 540px;
  background: var(--g-bg-2);
  border: 1px solid rgba(183,246,66,.3);
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0,0,0,.6), 0 0 0 1px rgba(183,246,66,.15);
  overflow: hidden;
  transform: translateY(20px) scale(.96);
  transition: transform .3s var(--g-ease, ease);
  max-height: calc(100vh - 40px);
  display: flex; flex-direction: column;
}
.g-modal.is-open .g-modal__panel { transform: translateY(0) scale(1); }
.g-modal__head {
  text-align: center; padding: 28px 24px 18px;
  background: linear-gradient(180deg, rgba(183,246,66,.1), transparent);
  border-bottom: 1px solid var(--g-border);
}
.g-modal__icon {
  width: 64px; height: 64px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(183,246,66,.15);
  color: var(--g-lime);
  font-size: 2rem;
  margin-bottom: 12px;
  animation: gPulse 1.6s ease infinite;
}
@keyframes gPulse {
  0%, 100% { box-shadow: 0 0 0 0   rgba(183,246,66,.4); }
  50%      { box-shadow: 0 0 0 12px rgba(183,246,66,0); }
}
.g-modal__head h3 {
  color: #fff; margin: 0; font-size: 1.4rem; font-weight: 800;
}
.g-modal__head p {
  margin: 6px 0 0; color: var(--g-text-soft); font-size: .88rem;
}
.g-modal__body {
  padding: 22px 24px;
  overflow-y: auto;
  display: flex; flex-direction: column; gap: 10px;
}
.g-modal__lead {
  margin: 0 0 8px; color: var(--g-text-soft); font-size: .92rem;
}
.g-modal__code {
  display: flex; align-items: center; gap: 10px;
  flex-wrap: wrap;
  background: rgba(183,246,66,.08);
  border: 1px dashed rgba(183,246,66,.4);
  padding: 14px 16px; border-radius: 12px;
}
.g-modal__code code {
  flex: 1; min-width: 0;
  color: #fff;
  font-family: var(--g-font-mono, monospace);
  font-size: 1.05rem; font-weight: 700;
  letter-spacing: .02em;
  word-break: break-all;
}
.g-modal__serial {
  width: 100%; color: var(--g-text-muted); font-size: .72rem;
}
.g-modal__copy {
  background: var(--g-lime); color: var(--g-bg);
  border: none; padding: 9px 16px; border-radius: 8px;
  font-weight: 700; cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px;
  font-family: inherit; font-size: .82rem;
  transition: transform .15s, box-shadow .15s;
}
.g-modal__copy:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(183,246,66,.35); }
.g-modal__foot {
  padding: 18px 24px;
  display: flex; gap: 10px; justify-content: flex-end;
  border-top: 1px solid var(--g-border);
  background: rgba(255,255,255,.02);
  flex-wrap: wrap;
}
.g-modal__foot .btn { flex: 1; justify-content: center; min-width: 140px; }

/* ---------- WhatsApp floating button (used in screenshots) ---------- */
.g-whatsapp-fab {
  position: fixed; bottom: 22px; inset-inline-start: 22px;
  width: 58px; height: 58px;
  background: #25D366; color: #fff;
  border: none; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.6rem; cursor: pointer;
  box-shadow: 0 14px 30px rgba(37,211,102,.45);
  z-index: 9500; text-decoration: none;
  animation: gWhatsappPulse 2.4s ease infinite;
}
.g-whatsapp-fab.g-fab-start { inset-inline-start: auto; inset-inline-end: 22px; }
@keyframes gWhatsappPulse {
  0%, 100% { box-shadow: 0 14px 30px rgba(37,211,102,.45), 0 0 0 0  rgba(37,211,102,.4); }
  50%      { box-shadow: 0 14px 30px rgba(37,211,102,.45), 0 0 0 16px rgba(37,211,102,0); }
}

/* ---------- Account mobile fine-tuning (extends earlier @media block) ---------- */
@media (max-width: 768px) {
  .g-account-wrap { grid-template-columns: 1fr !important; }
  .g-account-side { position: relative !important; top: 0 !important; padding: 16px !important; }
  .g-account-nav a { padding: 10px 14px; font-size: .85rem; }
  .g-account-nav a.is-active { box-shadow: inset 0 -3px 0 var(--g-lime); }
  .g-account-main { padding: 18px; }

  .g-cards-4 { grid-template-columns: repeat(2, 1fr); }
  .g-grid-2 { grid-template-columns: 1fr; }

  .g-modal__panel { max-width: 100%; }
  .g-modal__head { padding: 22px 18px 14px; }
  .g-modal__body { padding: 16px 18px; }
  .g-modal__foot { padding: 14px 18px; }
  .g-modal__foot .btn { width: 100%; min-width: 0; }
}

/* ---------- Reduce visual clutter on body grid backdrop ---------- */
body::before { opacity: .55; }

/* ---------- Smoothing tweaks for product cards ---------- */
.product-card { transition: transform .25s, border-color .25s, box-shadow .25s; }
.product-card:hover { transform: translateY(-4px); }

/* ============================================================
   v2.3 — Simplified footer (3 columns, less clutter)
   Overrides the previous 5-column grid.
   ============================================================ */
.footer-grid {
  grid-template-columns: 1.5fr 1fr 1fr !important;
  gap: 2rem !important;
  max-width: 1100px;
  margin-inline: auto;
}
.footer-main { padding: 48px 0 32px; }
.footer-col h4.widget-title {
  font-size: .88rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-weight: 700;
}
.footer-col ul.menu li { padding: .3rem 0; }
.footer-col ul.menu a { font-size: .9rem; transition: color .15s, padding .15s; }
.footer-col ul.menu a:hover {
  color: var(--g-lime);
  padding-inline-start: 4px;
}
.footer-about p {
  font-size: .9rem; line-height: 1.7;
  color: var(--g-text-soft);
  margin: 12px 0 16px;
  max-width: 360px;
}
.footer-logo {
  font-family: var(--g-font-display, 'Outfit', sans-serif);
  font-weight: 900;
  font-size: 1.4rem;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.footer-logo .logo-mark {
  background: var(--g-lime);
  color: var(--g-bg);
  width: 34px; height: 34px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.social-links { gap: .5rem; }
.social-links a {
  width: 36px; height: 36px;
  border-radius: 9px;
  font-size: .95rem;
}
.footer-contact { margin-top: 18px; }
.footer-wa-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37,211,102,.12);
  color: #25D366;
  border: 1px solid rgba(37,211,102,.3);
  padding: 8px 14px;
  border-radius: 999px;
  font-family: var(--g-font-mono, monospace);
  font-size: .85rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .15s, transform .15s;
}
.footer-wa-link:hover {
  background: rgba(37,211,102,.2);
  transform: translateY(-1px);
}
.footer-wa-link i { font-size: 1.05rem; }
.footer-bottom { padding: 16px 0; }
.footer-bottom__inner { font-size: .82rem; }
.footer-bottom p { margin: 0; }
.footer-secure {
  color: var(--g-text-muted);
  font-size: .8rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-secure i { color: var(--g-lime); }

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
    text-align: start;
  }
  .footer-about { grid-column: auto; text-align: start; }
  .footer-about p { max-width: none; }
  .social-links { justify-content: flex-start; }
  .footer-bottom__inner {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}

/* ============================================================
   DROPDOWN / STACKING FIX
   The header and its menus (categories mega-menu, notifications
   bell, currency switcher, search suggestions) must always render
   above every other element on the page (product images, cards,
   banners, etc.), on both desktop and mobile. Several of those
   elements previously had z-index values that were too low and
   could lose the stacking order to other positioned elements
   further down the page. This block raises and locks them so the
   menus are always fully visible and clickable, while still
   staying below true full-screen overlays (search overlay, toast
   notifications, the post-purchase success modal).
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 9000;
  /* An earlier rule in this file gives .site-header a backdrop-filter.
     backdrop-filter (like transform/filter) creates a new "containing
     block" for any position:fixed descendant — which silently traps
     the mobile off-canvas menu (.main-navigation.is-open, which is
     position:fixed) inside the header's small box instead of letting
     it cover the full screen above the page. That is what made the
     mobile menu render as a tiny sliver hidden behind the rest of the
     page. Cancelling it here fixes both the mobile menu and the
     desktop dropdowns reliably. */
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  filter: none !important;
  transform: none !important;
  will-change: auto !important;
}
.header-actions,
.g-bell-wrap,
.g-currency-dd {
  position: relative;
}
#primary-menu .g-mega-menu,
.g-bell-drawer,
.g-currency-dd-menu,
.g-live-results {
  z-index: 9100 !important;
}
@media (max-width: 768px) {
  /* Mobile off-canvas menu must sit above the sticky header itself */
  .main-navigation.is-open { z-index: 9200; }
  .g-bell-drawer { z-index: 9200 !important; }
}

/* ============================================================
 * Customizer-driven toggles (v2.4 — added for full admin control)
 * ============================================================ */
body.g-static-header .site-header { position: relative !important; }
body.g-no-glow .gift-card,
body.g-no-glow .category-card:hover,
body.g-no-glow .btn-primary { box-shadow: var(--g-shadow-card) !important; }

.g-hero-bg-image { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .35; z-index: 0; }
.hero { position: relative; }
.hero > .container { position: relative; z-index: 1; }

.g-newsletter-section { padding: 4rem 0; }
.g-newsletter-box { background: var(--g-surface); border: 1px solid var(--g-border); border-radius: var(--g-r-lg); padding: 3rem 2rem; text-align: center; max-width: 640px; margin: 0 auto; }
.g-newsletter-box h2 { margin-bottom: .5rem; }
.g-newsletter-box p { color: var(--g-text-soft); margin-bottom: 1.5rem; }
