* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
font-family: 'Inter', 'Nunito Sans', sans-serif ;

    scroll-behavior: smooth;
}

body {
    background-color: white;
font-family: 'Inter', 'Nunito Sans', sans-serif !important;

    padding-top: 105px;
    /* Offset for fixed navbar */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    background: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    padding: 15px 0 0px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: top 0.3s;
    box-shadow: 0px 3px #0ab3e4;
    ;
}

.headercontainer {
    max-width: 2100px;
    max-height: 50px;
    margin: auto;
    padding: 0px 20px 20px 0px;
    display: flex;
    justify-content: space-between;
    position: relative;
    align-items: center;
}

.logo {
    margin-left: 10px;
}

.profile1 {
    display: flex;
    gap: 10px;
}

.profile2 {
    display: block;
    margin-top: 5px;
}

/* Profile Icon */

.header-2 {
    border-top: 3px solid #ddd;
    display: flex;
    justify-content: space-evenly;
    padding-top: 10px;
    /* padding-right: 150px; */
    align-items: center;
    max-height: 40px;
}


.header-2 a {
    padding: 10px;
    text-decoration: none;
    color: black;
    position: relative;
    transition: color 0.3s ease;
}

.header-2 a::after {
    content: '';
    position: absolute;
    left: 10px;
    bottom: 5px;
    width: 0;
    height: 2px;
    background-color: #0ab3e4;
    transition: width 0.3s ease;
}

.header-2 a:hover {
    color: #0ab3e4;
    ;
}

.header-2 a:hover::after {
    width: calc(100% - 20px);
}

.header-2 a.active,
.header-2 a:hover {
    color: #0ab3e4;
}

.header-2 a.active::after,
.header-2 a:hover::after {
    width: calc(100% - 20px);
}

/* Modern Redesigned Dropdown Navigation */
.header-2-desktop {
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: relative;
}

.dropdown-nav {
    max-width: 2100px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-list {
    display: flex;
    justify-content: space-evenly;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 10px 24px;
    text-decoration: none;
    color: #040404;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s ease;
    position: relative;
    border-radius: 8px;
    margin: 0px;
    letter-spacing: 0.025em;
}

.nav-link:hover {
    color: #0ab3e4;
    background: #f8fafc;
}

/* Dropdown indicators */
.nav-item>.nav-link::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid #9ca3af;
    margin-left: 8px;
    transition: all 0.2s ease;
}

.nav-item:hover>.nav-link::after {
    border-top-color: #0ab3e4;
    transform: rotate(180deg);
}

/* Compact White Mega Menu */
.fullscreen-mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100vw;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition: all 0.2s ease;
    z-index: 999;
    border-top: 1px solid #e5e7eb;
    max-height: none;
    overflow: visible;
}

.fullscreen-mega-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Compact Menu Content */
.mega-menu-content {
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    max-height: none;
    align-items: start;
    justify-content: start;
    overflow-y: visible;
    box-shadow: 0px 3px #0ab3e4;
}

/* Compact Subcategory Column */
.subcategory-column {
    min-height: 150px;
    max-width: 220px;
    min-width: 220px;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 6px;
    padding: 15px;
    border: 1px solid #e5e7eb;
    transition: all 0.2s ease;
}

.subcategory-column:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    /* border-color: #0ab3e4; */
}

/* Compact Heading */
.subcategory-heading {
    font-size: 12px !important;
    font-weight: 600;
    color: #0ab3e4;
    margin: 0 0 12px 0;
    padding-bottom: 6px;
    border-bottom: 2px solid #0ab3e4;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.subcategory-heading a {
    text-decoration: none;
    color: #0ab3e4;
    transition: color 0.2s ease;
}



/* Compact Product Links */
.product-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.product-links li {
    margin: 0 0 2px 0;
    width: 100%;
}

.product-links a {
    display: block;
    padding: 6px 0px;
    text-decoration: none;
    color: #374151;
    font-size: 13px;
    font-weight: 400;
    transition: all 0.2s ease;
    border-left: 2px solid transparent;
    border-radius: 4px;
    text-align: left;
    width: 100%;
}

.product-links a:hover {
    color: #0ab3e4;
    border-left-color: #0ab3e4;
    background: #f8fafc;
    padding-left: 12px;
}

/* Compact Empty states */
.empty-category {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    width: 99%;
    color: #6b7280;
    grid-column: 1 / -1;
    background: #f9fafb;
    border-radius: 6px;
    border: 1px dashed #d1d5db;
}

.empty-category i {
    font-size: 32px;
    color: #d1d5db;
    margin-bottom: 12px;
}

.empty-category h3 {
    font-size: 16px;
    color: #374151;
    margin: 0 0 6px 0;
    font-weight: 600;
}

.empty-category p {
    font-size: 14px;
    margin: 0;
}

.empty-message {
    color: #9ca3af;
    font-style: italic;
    font-size: 12px;
    margin: 6px 0;
    padding: 6px 8px;
    text-align: left;
    width: 100%;
    background: #f9fafb;
    border-radius: 4px;
    border-left: 2px solid #e5e7eb;
}

/* Compact Scrollbar */
.mega-menu-content::-webkit-scrollbar {
    width: 4px;
}

.mega-menu-content::-webkit-scrollbar-track {
    background: #f1f5f9;
}

.mega-menu-content::-webkit-scrollbar-thumb {
    background: #0ab3e4;
    border-radius: 2px;
}

/* Compact Loading */
.mega-menu-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    color: #6b7280;
    font-size: 14px;
    grid-column: 1 / -1;
}

.mega-menu-loading::after {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid #e5e7eb;
    border-top: 2px solid #0ab3e4;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 8px;
}

/* Compact Responsive adjustments */
@media (max-width: 1200px) {
    .mega-menu-content {
        padding: 16px;
        gap: 16px;
    }

    .subcategory-column {
        padding: 12px;
        min-height: 120px;
        min-width: 180px;
        max-width: 220px;
    }
}

@media (max-width: 1024px) {
    .mega-menu-content {
        gap: 12px;
        padding: 12px;
    }

    .subcategory-column {
        min-height: 100px;
        padding: 10px;
        min-width: 160px;
        max-width: 200px;
    }

    .subcategory-heading {
        font-size: 12px;
    }

    .product-links a {
        font-size: 11px;
        padding: 4px 6px;
    }
}

@media (max-width: 900px) {
    .mega-menu-content {
        gap: 10px;
        padding: 10px;
    }

    .subcategory-column {
        min-width: 140px;
        max-width: 180px;
    }

    .subcategory-heading {
        font-size: 11px;
        margin-bottom: 8px;
    }

    .product-links a {
        padding: 3px 5px;
    }
}

@media (max-width: 768px) {
    .fullscreen-mega-menu {
        display: none;
    }
    
    .mobile-dropdown {
        display: none !important;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .header-2-desktop {
        display: none;
    }
}

/* Tablet adjustments */
@media (max-width: 1024px) and (min-width: 769px) {
    .nav-link {
        padding: 14px 20px;
        font-size: 14px;
    }

    .dropdown-level-1 {
        min-width: 240px;
    }

    .dropdown-level-2 {
        min-width: 220px;
        max-width: 280px;
    }
}

/* Accessibility */
.nav-link:focus,
.dropdown-link:focus,
.dropdown-link-2:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {

    .dropdown-level-1,
    .dropdown-level-2,
    .nav-link,
    .dropdown-link,
    .dropdown-link-2 {
        transition: none;
    }
}




.profile-icon {
    width: 40px;
    height: 40px;
    display: flex;
    background-color: #ddd;
    overflow: hidden;

}

.profile-icon img {
    width: 100%;
    height: 100%;
    border: 2px solid #0ab3e4;
    border-radius: 50%;
    object-fit: cover;
}

.ac-btn {
    text-decoration: none;
    color: #000;
    padding: 10px;
    width: 70px;
    max-width: 70px;
    min-width: 70px;
    display: block;
    position: relative;
    border-radius: 5px;
    background: #fff;
}

.ac-btn:hover {
    color: #fff;
    background: #0ab3e4;
    box-shadow: 0px 2px 8px rgba(10, 179, 228, 0.6);
}


.right-side-ac {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

/* Container for the search */

.search-wrapper {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    max-width: 600px;
    /* margin-right: 50px ; */
}

.search-icon {
    padding: 9.4px;
    margin-top: 4px;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;

    background: #0ab3e4;
    color: white;
    /* border-radius: 50%; */
    cursor: pointer;
    transition: background-color 0.3s ease;
}



.search-icon svg {
    display: block;
    stroke: white;
}

.search-container {
    margin-top: 5px;
    position: relative;
    width: 500px;
    display: flex;
    flex-direction: column;
    animation: fadeIn 0.3s ease-in-out;
}

#searchBox,
#searchBoxMobile {
    width: 100%;
    padding: 10px 16px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;

    outline: none;
    background-color: #fff;
    transition: all 0.3s ease;
    box-shadow: 0px 2px 8px rgba(188, 188, 188, 0.25);
}

#searchBox:hover,
#searchBoxMobile:hover {

    box-shadow: 0px 2px 8px rgba(10, 179, 228, 0.6);
}

#searchBox:focus,
#searchBoxMobile:focus {

    box-shadow: 0px 2px 8px rgba(10, 179, 228, 0.6);
}



#suggestions,
#suggestionsMobile {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #0ab3e4;
    border-radius: 10px;
    margin-top: 10px;
    display: none;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0px 2px 8px rgba(0, 123, 255, 0.25);
}

#suggestions div,
#suggestionsMobile div {
    padding: 8px 12px;
    cursor: pointer;
}




.suggestion-item {
    padding: 12px 16px;
    font-size: 15px;
    color: #333;
    cursor: pointer;
}

.suggestion-item:hover,
.suggestion-item.active {
    background: #0ab3e4;
    color: white;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}



.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    text-decoration: none;
}

.user-name {
    font-size: 30px;
    font-weight: 800;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #007bff;
    white-space: nowrap;
    display: flex;
    align-items: center;
    height: 100%;
}

.translate-wrapper {
    background: #ffffff;
    padding: 6px 12px;
    border-radius: 10px;
    min-height: 28px;
    max-height: 28px;
    display: flex;
    align-items: start;
    justify-content: center;
    gap: 0px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.3s ease;
}


.translate-wrapper::after {
    content: '';
    position: absolute;
    left: 10px;
    bottom: 5px;
    width: 0;
    height: 2px;
    background-color: #0ab3e4;
    transition: width 0.3s ease;
}

.translate-wrapper:hover {
    color: #0ab3e4;
}

.translate-wrapper:hover::after {
    width: calc(100% - 20px);
}


.translate-wrapper i {
    color: #000000;
    font-size: 16px;
}

#google_translate_element select {
    border: none;
    background: transparent;
    font-weight: 500;
    color: #000000;
    cursor: pointer;
    font-size: 14px;
}

/* Hide "Powered by Google" in Google Translate widget */
#google_translate_element .goog-logo-link {
    display: none !important;
}

#google_translate_element .goog-te-gadget {
    color: transparent !important;
    font-size: 0 !important;
    /* just in case */
}

#google_translate_element select:hover {
    color: rgb(0, 0, 0);
}

.goog-te-banner-frame.skiptranslate,
body>.skiptranslate {
    display: none !important;
}

body {
    top: 0 !important;
}

li {
    display: flex;
    align-items: center;
    justify-content: center;
}



/* Profile Dropdown */
.profile {
    position: relative;
    /* display: inline-block; */
    cursor: pointer;
    font-family: Arial, sans-serif;
}


.profile-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    background-color: #ddd;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: black;
}

.profile-icon img {
    width: 100%;
    height: 100%;
    border: 2px solid #0ab3e4;
    border-radius: 50%;
    object-fit: cover;
}

.profile-icon:hover {
    background: #0ab3e4;
    transform: scale(1.1);
}


.profile-menu {
    display: none;
    position: absolute;
    top: 40px;
    right: 0;
    width: 320px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    padding: 15px;
    z-index: 1000;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}


.profile:hover .profile-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}


.profile-header {
    text-align: center;
}

/* Enhanced Profile Header Anchor Tag Styles */
.profile-header a {
    display: block;
    padding: 12px 16px;
    margin: 4px 0;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid transparent;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.profile-header a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 123, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.profile-header a:hover::before {
    left: 100%;
}

.profile-header a:hover {
    color: #0ab3e4;
    background: linear-gradient(135deg, #ffffff 0%, #f1f3f4 100%);
    border-color: #0ab3e4;
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.15);
}

.profile-header a.active {
    color: #ffffff;
    background: #0ab3e4;
}

.profile-header a.active:hover {
    background: #0ab3e4;
    transform: translateX(2px);
}

/* Icon styling for links with icons */
.profile-header a i {
    margin-right: 8px;
    font-size: 14px;
    width: 16px;
    text-align: center;
}

/* Special styling for logout link */
.profile-header a[href="logout.php"] {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    margin-top: 8px;
}

.profile-header a[href="logout.php"]:hover {
    background: linear-gradient(135deg, #c82333 0%, #bd2130 100%);
    transform: translateX(2px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

/* Special styling for translate wrapper */
.profile-header .test {
    padding: 6px 12px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 8px;
    margin: 6px 0;
}


.profile-header .test:hover {
    background: #0ab3e4;
    transform: translateX(2px);
    color: white;

}


.profile-header .translate-wrapper {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    color: white;
}

.profile-header .translate-wrapper i {
    color: white;
}

/* Badge styling for complaints */
#complaintBadgeHeader {
    position: absolute !important;
    top: 5px !important;
    right: 8px !important;
    background: linear-gradient(135deg, #ff4757 0%, #ff3742 100%) !important;
    color: white !important;
    font-size: 10px !important;
    padding: 2px 6px !important;
    border-radius: 10px !important;
    font-weight: bold !important;
    box-shadow: 0 2px 4px rgba(255, 71, 87, 0.3) !important;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}




.profile-name {
    font-size: 18px;
    font-weight: bold;
    margin: 5px 0;
    color: #333;
}


.profile-info {
    font-size: 14px;
    font-weight: bold;
    color: #666;
    /* margin: 5px 0; */
    display: flex;
    justify-content: center;
    align-items: center;
}


.profile-menu hr {
    border: 0;
    height: 1px;
    background: #ddd;
    margin: 10px 0;
}


.profile-link {
    display: block;
    padding: 12px;
    text-align: center;
    color: #111;
    font-size: 14px;
    text-decoration: none;
    border-radius: 6px;
    background: #f9f9f9;
    /* font-weight: bold; */
    margin-top: 5px;
    transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
}


.profile-link:hover {

    transform: scale(1.05);
}


.logout {
    background: #0ab3e4;
    color: white;
}


.logout:hover {
    background: #0ab3e4;
}

/* if user not loged in */
.login-btn {
    background: white;
    /* box-shadow: 0px 2px 8px rgba(0, 123, 255, 0.25); */
    color: black;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 5px;
    /* font-weight: bold; */
}

.login-btn:hover {
    background: #0ab3e4;
    box-shadow: 0px 2px 8px rgba(10, 179, 228, 0.6);

    color: white;
}

.register-btn {
    display: inline-block;
    padding: 10px 15px;
    background: white;
    /* box-shadow: 0 4px 12px rgba(40, 167, 69, 0.4); */
    color: black;
    text-decoration: none;
    border-radius: 5px;
    /* margin-left: 10px; */
}

.register-btn:hover {
    background: #0ab3e4;
    box-shadow: 0px 2px 8px rgba(10, 179, 228, 0.6);

    color: white;
}

.header-btn {
    display: flex;
    gap: 10px;
}


.show-login-btn {
    display: none;
}



.mobile-header {
    display: none;
}

/* Mobile Profile Styles */
.profile-mobile {
    position: relative;
    cursor: pointer;
    font-family: Arial, sans-serif;
}

.profile-mobile .profile-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: white;
    background-color: #ddd;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    color: black;
}

.profile-mobile .profile-icon img {
    width: 100%;
    height: 100%;
    border: 2px solid #0ab3e4;
    border-radius: 50%;
    object-fit: cover;
}

.profile-mobile .profile-icon:hover {
    background: #0ab3e4;
    transform: scale(1.1);
}

.profile-mobile .profile-menu {
    display: none;
    position: absolute;
    top: 40px;
    right: 0;
    width: 280px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    padding: 15px;
    z-index: 1000;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

@media (max-width: 873px) {

    .mobile-header {
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        gap: 20px;
        padding: 0px 10px;
        height: 50px;
        border-top: 2px solid black;
    }

    .profile-mobile .profile-menu {
    
    right: -30px;
}




    .headercontainer .cart-desktop {
        display: none !important;
        
        padding: 15px 5px 20px 5px;
    }
    .headercontainer  {
max-height: 50px;
        min-height: 50px;
        padding: 15px 5px 20px 5px;
    }

    .cart-desktop {
        display: none;
    }

    #search-desktop {
        display: none;
    }

    .profile2 {
        display: none;
    }

    .login-btn {
        display: none;
    }

    #r-btn {
        display: none;
    }

    .profile {
        display: none;
    }

    #show-mobile {
        display: none;
    }

    .show-login-btn {
        display: block;
    }

    .user-name {
        font-size: 20px;
    }

    .cleanprint-logo {
        width: 150px;
    }

    .right-side-ac {
        gap: 0px;
    }

}




@media (max-width: 768px) {
    .container {
        padding: 0;

    }

    /* Responsive profile header styles */
    .profile-header a {
        padding: 10px 14px;
        font-size: 13px;
    }

    .profile-header a:hover {
        transform: translateX(2px);
    }

    .search-container {
        display: flex;
        position: static;
        width: 100%;
        box-shadow: none;
        opacity: 1;
        transform: none;
        pointer-events: auto;
        background: transparent;

    }


    .search-wrapper {
        justify-content: center;
    }

    .ac-btn {
        padding: 10px 0px;
        width: 50px;
        max-width: 50px;
        min-width: 50px;
    }

    .search-container input {
        width: 100%;
    }

    #searchBox,
    #searchBoxMobile {
        width: 100%;
        font-size: 15px;
    }

    #suggestions,
    #suggestionsMobile {
        width: calc(100vw - 40px);
        max-width: 250px;
        left: 150px;
        transform: translateX(-50%);
    }
}

@media (max-width: 320px) {
    .user-name {
        font-size: 20px;
        font-weight: 500;
    }


}

@media (max-width: 768px) {

    header {
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .header-2 {
        display: none;
        flex-direction: column;
        background-color: #fff;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        z-index: 999;
        padding: 10px 0;
        max-height: 50vh;
        /* padding-bottom: 45vh; */
        border-bottom: 2px solid #0ab3e4;
    }

    .header-2.show {
        display: flex;
        animation: slideDown 0.3s ease-in-out;
    }

    .header-2 a {
        padding: 5px 10px;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #ddd;
    }

    .hamburger-icon {
        display: block;
        font-size: 24px;
        color: #000;
        cursor: pointer;
        padding: 10px;
    }



    .test {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

@media (min-width: 769px) {
    .hamburger-icon {
        display: none;
    }
}

/* Hide mobile profile icon on desktop */
@media (min-width: 874px) {
    .profile-mobile {
        display: none !important;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Hamburger Menu Styles */
.mobile-hamburger-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-hamburger-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-hamburger-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 70%;
    max-width: 320px;
    height: 100%;
    background: #ffffff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.mobile-hamburger-menu.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: #0ab3e4;
    color: white;
    border-bottom: 1px solid #e5e7eb;
}

.mobile-menu-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.mobile-auth-icons {
    display: flex;
    gap: 8px;
    align-items: center;
}

.mobile-auth-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 16px;
}

.mobile-auth-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
    color: white;
}

.mobile-auth-btn:active {
    transform: scale(0.95);
}

.mobile-menu-close {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-content {
    flex: 1;
    overflow-y: auto;
    position: relative;
}

.mobile-menu-level {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100%;
    background: white;
    transition: transform 0.3s ease;
}

.mobile-menu-back {
    padding: 0px;
    border-bottom: 2px solid #e5e7eb;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.mobile-back-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: none;
    border: none;
    color: #0ab3e4;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    padding: 10px 15px;
    width: 100%;
    text-align: left;
    transition: all 0.2s ease;
    border-radius: 6px;
}

.mobile-back-btn:hover {
    color: #0891b2;
    background: rgba(10, 179, 228, 0.1);
}

.mobile-back-btn:active {
    background: rgba(10, 179, 228, 0.2);
    transform: translateX(2px);
}

.mobile-menu-title {
    padding: 10px;
    border-bottom: 1.5px solid #0ab3e4;
    background: #f8fafc;
}

.mobile-menu-title h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #0ab3e4;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-menu-title h4 i {
    font-size: 14px;
    opacity: 0.8;
}

.mobile-menu-item {
    border-bottom: 1px solid #f3f4f6;
}

.mobile-menu-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: none;
    border: none;
    text-align: left;
    font-size: 16px;
    color: #374151;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mobile-menu-btn:hover {
    background: #f8fafc;
    color: #0ab3e4;
}

.mobile-menu-btn:active {
    background: #f1f5f9;
}

.mobile-menu-link {
    display: block;
    padding: 16px 20px;
    color: #374151;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.2s ease;
}

.mobile-menu-link:hover {
    background: #f8fafc;
    color: #0ab3e4;
    padding-left: 30px;
}

.mobile-menu-section {
    padding: 10px;
    background: #f8fafc;
    border-bottom: 1.5px solid #0ab3e4;
}

.mobile-menu-section h5 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #0ab3e4;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-menu-empty {
    padding: 40px 20px;
    text-align: center;
    color: #9ca3af;
    font-style: italic;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .mobile-hamburger-menu {
        width: 70%;
        max-width: 280px;
    }
}

/* Hide hamburger menu on desktop */
@media (min-width: 769px) {
    .mobile-hamburger-overlay {
        display: none;
    }
}
/* See More Button Styles - Enhanced Design */
.see-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    /* color: #0ab3e4; */
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 20px;
    background: transparent;
    /* border: 1px solid rgba(10, 179, 228, 0.2); */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: none;
}

.see-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.see-more-btn:hover::before {
    left: 100%;
}

.see-more-btn:hover {
    color: white;
    background: linear-gradient(135deg, #0ab3e4 0%, #0891b2 100%);
    border-color: #0ab3e4;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(10, 179, 228, 0.3);
}

.see-more-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(10, 179, 228, 0.2);
}

.see-more-btn::after {
    content: '→';
    font-size: 12px;
    transition: transform 0.3s ease;
}

.see-more-btn:hover::after {
    transform: translateX(2px);
}

.mobile-see-more-btn {
    display: block;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 600;
    color: #0ab3e4;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    margin: 12px 20px;
    width: calc(100% - 40px);
    text-decoration: none;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.mobile-see-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.mobile-see-more-btn:hover::before {
    left: 100%;
}

.mobile-see-more-btn:hover {
    background: linear-gradient(135deg, #0ab3e4 0%, #0891b2 100%);
    color: white;
    border-color: #0ab3e4;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(10, 179, 228, 0.3);
}

.mobile-see-more-btn:active {
    transform: translateY(0);
}

.mobile-dropdown-see-more {
    background: none;
    border: none;
    color: #0ab3e4;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    padding: 10px 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    text-align: left;
    border-radius: 8px;
    position: relative;
}

.mobile-dropdown-see-more:hover {
    color: white;
    background: linear-gradient(135deg, #0ab3e4 0%, #0891b2 100%);
    padding-left: 30px;
    box-shadow: 0 2px 8px rgba(10, 179, 228, 0.2);
}

.see-more-item {
    margin: 6px 0 !important;
}

.mobile-see-more-item {
    border-bottom: none !important;
}

.hidden-product, .mobile-hidden-product, .mobile-dropdown-hidden {
    display: none;
}