/* Header Section */
.header-section {
	position: relative;
	z-index: 999;
}

.header-container {
  box-sizing: border-box;
	max-width: 1360px;
	height: 72px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 40px;
  border-radius: 0 0 40px 40px;
  background-color: #FFFFFF;
}

/* Header Logo */
.header-logo {
	width: 268px;
	height: 40px;
}

.header-logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/* Header Navigation */
.header-nav {
	display: flex;
	align-items: center;
	gap: 28px;
}

.header-nav__item {
	display: flex;
	align-items: center;
	gap: 6px;
	text-decoration: none;
	color: #000000;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 700;
	font-size: 14px;
	line-height: 1.5em;
	transition: opacity 0.3s ease;
}

.header-nav__item:hover {
	opacity: 0.7;
}

.header-nav__item--search {
	font-size: 15px;
}

.header-nav__item-badge {
  position: absolute;
  top: -16px;
  left: 2px;
  padding: 0px 5px;
  background-color: #FBE800;
  color: black;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-nav__icon {
	width: 24px;
	height: 24px;
	flex-shrink: 0;
}

.header-nav__item--primary {
	background-color: #000000;
	color: #FFFFFF;
	border-radius: 140px;
	padding: 8px 16px 8px 12px;
}

.header-nav__item--primary:hover {
  color: #FFFFFF;
	opacity: 1;
	background-color: #333333;
}

/* Breadcrumb Section */
.breadcrumb-section {
	width: 100%;
	padding: 20px 0;
}

.breadcrumb {
	display: flex;
	align-items: center;
	gap: 5px;
	flex-wrap: wrap;
  margin-bottom: 0;
}

.breadcrumb__item {
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	font-size: 12px;
	line-height: 1.5em;
	color: #000000;
	text-decoration: none;
	transition: opacity 0.3s ease;
}

.breadcrumb__item:hover {
	opacity: 0.7;
}

.breadcrumb__item--current {
	color: #000000;
	cursor: default;
}

.breadcrumb__item--current:hover {
	opacity: 1;
}

.breadcrumb__separator {
	width: 12px;
	height: 12px;
	flex-shrink: 0;
}
.border-box {
	box-sizing: border-box;
}

/* responsive breadcrumb */
@media (max-width: 1200px) {
	.breadcrumb-section {
		padding: 12px 0;
	}
	.breadcrumb {
		gap: 4px;
		flex-wrap: nowrap;
	}
	.breadcrumb__item--current {
		max-width: 60%;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}
}

/* Mobile Header */
.mobile-header-container-height {
	height: 52px;
}

.mobile-header-container {
	margin: 0 auto;
	position: fixed;
	top: 0;
	z-index: 1000;
	width: 100%;
}

.mobile-header {
	height: 52px;
	background-color: #FFFFFF;
	border-radius: 0px 0px 20px 20px;
	border: 1px solid #EEEEEE;
	border-top: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 8px;
	margin: 0 8px;
	box-sizing: border-box;
}

/* Mobile Logo */
.mobile-header-logo {
	width: 214px;
	height: 32px;
}

.mobile-logo-img {
	width: 100%;
	height: 100%;
}

.mobile-logo-text {
	font-family: 'Inter', sans-serif;
	font-weight: 400;
	font-size: 8px;
	line-height: 1.21em;
	color: #000000;
	white-space: nowrap;
}

/* Mobile Menu Button */
.mobile-menu-button {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	background-color: #000000;
	border: none;
	border-radius: 110px;
	padding: 6px 8px;
	cursor: pointer;
	transition: all 0.3s ease;
	height: 36px;
	width: 106px;
}

.mobile-menu-button:hover {
	background-color: #333333;
}

.mobile-menu-icon {
	width: 24px;
	height: 24px;
	background-color: #FBE800;
	border-radius: 50%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.hamburger-line {
	width: 6px;
	height: 1px;
	background-color: #000000;
	border-radius: 1px;
}

.mobile-menu-text {
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 700;
	font-size: 14px;
	line-height: 14px;
	color: #FFFFFF;
	margin-right: 10px;
}

/* Menu text toggle - ẩn/hiện text dựa trên class active */
.mobile-menu-text--menu {
	display: block;
}

.mobile-menu-text--close {
	display: none;
}

.mobile-menu-button.active .mobile-menu-text--menu {
	display: none;
}

.mobile-menu-button.active .mobile-menu-text--close {
	display: block;
}

/* Menu icon toggle - ẩn/hiện icon dựa trên class active */
.mobile-menu-icon--hamburger {
	display: flex;
}

.mobile-menu-icon--close {
	display: none;
}

.mobile-menu-button.active .mobile-menu-icon--hamburger {
	display: none;
}

.mobile-menu-button.active .mobile-menu-icon--close {
	display: flex;
}
