 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Roboto', Arial, sans-serif;
            background-color: #f1f3f6;
        }

        /* Desktop Header */
        .desktop-header {
            background: linear-gradient(135deg, #0079c6 0%, #06446c 100%);

            color: white;
            padding: 8px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .header-container {
            max-width: 1248px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            padding: 0 16px;
            gap: 20px;
        }

      .logo {
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}

.logo-circle {
  background: #fff;
  border-radius: 50%;
  padding: 5px;           /* space inside circle */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;      /* gap between logo and text */
  width: 45px;
  height: 45px;
}

.logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.logo-subtitle {
  font-size: 12px;
  font-weight: normal;
  margin-left: 5px;
  opacity: 0.8;
}



        .search-container {
            flex: 1;
            max-width: 500px;
            position: relative;
        }

        .search-bar {
            width: 100%;
            padding: 12px 50px 12px 16px;
            border: none;
            border-radius: 2px;
            font-size: 14px;
            outline: none;
            background: white;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .search-bar::placeholder {
            color: #878787;
        }

        .search-icon {
            position: absolute;
            right: 12px;
            top: 50%;
            transform: translateY(-50%);
            background: linear-gradient(135deg, #0079c6 0%, #06446c 100%);
            color: white;
            border: none;
            padding: 8px;
            cursor: pointer;
            border-radius: 2px;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 32px;
        }

        .header-action {
            display: flex;
            align-items: center;
            gap: 8px;
            color: white;
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: opacity 0.2s;
        }

        .header-action:hover {
            opacity: 0.8;
        }

        .dropdown-container {
            position: relative;
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            min-width: 240px;
            border-radius: 4px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            z-index: 1000;
            margin-top: 8px;
        }

        .dropdown-container:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-header {
            padding: 16px 20px 12px;
            border-bottom: 1px solid #f0f0f0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .dropdown-header span {
            color: #878787;
            font-size: 14px;
        }

        .signup-btn {
            background: #2874f0;
            color: white;
            padding: 6px 16px;
            border-radius: 2px;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
        }

        .dropdown-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 20px;
            color: #212121;
            text-decoration: none;
            font-size: 14px;
            font-weight: 400;
            transition: background-color 0.2s;
        }

        .dropdown-item:hover {
            background-color: #f8f9fa;
        }

        .dropdown-item svg {
            width: 20px;
            height: 20px;
            color: #878787;
        }

        .cart-container {
            position: relative;
        }

        .cart-badge {
            background: #ff6161;
            color: white;
            border-radius: 50%;
            width: 18px;
            height: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
            font-weight: bold;
            position: absolute;
            top: -8px;
            right: -8px;
        }

        /* Mobile Header */
        .mobile-header {
            display: none;
        }

        .mobile-search-bar {
            background: linear-gradient(135deg, #0079c6 0%, #06446c 100%);
            padding: 12px 16px;
            position: relative;
        }

        .mobile-search-container {
            position: relative;
            width: 100%;
        }

        .mobile-search-input {
            width: 100%;
            padding: 12px 50px 12px 16px;
            border: none;
            border-radius: 8px;
            font-size: 14px;
            outline: none;
            background: white;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        }

        .mobile-search-input::placeholder {
            color: #878787;
        }

        .mobile-search-icon {
            position: absolute;
            right: 16px;
            top: 50%;
            transform: translateY(-50%);
            cursor: pointer;
        }

        .mobile-qr-icon {
            position: absolute;
            right: 16px;
            top: 16px;
            
            padding: 8px;
            border-radius: 6px;
            cursor: pointer;
        }

        .mobile-nav {
            background: white;
            display: flex;
            justify-content: space-around;
            align-items: center;
            padding: 12px 0;
            border-top: 1px solid #e0e0e0;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 1000;
        }

        .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            color: #06446c;
            font-size: 10px;
            font-weight: 500;
            gap: 4px;
            position: relative;
        }

        .nav-item.active {
            color: #0079c6;
        }

        .nav-badge {
            background: #ff6161;
            color: white;
            border-radius: 50%;
            width: 16px;
            height: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            font-weight: bold;
            position: absolute;
            top: -6px;
            right: -6px;
        }

        .category-tabs {
            background: white;
            padding: 12px 16px;
            overflow-x: auto;
            white-space: nowrap;
            border-bottom: 1px solid #e0e0e0;
        }

        .category-tab {
            display: inline-block;
            padding: 8px 16px;
            margin-right: 16px;
            background: #f8f9fa;
            border-radius: 16px;
            color: #666;
            text-decoration: none;
            font-size: 12px;
            font-weight: 500;
        }

        .category-tab.active {
            background: linear-gradient(135deg, #0079c6 0%, #06446c 100%);
            color: white;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .desktop-header {
                display: none;
            }

            .mobile-header {
                display: block;
            }

            body {
                padding-bottom: 70px;
                /* Add padding to prevent content from being hidden behind fixed nav */
            }
        }

        @media (min-width: 769px) {
            .mobile-header {
                display: none !important;
            }
        }

        /* Hide scrollbar for category tabs */
        .category-tabs::-webkit-scrollbar {
            display: none;
        }

        .category-tabs {
            -ms-overflow-style: none;
            scrollbar-width: none;
        }