* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', sans-serif;
        }

        body {
            background-color: #f5f5f5;
            color: #333;
        }

        header {
            background-color: #FFD700;
            padding: 10px 15px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .location {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .search-bar {
            display: flex;
            align-items: center;
            background: #fff;
            border-radius: 20px;
            overflow: hidden;
            padding: 5px 10px;
        }

        .search-bar input {
            border: none;
            outline: none;
            padding: 5px;
            width: 200px;
        }

        .search-bar button {
            background: none;
            border: none;
            cursor: pointer;
        }

        .icons {
            display: flex;
            gap: 15px;
        }

        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 15px;
            padding: 15px;
        }

        .card {
            background: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        .card img {
            width: 100%;
            height: 160px;
            object-fit: cover;
        }

        .card-info {
            padding: 10px;
        }

        .card-info h3 {
            font-size: 14px;
            margin-bottom: 5px;
        }

        .tag {
            font-size: 12px;
            color: #FF4444;
            background: #FFEEEE;
            display: inline-block;
            padding: 2px 5px;
            border-radius: 5px;
            margin-right: 5px;
        }

        .price {
            color: #FF4444;
            font-weight: bold;
            margin-top: 5px;
        }

        .original-price {
            color: #999;
            text-decoration: line-through;
            font-size: 12px;
        }

        .footer-nav {
            position: fixed;
            bottom: 0;
            width: 100%;
            display: flex;
            justify-content: space-around;
            background: #fff;
            padding: 10px;
            box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
        }

        .footer-nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 12px;
        }
        
        .products {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            padding: 15px;
        }

        .product-item {
            background-color: #fff;
            padding: 10px;
            border-radius: 5px;
        }

        .product-item img {
            width: 100%;
            height: auto;
        }

        .product-info {
            padding: 10px 0;
            font-size: 14px;
        }

        .price {
            color: #ff4200;
            font-weight: bold;
        }
