.horizontal-line{
	width:1px;
	height:28px;
	background: #e6e8ec;
}

.account-sidebar {
	position: fixed;
	top: 0;
	right: -100%;
	width: 100%;
	height: 100%;
	height: 100%;
	background: white;
	box-shadow: -2px 0 10px rgba(0,0,0,0.2);
	transition: right 0.3s ease;
	z-index: 1001;
}

.account-sidebar.active {
	right: 0;
}

.account-bar-layout {
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap:16px;
}
.account-bar-layout svg{
	display:block;
}

.account-bar-item {
	padding: 12px 16px;
	display: flex;
	gap:12px;
	margin: 0;
}

.cart-notification-container-ui {
	display: flex; 
	gap: 16px;
}

.navbar-icon-link {
	display: flex;
    align-items: center;
    justify-content: center;
	position: relative;
}

.new-nav-icons {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: auto; 
    margin-right: 40px; 
    white-space: nowrap;
}

.new-nav-icons a {
    color: var(--gray-600);
    font-size: 1rem;
    text-decoration: none;
}

.new-nav-icons a:hover {
    color: var(--gray-800);
}

.new-nav-icons .fa-solid {
    font-size: 1.2rem;
    vertical-align: middle;
}

.new-nav-icons button > i {
    font-size: 20px;
}

.mobile-language-dropdown {
	position: relative;
	display: inline-flex;
	align-items: center;
	user-select: none;
}
.mobile-language-dropdown img{
	width:20px;
	height:20px;
	margin-right: 5px;
}
.mobile-language-dropdown .new-language-menu {
	position: absolute;
	bottom: 100%;
	left: -56px;
	width: 120px;
	background-color: white;
	border-radius: 0.5rem;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
	margin-bottom: 8px;
	padding: 8px 0;
	list-style: none;
	z-index: 1000;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.mobile-language-dropdown.active .new-language-menu {
	opacity: 1;
	visibility: visible;
}

.mobile-language-dropdown.active svg {
	transform: rotate(180deg);
}

.notification-dot{
	position: absolute;
    top: 2px;
    right: 0;
    width: 8px;
    height: 8px;
    background-color: var(--error-500);
    border-radius: 50%;
    box-shadow: 0 0 3px rgba(0, 0, 0, .2);
}

@media (max-width: 768px) {
	.new-nav-icons {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
  }
}
