        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Sofia Sans', sans-serif;
            background: rgb(14, 14, 14);
    
        }

        /* Top Navbar */
        .top-navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            padding: 15px 20px;
        }

        .navbar-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1400px;
            margin: 0 auto;
        }

/*         .cart-icon {
            font-size: 24px;
            color: #000;
            position: relative;
            text-decoration: none;
        } */

/*         .cart-counter {
            position: absolute;
            top: -8px;
            right: -8px;
            background: red;
            color: white;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            font-weight: 600;
        } */
/* Base cart icon styling */
.cart-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #000;
    transition: transform 0.3s ease;
      text-decoration: none;
       font-size: 24px;
}

/* Cart counter bubble */
.cart-icon .cart-counter {
    position: absolute;
    top: -6px;
    right: -10px;
          width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
    background: red;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 50%;
}

/* ✨ Animation effect class */
.cart-animate {
    animation: cartBounce 0.6s ease;
}

/* Bounce animation keyframes */
@keyframes cartBounce {
    0%   { transform: scale(1); }
    25%  { transform: scale(1.3); }
    50%  { transform: scale(0.9); }
    75%  { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Optional glow effect for polish */
.cart-icon.glow i {
    text-shadow: 0 0 8px #000;
}

        .logo-section {
            text-align: center;
        }

        .logo-text {
            font-family: 'Poller One', sans-serif;
            font-size: 20px;
            font-weight: 700;
            color: #000;
            letter-spacing: 1px;
        }

        .logo-tagline {
            font-size: 10px;
            color: #666;
        
        }

        .menu-icon {
            font-size: 24px;
            color: #000;
            cursor: pointer;
        }

        .user-initial {
            width: 35px;
            height: 35px;
            background: #000;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 16px;
            margin-right: 15px;
        }

        .right-section {
            display: flex;
            align-items: center;
        }

