* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    .header {
        background-color: #f2f8e6;
        color: white;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 10px;
    }
    
    .left-section {
        display: flex;
        align-items: center;
        gap: 15px;
    }
    
    .right-section {
        display: flex;
        align-items: center;
        gap: 15px;
    }
    
    .logo {
        font-size: 16px;
        font-weight: bold;
        color: #ff5733;
    }
    
    .nav-links {
        display: flex;
        gap: 10px;
    }
    
    .nav-links a, .menu-icons a {
        color: black;
        text-decoration: none;
        font-size: 16px;
        font-weight: 700;
    }
    
    .menu-icons {
        display: flex;
        gap: 16px;
    }
    
    .mobile-menu {
        display: none;
        cursor: pointer;
        font-size: 18px;
        color: black;
    }
    
    .mobile-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 70%;
        height: 100%;
        background: white;
        box-shadow: 2px 0px 5px rgba(0, 0, 0, 0.2);
        padding: 20px;
        z-index: 1000;
        overflow-y: auto;
    }
    
    .mobile-nav a {
        display: block;
        padding: 10px 0;
        text-decoration: none;
        color: black;
        font-size: 16px;
    }
    
    .close-menu {
        font-size: 18px;
        cursor: pointer;
        text-align: right;
        display: block;
    }
    
    @media screen and (max-width: 768px) {
        .nav-links, .menu-icons {
            display: none;
        }
        
        .mobile-menu {
            display: block;
        }
    }

    .cart-container {
        position: relative;
        display: inline-block;
        font-size: 16px;
        color: white;
    }

    .cart-count {
        position: absolute;
        top: -6px;
        right: -14px;
        color: black;
        font-size: 12px;
        font-weight: bold;
        border-radius: 50%;
        padding: 2px 6px;
        min-width: 18px;
        text-align: center;
    }

    .cart-count-mobile {
        position: absolute;
        top: 5px;
        color: black;
        font-size: 12px;
        font-weight: bold;
        border-radius: 50%;
        padding: 2px 6px;
        min-width: 18px;
        text-align: center;
    }

    /* Floating Menu Container */
    .group-floating-menu {
        position: fixed;
        left: 20px;
        bottom: 32px;
        display: flex;
/*        flex-direction: column;*/
        gap: 4px;
        z-index: 1000;
    }

    /* Each Group Box */
    .group-box {
        background: rgba(255, 255, 255, 0.2);
        border-radius: 12px;
        padding: 3px 8px;
        backdrop-filter: blur(10px);
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease-in-out;
    }
    .group-floating-menu .active{
        background: #fa6544;
    }

    /* Links inside */
    .group-box a {
        text-decoration: none;
        font-size: 12px;
        color: #000;
        display: flex;
        align-items: center;
        gap: 8px;
        text-align: center;
    }
    .group-floating-menu .active a {
        text-decoration: none;
        font-size: 12px;
        color: #fff;
        display: flex;
        align-items: center;
        gap: 8px;
        text-align: center;
    }

    /* Hover Effect */
    .group-box:hover {
        background: rgba(255, 255, 255, 0.4);
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    }