.mobile-language-section {
    padding: 16px 0 8px;
}

.mobile-language-label {
    display: block;
    font-size: 13px;
    color: #aaa;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mobile-language-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.mobile-lang-btn {
    padding: 8px 20px;
    border-radius: 8px;
    border: 1px solid #00c4cc;
    background: transparent;
    color: #016f73;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
}

.mobile-lang-btn.active {
    background: #00c4cc;
    border-color: #00c4cc;
    color: #fff;
}

.mobile-lang-btn:hover:not(.active) {
    border-color: #888;
}

.currency-toggle-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    border: 1px solid #ddd;
    border-radius: 20px;
    background: white;
    cursor: pointer;
    transition: all 0.2s ease;
}

.currency-toggle-btn:hover {
    border-color: #2fb9c4;
    background: #f0f9fa;
}

.currency-toggle-btn img {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #eee;
}

.currency-toggle-btn span {
    display: none;
}

.currency-toggle-btn .currency-arrow {
    font-size: 9px;
    color: #888;
    transition: transform 0.2s ease;
}

/* Dropdown wrapper */
.currency-dropdown {
    position: relative;
    display: inline-block;
}

.currency-dropdown.open .currency-arrow {
    transform: rotate(180deg);
}

/* Options */
.currency-options {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    left: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    padding: 4px;
    min-width: 90px;
    z-index: 999999;
}

.currency-dropdown.open .currency-options {
    display: block;
}

.currency-option {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.currency-option:hover {
    background: #f0f9fa;
}

.currency-option.active {
    background: #e8f7f8;
    font-weight: 600;
}

.currency-option img {
    width: 30px;
    height: 20px;
    object-fit: cover;
    border: 1px solid #eee;
}

.currency-option span {
    font-size: 13px;
    color: #333;
}

/* Mobile Menu Currency Switcher */
@media (max-width: 991px) {
    .humberger__menu__nav .currency-switcher-header {
        display: block !important;
        padding: 0;
        width: 100%;
    }

    .humberger__menu__nav .currency-dropdown {
        display: block;
        width: 100%;
        position: relative;
        z-index: 1000;
    }

    .humberger__menu__nav .currency-toggle-btn {
        width: 100%;
        justify-content: flex-start;
        padding: 12px 15px;
        border: none;
        border-radius: 0;
        background: #f8f9fa;
        font-size: 14px;
        margin: 0;
    }

    .humberger__menu__nav .currency-toggle-btn:hover {
        background: #e9ecef;
    }

    .humberger__menu__nav .currency-toggle-btn img {
        width: 24px;
        height: 24px;
        margin-right: 10px;
    }

    .humberger__menu__nav .currency-options {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: none;
        background: white;
        border: 1px solid #ddd;
        border-top: none;
        border-radius: 0;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        padding: 0;
        margin: 0;
        min-width: 100%;
        z-index: 1001;
        width: 100%;
    }

    .humberger__menu__nav .currency-dropdown.open .currency-options {
        display: block;
    }

    .humberger__menu__nav .currency-option {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 12px;
        padding: 12px 15px;
        border-radius: 0;
        border-bottom: 1px solid #e9ecef;
        background: white;
        cursor: pointer;
    }

    .humberger__menu__nav .currency-option:last-child {
        border-bottom: none;
    }

    .humberger__menu__nav .currency-option:hover {
        background: #f0f9fa;
    }

    .humberger__menu__nav .currency-option.active {
        background: #e8f7f8;
        font-weight: 600;
    }

    .humberger__menu__nav .currency-option img {
        width: 28px;
        height: 18px;
        object-fit: cover;
        border: 1px solid #ddd;
    }
}

/* Mobile Menu Language Switcher */
@media (max-width: 991px) {
    .humberger__menu__nav .language-switcher-header {
        display: block !important;
        padding: 0;
        width: 100%;
    }

    .humberger__menu__nav .language-dropdown {
        display: block;
        width: 100%;
        position: relative;
        z-index: 1000;
    }

    .humberger__menu__nav .language-toggle-btn {
        width: 100%;
        justify-content: flex-start;
        align-items: center;
        padding: 12px 15px;
        border: none;
        border-radius: 0;
        background: #ffffff;
        font-size: 14px;
        margin: 0;
        display: flex;
        gap: 10px;
        cursor: pointer;
        color: #333;
        font-weight: 500;
        border-bottom: 1px solid #e0e0e0;
    }

    .humberger__menu__nav .language-toggle-btn:hover {
        background: #f8f9fa;
        color: #016f73;
    }

    .humberger__menu__nav .language-toggle-btn img {
        width: 24px;
        height: 24px;
        border-radius: 50%;
        object-fit: cover;
        border: 1px solid #ddd;
    }

    .humberger__menu__nav .language-label {
        font-size: 13px;
        color: inherit;
        flex: 1;
    }

    .humberger__menu__nav .language-options {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: none;
        background: white;
        border: 1px solid #ddd;
        border-top: none;
        border-radius: 0;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        padding: 0;
        margin: 0;
        min-width: 100%;
        z-index: 1001;
        width: 100%;
    }

    .humberger__menu__nav .language-dropdown.open .language-options {
        display: block;
    }

    .humberger__menu__nav .language-option {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 12px;
        padding: 12px 15px;
        border-radius: 0;
        border-bottom: 1px solid #e9ecef;
        background: white;
        cursor: pointer;
        transition: all 0.2s ease;
    }

    .humberger__menu__nav .language-option:last-child {
        border-bottom: none;
    }

    .humberger__menu__nav .language-option:hover {
        background: #f0f9fa;
        color: #016f73;
    }

    .humberger__menu__nav .language-option.active {
        background: #e8f7f8;
        font-weight: 600;
        color: #016f73;
        border-left: 3px solid #2fb9c4;
        padding-left: 12px;
    }

    .humberger__menu__nav .language-option img {
        width: 28px;
        height: 20px;
        object-fit: cover;
        border-radius: 2px;
        border: 1px solid #ddd;
    }

    .humberger__menu__nav .language-option span {
        font-size: 13px;
        color: inherit;
    }
}

/* User Dropdown Menu */
.user-dropdown {
    position: relative;
    display: inline-block;
}

.user-dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
}

.user-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: #ffffff;
    min-width: 200px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 8px 0;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 9999;
    list-style: none;
}

.user-dropdown:hover .user-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown-menu li {
    padding: 0;
    margin: 0;
}

.user-dropdown-menu li a,
.user-dropdown-menu li button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.2s ease;
    width: 100%;
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
    text-align: left;
}

.user-dropdown-menu li a:hover,
.user-dropdown-menu li button:hover {
    background: #f8f9fa;
    color: #2fb9c4;
    padding-left: 25px;
}

.user-dropdown-menu li.divider {
    height: 1px;
    background: #e0e0e0;
    margin: 8px 0;
}

.logout-form {
    margin: 0;
    padding: 0;
}

.logout-form button {
    width: 100%;
    text-align: left;
}

/* Mobile User Menu - Fixed */
.mobile-user-menu {
    position: relative;
    width: 100%;
}

.mobile-user-toggle {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 12px 20px !important;
    background: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
    color: #016f73;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-user-toggle:hover {
    background: #e8f4f5;
}

.mobile-user-arrow {
    transition: transform 0.3s ease;
    font-size: 12px;
    color: #016f73;
}

.mobile-user-dropdown {
    display: none;
    background: #ffffff;
    list-style: none;
    padding: 0;
    margin: 0;
    border-bottom: 1px solid #e0e0e0;
}

.mobile-user-dropdown.active {
    display: block;
}

.mobile-user-dropdown li {
    padding: 0;
    margin: 0;
}

.mobile-user-dropdown li a,
.mobile-user-dropdown .mobile-logout-form button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px 12px 30px;
    color: #016f73;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    width: 100%;
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
    text-align: left;
}

.mobile-user-dropdown li a:hover,
.mobile-user-dropdown .mobile-logout-form button:hover {
    background: #f8f9fa;
    color: #2fb9c4;
    padding-left: 35px;
}

.mobile-user-dropdown li a.active {
    background: #e3f2fd;
    color: #2fb9c4;
    border-left: 3px solid #2fb9c4;
}

.mobile-user-dropdown li.divider {
    height: 1px;
    background: #e0e0e0;
    margin: 5px 0;
}

/* Mobile Product Menu */
.mobile-product-menu {
    position: relative;
    width: 100%;
}

.mobile-product-toggle {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 12px 20px !important;
    background: #ffffff;
    color: #252525;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid #e0e0e0;
}

.mobile-product-toggle:hover {
    background: #f8f9fa;
    color: #016f73;
}

.mobile-product-arrow {
    transition: transform 0.3s ease;
    font-size: 12px;
    color: #016f73;
}

.mobile-product-dropdown {
    display: none;
    background: #f9f9f9;
    padding: 15px;
    border-bottom: 1px solid #016f73;
}

.mobile-product-dropdown.active {
    display: block;
}

/* Mobile Dropdown Grid */
.mobile-dropdown-grid-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-dropdown-column {
    width: 100%;
}

.mobile-dropdown-column:not(:last-child) {
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 15px;
}

.mobile-dropdown-header {
    padding: 8px 0;
    font-size: 14px;
    font-weight: 600;
    color: #2fb9c4;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #016f73;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.mobile-dropdown-header i {
    font-size: 12px;
    opacity: 0.8;
}

.mobile-all-products-link {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 10px 12px !important;
    margin-bottom: 15px !important;
    background: #e8f4f5 !important;
    border-radius: 4px !important;
    color: #016f73 !important;
    font-weight: 500 !important;
    border-left: 3px solid #2fb9c4 !important;
}

.mobile-all-products-link i {
    color: #2fb9c4;
    font-size: 14px;
}

.mobile-all-products-link:hover,
.mobile-all-products-link.active {
    background: #2fb9c4 !important;
    color: #fff !important;
}

.mobile-all-products-link:hover i,
.mobile-all-products-link.active i {
    color: #fff !important;
}

.mobile-collection-link,
.mobile-tail-link,
.mobile-color-link {
    display: flex !important;
    align-items: center !important;
    padding: 8px 12px 8px 20px !important;
    color: #016f73 !important;
    font-size: 13px;
    border-radius: 3px;
    transition: all 0.2s ease;
    text-decoration: none;
}

.mobile-collection-link:hover,
.mobile-tail-link:hover,
.mobile-color-link:hover {
    background: #e8f4f5;
    color: #2fb9c4 !important;
    padding-left: 25px !important;
}

.mobile-collection-link.active,
.mobile-tail-link.active,
.mobile-color-link.active {
    background: #2fb9c4 !important;
    color: #fff !important;
    padding-left: 25px !important;
}

.mobile-bullet {
    margin-right: 5px;
    color: #2fb9c4;
}

.mobile-collection-link:hover .mobile-bullet,
.mobile-tail-link:hover .mobile-bullet,
.mobile-color-link:hover .mobile-bullet,
.mobile-collection-link.active .mobile-bullet,
.mobile-tail-link.active .mobile-bullet,
.mobile-color-link.active .mobile-bullet {
    color: #fff;
}

.mobile-item-count {
    font-size: 11px;
    color: #016f73;
    margin-left: auto;
    opacity: 0.7;
}

.mobile-collection-link:hover .mobile-item-count,
.mobile-collection-link.active .mobile-item-count {
    color: #fff;
}

.mobile-color-indicator {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 8px;
    border: 1px solid #555;
    flex-shrink: 0;
}

/* Mega Dropdown Grid Styles */
.header__menu ul li .header__menu__dropdown {
    position: absolute;
    left: 0;
    top: 50px;
    background: #f4f4f4;
    /* width: 700px; */
    z-index: 99999;
    padding: 0;
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: block !important;
}

.header__menu ul li:hover .header__menu__dropdown {
    top: 30px;
    opacity: 1;
    visibility: visible;
}

.dropdown-grid-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
    padding: 15px;
}
/* 
        .dropdown-column {
            flex: 1;
            padding: 0 10px;
            min-width: 0;
        } */

.dropdown-column:not(:last-child) {
    border-right: 1px solid #016f73;
}

.dropdown-header {
    padding: 0 0 12px 0;
    margin: 0 0 10px 0;
    font-size: 14px;
    font-weight: 600;
    color: #2fb9c4;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #016f73;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-header i {
    margin-right: 8px;
    opacity: 0.8;
    font-size: 12px;
}

.dropdown-column a {
    display: flex;
    align-items: center;
    padding: 8px 10px !important;
    margin: 2px 0;
    color: #016f73 !important;
    font-weight: 400;
    text-transform: capitalize;
    border-radius: 4px;
    transition: all 0.2s ease;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropdown-column a:hover,
.dropdown-column a.active {
    background: #2fb9c4 !important;
    color: #fff !important;
    /* padding-left: 15px !important; */
}

.item-count {
    font-size: 11px;
    opacity: 0.7;
    margin-left: auto;
    color: #016f73;
}

.dropdown-column a:hover .item-count,
.dropdown-column a.active .item-count {
    color: #fff;
}

.color-indicator {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 8px;
    border: 1px solid #555;
    flex-shrink: 0;
}

.color-red {
    background: #ff4444;
}
.color-blue {
    background: #4444ff;
}
.color-white {
    background: #ffffff;
    border: 1px solid #ccc;
}
.color-black {
    background: #000000;
}
.color-yellow {
    background: #ffff44;
}
.color-orange {
    background: #ff8844;
}
.color-purple {
    background: #8844ff;
}
.color-green {
    background: #44ff44;
}
.color-multicolor {
    background: linear-gradient(45deg, #ff4444, #ffff44, #44ff44, #4444ff);
}
.color-metallic {
    background: linear-gradient(45deg, #cccccc, #999999, #666666);
}

.currency-select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: white;
    color: #333;
    font-size: 14px;
    cursor: pointer;
}

.currency-select:focus {
    outline: none;
    border-color: #2fb9c4;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .header__logo img {
        max-height: 50px !important;
    }

    .footer__about__logo img {
        max-height: 60px !important;
    }
}
