.layout-side-section {
	display: none;
}

.web-footer {
	display: none;
}

body>nav {
	visibility: hidden;
}

.page-content-wrapper main {
	margin-top: 0 !important;
}

.page-content-wrapper .page-header-wrapper,
.page-content-wrapper .page-footer {
	display: none;
}

.sticky-top header {
	visibility: hidden;
}

@media (min-width: 768px) {
	body.full-width .container {
		width: 90%;
		max-width: 100%;
	}
}

.ik2b-nav-home a {
	text-decoration: none;
	font-size: 1.5rem;
	font-weight: bold;
	color: var(--brand-color);
}

.ik2b-nav-home a:hover {
	color: var(--heading-color);
}

.ik2b-navbar-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
}

.ik2b-header-navbar {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.ik2b-header-navbar a,
.ik2b-navbar-navbar a:hover,
.ik2b-navbar-navbar a:focus {
	text-decoration: none;
}

.ik2b-header-navbar ul,
.ik2b-header-navbar ul li {
	list-style: none;
	margin: 0;
	padding: 0;
}

.ik2b-navbar {
	display: flex;
	align-items: center;
	height: 100%;
	margin: 0;
	padding: 0;
}

.ik2b-nav-link {
	display: flex;
	align-items: center;
	padding: .5rem 1rem;
	text-decoration: none;
	font-size: 1rem;
	color: var(--brand-color);
}

.ik2b-nav-item {
	position: relative;
	cursor: pointer;
}

.ik2b-nav-item:hover,
.ik2b-nav-item:focus,
.ik2b-nav-item.active {
	background-color: var(--bg-dark-gray);
	border-bottom: 2px solid var(--brand-color);
}

.ik2b-nav-item.active {
	background-color: var(--bg-dark-gray);
	border-bottom: 2px solid var(--brand-color);
}

.ik2b-nav-item.active .ik2b-nav-link {
	color: var(--brand-color);
	font-weight: var(--weight-semibold);
	/* 放大1.2倍 */
	transform: scale(1.2);
}

.ik2b-nav-icon {
	width: 20px;
	height: 20px;
	object-fit: fill;
	margin-right: 0.5rem;
	margin-left: 0;
}

/* RTL 支持 */
[dir="rtl"] .ik2b-nav-icon {
	margin-right: 0;
	margin-left: 0.5rem;
}



.ik2b-nav-item .dropdown-menu-card {
	display: none;
	position: absolute;
	top: calc(100% + 2px);
	left: 0;
	right: auto;
	background: #fff;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	padding: 0.5rem;
	border-radius: 0.5rem;
	margin: 0;
	min-width: 140px;
	z-index: 1000;
}

/* RTL 支持 */
[dir="rtl"] .ik2b-nav-item .dropdown-menu-card {
	left: auto;
	right: 0;
}

.ik2b-nav-item.has-dropdown.open>.dropdown-menu-card,
.ik2b-nav-item.has-dropdown:hover>.dropdown-menu-card {
	display: block;
}

.ik2b-dropdown-menu {
	min-width: 140px;
	padding: .5rem 0;
	margin: .125rem 0 0;
	font-size: .75rem;
	color: var(--text-color);
	padding: 4px;
	font-size: var(--text-base);
	font-weight: var(--weight-regular);
	letter-spacing: .02em;
	max-height: 500px;
	overflow: auto;
}

.ik2b-dropdown-menu-item-link:hover,
.ik2b-dropdown-menu-item-link:focus {
	background-color: var(--bg-gray);
}

.ik2b-dropdown-menu-item {
	padding-left: 1rem !important;
	padding-right: 0 !important;
}

/* RTL 支持 */
[dir="rtl"] .ik2b-dropdown-menu-item {
	padding-left: 0 !important;
	padding-right: 1rem !important;
}

.ik2b-dropdown-menu-title {
	font-size: 1.125rem;
	font-weight: var(--weight-semibold);
}

.ik2b-dropdown-menu-item .ik2b-nav-link,
.ik2b-dropdown-menu-title {
	padding: 0.5rem 1rem 0.5rem 0;
}

.dropdown-menu-card .ik2b-nav-link {
	font-weight: normal !important;
	transform: scale(1) !important;
}

/* RTL 支持 */
[dir="rtl"] .ik2b-dropdown-menu-item .ik2b-nav-link,
[dir="rtl"] .ik2b-dropdown-menu-title {
	padding: 0.5rem 0 0.5rem 1rem;
}

/* 语言货币设置弹框 */
.ik2b-locale-setting {
	position: relative;
	display: flex;
	align-items: center;
}

.ik2b-locale-btn {
	border: none;
	border-radius: 4px;
	padding: 0.25rem 0.5rem;
	cursor: pointer;
	white-space: nowrap;
}

.ik2b-locale-modal {
	display: none;
	position: absolute;
	top: 100%;
	right: 0;
	left: auto;
	z-index: 1001;
	margin-top: 8px;
}

.ik2b-locale-modal.open {
	display: block;
}

/* RTL 支持 */
[dir="rtl"] .ik2b-locale-modal {
	right: auto;
	left: 0;
}

.ik2b-locale-modal-content {
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
	padding: 24px;
	min-width: 320px;
}

.ik2b-locale-title {
	margin: 0 0 8px;
	font-size: 16px;
	font-weight: 600;
	color: #333;
}

.ik2b-locale-desc {
	margin: 0 0 20px;
	font-size: 13px;
	color: #666;
	line-height: 1.5;
}

.ik2b-locale-field {
	margin-bottom: 16px;
}

.ik2b-locale-field label {
	display: block;
	margin-bottom: 6px;
	font-size: 13px;
	color: #333;
	font-weight: 500;
}

/* 自定义select样式 */
.ik2b-custom-select {
	position: relative;
	width: 100%;
}

.ik2b-select-trigger {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 14px;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	background: #f8f9fa;
	cursor: pointer;
	transition: all 0.2s ease;
	font-size: 14px;
	color: #333;
}

.ik2b-select-trigger:hover {
	border-color: #bbb;
	background: #fff;
}

.ik2b-custom-select.open .ik2b-select-trigger {
	border-color: var(--primary);
	background: #fff;
	box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.ik2b-select-arrow {
	width: 0;
	height: 0;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 5px solid #666;
	transition: transform 0.2s ease;
}

.ik2b-custom-select.open .ik2b-select-arrow {
	transform: rotate(180deg);
}

.ik2b-select-options {
	display: none;
	position: absolute;
	top: calc(100% + 6px);
	left: 0;
	right: 0;
	background: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 10px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
	max-height: 200px;
	overflow-y: auto;
	z-index: 1002;
	padding: 6px;
}

.ik2b-custom-select.open .ik2b-select-options {
	display: block;
	animation: slideDown 0.2s ease;
}

@keyframes slideDown {
	from {
		opacity: 0;
		transform: translateY(-8px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.ik2b-select-option {
	padding: 10px 12px;
	cursor: pointer;
	border-radius: 6px;
	font-size: 14px;
	color: #333;
	transition: background 0.15s ease;
}

.ik2b-select-option:hover {
	background: #f0f4ff;
}

.ik2b-select-option.selected {
	background: #e8f0fe;
	color: var(--primary);
	font-weight: 500;
	position: relative;
}

.ik2b-select-option.selected::before {
	content: '✓';
	position: absolute;
	right: 12px;
	left: auto;
	color: var(--primary);
	font-weight: 600;
}

/* RTL 支持 */
[dir="rtl"] .ik2b-select-option.selected::before {
	right: auto;
	left: 12px;
}

.ik2b-select-option.selected:hover {
	background: #d8e8fd;
}

.ik2b-locale-save-btn {
	width: 100%;
	padding: 10px 16px;
	background: var(--primary);
	color: #fff;
	border: none;
	border-radius: 8px;
	font-weight: 500;
	font-size: 14px;
	cursor: pointer;
	margin-top: 8px;
	transition: background 0.2s ease;
}

.ik2b-locale-save-btn:hover {
	filter: brightness(1.1);
}
