:root {
	--bg-dark: #0a0a0a;
	--container-bg: rgba(12, 12, 12, 0.98);
	--card-bg: #161616;
	--input-bg-dark: #161616;
	--input-bg-light: #e8f0fe;
	--text-white: #fff;
	--text-grey: #a0a0a0;
	--text-muted: #666;
	--accent-red: #da251d;
	--accent-blue: #00bcd4;
	--accent-green: #2e7d32;
	--accent-tan: #a89485;
	--border-color: #262626;
	--font-main: 'Montserrat', sans-serif;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

.store-wrapper {
	width: 100%;
	max-width: 1000px;
	background-color: transparent;
	/*border-left: 1px solid var(--border-color);*/
	/*border-right: 1px solid var(--border-color);*/
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

header {
	padding: 20px 24px;
	text-align: center;
	position: relative;
}

.header-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	margin-bottom: 20px;
}

.back-btn {
	background: none;
	border: none;
	color: var(--text-white);
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 6px;
	font-family: var(--font-main);
	font-size: 0.75rem;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 0.5px;
	transition: opacity 0.2s ease;
	text-decoration: none;
}

.back-btn:hover {
	opacity: 0.7;
}

.social-icons {
	display: flex;
	gap: 12px;
}

.social-icons a {
	color: var(--text-white);
	text-decoration: none;
	opacity: 0.8;
	transition: opacity 0.2s ease;
	display: flex;
	align-items: center;
}

.social-icons a:hover {
	opacity: 1;
}

.social-icons svg {
	width: 16px;
	height: 16px;
	fill: currentColor;
}

.brand-logo {
	display: inline-block;
	margin-bottom: 15px;
}

.logo-star {
	width: 50px;
	height: 50px;
}

.brand-title {
	font-size: 1.5rem;
	font-weight: 800;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 6px;
}

.brand-subtitle {
	font-size: 0.75rem;
	color: var(--text-grey);
	letter-spacing: 1px;
	font-style: italic;
}

/* Navigation Bar */
.nav-bar {
	background-color: #1c1c1c;
	border-top: 1px solid var(--border-color);
	border-left: 1px solid var(--border-color);
	border-right: 1px solid var(--border-color);
	border-bottom: 1px solid var(--border-color);
	padding: 12px 24px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.75rem;
	text-transform: uppercase;
	font-weight: 500;
	letter-spacing: 0.5px;
}

.nav-item {
	display: flex;
	align-items: center;
	gap: 6px;
	color: var(--text-white);
	text-decoration: none;
	cursor: pointer;
	transition: color 0.2s ease;
}

.nav-item:hover {
	color: var(--text-grey);
}

.nav-item svg {
	width: 14px;
	height: 14px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
}

.account-dropdown-wrapper {
	position: relative;
	display: inline-flex;
	align-items: center;
	cursor: pointer;
}

.account-dropdown {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background-color: #111;
	border: 1px solid var(--border-color);
	min-width: 200px;
	z-index: 100;
	flex-direction: column;
}

.account-dropdown-wrapper:hover .account-dropdown {
	display: flex;
}

.account-dropdown-item {
	padding: 12px 15px;
	color: var(--text-white);
	text-decoration: none;
	border-bottom: 1px solid var(--border-color);
	font-size: 0.7rem;
	text-transform: uppercase;
	font-weight: 600;
	text-align: left;
	transition: background-color 0.2s;
}

.account-dropdown-item:hover {
	background-color: #161616;
}

.account-dropdown-item:last-child {
	border-bottom: none;
}

/* Footer */
footer {
	border-top: 1px solid var(--border-color);
	padding: 30px 24px;
	text-align: center;
	background-color: #0a0a0a;
	margin-top: auto;
}

.footer-copyright {
	font-size: 0.7rem;
	color: var(--text-grey);
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.footer-links {
	display: flex;
	justify-content: center;
	gap: 12px;
	font-size: 0.65rem;
	margin-bottom: 12px;
}

.footer-links a {
	color: var(--text-grey);
	text-decoration: none;
	transition: color 0.2s ease;
}

.footer-links a:hover {
	color: var(--text-white);
}

.footer-credit {
	font-size: 0.6rem;
	color: #555555;
}

/* Toast */
.toast {
	position: fixed;
	bottom: 20px;
	right: 20px;
	background-color: #222;
	border-left: 4px solid var(--accent-red);
	color: #fff;
	padding: 12px 20px;
	font-size: 0.75rem;
	font-weight: 500;
	border-radius: 4px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
	transform: translateY(100px);
	opacity: 0;
	transition: transform 0.3s ease, opacity 0.3s ease;
	z-index: 1000;
}

.toast.show {
	transform: translateY(0);
	opacity: 1;
}

@media (max-width: 480px) {
	header {
		padding: 16px;
	}

	.brand-title {
		font-size: 1.25rem;
	}

	.brand-subtitle {
		font-size: 0.7rem;
	}
}

main {
	background-color: var(--container-bg);
	border-left: 1px solid var(--border-color);
	border-right: 1px solid var(--border-color);
	flex-grow: 1;
}