:root {
    --primary-color: #007bff;
    --secondary-color: #6c757d;
    --accent-color: #f59e0b;
    --navbar-height: 60px;
    --navbar-height-mobile: 56px;
    --top-banner-height: 0px;
    --navbar-bg-color: #ffffff;
    --navbar-text-color: #333333;
    --navbar-logo-height: 44px;
}

.top-contact-banner {
    background: var(--top-banner-bg, var(--primary-color));
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 1051 !important;
    height: var(--top-banner-height);
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

.top-contact-banner .container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 24px;
}

.top-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: white;
    width: 100%;
}

.top-banner-left,
.top-banner-center,
.top-banner-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-banner-left .contact-link,
.top-banner-right .social-link {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0.9;
    transition: opacity 0.2s;
}

.top-banner-left .contact-link:hover,
.top-banner-right .social-link:hover {
    opacity: 1;
    text-decoration: none;
}

.top-banner-center .banner-text {
    font-weight: 500;
}

@media (max-width: 767px) {
    .top-banner-left,
    .top-banner-right {
        display: none;
    }
    .top-banner-center {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}

.webcommerce-navbar {
    position: fixed !important;
    top: var(--top-banner-height, 0px) !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    background: var(--navbar-bg-color, #1a237e) !important;
    z-index: 1050 !important;
    transition: box-shadow 0.3s ease;
    border-bottom: 3px solid rgba(0, 0, 0, 0.15);
    box-sizing: border-box;
    transform: translateY(0) !important;
}

.webcommerce-navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.navbar-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
    overflow: visible;
}

.navbar-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--navbar-height);
    gap: 16px;
    width: 100%;
    overflow: visible;
}

.navbar-spacer {
    height: calc(var(--navbar-height) + var(--top-banner-height, 0px));
}

@media (max-width: 767px) {
    .navbar-spacer {
        height: calc(var(--navbar-height-mobile) + var(--top-banner-height, 0px) + 60px);
    }
}

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none !important;
    flex-shrink: 0;
}

.brand-logo {
    height: var(--navbar-logo-height, 44px) !important;
    max-height: var(--navbar-logo-height, 44px) !important;
    width: auto !important;
    object-fit: contain;
    filter: none !important;
    -webkit-filter: none !important;
    opacity: 1 !important;
    mix-blend-mode: normal !important;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navbar-text-color, #fff);
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: 24px;
    flex-shrink: 0;
}

.navbar-menu-item {
    color: var(--navbar-text-color, #333);
    text-decoration: none !important;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.navbar-menu-item:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--primary-color);
    text-decoration: none !important;
}

.navbar-menu-item.active {
    background: rgba(0, 0, 0, 0.08);
    color: var(--primary-color);
}

.navbar-menu-item i {
    font-size: 12px;
    color: inherit !important;
}

.navbar-menu-dropdown {
    position: relative;
}

.navbar-menu-dropdown .dropdown-toggle::after {
    display: none !important;
    content: none !important;
}

.navbar-menu-dropdown .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-right: 12px;
}

.navbar-menu-dropdown .dropdown-toggle .dropdown-chevron,
.navbar-menu-dropdown .dropdown-toggle .fa-chevron-down,
.navbar-menu-dropdown .dropdown-toggle i.fa {
    font-size: 10px;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    margin-left: 2px;
    color: var(--navbar-text-color, #333) !important;
}

.navbar-menu-dropdown .dropdown-toggle.active .dropdown-chevron,
.navbar-menu-dropdown .dropdown-toggle.active .fa-chevron-down,
.navbar-menu-dropdown .dropdown-toggle.active i.fa {
    transform: rotate(180deg);
    color: var(--navbar-text-color, #333) !important;
}

.navbar-menu-dropdown .navbar-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.05);
    min-width: 220px;
    padding: 8px;
    z-index: 1060;
    transform-origin: top left;
}

.navbar-menu-dropdown .navbar-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 24px;
    width: 12px;
    height: 12px;
    background: #ffffff;
    transform: rotate(45deg);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-left: 1px solid rgba(0, 0, 0, 0.05);
    z-index: -1;
}

.navbar-menu-dropdown .navbar-dropdown-menu .dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    color: #374151;
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 2px;
}

.navbar-menu-dropdown .navbar-dropdown-menu .dropdown-item:last-child {
    margin-bottom: 0;
}

.navbar-menu-dropdown .navbar-dropdown-menu .dropdown-item:hover {
    background: #f3f4f6;
    color: var(--primary-color);
    transform: translateX(2px);
}

.navbar-menu-dropdown .navbar-dropdown-menu .dropdown-item i {
    font-size: 14px;
    color: #9ca3af;
    transition: color 0.2s;
    width: 20px;
    text-align: center;
}

.navbar-menu-dropdown .navbar-dropdown-menu .dropdown-item:hover i {
    color: var(--primary-color);
}

.navbar-menu-dropdown .dropdown-toggle::after {
    display: none !important;
    content: none !important;
}

.navbar-menu-dropdown .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-right: 12px;
}

.navbar-menu-dropdown .dropdown-toggle .dropdown-chevron {
    font-size: 10px;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    margin-left: 2px;
    color: var(--secondary-color);
}

.navbar-menu-dropdown .dropdown-toggle.active .dropdown-chevron {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.navbar-menu-dropdown .navbar-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.05);
    min-width: 220px;
    padding: 8px;
    z-index: 1060;
    transform-origin: top left;
}

.navbar-menu-dropdown .navbar-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 24px;
    width: 12px;
    height: 12px;
    background: #ffffff;
    transform: rotate(45deg);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-left: 1px solid rgba(0, 0, 0, 0.05);
    z-index: -1;
}

.navbar-menu-dropdown .navbar-dropdown-menu .dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    color: #374151;
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 2px;
}

.navbar-menu-dropdown .navbar-dropdown-menu .dropdown-item:last-child {
    margin-bottom: 0;
}

.navbar-menu-dropdown .navbar-dropdown-menu .dropdown-item:hover {
    background: #f3f4f6;
    color: var(--primary-color);
    transform: translateX(2px); /* Subtle movement */
}

.navbar-menu-dropdown .navbar-dropdown-menu .dropdown-item i {
    font-size: 14px;
    color: #9ca3af;
    transition: color 0.2s;
    width: 20px;
    text-align: center;
}

.navbar-menu-dropdown .navbar-dropdown-menu .dropdown-item:hover i {
    color: var(--primary-color);
}

.navbar-search {
    max-width: 280px;
    min-width: 180px;
    position: relative;
    flex-shrink: 0;
}

.navbar-search.desktop-only.navbar-search-right {
    display: block;
    margin: 0;
    margin-right: 8px;
}

.navbar-spacer-flex {
    flex: 1;
}

.search-form {
    width: 100%;
}

.search-input-wrapper {
    display: flex;
    align-items: center;
    flex-direction: row;
    background: #E6E6E6;
    border: none;
    border-radius: 8px;
    overflow: hidden;
    height: 42px;
    position: relative;
}

.search-input-wrapper:focus-within {
    background: #E6E6E6;
    box-shadow: none;
}

.search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #A3A3A3;
    pointer-events: none;
    z-index: 1;
}

.search-icon i {
    font-size: 16px;
}

.search-input {
    flex: 1;
    border: none !important;
    background: transparent;
    padding: 0 14px 0 52px;
    font-size: 14px;
    outline: none !important;
    box-shadow: none !important;
    min-width: 0;
    height: 100%;
    color: #374151;
}

.search-input:focus {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.search-input::placeholder {
    color: #A3A3A3;
}

.search-btn {
    display: none;
}

.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    max-height: 400px;
    overflow-y: auto;
    z-index: 1060;
    margin-top: 4px;
    border: 1px solid #e5e7eb;
    border-top: none;
}

.suggestions-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #f3f4f6;
}

.clear-recent {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 12px;
    cursor: pointer;
    text-transform: none;
    font-weight: 500;
}

.clear-recent:hover {
    text-decoration: underline;
}

.suggestion-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    text-decoration: none !important;
    color: #374151;
    transition: background 0.2s;
    cursor: pointer;
}

.suggestion-item:hover {
    background: #f9fafb;
    text-decoration: none !important;
}

.suggestion-item.recent i {
    color: #9ca3af;
    font-size: 14px;
    width: 20px;
    text-align: center;
}

.suggestion-item.product .suggestion-image {
    width: 44px;
    height: 44px;
    object-fit: cover;
    border-radius: 6px;
    background: #f3f4f6;
    flex-shrink: 0;
}

.suggestion-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    flex: 1;
}

.suggestion-name {
    font-size: 14px;
    font-weight: 500;
    color: #1f2937;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.suggestion-price {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
}

.suggestion-item.view-all {
    border-top: 1px solid #f3f4f6;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 14px;
}

.suggestion-item.view-all i {
    color: var(--primary-color);
}

.suggestions-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    color: #6b7280;
    font-size: 14px;
}

.suggestions-loading i {
    color: var(--primary-color);
}

.no-results {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px 14px;
    color: #6b7280;
    font-size: 14px;
}

.no-results i {
    color: #9ca3af;
}

.mobile-search .search-suggestions {
    position: fixed;
    left: 12px;
    right: 12px;
    top: calc(var(--top-banner-height, 0px) + var(--navbar-height-mobile) + 60px);
    max-height: 60vh;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    overflow: visible;
}

.action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 8px 12px;
    color: var(--navbar-text-color, #333);
    text-decoration: none !important;
    border-radius: 6px;
    transition: all 0.2s;
    background: transparent;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    min-width: 50px;
}

.action-btn:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--primary-color);
    text-decoration: none !important;
}

.action-btn i {
    font-size: 24px;
    line-height: 1;
}

.action-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.action-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #ef4444;
    color: white;
    font-size: 10px;
    font-weight: 600;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

.action-label {
    font-size: 11px;
    font-weight: 500;
    margin-top: 2px;
    opacity: 0.9;
}

.action-btn.login-btn {
    background: var(--primary-color);
    color: #ffffff !important;
    padding: 8px 16px;
    flex-direction: row;
    gap: 8px;
}

.action-btn.login-btn:hover {
    background: var(--primary-color);
    filter: brightness(0.9);
    color: #ffffff !important;
}

.action-btn.login-btn i {
    font-size: 16px;
}

.action-btn.login-btn .action-label {
    margin-top: 0;
    font-size: 14px;
    font-weight: 600;
    opacity: 1;
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    border: none;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.action-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    left: auto;
    transform: translateX(0);
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    width: 220px;
    padding: 8px 0;
    margin-top: 8px;
    z-index: 9999;
    display: none;
}

.dropdown-menu[style*="display: block"],
.dropdown-menu:not([x-cloak])[style*=""],
.action-dropdown:focus-within .dropdown-menu {
    display: block;
}

.dropdown-header {
    padding: 12px 16px;
    border-bottom: 1px solid #f3f4f6;
}

.dropdown-header .user-name {
    font-weight: 600;
    color: #1f2937;
    font-size: 14px;
}

.dropdown-header .user-email {
    font-size: 12px;
    color: #6b7280;
    margin-top: 2px;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    color: #374151;
    text-decoration: none !important;
    font-size: 14px;
    transition: background 0.2s;
}

.dropdown-item:hover {
    background: #f9fafb;
    color: var(--primary-color);
    text-decoration: none !important;
}

.dropdown-item i {
    font-size: 16px;
    width: 20px;
    text-align: center;
    color: #6b7280;
}

.dropdown-item:hover i {
    color: var(--primary-color);
}

.dropdown-item.logout-item {
    color: #ef4444;
}

.dropdown-item.logout-item i {
    color: #ef4444;
}

.dropdown-divider {
    margin: 8px 0;
    border: none;
    border-top: 1px solid #f3f4f6;
}

.mobile-menu-btn {
    background: transparent;
    border: none;
    padding: 8px;
    color: var(--navbar-text-color, #333);
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.2s;
    font-size: 22px;
}

.mobile-menu-btn:hover {
    background: rgba(0, 0, 0, 0.05);
}

.mobile-search {
    padding: 8px 12px 12px;
    background: var(--navbar-bg-color, #ffffff);
    width: 100%;
    box-sizing: border-box;
}

.mobile-search .search-input-wrapper {
    background: #E6E6E6;
    width: 100%;
    height: 44px;
}

.mobile-search .search-input {
    padding: 0 14px 0 52px;
    font-size: 15px;
    width: 100%;
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1060;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 300px;
    max-width: 85vw;
    background: #fff;
    z-index: 1061;
    display: flex;
    flex-direction: column;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #e5e7eb;
    background: var(--navbar-bg-color, #ffffff);
    color: var(--navbar-text-color, #333);
}

.mobile-menu-title {
    font-size: 18px;
    font-weight: 600;
    color: inherit;
}

.mobile-menu-close {
    background: transparent;
    border: none;
    padding: 8px;
    color: inherit;
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.2s;
    font-size: 20px;
}

.mobile-menu-close:hover {
    background: rgba(0, 0, 0, 0.05);
}

.mobile-menu-content {
    flex: 1;
    overflow-y: auto;
    padding: 8px 0;
}

.mobile-menu-nav {
    padding: 8px 0;
    border-bottom: 1px solid #f3f4f6;
}

.mobile-menu-nav-title {
    padding: 8px 20px;
    font-size: 11px;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-menu-dropdown {
    width: 100%;
}

.mobile-dropdown-toggle {
    width: 100%;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    justify-content: flex-start;
}

.mobile-dropdown-toggle .mobile-dropdown-chevron {
    margin-left: auto;
    font-size: 12px;
    color: #9ca3af;
    transition: transform 0.2s ease;
}

.mobile-dropdown-toggle .mobile-dropdown-chevron.rotated {
    transform: rotate(180deg);
}

.mobile-dropdown-content {
    background: #f9fafb;
    overflow: hidden;
}

.mobile-dropdown-item {
    padding-left: 36px !important;
}

.mobile-dropdown-item span {
    font-size: 14px;
    color: #6b7280;
}

.mobile-dropdown-item:hover span {
    color: var(--primary-color);
}

.mobile-menu-user {
    padding: 16px 20px;
    border-bottom: 1px solid #f3f4f6;
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-menu-user .user-avatar {
    width: 48px;
    height: 48px;
    font-size: 18px;
    background: var(--primary-color);
    border: none;
}

.mobile-menu-user-info .user-name {
    font-weight: 600;
    color: #1f2937;
}

.mobile-menu-user-info .user-email {
    font-size: 12px;
    color: #6b7280;
}

.mobile-menu-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    color: #374151;
    text-decoration: none !important;
    font-size: 15px;
    transition: background 0.2s;
}

.mobile-menu-item:hover {
    background: #f9fafb;
    text-decoration: none !important;
}

.mobile-menu-item.text-danger {
    color: #ef4444;
}

.mobile-menu-item i {
    font-size: 18px;
    width: 24px;
    text-align: center;
    color: #6b7280;
}

.mobile-menu-item:hover i {
    color: var(--primary-color);
}

.mobile-menu-item.text-danger i {
    color: #ef4444;
}

.mobile-menu-badge {
    margin-left: auto;
    background: #ef4444;
    color: white;
    font-size: 11px;
    font-weight: 600;
    min-width: 20px;
    height: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
}

.mobile-menu-divider {
    margin: 8px 20px;
    border: none;
    border-top: 1px solid #f3f4f6;
}
.desktop-only {
    display: flex;
}

.tablet-hidden {
    display: flex;
}

.mobile-only {
    display: none !important;
}

@media (min-width: 768px) and (max-width: 991px) {
    .navbar-menu {
        margin-left: 16px;
        gap: 2px;
    }

    .navbar-menu-item {
        padding: 8px 12px;
        font-size: 13px;
    }

    .navbar-search {
        max-width: 280px;
        min-width: 160px;
    }

    .action-btn {
        padding: 6px 8px;
        min-width: 44px;
    }

    .action-label {
        font-size: 10px;
    }

    .tablet-hidden {
        display: none !important;
    }
}

@media (max-width: 767px) {
    :root {
        --navbar-height: var(--navbar-height-mobile);
    }

    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: flex !important;
    }

    .navbar-main {
        height: var(--navbar-height-mobile);
        gap: 12px;
    }

    .navbar-container {
        padding: 0 12px;
    }

    .navbar-menu {
        display: none !important;
    }

    .brand-logo {
        height: 36px !important;
        max-height: 36px !important;
    }

    .brand-text {
        font-size: 1.25rem;
    }

    .action-btn {
        padding: 8px;
        min-width: auto;
    }

    .action-btn .action-label {
        display: none;
    }

    .navbar-actions {
        gap: 4px;
    }

    .mobile-search {
        display: block !important;
        width: 100%;
        padding: 8px 12px 12px;
    }

    .mobile-search .navbar-search {
        max-width: 100%;
        width: 100%;
    }
}

[x-cloak] {
    display: none !important;
}

@media (prefers-reduced-motion: reduce) {
    .webcommerce-navbar,
    .search-input-wrapper,
    .action-btn,
    .dropdown-item,
    .mobile-menu,
    .mobile-menu-overlay,
    .navbar-menu-item {
        transition: none;
    }
}

.action-btn:focus-visible,
.search-input:focus-visible,
.mobile-menu-btn:focus-visible,
.navbar-menu-item:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.webcommerce-navbar .navbar-main {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: nowrap !important;
}

.webcommerce-navbar .navbar-actions {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
}

.webcommerce-navbar .action-btn:not(.login-btn) {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}

.webcommerce-navbar .action-btn.login-btn {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
}

.webcommerce-navbar .navbar-search.desktop-only {
    display: block !important;
}

.webcommerce-navbar .mobile-only,
.navbar-search.mobile-search.mobile-only {
    display: none !important;
}

.webcommerce-navbar .mobile-menu-btn.mobile-only {
    display: none !important;
}

@media (max-width: 767px) {
    .webcommerce-navbar .mobile-only,
    .navbar-search.mobile-search.mobile-only {
        display: flex !important;
    }

    .webcommerce-navbar .mobile-menu-btn.mobile-only {
        display: flex !important;
    }

    .webcommerce-navbar .navbar-search.desktop-only {
        display: none !important;
    }

    .webcommerce-navbar .navbar-menu {
        display: none !important;
    }
}
