.entry-content {
	transition: filter 0.3s ease; /* Adjust the duration and easing as needed */
}
.custom-header {
	display: flex;
	justify-content: space-between;
	gap: 2rem;
	align-items: center;
}
.site-header-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	gap: 2rem;
}
.custom-header .custom-navigation .custom-menu {
	padding: 0;
	display: flex;
	justify-content: space-between;
	gap: 2rem;
	list-style-type: none;
	min-width: max-content;
	width: 100%;
	align-items: center;
}

.custom-header .custom-navigation {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.custom-header .custom-navigation .header-action-buttons {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.custom-header .custom-navigation .header-secondary-actions {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.custom-header .custom-navigation .mobile-navigation-drawer-header {
	display: none;
}

.custom-header .custom-navigation .mobile-drawer-account-cart-box {
	display: none;
}

.custom-header .custom-navigation .header-book-now-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: max-content;
	height: 40px;
	padding: 8px 14px;
	font-size: var(--wp--preset--font-size--small);
	border-radius: 999px;
	border: 1px solid var(--wp--preset--color--primary);
	background: var(--wp--preset--color--primary);
	color: var(--wp--preset--color--white);
	font-family: "Montserrat", sans-serif;
	text-decoration: none;
	transition:
		background-color 0.2s ease,
		border-color 0.2s ease,
		color 0.2s ease;
}

.custom-header .custom-navigation .header-cart-button,
.custom-header .custom-navigation .header-account-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 40px;
	height: 40px;
	padding: 0;
	font-size: var(--wp--preset--font-size--small);
	border-radius: 999px;
	border: 1px solid var(--wp--preset--color--primary);
	background: var(--wp--preset--color--white);
	color: var(--wp--preset--color--primary);
	font-family: "Montserrat", sans-serif;
	text-decoration: none;
	transition:
		background-color 0.2s ease,
		border-color 0.2s ease,
		color 0.2s ease;
}

.custom-header .custom-navigation .header-action-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
}

.custom-header .custom-navigation .header-action-icon svg {
	width: 100%;
	height: 100%;
}

.custom-header .custom-navigation .header-action-text {
	display: none;
}

.custom-header .custom-navigation .header-cart-count-badge {
	position: absolute;
	top: -6px;
	right: -6px;
	min-width: 16px;
	height: 16px;
	padding: 0 4px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	background: var(--wp--preset--color--primary);
	color: var(--wp--preset--color--white);
	font-size: 10px;
	line-height: 1;
	font-weight: 600;
}

.custom-header .custom-navigation .header-book-now-button:hover {
	background: var(--wp--preset--color--dark-walnut);
	border-color: var(--wp--preset--color--dark-walnut);
}

.custom-header .custom-navigation .header-cart-button:hover,
.custom-header .custom-navigation .header-account-button:hover {
	background: var(--wp--preset--color--gray-50);
	border-color: var(--wp--preset--color--dark-walnut);
	color: var(--wp--preset--color--dark-walnut);
}

.custom-header .custom-navigation .header-book-now-button:focus-visible {
	outline: 2px solid var(--wp--custom--color--ring);
	outline-offset: 2px;
}

.custom-header .custom-navigation .header-cart-button:focus-visible,
.custom-header .custom-navigation .header-account-button:focus-visible {
	outline: 2px solid var(--wp--custom--color--ring);
	outline-offset: 2px;
}

.custom-header .custom-navigation .custom-menu .menu-item {
	position: relative;
}

.custom-menu .menu-item-trigger {
	display: flex;
	align-items: center;
	gap: 0.35rem;
	width: 100%;
}

.custom-menu .menu-item-link {
	display: inline-flex;
	align-items: center;
	width: 100%;
	text-decoration: none;
}

.custom-menu .submenu-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.75rem;
	height: 1.75rem;
	padding: 0;
	border: 0;
	border-radius: 0.375rem;
	background: transparent;
	color: currentColor;
	cursor: pointer;
}

.custom-menu .submenu-chevron {
	width: 0.625rem;
	height: 0.375rem;
	background-image: url("../../assets/images/chevron.svg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	transform: rotate(0deg);
	transition: transform 0.2s ease;
}

.custom-menu .has-children.submenu-open > .menu-item-trigger .submenu-chevron {
	transform: rotate(180deg);
}

.custom-menu .has-children:hover > .menu-item-trigger .submenu-chevron {
	transform: rotate(180deg);
}

.custom-menu .submenu-toggle:hover,
.custom-menu .submenu-toggle:focus-visible {
	background: rgba(0, 0, 0, 0.08);
}

.custom-menu .menu-item-link:focus-visible,
.custom-menu .submenu-toggle:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 2px;
}

.mobile-navigation-control {
	display: none;
}
.mobile-navigation-control button {
	cursor: pointer;
	display: flex;
	align-items: center;
	background-color: transparent;
	border: none;
	color: #000;
}
.mobile-navigation-control .closed .close-menu-icon,
.mobile-navigation-control .opened .open-menu-icon {
	display: none;
}

.custom-menu .submenu {
	display: none;
	list-style: none;
	min-width: 15rem;
	padding: 0.5rem;
	background: #fff;
	border-radius: 0.5rem;
	gap: 0.125rem;
	border: 1px solid #e6e6e6;
	box-shadow: 0 12px 30px rgba(26, 13, 3, 0.14);
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 10;
}

.custom-menu .sub-sub-menu {
	display: none;
	list-style: none;
	min-width: 14rem;
	padding: 0.5rem;
	background: #fff;
	border-radius: 0.5rem;
	border: 1px solid #e6e6e6;
	box-shadow: 0 12px 30px rgba(26, 13, 3, 0.14);
	position: absolute;
	top: -0.5rem;
	left: calc(100% - 0.2rem);
	z-index: 11;
}

.custom-menu .submenu a,
.custom-menu .sub-sub-menu a {
	display: block;
	padding: 0.625rem 0.75rem;
	border-radius: 0.375rem;
	text-decoration: none;
}

.custom-menu .submenu li:hover > a,
.custom-menu .submenu li:hover > .menu-item-trigger > a,
.custom-menu .sub-sub-menu li:hover > a,
.custom-menu .sub-sub-menu li:hover > .menu-item-trigger > a,
.custom-menu .submenu li.current-menu-item > a,
.custom-menu .submenu li.current-menu-item > .menu-item-trigger > a,
.custom-menu .sub-sub-menu li.current-menu-item > a,
.custom-menu .sub-sub-menu li.current-menu-item > .menu-item-trigger > a {
	background: var(--wp--preset--color--gray-50);
}

.custom-menu li.has-children.submenu-open > .submenu,
.custom-menu li.has-children.submenu-open > .sub-sub-menu {
	display: grid;
}

@media screen and (min-width: 768px) {
	.custom-header .custom-navigation .custom-menu {
		width: auto;
		font-size: var(--wp--preset--font-size--small);
	}

	.custom-header .custom-navigation .custom-menu > .menu-item.has-children {
		padding: 0.4rem 0;
	}

	.custom-menu li.has-children:hover > .submenu,
	.custom-menu li.has-children:hover > .sub-sub-menu,
	.custom-menu .submenu li.has-children:hover > .sub-sub-menu {
		display: grid;
	}
}

@media screen and (max-width: 767px) {
	.custom-header {
		display: grid;
		grid-template-columns: repeat(1, 1fr);
	}
	.custom-menu .menu-item-link {
		width: 100%;
		padding-block: 0.35rem;
		text-decoration: none;
		font-weight: 700;
	}
	.custom-menu .submenu {
		display: grid;
		position: static;
		box-shadow: none;
		border: 0;
		margin-top: 0.35rem;
		margin-bottom: 0.35rem;
		margin-left: 0;
		width: 100%;
		background: var(--wp--preset--color--gray-50);
		border-radius: 0.75rem;
		font-weight: 400;
	}
	.custom-menu .submenu .menu-item-link {
		font-weight: 400;
	}
	.custom-menu .sub-sub-menu {
		display: grid;
		position: static;
		box-shadow: none;
		margin-left: 0;
		border: 0;
		width: 100%;
		background: var(--wp--preset--color--gray-50);
		border-radius: 0.75rem;
	}

	.custom-menu .submenu li:hover > a,
	.custom-menu .submenu li:hover > .menu-item-trigger > a,
	.custom-menu .sub-sub-menu li:hover > a,
	.custom-menu .sub-sub-menu li:hover > .menu-item-trigger > a,
	.custom-menu .submenu li.current-menu-item > a,
	.custom-menu .submenu li.current-menu-item > .menu-item-trigger > a,
	.custom-menu .sub-sub-menu li.current-menu-item > a,
	.custom-menu .sub-sub-menu li.current-menu-item > .menu-item-trigger > a {
		background: var(--wp--preset--color--gray-100);
	}
	.mobile-navigation-control {
		display: block;
	}

	.custom-header .site-header-wrapper .site-logo img,
	.custom-header .site-header-wrapper .site-logo .custom-logo,
	.custom-header .custom-navigation .mobile-navigation-drawer-header .site-logo img,
	.custom-header .custom-navigation .mobile-navigation-drawer-header .site-logo .custom-logo {
		height: 3.5rem;
		width: auto;
	}

	.custom-header .custom-navigation .menu-item .a {
		width: 100%;
	}
	.custom-header .custom-navigation {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		position: fixed;
		left: 0;
		top: 0;
		width: 100%;
		height: 100vh;
		background-color: #fff;
		transform: translateX(-100%);
		transition: transform 0.3s ease-in-out;
		padding: 4rem 2rem;
		overflow: auto;
		z-index: 9999;
		gap: 1rem;
	}

	.custom-header .custom-navigation .mobile-navigation-drawer-header {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 1rem;
	}

	.custom-header .custom-navigation .mobile-drawer-account-cart-box {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0.5rem;
		padding: 0.75rem;
		background: var(--wp--preset--color--antique-white);
		border-radius: 0.75rem;
	}

	.custom-header .custom-navigation .mobile-drawer-account-cart-box .header-cart-button,
	.custom-header .custom-navigation .mobile-drawer-account-cart-box .header-account-button {
		width: 100%;
		justify-content: center;
	}

	.custom-header .custom-navigation .close-mobile-navigation {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		cursor: pointer;
		padding: 0;
		background: transparent;
		border: 0;
		color: #000;
	}
	.custom-header .custom-navigation .custom-menu {
		flex-direction: column;
		max-width: var(--wp--style--global--wide-size);
		margin: 0;
		justify-content: start;
		align-items: flex-start;
		width: 100%;
		min-width: 0;
		gap: 0.3rem;
		text-align: left;
	}

	.custom-header .custom-navigation .custom-menu > .menu-item {
		width: 100%;
	}

	.custom-header .custom-navigation .header-book-now-button {
		display: inline-flex;
		margin: 2rem 0;
		align-self: flex-start;
	}

	.custom-header .custom-navigation .header-action-buttons {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		flex-wrap: wrap;
		gap: 0.75rem;
	}

	.custom-header .custom-navigation .header-secondary-actions {
		display: inline-flex;
		align-items: center;
		gap: 0.5rem;
	}

	.custom-header .custom-navigation .header-action-buttons .header-secondary-actions {
		display: none;
	}

	.custom-header .custom-navigation .header-cart-button,
	.custom-header .custom-navigation .header-account-button {
		width: auto;
		height: 40px;
		padding: 8px 14px;
	}

	.custom-header .custom-navigation .header-action-text {
		display: inline;
	}

	.custom-header .custom-navigation .header-action-icon {
		display: none;
	}

	.custom-menu .menu-item-trigger {
		justify-content: flex-start;
		width: 100%;
	}

	.custom-menu .submenu-toggle,
	.custom-menu .submenu-chevron {
		display: none;
	}

	.custom-navigation.opened {
		transform: translateX(0);
	}

	.open-close-navigation {
		cursor: pointer;
	}

	.open-menu-iocn,
	.close-menu-iocn {
		display: none;
	}

	.open-close-navigation.opened .close-menu-iocn {
		display: inline-block;
	}

	.open-close-navigation.closed .open-menu-iocn {
		display: inline-block;
	}
}
