.header-home {
    background-color: white;
    padding: 5px 60px;
}

.transparentBg {
    background-color: transparent;
}

.header-home__menu__left {
    display: flex;
    align-items: center;
    gap: 32px;
}

.header-home__menu__left>ul {
    display: flex;
    align-items: center;
    gap: 22px;
}

.header-home__menu__left>ul>li>a {
    color: #131313;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    padding: 0 5px;

    &:hover {
        color: #1f3f6d;
    }
}

.header-home__menu__left>ul>li>a::before {
    position: absolute;
    content: "";
    bottom: -5px;
    left: 0;
    height: 2px;
    width: 0%;
    background: #1f3f6d;
    border-radius: 5px;
    transition: all linear 0.3s;
}

.header-home__menu__left>ul>li>a:hover::before {
    width: 100%;
}

.header-home__menu__right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.login-btn {
    font-size: 16px;
    font-weight: 600;
    color: #1f3f6d;
    text-decoration: none;
    padding: 0 5px;
}

.get-start-btn {
    background-color: #1f3f6d;
    color: white;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 24px;
    border-radius: 5px;
}

.account-dropdown {
    position: relative;
    display: inline-block;
}

.account-btn {
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.account-btn .arrow {
    font-size: 14px;
    transition: transform .2s;
}

.account-menu {
    position: absolute;
    right: 0;
    top: 100%;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 10px 0;
    width: 180px;
    display: none;
    z-index: 999;
}

.account-menu li a {
    display: block;
    padding: 10px 15px;
    color: #333;
}

.account-menu li a:hover {
    background: #f4f4f4;
}

.account-dropdown.open .account-menu {
    display: block;
}

.account-dropdown.open .arrow {
    transform: rotate(-180deg);
}

    .cart-icon { position: relative; display:inline-block; margin-left:12px; }
.cart-icon .cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background: #ff3b30;
  color: #fff;
  border-radius: 50%;
  padding: 2px 6px;
  font-size: 12px;
}