/*
 * Navigation Styles - One of One Collectables
 * Clean dropdown navigation system
 */

/* === SHOP NAVIGATION === */
.shop-navigation {
	background: white;
	border-bottom: 1px solid #e9ecef;
	padding: 15px 0;
	position: relative;
	z-index: 999;
}

.category-nav {
	display: flex;
	align-items: center;
	gap: 40px;
	font-weight: 600;
	font-size: 0.9rem;
	letter-spacing: 0.5px;
	position: relative;
}

/* === NAVIGATION LINKS === */
.nav-link {
	color: #0d1b2a;
	text-decoration: none;
	padding: 16px 24px;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 0.95rem;
	letter-spacing: 0.8px;
	border-bottom: 3px solid transparent;
	transition: all 0.2s ease;
}

.nav-link:hover {
	border-bottom-color: #0d1b2a;
}

.nav-right {
	margin-left: auto;
}

/* === DROPDOWNS === */
.nav-dropdown {
	position: relative;
	display: inline-block;
}

.nav-dropdown-btn {
	background: none;
	border: none;
	color: #0d1b2a;
	cursor: pointer;
	padding: 16px 24px;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 0.95rem;
	letter-spacing: 0.8px;
	border-bottom: 3px solid transparent;
	transition: all 0.2s ease;
	display: flex;
	align-items: center;
	gap: 5px;
}

.nav-dropdown-btn:hover {
	border-bottom-color: #0d1b2a;
	background: rgba(13, 27, 42, 0.05);
}

.nav-arrow {
	transition: transform 0.2s ease;
	font-size: 0.8rem;
}

.nav-dropdown-btn.active .nav-arrow {
	transform: rotate(180deg);
}

/* === DROPDOWN MENUS === */
.nav-dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	background: white;
	border: 2px solid #0d1b2a;
	border-radius: 12px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
	min-width: 320px;
	min-height: 400px;
	padding: 25px;
	margin-top: 5px;
	display: none;
	opacity: 1;
	visibility: visible;
	z-index: 1000001;
}

.nav-dropdown-menu.show {
	display: block;
}

.nav-dropdown-menu a {
	display: block;
	padding: 15px 10px;
	color: #0d1b2a;
	text-decoration: none;
	border-bottom: 1px solid #f1f1f1;
	font-weight: 600;
	font-size: 1rem;
	transition: all 0.2s ease;
}

.nav-dropdown-menu a:hover {
	background: #f8f9fa;
	color: #0d1b2a;
	padding-left: 20px;
}

.nav-dropdown-menu a:last-child {
	border-bottom: none;
}

/* === YEAR SEARCH === */
.year-search-container {
	margin-bottom: 25px;
	padding-bottom: 25px;
	border-bottom: 2px solid #0d1b2a;
}

.year-search-container input {
	width: 100%;
	padding: 12px 16px;
	border: 2px solid #e9ecef;
	border-radius: 8px;
	font-size: 1rem;
	margin-bottom: 8px;
	transition: border-color 0.2s ease;
}

.year-search-container input:focus {
	outline: none;
	border-color: #0d1b2a;
	box-shadow: 0 0 0 2px rgba(13, 27, 42, 0.1);
}

.year-search-container p {
	margin: 0;
	font-size: 0.8rem;
	color: #6c757d;
	font-weight: 500;
}

/* === SUBMENUS === */
.nav-submenu {
	position: relative;
}

.nav-submenu-btn {
	display: flex;
	align-items: center;
	gap: 5px;
	padding: 12px 16px;
	color: #374151;
	cursor: pointer;
	background: #f8f9fa;
	font-weight: 600;
	transition: all 0.2s;
	border: none;
	text-decoration: none;
	font-size: 1rem;
	width: 100%;
	justify-content: space-between;
}

.nav-submenu-btn:hover {
	background: rgba(13, 27, 42, 0.05);
	color: #0d1b2a;
}

.nav-submenu-btn .nav-arrow {
	transition: transform 0.2s ease;
}

.nav-submenu-btn.active .nav-arrow {
	transform: rotate(90deg);
}

.nav-submenu-menu {
	position: absolute;
	top: 0;
	left: 100%;
	background: white;
	border: 1px solid #dee2e6;
	border-radius: 0 8px 8px 0;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	min-width: 160px;
	display: none !important;
	z-index: 1002;
}

.nav-submenu-menu.show {
	display: block !important;
}

.nav-submenu-menu a {
	display: block;
	padding: 12px 16px;
	color: #374151;
	text-decoration: none;
	border-bottom: 1px solid #f1f1f1;
	transition: all 0.2s;
	font-size: 0.9rem;
}

.nav-submenu-menu a:hover {
	background: #f8f9fa;
}

.nav-submenu-menu a:last-child {
	border-bottom: none;
}

/* === VIEW ALL LINK === */
.view-all-link {
	display: block;
	padding: 12px 16px;
	color: #0d1b2a;
	text-decoration: none;
	border-top: 1px solid #e9ecef;
	margin-top: 8px;
	font-weight: 600;
	transition: all 0.2s ease;
}

.view-all-link:hover {
	background: rgba(13, 27, 42, 0.05);
}