/* Top Bar */
.top-bar {
    background-color: #212121;
    padding: 1.25rem 0;
    position: relative;
    z-index: 1000;
}

.top-bar-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 400;
}

.top-bar-item i {
    color: #9ECFB2;
    font-size: 0.875rem;
}

.top-bar-item span {
    color: #ffffff;
}

.top-bar-item a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.top-bar-item a:hover {
    color: #9ECFB2;
}

/* Cart Icon */
.cart-icon {
    position: relative;
    color: #ffffff;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cart-icon:hover {
    color: #9ECFB2;
}

.cart-badge {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    background: #9ECFB2;
    color: #ffffff;
    font-size: 0.625rem;
    font-weight: 600;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Main Navigation */
.main-navbar {
    background: #ffffff;
    padding: 1.25rem 0;
    position: relative;
    z-index: 999;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.navbar-logo {
    display: flex;
    align-items: center;
    gap: 0.9375rem;
}

.navbar-logo img {
    width: 11.5rem;
}

/* Navigation Menu */
.navbar-menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2.1875rem;
}

.nav-link {
    color: #333333;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.0625rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.625rem 0;
}

.nav-link:hover,
.nav-link.active {
    color: #9ECFB2;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0.1875rem;
    background: #9ECFB2;
    transition: all 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Navbar Actions */
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 1.5625rem;
}

.search-icon {
    color: #333333;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-icon:hover {
    color: #9ECFB2;
    transform: scale(1.1);
}

.consultant-btn {
    background: #9ECFB2;
    color: #000000;
    text-decoration: none;
    padding: 0.75rem 1.5625rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.0625rem;
    transition: all 0.3s ease;
}


/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 0.25rem;
}

.mobile-menu-toggle span {
    width: 1.5625rem;
    height: 0.1875rem;
    background: #333333;
    transition: all 0.3s ease;
    border-radius: 0.125rem;
}

.mobile-menu-toggle:hover span {
    background: #9ECFB2;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 0.3125rem 1.25rem rgba(0, 0, 0, 0.1);
    border-top: 0.0625rem solid #e0e0e0;
}

.mobile-menu.active {
    display: block;
}

.mobile-nav-links {
    list-style: none;
    margin: 0;
    padding: 1.25rem 0;
}

.mobile-nav-links li {
    border-bottom: 0.0625rem solid #f0f0f0;
}

.mobile-nav-links li:last-child {
    border-bottom: none;
}

.mobile-nav-link {
    display: block;
    color: #333333;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.0625rem;
    padding: 0.9375rem 1.25rem;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: #9ECFB2;
    background: rgba(77, 172, 77, 0.05);
}