/*
 * Mobile Styles - One of One Collectables
 * All mobile responsive styles consolidated
 */

/* === MOBILE HEADER === */
@media (max-width: 768px) {
	.site-header-container {
		padding: 15px 20px;
		min-height: 80px;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	.site-branding {
		display: flex;
		align-items: center;
	}

	.site-branding img {
		height: 50px;
		width: 50px;
		border-radius: 50%;
		object-fit: cover;
	}

	.header-right {
		display: flex;
		align-items: center;
		gap: 8px;
	}

	.header-account-link,
	.header-cart-link {
		font-size: 18px;
		color: #2c3e50;
		text-decoration: none;
	}

	.header-shop-btn,
	.todays-drop-btn {
		padding: 8px 12px;
		font-size: 0.8rem;
		line-height: 1;
		height: 36px;
		display: flex;
		align-items: center;
		justify-content: center;
		box-sizing: border-box;
	}
}

/* === MOBILE NAVIGATION === */
@media (max-width: 768px) {
	.shop-navigation .category-nav {
		overflow-x: auto;
		white-space: nowrap;
		gap: 20px;
		padding-bottom: 10px;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: thin;
	}

	.shop-navigation .category-nav::-webkit-scrollbar {
		height: 4px;
	}

	.shop-navigation .category-nav::-webkit-scrollbar-track {
		background: #f1f1f1;
	}

	.shop-navigation .category-nav::-webkit-scrollbar-thumb {
		background: #0d1b2a;
		border-radius: 2px;
	}

	.shop-navigation .category-nav > * {
		flex-shrink: 0;
	}

	.nav-dropdown-btn,
	.nav-link {
		padding: 12px 16px !important;
		font-size: 0.85rem !important;
		white-space: nowrap !important;
	}
}

/* === MOBILE DROPDOWNS === */
@media (max-width: 768px) {
	.nav-dropdown-menu.mobile-active {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		background: white;
		z-index: 1002;
		padding: 20px;
		overflow-y: auto;
		box-shadow: none;
		border: none;
		border-radius: 0;
		margin: 0;
		min-width: auto;
		min-height: auto;
	}

	.nav-dropdown-menu.mobile-active .year-search-container {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.nav-dropdown-menu.mobile-active a {
		padding: 16px 0;
		font-size: 1.1rem;
		border-bottom: 1px solid #f1f1f1;
	}

	.nav-submenu-menu.mobile-active {
		position: static;
		width: 100%;
		border: 1px solid #e9ecef;
		border-radius: 8px;
		margin-top: 10px;
		box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	}

	/* Mobile overlay */
	.dropdown-overlay {
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, 0.5);
		z-index: 1001;
	}

	.dropdown-overlay.active {
		display: block;
	}

	body.dropdown-open {
		overflow: hidden;
	}
}

/* === MOBILE CONTENT SPACING === */
@media (max-width: 768px) {
	.hero-section.premium h1 {
		font-size: 2rem;
	}

	.hero-actions {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.footer-widgets {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	/* Contact page mobile */
	.contact-content {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.contact-form-section {
		padding: 30px 20px;
	}

	.info-card {
		padding: 25px 20px;
	}

	.contact-page .page-header h1 {
		font-size: 2rem;
	}

	/* Policy pages mobile */
	.policy-page {
		padding: 40px 0;
	}

	.policy-container {
		padding: 0 20px;
	}

	.policy-header {
		padding: 40px;
	}
}