/* --- 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;
	}
	/* Ensure hero title and subtitle are visible and centered on mobile */
	.hero-title, .hero-subtitle {
		display: block !important;
		margin-right: 1rem !important;
		text-align: center !important;
		opacity: 1 !important;
		animation: none !important;
		transform: none !important;
	}
	/* Hide desktop nav/actions, show mobile menu button and dropdown */
	.main-header-nav,
	.main-header-actions {
		display: none !important;
	}
		.mobile-header-menu-btn {
			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-left: auto;
			margin-right: 0.7rem;
			margin-top: 0.3rem;
			cursor: pointer;
			z-index: 2001;
			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;
		}
	.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;
	}

	/* Example: Center hero-search-box on mobile */
	.hero-section .hero-search-box {
		flex-direction: column !important;
		padding: 0.5rem 0.3rem !important;
		max-width: 100% !important;
		width: 70% !important;
		margin-bottom: 1.2rem !important;
		margin-left: auto !important;
		margin-right: auto !important;
		align-self: center !important;
		text-align: center !important;
		display: flex !important;
		position: relative !important;
	}
	.hero-section {
		background-size: cover !important;
		background-position: center center !important;
	}

    .hero-search-description {
        font: 1.3rem sans-serif;
        margin-right: 1rem !important;

    }

    .suggestions-list {
        margin-right: 12rem !important;
    }

    .hero-service-tag {
        margin-right: 1rem !important;
    }

    .hero-signup-btn {
        margin-top: 2.5rem !important;
    }
    
    .pricing-cards-container {
        flex-direction: column !important;
        align-items: center !important;
        width: 500px !important;
    }

    .cta-actions {
        width: 55% !important;
        margin-left: 3rem;
    }

	.popular-categories-container h2 {
		font-size: 1.15rem !important;
		text-align: center !important;
		margin-bottom: 1.1rem !important;
		margin-top: 0.7rem !important;
		letter-spacing: 0.01em;
		line-height: 1.2;
	}

		.popular-categories-container p {
		font-size: 0.8rem !important;
		text-align: center !important;
		margin-bottom: 1.1rem !important;
		margin-top: 0.7rem !important;
		letter-spacing: 0.01em;
		line-height: 1.2;	
		padding-left: 0.7rem !important;
		padding-right: 0.7rem !important;
	}


	/* Add more mobile overrides as needed below */

}

