/* Mobile Menu Styles */

.mobile-menu-toggle {
	display: none;
}

.mobile-menu-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	z-index: 10000;
}

.mobile-menu-overlay.active {
	opacity: 1;
	visibility: visible;
}

/* 與 .cart-sidebar 一致：自右側平移滑入（transform） */
.mobile-menu-panel {
	position: fixed;
	top: 0;
	right: 0;
	left: auto;
	width: 85%;
	max-width: 85%;
	height: 100vh;
	min-height: 100dvh;
	background: white;
	box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
	transform: translateX(100%);
	transition: transform 0.3s ease;
	z-index: 10001;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

.mobile-menu-panel.active {
	transform: translateX(0);
}

.mobile-menu-toolbar {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	padding: 16px 20px 8px;
	margin: 0;
	padding-top: max(16px, env(safe-area-inset-top, 0px));
}

.mobile-menu-content {
	padding: 12px 20px 24px;
}

.mobile-menu-close {
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	margin: 0;
	line-height: 0;
	color: #1a1a1a;
}

.mobile-menu-close svg {
	display: block;
}

#mobile-menu {
	list-style: none;
	padding: 0;
	margin: 0;
}

.mobile-nav-list li {
	border-bottom: 1px solid #eee;
}

.mobile-nav-list a {
	display: block;
	padding: 15px 0;
	color: #1A1A1A;
	font-weight: 600;
	font-size: 15px;
	text-decoration: none;
	text-transform: uppercase;
	transition: color 0.3s;
}

.mobile-nav-list a:hover {
	color: #FF6A00;
}

.mobile-nav-list .sub-menu {
	list-style: none;
	padding: 0 0 0 12px;
	margin: 0;
	border-left: 2px solid #eee;
}

.mobile-nav-list .sub-menu a {
	padding: 10px 0;
	font-size: 14px;
	font-weight: 500;
	text-transform: none;
}

/* ACF「目的地」快捷區（主題設置 public_settings） */
.mobile-menu-dest-acf {
	margin-bottom: 20px;
	padding-bottom: 16px;
	border-bottom: 1px solid #eee;
}

.mobile-menu-dest-col {
	margin-bottom: 14px;
}

.mobile-menu-dest-col:last-of-type {
	margin-bottom: 12px;
}

.mobile-menu-dest-col-title {
	margin: 0 0 8px;
	font-size: 13px;
	font-weight: 600;
	color: #555;
}

.mobile-menu-dest-links {
	list-style: none;
	padding: 0;
	margin: 0;
}

.mobile-menu-dest-links li {
	border-bottom: 1px solid #f0f0f0;
}

.mobile-menu-dest-links li:last-child {
	border-bottom: none;
}

.mobile-menu-dest-links a {
	display: block;
	padding: 10px 0;
	color: #1a1a1a;
	font-weight: 600;
	font-size: 14px;
	text-decoration: none;
	transition: color 0.2s;
}

.mobile-menu-dest-links a:hover,
.mobile-menu-dest-links a:focus-visible {
	color: #ff6a00;
}

.mobile-menu-dest-all {
	display: block;
	margin-top: 4px;
	padding: 12px 14px;
	text-align: center;
	font-size: 14px;
	font-weight: 600;
	color: #fff;
	background: #01488c;
	border-radius: 10px;
	text-decoration: none;
	transition: background 0.2s;
}

.mobile-menu-dest-all:hover,
.mobile-menu-dest-all:focus-visible {
	background: #013a73;
	color: #fff;
}

@media (max-width: 768px) {
	.mobile-menu-toggle {
		display: flex;
	}
}

