        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            max-width: 480px;
            margin: auto;
            background-color: white;
        }

        header {
            background-color: #ff5722;
            color: white;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px;
        }

        header .menu, header .chart {
            cursor: pointer;
        }

        header .logo-text {
            display: flex;
            align-items: center;
        }

        header .logo-text img {
            width: 24px;
            height: 24px;
            margin-right: 10px;
            
        }

        header .chart {
            position: relative;
        }

        header .chart .notif {
            background-color: #ffeb3b;
            color: #f44336;
            border-radius: 50%;
            padding: 2px 5px;
            font-size: 10px;
            position: absolute;
            top: -5px;
            right: -5px;
        }

        .search-bar {
            position: sticky;
            top: 0;
            background-color: white;
            z-index: 1000;
            padding: 10px;
            display: flex;
        }

        .search-bar input {
            width: 100%;
            padding: 8px;
            font-size: 14px;
            border: 1px solid #ccc;
            border-radius: 5px;
        }

        .flash-sale {
            display: flex;
            justify-content: space-between;
            padding: 10px;
            background-color: white;
            align-items: center;
            font-size: 18px;
            font-weight: bold;
        }

        .flash-sale .countdown {
            font-size: 18px;
            color: #ff5722;
        }

        .product-category {
            margin: 10px;
        }

        .products-container {
            display: flex;
            overflow-x: scroll;
            gap: 10px;
            padding: 10px 0;
        }

        .product-item {
            background-color: #f6f6f6;
            padding: 10px;
            border-radius: 5px;
            flex: 0 0 140px;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            width: 120px;
        }

        .product-item img {
            width: 100%;
            height: auto;
            aspect-ratio: 1 / 1;
            object-fit: cover;
            margin-bottom: 10px;
            display: block;
        }

        .product-info {
            width: 100%;
            
        }

        .product-title {
            font-size: 12px;
            
            overflow: hidden;
            text-overflow: ellipsis;
            margin-bottom: 5px;
        }

        .progress-bar {
            background-color: #e0e0e0;
            border-radius: 5px;
            margin: 5px 0;
        }

        .progress-bar .progress {
            background-color: #ff5722;
            height: 8px;
            border-radius: 5px;
        }

        .stock-info {
            font-size: 10px;
            color: gray;
        }

        .product-price-icon {
            display: flex;
            align-items: center;
            margin-top: 5px;
        }

        .flash-icon {
            color: #ff5722;
            margin-right: 5px;
            font-size: 18px;
        }

        .price {
            font-size: 14px;
            font-weight: bold;
            color: #000;
        }

        .all-products {
            margin: 10px;
            margin-bottom: 80px;
        }

        .all-products h2 {
            font-size: 18px;
            margin-bottom: 10px;
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
        }

        .product-card {
            background-color: #f6f6f6;
            border-radius: 5px;
            padding: 10px;
            display: flex;
            flex-direction: column;
            cursor: pointer;
        }

        .product-card .image-wrapper {
            position: relative;
            width: 100%;
            height: auto;
        }

        .product-card img {
            width: 100%;
            height: auto;
            object-fit: cover;
            aspect-ratio: 1/1;
        }

        .discount-tag {
            position: absolute;
            bottom: 10px;
            left: 0px;
            background-color: #ff5722;
            color: white;
            font-size: 10px;
            padding: 2px 5px;
            border-radius: 3px;
            display: flex;
            align-items: center;
        }

        .free-shipping {
            width: 18px;
            height: 18px;
        }

        /* Bottom Navigation */
        .bottom-nav {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: white;
            box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
            display: flex;
            justify-content: space-around;
            align-items: center;
            height: 48px;
            max-width: 480px;
            margin: auto;
        }

        .bottom-nav-item {
            text-align: center;
            font-size: 12px;
            color: #757575;
        }

        .bottom-nav-item .material-icons {
            font-size: 24px;
        }

        .bottom-nav-item.active .material-icons,
        .bottom-nav-item.active span {
            color: #ff5722;
        }

        .bottom-nav-item .material-icons.add-circle {
            font-size: 36px;
            color: #ff5722;
        }

.pagination {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
}

.pagination a {
    text-decoration: none;
    padding: 10px 15px;
    background-color: #007BFF; /* Warna tombol */
    color: white;
    border-radius: 5px;
}

.pagination a:hover {
    background-color: #0056b3; /* Warna saat hover */
}

.pagination .prev, .pagination .next {
    font-weight: bold;
}

        /* Bottom Sheet styles */
        .bottom-sheet {
            position: fixed;
            bottom: -100%;
            left: 0;
            right: 0;
            background-color: white;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
            border-radius: 20px 20px 0 0;
            padding: 20px;
            transition: bottom 0.3s ease;
            max-width: 480px;
            margin: auto;
        }

        .bottom-sheet.open {
            bottom: 0;
        }

        .close-btn {
            display: flex;
            align-items: center;
            cursor: pointer;
            margin-bottom: 20px;
        }

        .close-btn .material-icons {
            margin-right: 10px;
        }

        .button-group {
            display: flex;
            justify-content: space-between;
            margin-bottom: 20px;
        }

        .button-group .button {
            padding: 10px 20px;
            border-radius: 5px;
            color: white;
        }

        .button-masuk {
            background-color: #ff5722;
        }

        .button-daftar {
            background-color: #4caf50;
        }

        .menu-item {
            display: flex;
            align-items: center;
            margin: 10px 0;
        }

        .menu-item .material-icons {
            margin-right: 10px;
        }
        
.price-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-header {
    padding: 10px 0;
    font-size: 14px; /* Sesuaikan ukuran font */
}

.total-sales {
    font-weight: bold; /* Menekankan total penjualan */
}
