/* --- Mobile Only Styles for Fyndii index.html --- */
/* Hide mobile menu button and dropdown on desktop by default */
.mobile-header-menu-btn,
.mobile-header-dropdown {
	display: none !important;
}
@media (max-width: 600px) {
	.main-header-container {
		position: relative;
		display: flex;
		align-items: center;
		justify-content: flex-start;
		padding: 0.3rem 0.7rem 0.3rem 0.7rem;
	}

	.main-header-logo {
		flex: 0 0 auto;
		display: flex;
		align-items: center;
		margin-right: auto;
		margin-left: 0;
	}

	.main-header-logo img.logo {
		height: 95px !important;
		width: auto !important;
		max-width: 120px;
		display: block;
	}

	.mobile-header-menu-btn {
		position: absolute;
		top: 16px;
		right: 16px;
		display: flex !important;
		align-items: center;
		justify-content: center;
		background: #00c6a2;
		color: #fff;
		border: none;
		border-radius: 50%;
		width: 48px;
		height: 48px;
		box-shadow: 0 2px 8px 0 rgba(0,198,162,0.13);
		font-size: 2rem;
		margin: 0;
		cursor: pointer;
		z-index: 2100;
		transition: background 0.18s, box-shadow 0.18s, transform 0.18s;
	}
	.mobile-header-menu-btn:hover, .mobile-header-menu-btn:focus {
		background: #00a78a;
		box-shadow: 0 4px 16px 0 rgba(0,198,162,0.18);
		transform: scale(1.07);
	}
	.mobile-header-menu-btn .material-icons {
		font-size: 2rem;
		color: #fff;
		line-height: 1;
	}
	/* Hide desktop nav/actions, show mobile menu button and dropdown */
	.main-header-nav,
	.main-header-actions {
		display: none !important;
	}
	.mobile-header-dropdown {
		display: none;
		position: absolute;
		top: 100%;
		right: 1rem;
		background: #fff;
		box-shadow: 0 4px 18px 0 rgba(0,0,0,0.13);
		border-radius: 10px;
		min-width: 180px;
		padding: 0.7rem 0.5rem;
		z-index: 2002;
		flex-direction: column;
		gap: 0.7rem;
	}
	.mobile-header-dropdown.show {
		display: flex !important;
	}
	.mobile-header-dropdown a {
		color: #00c6a2;
		text-decoration: none;
		font-size: 1.08rem;
		padding: 0.7rem 0.5rem;
		border-radius: 6px;
		transition: background 0.18s, color 0.18s;
	}
	.mobile-header-dropdown a:hover {
		background: #e6fcf8;
		color: #008c7a;
	}
	/* Add more mobile overrides as needed below */
}

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