 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Segoe UI', sans-serif;
      background: #f9f9f9;
      color: #333;
      padding-bottom: 70px;
      overflow-x: hidden;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    .app-container {
      max-width: 500px;
      margin: 0 auto;
      background: #f9f9f9;
      position: relative;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
      padding-bottom: 20px;
      /* optional */
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    header {
      position: relative;
      background-color: orange;
      padding: 14px 16px 40px;
      border-bottom-left-radius: 20px;
      border-bottom-right-radius: 20px;
    }

    .header-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .header-icons {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .icon-btn {
      width: 36px;
      height: 36px;
      background: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
    }

    .icon-btn img {
      width: 18px;
      height: 18px;
      object-fit: contain;
    }

    .floating-logo {
      position: absolute;
      left: 20%;
      bottom: -34px;
      transform: translateX(-50%);
      width: 36%;
      height: 100px;
      border-radius: 50%;
      padding: 5px;
      z-index: 8;
    }

    .banner {
      background: orangered;
      padding: 10px 20px;
      color: #fff;
      text-align: center;
      font-weight: bold;
      font-size: 14px;
      border-radius: 8px;
      margin: 30px 26px 10px 26px;
    }

    .carousel {
      width: 100%;
      overflow: hidden;
      border-radius: 20px;
    }

    .carousel-wrapper {
      padding: 20px;
    }

    .carousel img {
      width: 100%;
      display: block;
      border-radius: 10px;
    }

    .section-title {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 16px;
      font-weight: bold;
      font-size: 16px;
    }

    .horizontal-scroll {
      display: flex;
      overflow-x: auto;
      padding: 0 16px 10px;
      gap: 20px;
    }

    .horizontal-scroll::-webkit-scrollbar {
      display: none;
    }

    .circle-item {
      flex: 0 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      font-size: 13px;
      background: #fff;
      padding: 10px;
      border-radius: 8px;
      box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    }

    .circle-item img {
      width: 60px;
      height: 60px;
      margin-bottom: 5px;
      object-fit: cover;
      background: #fffbfbff;
    }

    .product-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
      padding: 0 12px 20px;
    }

    .product-grid a {
      display: block;
    }

    .product-card {
      background: #fff;
      padding: 12px;
      border-radius: 8px;
      box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
      font-size: 14px;
    }

    .product-card img {
      width: 100%;
      height: 80px;
      background: #eee;
      border-radius: 8px;
      object-fit: cover;
      margin-bottom: 8px;
    }

    .price-row {
      display: flex;
      align-items: center;
      gap: 6px;
      margin: 4px 0;
    }

    .old-price {
      text-decoration: line-through;
      font-size: 13px;
      color: #888;
    }

    .discount {
      background: red;
      color: white;
      font-size: 10px;
      padding: 2px 6px;
      border-radius: 6px;
      margin-left: 6px;
    }

    .rating-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 6px;
    }

    .stars {
      font-size: 14px;
      color: gold;
      letter-spacing: 1px;
    }

    .rating-count {
      font-size: 13px;
      color: #555;
      margin-left: 4px;
    }

    .fav-icon i {
      font-size: 14px;
      color: #888;
      cursor: pointer;
    }

    .fav-icon i:hover {
      color: red;
    }

    .special-list {
      padding: 0 16px 20px;
    }

    .special-item {
      background: #fff;
      padding: 10px;
      display: flex;
      gap: 15px;
      margin-bottom: 10px;
      border-radius: 8px;
      align-items: center;
    }

    .special-item img {
      width: 90px;
      height: 90px;
      border-radius: 8px;
      object-fit: cover;
      flex-shrink: 0;
      background: #eee;
    }

    .special-item>div {
      flex: 1;
    }

    .special-item>div>div:first-child {
      font-weight: bold;
      margin-bottom: 4px;
    }

    .special-item>div>div:nth-child(2) {
      font-size: 12px;
      color: #888;
      margin-bottom: 8px;
    }

    .whatsapp-btn {
      position: fixed;
      right: 20px;
      bottom: 90px;
      background: #25D366;
      border-radius: 50%;
      width: 50px;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
      z-index: 10;
    }

    .whatsapp-btn img {
      width: 28px;
    }

    .bottom-nav {
      position: fixed;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      background: white;
      display: flex;
      justify-content: space-around;
      align-items: center;
      padding: 10px 0;
      border-top-left-radius: 24px;
      border-top-right-radius: 24px;
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
      width: 100%;
      max-width: 500px;
    }

    .bottom-nav a {
      color: #444;
      text-align: center;
      font-size: 12px;
      flex: 1;
      padding: 0 4px;
    }

    .bottom-nav a.active {
      color: #ff7f00;
      font-weight: bold;
    }

    .bottom-nav i {
      font-size: 16px;
      display: block;
      margin-bottom: 2px;
    }



.product-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 10px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
  margin: 0 16px 20px;
}

.product-row img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  margin-right: 12px;
}

.product-info {
  flex: 1;
}

.product-name {
  font-weight: bold;
  margin-bottom: 2px;
}

.product-pkt {
  font-size: 12px;
  color: #777;
  margin-bottom: 4px;
}

.price-row {
  font-size: 14px;
}

.old-price {
  text-decoration: line-through;
  color: #888;
  margin-right: 6px;
}

.new-price {
  font-weight: bold;
  color: #d32f2f;
}

.qty-box {
  display: flex;
  align-items: center;
  gap: 6px;
}

.qty-btn {
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 6px;
  background-color: #ff9800; /* orange */
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  margin: 10px;
}

.qty-btn:hover {
  background-color: #e68900;
}


.qty-box span {
  min-width: 20px;
  text-align: center;
  font-weight: bold;
}




    @media (max-width: 500px) {
      .floating-logo {
        width: 32%;
        height: auto;
        bottom: -52px;
      }

      .product-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .carousel-wrapper {
        padding: 10px;
      }

      .circle-item img {
        width: 50px;
        height: 50px;
      }

      .special-item {
        flex-direction: column;
        align-items: flex-start;
      }

      .special-item img {
        width: 100%;
        height: auto;
        border-radius: 8px;
        margin-bottom: 10px;
      }

      .special-item>div {
        width: 100%;
      }

      .header-content {
        flex-direction: row;
        justify-content: flex-end;
      }

      .bottom-nav a {
        font-size: 10px;
      }

      .bottom-nav i {
        font-size: 14px;
      }
    }