.plg-new-elements-custom-header-container{
    width: 100%;
    position: relative;
    overflow: visible;
}

.plg-new-elements-custom-header-first-section {
    display: flex;
    justify-content: space-between;
    align-items: end;
}

@media (max-width: 991px) {
    .plg-new-elements-custom-header-first-section {
        justify-content: center;
        align-items: center;
    }
}

.plg-new-elements-custom-header-first-section > div {
    flex: 1;
    display: flex;
}

.plg-new-elements-custom-header-first-section > div:first-child {
    justify-content: flex-start;
}

.plg-new-elements-custom-header-first-section > div:last-child {
    justify-content: flex-end;
    align-items: end;
}

.plg-new-elements-custom-header-first-section > .plg-new-elements-custom-header-logo {
    justify-content: center;
}

.plg-new-elements-custom-header-first-section  .main-logo {
    height: 100% !important;
}

.plg-new-elements-custom-header-logo img {
    width: 100% !important;
    height: 100px !important;
    object-fit: contain !important;
}

@media (max-width: 991px) {
    .plg-new-elements-custom-header-logo img {
        width: 100% !important;
        height: 50px !important;
    }
}

/* Right Menu */
.plg-new-elements-custom-header-right-menu {
    border: 0;
    display: flex;
    color: #ff8200
}

.plg-new-elements-custom-header-right-menu .fa-angle-right.fa-dropdown {
    display: none;
}

.plg-new-elements-custom-header-right-menu .menu-smart a {
    display: block;
    color: #ff8200;
}

.plg-new-elements-custom-header-right-menu .menu-smart > li > a::before {
    content: "";
    display: block;
    height: 52%;
    height: calc(52% - 0.50em);
}

.plg-new-elements-custom-header-right-menu .menu-smart li {
    height: 53px;
}

.plg-new-elements-custom-header-right-menu .wpmenucart-contents > .cartcontents {
    background: #ff8200;
    width: 16px;
    height: 16px;
    color: #fff !important;
    border-radius: 30px;
    font-size: 10px;
    text-align: center;
    transform: translate(-15px, -10px);
}

/* Mobile menu - hidden by default, shown on mobile */
.plg-new-elements-custom-header-mobile-menu {
    display: none;
}

@media (max-width: 768px) {
    .plg-new-elements-custom-header-mobile-menu-cart-icon .cartcontents {
        background: #ff8200;
        width: 16px;
        height: 16px;
        color: #fff !important;
        border-radius: 30px;
        font-size: 10px;
        text-align: center;
        transform: translate(-17px, -15px);
        display: inline-block;
        padding: 2px;
    }
}

.plg-new-elements-custom-header-menu-items {
    display: flex; 
    justify-content: center; 
    align-items: center; 
    gap: 90px; 
    color: #ff8200; 
    width: 100%;
    margin-top: 20px;
    position: relative;
    overflow: visible;
}

.plg-new-elements-custom-header-menu-item {
    font-size: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ff8200;
}

.plg-new-elements-custom-header-menu-item img {
    width: 40px;
    height: 100%;
    object-fit: contain;
    color: #ff8200;
}

.plg-new-elements-custom-header-menu-item:hover {
    cursor: pointer;
    opacity: 0.8;
}

/* Dropdown menu styles */
.plg-new-elements-custom-header-menu-item-with-dropdown {
    position: relative;
}

.plg-new-elements-custom-header-menu-item-with-dropdown .dropdown-arrow {
    font-size: 10px;
    margin-left: 5px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.plg-new-elements-custom-header-menu-item-with-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.plg-new-elements-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100vw;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 30px 40px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    margin-top: 15px;
    z-index: 1000;
    box-sizing: border-box;
}

.plg-new-elements-custom-header-menu-item-with-dropdown:hover .plg-new-elements-dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 30px;
    width: 100%;
    margin-bottom: 20px;
}

.dropdown-menu-content > .dropdown-column {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.dropdown-column {
    display: flex;
    flex-direction: column;
}

.dropdown-column-title {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.dropdown-column-subtitle {
    font-size: 12px;
    color: #666666;
    margin: 0 0 12px 0;
    line-height: 1.4;
}

.dropdown-column-items {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-left: 10px;
}

.dropdown-column-items li {
    margin-bottom: 8px;
}

.dropdown-column-items li a {
    font-size: 14px;
    color: #333333;
    text-decoration: none;
    transition: color 0.2s ease;
    display: block;
}

.dropdown-column-items li a:hover {
    color: #ff8200;
}

.dropdown-cta {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.dropdown-cta-button {
    display: inline-block;
    background: #ff8200;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: background 0.3s ease, transform 0.2s ease;
}

.dropdown-cta-button:hover {
    background: #e67300;
    transform: translateY(-2px);
}

/* Hide menu items on mobile screens */
@media (max-width: 768px) {
    .plg-new-elements-custom-header-menu-items {
        display: none !important;
    }
    
    .plg-new-elements-dropdown-menu {
        display: none !important;
    }
    
    .plg-new-elements-custom-header-right-menu {
        display: none !important;
    }
    
    .plg-new-elements-custom-header-mobile-menu {
        display: flex !important;
        align-items: center;
        gap: 15px;
    }
    
    .plg-new-elements-custom-header-mobile-menu-toggle-icon {
        display: flex;
    }
}

.plg-new-elements-custom-header-mobile-menu-user-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.plg-new-elements-custom-header-mobile-menu-user-icon i {
    font-size: 20px;
    color: #ff8200;
}

.plg-new-elements-custom-header-mobile-menu-user-icon a::before {
    content: "";
    display: block;
    height: 52%;
    height: calc(52% - 0.50em);
}

.plg-new-elements-custom-header-mobile-menu-user-icon a::after {
    content: "";
    display: block;
    height: 50%;
    height: calc(50% - 0.50em);
}

@media (min-width: 768px) {
    .plg-new-elements-custom-header-mobile-menu-toggle-icon {
        display: none;
    }
}

.plg-new-elements-custom-header-mobile-menu-toggle-icon {
    align-items: center;
    justify-content: center;
    background: #ff8200;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    padding: 5px 16px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.plg-new-elements-custom-header-mobile-menu-toggle-icon:hover {
    background: #e67300;
    transform: scale(1.05);
}

.plg-new-elements-custom-header-mobile-menu-toggle-icon:active {
    transform: scale(0.95);
}

.plg-new-elements-custom-header-mobile-menu-toggle-icon i {
    font-size: 20px;
    color: white;
}

/* Mobile Side Menu */
.plg-new-elements-mobile-side-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s ease, opacity 0.3s ease;
}

.plg-new-elements-mobile-side-menu.active {
    visibility: visible;
    opacity: 1;
}

.mobile-side-menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.plg-new-elements-mobile-side-menu.active .mobile-side-menu-overlay {
    opacity: 1;
}

.mobile-side-menu-content {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    height: auto;
    max-height: 90vh;
    background: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    border-left: 5px solid #ff8200;
}

.plg-new-elements-mobile-side-menu.active .mobile-side-menu-content {
    transform: translateY(0);
}

.mobile-side-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0px;
    border-bottom: 1px solid #e0e0e0;
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 10;
}

.mobile-side-menu-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ff8200;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.mobile-side-menu-close:hover {
    background: #e67300;
}

.mobile-side-menu-close i {
    color: white;
    font-size: 18px;
}

.mobile-side-menu-logo {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-side-menu-logo img {
    max-height: 50px;
    width: auto;
}

.mobile-side-menu-header-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-side-menu-nav {
    flex: 1;
}

.mobile-side-menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 10px;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s ease;
}

.mobile-side-menu-item:hover {
    background: #f8f8f8;
}

.mobile-side-menu-item-content {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.mobile-side-menu-item-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-side-menu-item-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mobile-side-menu-item-text {
    flex: 1;
}

.mobile-side-menu-item-title {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 4px;
}

.mobile-side-menu-item-subtitle {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
}

.mobile-side-menu-item-arrow {
    color: #999;
    font-size: 14px;
}

.mobile-side-menu-search {
    padding: 20px;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.mobile-side-menu-user-actions {
    padding: 10px 5px;
    border-top: 1px solid #e0e0e0;
}

.mobile-side-menu-user-action {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 0;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: color 0.2s ease;
}

.mobile-side-menu-user-action img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.mobile-side-menu-user-action i {
    color: #ff8200;
    font-size: 18px;
    width: 20px;
}

.mobile-side-menu-user-action:hover {
    color: #ff8200;
}

/* Mobile Dropdown Menu */
.mobile-side-menu-dropdown {
    display: none;
    flex-direction: column;
    height: 100%;
}

.mobile-side-menu-dropdown.active {
    display: flex;
}

.mobile-side-menu-nav.hidden {
    display: none;
}

.mobile-side-menu-dropdown-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    border-bottom: 1px solid #e0e0e0;
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 10;
}

.mobile-side-menu-dropdown-back {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #ff8200;
    font-size: 20px;
    transition: transform 0.2s ease;
}

.mobile-side-menu-dropdown-back:hover {
    transform: translateX(-3px);
}

.mobile-side-menu-dropdown-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    flex: 1;
    text-align: center;
}

.mobile-side-menu-dropdown-content {
    flex: 1;
    overflow-y: auto;
    display: none;
}

.mobile-side-menu-dropdown-content.active {
    display: block;
}

/* Parent Items */
.mobile-side-menu-dropdown-parents {
    padding: 0;
}

.mobile-side-menu-dropdown-parent-item {
    border-bottom: 1px solid #e0e0e0;
}

.mobile-side-menu-dropdown-parent-item:last-child {
    border-bottom: none;
}

.mobile-side-menu-dropdown-parent-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    text-decoration: none;
    color: #333;
    transition: background 0.2s ease;
}

.mobile-side-menu-dropdown-parent-link:hover {
    background: #f8f8f8;
}

.mobile-side-menu-dropdown-parent-title {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.mobile-side-menu-dropdown-parent-arrow {
    color: #999;
    font-size: 14px;
}

/* Child Items */
.mobile-side-menu-dropdown-children {
    padding: 0;
}

.mobile-side-menu-dropdown-children-list {
    padding: 0;
}

.mobile-side-menu-dropdown-child-item {
    border-bottom: 1px solid #e0e0e0;
}

.mobile-side-menu-dropdown-child-item:last-child {
    border-bottom: none;
}

.mobile-side-menu-dropdown-child-link {
    display: block;
    padding: 15px 20px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: background 0.2s ease, color 0.2s ease;
}

.mobile-side-menu-dropdown-child-link:hover {
    background: #f8f8f8;
    color: #ff8200;
}

.mobile-side-menu-item-with-dropdown {
    cursor: pointer;
}