/* =========================================================================
 *  OV Bot — Store / Checkout redesign
 *  Dark glassmorphism, teal (#03dac6) + purple (#bb86fc) + orange (#faa356),
 *  gold for pinned packs. Uses the site's Exo typeface (heavier weights loaded
 *  for legibility). Scoped with `sp-`/`store-` prefixes so it never collides.
 * ========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Exo:wght@100;300;400;500;600;700&display=swap');

:root {
	--sp-teal: #03dac6;
	--sp-purple: #bb86fc;
	--sp-orange: #faa356;
	--sp-gold: #e8c15a;
	--sp-text: rgba(236, 242, 248, 0.92);
	--sp-muted: rgba(236, 242, 248, 0.55);
	--sp-glass: rgba(255, 255, 255, 0.04);
	--sp-glass-2: rgba(0, 0, 0, 0.2);
	--sp-border: rgba(187, 134, 252, 0.28);
	--sp-border-soft: rgba(255, 255, 255, 0.12);
	--sp-shadow: 0 10px 30px 2px rgba(0, 0, 0, 0.45);
	--sp-head: "Exo", sans-serif;
}

/* Heavier, legible weight for store headings (still Exo — the site font). */
.store-tagline, .sp-card-name, .sp-price, .sp-summary-title, .sp-selected-name,
.sp-total, .store-group-title, .sp-duration-price, .sp-method-top, .sp-user-name,
.sp-auth-btn { font-family: var(--sp-head); }

.store-tagline {
	color: var(--sp-muted);
	font-weight: 400;
	margin: 0 0 1.75em 0.15em;
	font-size: 0.95em;
	max-width: 42em;
}

/* ---- Widen + center the store container (main.css caps .inner at 75em, left-aligned) ---- */
#main2 .inner.not-home {
	width: 100% !important;
	max-width: 1560px;
	margin-left: auto !important;
	margin-right: auto !important;
	padding: 4.5em 76px 3em 76px !important;
}
@media screen and (max-width: 640px) {
	#main2 .inner.not-home { padding-left: 20px !important; padding-right: 20px !important; }
}

/* ---- Two-column layout: fluid catalog + fixed order panel ---- */
.store-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 360px;
	gap: 2.25em;
	align-items: start;
}
@media screen and (max-width: 1100px) {
	.store-layout { grid-template-columns: 1fr; gap: 1.5em; }
}

.store-note {
	display: flex;
	align-items: center;
	gap: 0.6em;
	color: var(--sp-muted);
	font-size: 0.8em;
	margin-bottom: 1.5em;
	padding: 0.7em 1em;
	border-left: 2px solid var(--sp-teal);
	background: var(--sp-glass);
	border-radius: 0 8px 8px 0;
}
.store-note i { color: var(--sp-teal); }

.store-group-title {
	display: flex;
	align-items: center;
	gap: 0.55em;
	font-weight: 600;
	font-size: 1em;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #fff;
	margin: 1.6em 0 1em;
}
.store-group-title:first-of-type { margin-top: 0; }
.store-group-title i { color: var(--sp-purple); font-size: 0.9em; }

/* ---- Product grid + cards ---- */
.sp-grid { display: grid; gap: 1.1em; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
/* Per-group columns so packs tile 3-across, tokens fill evenly, special sits solo. */
.sp-grid-packs   { grid-template-columns: repeat(3, 1fr); }
.sp-grid-tokens  { grid-template-columns: repeat(auto-fit, minmax(185px, 1fr)); }
.sp-grid-special { grid-template-columns: minmax(240px, 360px); }
@media screen and (max-width: 820px) {
	.sp-grid-packs { grid-template-columns: 1fr; }
	.sp-grid-special { grid-template-columns: 1fr; }
}
@media screen and (max-width: 560px) {
	.sp-grid-tokens { grid-template-columns: 1fr; }
}

.sp-card {
	position: relative;
	display: flex;
	flex-direction: column;
	text-align: left;
	padding: 1.35em 1.25em 1.15em;
	border-radius: 16px;
	border: 1px solid var(--sp-border-soft);
	background: var(--sp-glass-2);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	box-shadow: var(--sp-shadow);
	cursor: pointer;
	color: var(--sp-text);
	transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
	overflow: hidden;
}
.sp-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(120% 90% at 50% -10%, rgba(187, 134, 252, 0.10), transparent 60%);
	opacity: 0;
	transition: opacity 0.22s ease;
	pointer-events: none;
}
.sp-card:hover { transform: translateY(-5px); border-color: var(--sp-purple); box-shadow: 0 16px 36px 4px rgba(0,0,0,0.5), 0 0 0 1px rgba(187,134,252,0.25); }
.sp-card:hover::before { opacity: 1; }

/* Pinned / featured packs = GOLD */
.sp-card.featured {
	border-color: rgba(232, 193, 90, 0.45);
	background: linear-gradient(180deg, rgba(232, 193, 90, 0.08), var(--sp-glass-2) 55%);
}
.sp-card.featured::before { background: radial-gradient(120% 90% at 50% -10%, rgba(232, 193, 90, 0.14), transparent 62%); }
.sp-card.featured .sp-card-icon { color: var(--sp-gold); background: rgba(232, 193, 90, 0.12); border-color: rgba(232, 193, 90, 0.28); }
.sp-card.featured:hover { border-color: var(--sp-gold); box-shadow: 0 16px 38px 4px rgba(0,0,0,0.5), 0 0 0 1px rgba(232,193,90,0.35), 0 0 26px rgba(232,193,90,0.18); }

/* Selected = teal ring (works on gold or normal cards) */
.sp-card.selected {
	border-color: var(--sp-teal);
	box-shadow: 0 16px 40px 4px rgba(0,0,0,0.55), 0 0 0 2px var(--sp-teal), 0 0 26px rgba(3,218,198,0.25);
	transform: translateY(-3px);
}
.sp-card.selected::before { opacity: 1; background: radial-gradient(120% 90% at 50% -10%, rgba(3,218,198,0.16), transparent 62%); }
.sp-card.selected .sp-card-select { background: var(--sp-teal); color: #04201d; border-color: var(--sp-teal); }
.sp-card.selected .sp-card-select::before { content: "\f00c"; }

.sp-card-head { display: flex; align-items: center; justify-content: space-between; gap: 0.5em; margin-bottom: 0.9em; }

.sp-badge {
	display: inline-flex;
	align-items: center;
	font-size: 0.6rem;
	line-height: 1;
	font-weight: 700;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	padding: 0.5em 0.72em;
	border-radius: 999px;
	color: #1a1206;
	white-space: nowrap;
	background: linear-gradient(135deg, var(--sp-orange), #ffcf7a);
	box-shadow: 0 3px 10px rgba(250, 163, 86, 0.35);
}
.sp-badge.teal { background: linear-gradient(135deg, var(--sp-teal), #7ef4e6); color: #04201d; box-shadow: 0 3px 10px rgba(3,218,198,0.3); }
.sp-badge.purple { background: linear-gradient(135deg, var(--sp-purple), #d7b6ff); color: #1e0f33; box-shadow: 0 3px 10px rgba(187,134,252,0.3); }

.sp-card-icon {
	width: 2.6em; height: 2.6em; flex-shrink: 0;
	display: flex; align-items: center; justify-content: center;
	border-radius: 12px; font-size: 1em;
	color: var(--sp-teal); background: rgba(3, 218, 198, 0.1); border: 1px solid rgba(3, 218, 198, 0.22);
}

.sp-card-name { font-weight: 600; font-size: 1.08em; line-height: 1.25; min-height: 2.5em; margin-bottom: 0.45em; color: #fff; overflow-wrap: anywhere; }
.sp-card-desc { font-size: 0.8em; line-height: 1.55; color: var(--sp-muted); margin-bottom: 1.1em; flex-grow: 1; }
.sp-card-desc b { color: rgba(236, 242, 248, 0.9); font-weight: 600; }

.sp-card-foot { display: flex; align-items: center; justify-content: space-between; gap: 0.6em; margin-top: auto; }
.sp-price { font-weight: 700; font-size: 1.55em; color: var(--sp-orange); line-height: 1; }
.sp-price-cur { font-size: 0.6em; vertical-align: top; margin-right: 0.05em; opacity: 0.85; }
.sp-price-per { font-size: 0.42em; font-weight: 400; color: var(--sp-muted); margin-left: 0.15em; letter-spacing: 0.02em; }

.sp-card-select {
	display: inline-flex; align-items: center; gap: 0.4em;
	font-size: 0.72em; line-height: 1; letter-spacing: 0.04em; text-transform: uppercase;
	padding: 0.55em 0.9em; border-radius: 999px; border: 1px solid var(--sp-border); color: var(--sp-purple);
	transition: all 0.2s ease; white-space: nowrap;
}
.sp-card-select::before { font-family: "Font Awesome 5 Free"; font-weight: 900; font-size: 0.9em; }
.sp-card:hover .sp-card-select { border-color: var(--sp-purple); color: #fff; }

/* ---- Order summary panel ---- */
.store-summary { position: relative; }
.sp-summary-card {
	padding: 1.6em 1.5em; border-radius: 18px;
	border: 1px solid var(--sp-border);
	background: linear-gradient(180deg, rgba(187, 134, 252, 0.06), var(--sp-glass-2) 45%);
	backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
	box-shadow: var(--sp-shadow);
}
.sp-summary-title { font-weight: 600; font-size: 1.2em; color: #fff; margin-bottom: 1.1em; display: flex; align-items: center; gap: 0.5em; }
.sp-summary-title::before { content: "\f07a"; font-family: "Font Awesome 5 Free"; font-weight: 900; color: var(--sp-teal); font-size: 0.85em; }

.sp-selected { display: flex; align-items: center; gap: 0.85em; padding: 0.85em; border-radius: 12px; background: var(--sp-glass); border: 1px solid var(--sp-border-soft); margin-bottom: 1.25em; }
.sp-selected-icon { width: 2.6em; height: 2.6em; flex-shrink: 0; display: flex; align-items: center; justify-content: center; border-radius: 10px; color: var(--sp-gold); background: rgba(232,193,90,0.12); border: 1px solid rgba(232,193,90,0.24); }
.sp-selected-info { min-width: 0; }
.sp-selected-name { font-weight: 600; font-size: 1em; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sp-selected-unit { font-size: 0.8em; color: var(--sp-muted); }

.sp-label { display: block; font-size: 0.72em; letter-spacing: 0.08em; text-transform: uppercase; color: var(--sp-muted); margin: 0 0 0.6em; }

/* Billing duration toggle (1-Year upsell) */
.sp-duration { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6em; margin: 0.7em 0 0.6em; }
.sp-duration-opt {
	position: relative; cursor: pointer; text-align: center;
	padding: 0.7em 0.5em; border-radius: 12px; border: 1px solid var(--sp-border-soft); background: var(--sp-glass);
	transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}
.sp-duration-opt:hover { border-color: var(--sp-purple); }
.sp-duration-opt.selected { border-color: var(--sp-teal); background: rgba(3,218,198,0.08); box-shadow: 0 0 0 1px var(--sp-teal); }
.sp-duration-top { font-size: 0.82em; color: var(--sp-text); }
.sp-duration-price { font-weight: 700; font-size: 1.05em; color: #fff; margin-top: 0.15em; }
.sp-duration-badge {
	position: absolute; top: -0.6em; left: 50%; transform: translateX(-50%);
	font-size: 0.55rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; white-space: nowrap;
	padding: 0.35em 0.6em; border-radius: 999px; color: #04201d;
	background: linear-gradient(135deg, var(--sp-teal), #7ef4e6); box-shadow: 0 3px 10px rgba(3,218,198,0.35);
}
.sp-savings { display: flex; align-items: center; gap: 0.4em; font-size: 0.78em; color: var(--sp-teal); margin-bottom: 1em; }
.sp-savings i { font-size: 0.9em; }
#durationBlock { margin-bottom: 1.25em; }

/* Quantity stepper */
.sp-qty { display: flex; align-items: stretch; height: 3em; border-radius: 12px; overflow: hidden; border: 1px solid var(--sp-border-soft); background: var(--sp-glass); margin-bottom: 1.25em; }
.sp-qty-btn { width: 3em; flex-shrink: 0; display: flex; align-items: center; justify-content: center; border: none; background: transparent; color: #fff; font-size: 1.35em; line-height: 1; cursor: pointer; user-select: none; transition: background 0.18s ease, color 0.18s ease; }
.sp-qty-btn:hover { background: rgba(187, 134, 252, 0.18); color: var(--sp-purple); }
.sp-qty-btn.disabled { opacity: 0.3; cursor: not-allowed; pointer-events: none; }
.sp-qty input {
	flex: 1; min-width: 0; height: 100% !important; text-align: center;
	border: none !important; border-left: 1px solid var(--sp-border-soft) !important; border-right: 1px solid var(--sp-border-soft) !important;
	border-radius: 0 !important; background: transparent !important; box-shadow: none !important;
	color: #fff !important; font-size: 1.05em; line-height: normal; pointer-events: none; -moz-appearance: textfield;
}
.sp-qty input::-webkit-outer-spin-button, .sp-qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* Gift */
.sp-gift { margin-bottom: 0.5em; }
.sp-toggle { display: flex; align-items: center; gap: 0.7em; cursor: pointer; user-select: none; }
.sp-toggle input { display: none; }
.sp-toggle-track { position: relative; width: 2.7em; height: 1.5em; flex-shrink: 0; border-radius: 999px; background: rgba(255,255,255,0.12); border: 1px solid var(--sp-border-soft); transition: background 0.2s ease; }
.sp-toggle-track::after { content: ""; position: absolute; top: 0.18em; left: 0.2em; width: 1.05em; height: 1.05em; border-radius: 50%; background: #fff; transition: transform 0.2s ease; }
.sp-toggle input:checked + .sp-toggle-track { background: var(--sp-teal); border-color: var(--sp-teal); }
.sp-toggle input:checked + .sp-toggle-track::after { transform: translateX(1.2em); }
.sp-toggle-label { font-size: 0.85em; color: var(--sp-text); }
.sp-toggle-label i { color: var(--sp-purple); margin-right: 0.25em; }

.sp-gift-area { max-height: 0; overflow: hidden; opacity: 0; transition: max-height 0.3s ease, opacity 0.3s ease, margin 0.3s ease; }
.sp-gift-area.show { max-height: 14em; opacity: 1; margin-top: 0.85em; }

.sp-search { display: flex; align-items: stretch; height: 2.9em; border-radius: 10px; overflow: hidden; border: 1px solid var(--sp-border-soft); background: var(--sp-glass); }
.sp-search input { flex: 1; min-width: 0; height: 100% !important; border: none !important; border-radius: 0 !important; background: transparent !important; box-shadow: none !important; color: #fff !important; font-size: 0.85em; padding: 0 0.9em !important; margin: 0 !important; }
.sp-search input:focus { box-shadow: inset 0 0 0 1px var(--sp-teal) !important; }
.sp-search-btn { width: 3em; flex-shrink: 0; display: flex; align-items: center; justify-content: center; border-left: 1px solid var(--sp-border-soft); background: transparent; color: var(--sp-teal); cursor: pointer; transition: background 0.18s ease; }
.sp-search-btn:hover { background: rgba(3, 218, 198, 0.15); }
.sp-help { display: inline-block; margin-top: 0.6em; font-size: 0.72em; color: var(--sp-purple); cursor: pointer; border-bottom: 1px dotted var(--sp-purple); }

.sp-gift-chip { display: none; align-items: center; gap: 0.6em; margin-top: 0.85em; padding: 0.55em 0.5em 0.55em 0.85em; border-radius: 10px; background: rgba(3,218,198,0.1); border: 1px solid rgba(3,218,198,0.3); font-size: 0.8em; }
.sp-gift-chip.show { display: flex; }
.sp-gift-chip > i { color: var(--sp-teal); }
.sp-gift-chip .name { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: #fff; }
.sp-gift-chip .remove { cursor: pointer; color: var(--sp-muted); padding: 0 0.4em; }
.sp-gift-chip .remove:hover { color: #ff6b6b; }

.sp-divider { height: 1px; background: var(--sp-border-soft); margin: 1.35em 0; }
.sp-total-row { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 1.5em; }
.sp-total-row > span:first-child { font-size: 0.9em; color: var(--sp-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.sp-total { font-weight: 700; font-size: 2.15em; color: var(--sp-orange); line-height: 1; }
.sp-total-cur { font-size: 0.5em; vertical-align: top; margin-right: 0.1em; opacity: 0.85; }

/* Payment methods */
.sp-methods { display: flex; flex-direction: column; gap: 0.6em; margin-bottom: 1.35em; }
.sp-method { text-align: left; padding: 0.85em 1em; border-radius: 12px; border: 1px solid var(--sp-border-soft); background: var(--sp-glass); color: var(--sp-text); cursor: pointer; transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease; }
.sp-method:hover { border-color: var(--sp-purple); }
.sp-method.selected { border-color: var(--sp-teal); background: rgba(3,218,198,0.08); box-shadow: 0 0 0 1px var(--sp-teal), 0 0 18px rgba(3,218,198,0.15); }
.sp-method-top { display: flex; align-items: center; gap: 0.55em; font-weight: 500; font-size: 0.95em; color: #fff; }
.sp-method-top > i { font-size: 1.15em; color: var(--sp-teal); width: 1.2em; text-align: center; }
.sp-method-sub { font-size: 0.74em; color: var(--sp-muted); margin-top: 0.15em; margin-left: 1.75em; }
.sp-method-brands { display: flex; gap: 0.35em; margin-top: 0.4em; margin-left: 1.75em; font-size: 1.2em; color: rgba(255,255,255,0.55); }
.sp-method.selected .sp-method-brands { color: rgba(255,255,255,0.8); }

/* Actions */
.sp-action { margin-bottom: 1.1em; }
.sp-checkout { position: relative; display: flex !important; align-items: center; justify-content: center; gap: 0.5em; width: 100%; cursor: pointer; }
.sp-checkout-label { display: inline-flex; align-items: center; gap: 0.5em; }
.sp-spinner { display: none; position: absolute; width: 1.25em; height: 1.25em; border: 2px solid rgba(255,255,255,0.3); border-top-color: #fff; border-radius: 50%; animation: sp-spin 0.7s linear infinite; }
.sp-checkout.loading { pointer-events: none; opacity: 0.9; }
.sp-checkout.loading .sp-checkout-label { visibility: hidden; }
.sp-checkout.loading .sp-spinner { display: block; }
@keyframes sp-spin { to { transform: rotate(360deg); } }
#paypal-button-container { min-height: 3em; }

.sp-trust { display: flex; align-items: flex-start; gap: 0.5em; font-size: 0.72em; line-height: 1.5; color: var(--sp-muted); text-align: left; }
.sp-trust i { color: var(--sp-teal); margin-top: 0.2em; }
.sp-trust b { color: var(--sp-teal); }
.sp-accepted { display: flex; flex-wrap: wrap; gap: 0.55em; margin-top: 1em; padding-top: 1em; border-top: 1px solid var(--sp-border-soft); font-size: 1.7em; color: rgba(255,255,255,0.4); }

/* =========================================================================
 *  Header auth (identity chip + login/logout)
 * ========================================================================= */
.header-right { display: flex; align-items: center; gap: 0.7em; }
.sp-user { display: flex; align-items: center; gap: 0.55em; padding: 0.3em 0.75em 0.3em 0.35em; border-radius: 999px; background: rgba(0,0,0,0.25); border: 1px solid var(--sp-border-soft); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); max-width: 12em; }
.sp-user-avatar { width: 1.9em; height: 1.9em; border-radius: 50%; object-fit: cover; background: rgba(3,218,198,0.15); border: 1px solid rgba(3,218,198,0.35); }
.sp-user-avatar.hide { display: none; }
.sp-user-fallback { display: inline-flex; align-items: center; justify-content: center; color: var(--sp-teal); font-size: 0.85em; }
.sp-user-name { font-weight: 500; font-size: 0.85em; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.sp-auth-btn {
	display: inline-flex; align-items: center; gap: 0.5em;
	padding: 0.5em 1em; border-radius: 999px; font-size: 0.8em; font-weight: 600; letter-spacing: 0.02em;
	border: 1px solid var(--sp-border-soft) !important; color: var(--sp-text) !important; background: rgba(0,0,0,0.25);
	border-bottom: 1px solid var(--sp-border-soft) !important; text-decoration: none; cursor: pointer;
	transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
	backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.sp-auth-btn:hover { border-color: var(--sp-purple) !important; color: #fff !important; background: rgba(187,134,252,0.15); }
.sp-auth-btn.sp-auth-login { border-color: rgba(88,101,242,0.6) !important; color: #fff !important; background: rgba(88,101,242,0.22); }
.sp-auth-btn.sp-auth-login:hover { background: rgba(88,101,242,0.4); box-shadow: 0 0 18px rgba(88,101,242,0.35); }
.sp-auth-btn i { font-size: 1.05em; }

/* =========================================================================
 *  Responsive
 * ========================================================================= */
@media screen and (max-width: 900px) {
	.sp-user-name { display: none; }
	.sp-auth-label { display: none; }
	.sp-auth-btn { padding: 0.5em 0.7em; }
	.sp-user { padding: 0.25em; max-width: none; }
}

@media screen and (max-width: 560px) {
	.sp-grid { grid-template-columns: 1fr; gap: 0.9em; }
	.sp-card { padding: 1.25em 1.2em 1.1em; border-radius: 14px; }
	.sp-card-name { min-height: 0; }
	.sp-summary-card { padding: 1.35em 1.15em; }
	.store-tagline { font-size: 0.9em; }
	.header-right { gap: 0.45em; }
}

/* Never let the store push a horizontal scrollbar. */
.store-layout, .store-catalog, .sp-grid, .sp-summary-card { max-width: 100%; min-width: 0; }
.sp-card, .sp-method { min-width: 0; }

/* =========================================================================
 *  Corner controls — home / Discord / dashboard / go-to-top / music card
 * ========================================================================= */
/* Flex header so the corner controls stay aligned at every width */
.header {
	display: flex !important;
	align-items: center;
	justify-content: space-between;
	padding: 14px 22px;
	gap: 0.7em;
}
.header-left, .header-right {
	float: none !important;
	margin: 0 !important;
	display: flex;
	align-items: center;
	gap: 0.7em;
}

/* Uniform circular glass buttons (home / Discord / dashboard), all FA icons */
.header .icon,
.header .dropdown {
	position: relative;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: 48px; height: 48px;
	border-radius: 50%;
	background: rgba(10, 12, 18, 0.5);
	border: 1px solid var(--sp-border-soft);
	backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
	color: var(--sp-teal);
	font-size: 1.15em;
	cursor: pointer;
	transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease, color 0.18s ease;
}
.header .icon:hover,
.header .dropdown:hover {
	transform: translateY(-2px);
	color: #fff;
	border-color: var(--sp-teal);
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45), 0 0 16px rgba(3, 218, 198, 0.28);
}
/* clicks land on the anchor, not the glyph/label (keeps navigation working) */
.header .icon > i, .header .dropdown > i { pointer-events: none; }
.header .icon > .label, .header .dropdown > .label { display: none !important; }

/* Go-to-top button */
.top {
	width: 56px !important; height: 56px !important;
	display: flex !important; align-items: center; justify-content: center;
	border-radius: 50% !important;
	background: rgba(3, 218, 198, 0.12) !important;
	border: 1px solid rgba(3, 218, 198, 0.4);
	backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
	transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.top:hover { background: rgba(3, 218, 198, 0.26) !important; box-shadow: 0 8px 26px rgba(3, 218, 198, 0.3); transform: translateY(-3px); }
.top .image.fit { width: 24px !important; height: auto !important; margin: 0 !important; }

/* Music card — cleaner glass trapezoid */
.player { border-bottom-color: rgba(22, 20, 38, 0.82) !important; }
#track-name { color: var(--sp-teal) !important; }

/* =========================================================================
 *  Footer — full-bleed so it always covers the bottom edge-to-edge
 * ========================================================================= */
#footer.wrapper.alt {
	position: relative;
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(-50vw + 50%);
	background: linear-gradient(180deg, rgba(18, 18, 18, 0.4), #0c0c0e);
	border-top: 1px solid var(--sp-border-soft);
	box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.35);
}
#footer .menu li a { transition: color 0.18s ease; }
#footer .menu li a:hover { color: var(--sp-teal); }

/* =========================================================================
 *  Subscriptions — Recommended tag, sub note, crypto one-time note
 * ========================================================================= */
.sp-rec {
	display: inline-block; margin-left: 0.5em;
	font-size: 0.56rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
	padding: 0.3em 0.6em; border-radius: 999px; color: #04201d; vertical-align: middle;
	background: linear-gradient(135deg, var(--sp-teal), #7ef4e6);
	box-shadow: 0 2px 8px rgba(3, 218, 198, 0.3);
}

.sp-sub-note {
	display: flex; align-items: center; gap: 0.5em;
	margin: -0.7em 0 1.35em; padding: 0.6em 0.8em;
	font-size: 0.76em; color: var(--sp-teal);
	background: rgba(3, 218, 198, 0.08); border: 1px solid rgba(3, 218, 198, 0.25); border-radius: 10px;
}
.sp-sub-note i { font-size: 0.95em; }

.sp-crypto-note { display: flex; align-items: center; gap: 0.4em; margin-top: 0.6em; font-size: 0.72em; color: var(--sp-muted); }
.sp-crypto-note i { color: var(--sp-orange); }

/* Utility that beats .sp-checkout's `display:flex !important` for hiding. */
.sp-hide { display: none !important; }

/* =========================================================================
 *  Mobile header — uniform compact circles, tight gaps
 * ========================================================================= */
@media screen and (max-width: 720px) {
	.header { padding: 12px 14px; }
	.header .icon, .header .dropdown { width: 42px; height: 42px; font-size: 1.05em; }
	.header-right { gap: 0.4em; }
	.sp-user { padding: 0.2em; border-radius: 50%; }
	.sp-auth-btn { width: 42px; height: 42px; padding: 0 !important; justify-content: center; border-radius: 50% !important; }
}
