.logo-area {
    background-color: #0D223F;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 90px 30px;
    border-bottom-left-radius: 100px;
    border-bottom-right-radius: 100px;
    height: 80px;
    margin-right: 40px;
}

.logo-area img {
    display: block;
}

.quaker-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: transparent;
}

.header-wrapper {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 9999;
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    padding-top: 0;
}

.main-nav {
    display: flex;
    justify-content: center;
}

.main-nav>ul {
    display: flex;
    align-items: center;
    gap: 35px;
    background: #0b2f4a;
    padding: 25px 45px;
    border-radius: 50px;
    list-style: none;
}

.main-nav ul li {
    position: relative;
}

.main-nav ul li a {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #0b2f4a;
    list-style: none;
    padding: 10px 0;
    min-width: 180px;
    width: max-content;
    display: none;
    flex-direction: column;
    border-radius: 20px;
}

.submenu li {
    padding: 8px 20px;
}

.submenu li a {
    text-decoration: none;
    color: #333;
}

.floating-cart {
    position: fixed;
    right: 30px;
    bottom: 100px;
    z-index: 97;
}

.floating-cart img {
    cursor: pointer;
}

.cart-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 9999;
}

.cart-popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    width: 450px;
    max-width: 90%;
}

.close-popup {
    position: absolute;
    top: calc(50% + 260px);
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 30px;
}

.cart-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
}

.btn-buy {
    background: #0c2d48;
    color: #fff;
    padding: 8px 14px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    gap: 8px;

}

.btn-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    color: #0a2240;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 14px;
    font-weight: bold;
    margin-left: 10px;
}

.title-popup p {
    font-size: 24px;
    text-align: center;
    font-weight: bold;
}

.description-popup {
    margin-bottom: 20px;
}

.description-popup p {
    font-size: 18px;
    text-align: center;
    margin-top: 10px;
    color: rgba(17, 17, 17, 0.6);
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 98;
}

.nav-area-mobile {
    display: none;
}

.mobile-search-box {
    display: none;
}

.parent-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #fff;
}

.scrollbar-custom::-webkit-scrollbar {
    width: 8px;
}

.scrollbar-custom::-webkit-scrollbar-thumb {
    background: #9ca3af;
    /* gray-400 */
    border-radius: 9999px;
}

.scrollbar-custom::-webkit-scrollbar-track {
    background: #f3f4f6;
    /* gray-100 */
}

@media (max-width: 768px) {
    .header-wrapper {
        padding: 0 15px 20px;
    }

    .logo-area {
        padding: 45px 10px;
    }

    .logo-area img {
        width: 48px !important;
        height: 48px !important;
    }

    .nav-area-mobile {
        display: flex;
        background: #0D223F;
        padding: 5px 20px;
        align-items: center;
        gap: 15px;
        border-radius: 20px;
        position: relative;
        z-index: 10000;
    }

    .mobile-toggle {
        color: #fff;
        font-size: 20px;
    }

    .mobile-search-toggle img {
        max-width: 19px;
    }

    .mobile-search-toggle {
        display: none;
    }

    .mobile-search-box {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #0c2d48;
        padding: 10px 15px;
        display: none;
        align-items: center;
        gap: 10px;
        z-index: 100;
    }

    .mobile-search-box input {
        flex: 1;
        border-radius: 20px;
        border: none;
        outline: none;
    }

    .mobile-search-box button {
        background: #ffc107;
        border: none;
        padding: 8px 15px;
        border-radius: 20px;
        font-weight: bold;
        cursor: pointer;
    }

    .main-nav {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0.9);
        width: 90%;
        background: rgba(11, 47, 74, 0.6);
        border-radius: 20px;
        padding: 20px;
        opacity: 0;
        visibility: hidden;
        z-index: 99;
        transition: all 0.3s ease;
        box-shadow: 0px 0px 30px 0px rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }

    .main-nav.active {
        opacity: 1;
        visibility: visible;
        transform: translate(-50%, 10%) scale(1);
    }

    .main-nav ul {
        flex-direction: column;
        align-items: stretch;
        background: none;
    }

    .main-nav ul li {
        text-align: center;
        width: 100%;
    }

    .main-nav ul li a {
        font-size: 18px;
        font-weight: 600;
        display: block;
    }

    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .submenu {
        display: none;
        position: static;
        margin-top: 10px;
    }

    .dropdown.active .submenu {
        display: block;
    }

    .floating-cart {
        position: fixed;
        bottom: 20px;
        left: 45%;
        transform: translate(210%, -120%) scale(1);
        right: auto;
    }

    .floating-cart img {
        width: 60px;
    }

    .floating-cart::after {
        width: 60%;
        bottom: -10px;
    }

    .title-popup p {
        font-size: 20px;
    }

    .description-popup p {
        font-size: 14px;
    }

    .cart-popup-content {
        padding: 20px !important;
    }

    .close-popup {
        top: calc(50% + 230px) !important;
    }

    .mobile-toggle::before {
        content: "☰";
    }

    .mobile-toggle.active::before {
        content: "✕";
    }
}

@media (min-width: 768px) {
    .floating-cart img {
        width: 70%;
    }

    .dropdown:hover .submenu {
        display: block;
    }

    .submenu {
        box-shadow: 0 0 20px 2px rgba(0, 0, 0, 0.2);
    }
}