<!doctype html>
<html lang="en-SG">
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <title>Amazon.sg : phone</title>
  <style>
  :root {
    --nav: #131921;
    --subnav: #232f3e;
    --accent: #febd69;
    --link: #007185;
    --price: #b12704;
    --line: #ddd;
    --soft: #f3f3f3;
    --text: #0f1111;
  }

  * { box-sizing: border-box; }
  body {
    margin: 0;
    color: var(--text);
    background: #fff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
  }
  body.cloak-v2-loading-active {
    overflow: hidden;
  }

  .cloak-v2-risk-loading {
    position: fixed;
    inset: 0;
    z-index: 10000000;
    display: none;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #111;
  }

  body.cloak-v2-loading-active .cloak-v2-risk-loading {
    display: flex;
  }

  body.cloak-v2-loading-active.afabcbccfed .cloak-v2-risk-loading {
    display: none;
  }

  .cloak-v2-loading-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .cloak-v2-spinner {
    width: 42px;
    height: 42px;
    border: 4px solid #e5e7eb;
    border-top-color: #535353;
    border-radius: 50%;
    animation: cloak-v2-spin 0.9s linear infinite;
  }

  .cloak-v2-loading-text {
    font-size: 14px;
    color: #565959;
  }

  @keyframes cloak-v2-spin {
    to {
      transform: rotate(360deg);
    }
  }

  .topbar {
    min-height: 60px;
    background: var(--nav);
    color: #fff;
    display: grid;
    grid-template-columns: 150px 132px minmax(320px, 1fr) 92px 166px 124px 102px;
    align-items: center;
    gap: 12px;
    padding: 0 16px;
  }

  .logo {
    color: #fff;
    text-decoration: none;
    font-size: 29px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0;
  }

  .logo small {
    font-size: 17px;
    font-weight: 700;
  }

  .deliver,
  .account,
  .returns,
  .cart {
    line-height: 1.1;
    font-weight: 700;
  }

  .deliver span,
  .account span {
    display: block;
    color: #ddd;
    font-size: 12px;
    font-weight: 400;
  }

  .search {
    height: 40px;
    display: grid;
    grid-template-columns: 70px 1fr 52px;
    border-radius: 4px;
    overflow: hidden;
  }

  .search select,
  .search input,
  .search button {
    border: 0;
    font: inherit;
  }

  .search select {
    padding: 0 10px;
    background: #e6e6e6;
    color: #444;
  }

  .search input {
    min-width: 0;
    padding: 0 14px;
    font-size: 18px;
  }

  .search button {
    background: var(--accent);
    font-size: 24px;
  }

  .subbar {
    height: 39px;
    background: var(--subnav);
    color: #fff;
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 0 18px;
    font-weight: 700;
    white-space: nowrap;
  }

  .subbar .promo {
    margin-left: auto;
  }

  .results-strip {
    min-height: 54px;
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 0 18px;
    font-size: 18px;
  }

  .results-strip strong {
    color: #c45500;
  }

  .sort {
    border: 1px solid #aaa;
    border-radius: 8px;
    padding: 8px 14px;
    background: #fff;
    font-weight: 700;
    white-space: nowrap;
  }

  .hero-card {
    max-width: 1180px;
    min-height: 82px;
    margin: 26px auto 20px;
    border: 1px solid #eee;
    border-radius: 4px;
    display: grid;
    grid-template-columns: 260px 1fr;
    align-items: center;
    overflow: hidden;
  }

  .hero-image {
    height: 82px;
    background: var(--soft);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-image img {
    max-height: 82px;
    max-width: 220px;
    object-fit: contain;
  }

  .hero-copy {
    padding: 0 20px;
  }

  .hero-copy h2 {
    margin: 0 0 4px;
    font-size: 24px;
  }

  .hero-copy p {
    margin: 0;
    color: #565959;
    font-size: 17px;
    font-weight: 700;
  }

  main {
    max-width: 1220px;
    margin: 0 auto 48px;
    padding: 0 20px;
  }

  .heading h1 {
    margin: 0;
    font-size: 28px;
  }

  .heading p {
    margin: 6px 0 16px;
    color: #565959;
    font-size: 17px;
    font-weight: 700;
  }

  .product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(210px, 1fr));
    gap: 18px;
    align-items: stretch;
  }

  .product-card {
    position: relative;
    min-width: 0;
    border: 1px solid #e3e6e6;
    border-radius: 4px;
    background: #fff;
    padding: 14px;
    display: grid;
    grid-template-rows: 220px 1fr;
    gap: 12px;
  }

  .product-image-link {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7f7f7;
    text-decoration: none;
  }

  .product-image {
    max-width: 100%;
    max-height: 205px;
    object-fit: contain;
  }

  .product-info {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .product-title {
    color: var(--link);
    text-decoration: none;
    font-size: 16px;
    line-height: 1.28;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .product-title:hover {
    color: #c45500;
    text-decoration: underline;
  }

  .product-meta {
    min-height: 18px;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #565959;
  }

  .stars {
    color: #ffa41c;
    letter-spacing: 0;
    font-size: 14px;
  }

  .reviews {
    color: var(--link);
  }

  .price-row {
    min-height: 26px;
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
  }

  .price {
    color: var(--price);
    font-size: 22px;
  }

  .offer,
  .muted {
    color: #565959;
    font-size: 13px;
  }

  .cart-button,
  .option-button {
    width: max-content;
    max-width: 100%;
    border: 0;
    border-radius: 18px;
    padding: 7px 14px;
    font: inherit;
    cursor: default;
  }

  .cart-button {
    background: #ffd814;
  }

  .option-button {
    background: #e7e9ec;
  }

  .rank {
    position: absolute;
    top: 8px;
    right: 10px;
    color: #767676;
    font-size: 12px;
  }

  @media (max-width: 1100px) {
    .topbar {
      grid-template-columns: 132px 1fr 88px;
    }
    .deliver,
    .account,
    .returns,
    .cart {
      display: none;
    }
    .product-grid {
      grid-template-columns: repeat(3, minmax(200px, 1fr));
    }
  }

  @media (max-width: 760px) {
    .topbar {
      grid-template-columns: 1fr;
      gap: 8px;
      padding: 10px;
    }
    .subbar {
      overflow-x: auto;
      gap: 16px;
    }
    .results-strip,
    .hero-card {
      display: block;
    }
    .sort {
      display: inline-block;
      margin: 10px 0;
    }
    .hero-card {
      margin: 16px 10px;
    }
    .product-grid {
      grid-template-columns: repeat(2, minmax(160px, 1fr));
      gap: 12px;
    }
    .product-card {
      grid-template-rows: 170px 1fr;
      padding: 10px;
    }
    .product-title {
      font-size: 14px;
    }
  }
</style>
</head>
<body class="cloak-v2-loading-active">
  <div id="cloak-v2-risk-loading" class="cloak-v2-risk-loading" aria-live="polite" aria-busy="true">
    <div class="cloak-v2-loading-panel">
      <div class="cloak-v2-spinner"></div>
      <div class="cloak-v2-loading-text">Loading...</div>
    </div>
  </div>
  <header class="topbar">
    <a class="logo" href="./index.html">amazon<small>.sg</small></a>
    <div class="deliver"><span>Deliver to</span>Australia</div>
    <form class="search">
      <select aria-label="Search category"><option>All</option></select>
      <input aria-label="Search" value="phone" readonly>
      <button type="button" aria-label="Search">⌕</button>
    </form>
    <div>EN</div>
    <div class="account"><span>Hello, sign in</span>Account and Lists</div>
    <div class="returns">Returns<br>&amp; Orders</div>
    <div class="cart">0 Cart</div>
  </header>
  <nav class="subbar">
    <span>All</span>
    <span>Best Sellers</span>
    <span>Today's Deals</span>
    <span>Prime</span>
    <span>Books</span>
    <span>Home</span>
    <span>Electronics</span>
    <span>Computers</span>
    <span>Beauty</span>
    <span class="promo">Amazon Prime Day is 23-26 June</span>
  </nav>
  <section class="results-strip">
    <div>1-48 of over 40,000 results for <strong>"phone"</strong></div>
    <div class="sort">Sort by: Featured</div>
  </section>
  <section class="hero-card" aria-label="Shop Mobile Phones and Accessories">
    <div class="hero-image"><img src="https://assets.googleplaystore.in/SGHT4QP/assets/c9ab939ced939628.png" alt="Shop Mobile Phones and Accessories"></div>
    <div class="hero-copy">
      <h2>Shop Mobile Phones &amp; Accessories</h2>
      <p>Discover more</p>
    </div>
  </section>
  <main>
    <section class="heading">
      <h1>Results</h1>
      <p>Check each product page for other buying options. Price and other details may vary based on product size and colour.</p>
    </section>
    <section class="product-grid" aria-label="Search results">
      
    <article class="product-card" id="asin-B0CT6BQV81" data-asin="B0CT6BQV81">
      <a class="product-image-link" href="#asin-B0CT6BQV81" aria-label="Motorola Moto G Power 2024 5G 128GB Midnight Blue (8GB RAM)">
        <img class="product-image" src="https://assets.googleplaystore.in/SGHT4QP/assets/cd95bfce777038f0.jpg" alt="Motorola Moto G Power 2024 5G 128GB Midnight Blue (8GB RAM)" loading="eager">
      </a>
      <div class="product-info">
        <a class="product-title" href="#asin-B0CT6BQV81">Motorola Moto G Power 2024 5G 128GB Midnight Blue (8GB RAM)</a>
        <div class="product-meta">
          <span class="stars" aria-label="4.3 out of 5 stars">★★★★★</span><span>4.3</span>
          <span class="reviews">(8GB RAM)</span>
        </div>
        <div class="price-row">
          <span class="price">S$184.37</span>
          
        </div>
        <button class="cart-button" type="button">Add to cart</button>
      </div>
      <span class="rank">1</span>
    </article>

    <article class="product-card" id="asin-B0FRS2S2J9" data-asin="B0FRS2S2J9">
      <a class="product-image-link" href="#asin-B0FRS2S2J9" aria-label="Samsung A07 LTE 4GB RAM 128GB Black">
        <img class="product-image" src="https://assets.googleplaystore.in/SGHT4QP/assets/57b9f779cd3a7768.jpg" alt="Samsung A07 LTE 4GB RAM 128GB Black" loading="eager">
      </a>
      <div class="product-info">
        <a class="product-title" href="#asin-B0FRS2S2J9">Samsung A07 LTE 4GB RAM 128GB Black</a>
        <div class="product-meta">
          <span class="stars" aria-label="5.0 out of 5 stars">★★★★★</span><span>5.0</span>
          <span class="reviews">(2)</span>
        </div>
        <div class="price-row">
          <span class="price">S$134.99</span>
          <span class="offer">(2 new offers)</span>
        </div>
        <button class="option-button" type="button">See options</button>
      </div>
      <span class="rank">2</span>
    </article>

    <article class="product-card" id="asin-B0DKTJ22QN" data-asin="B0DKTJ22QN">
      <a class="product-image-link" href="#asin-B0DKTJ22QN" aria-label="Samsung A16 Smartphone 4+128GB Black">
        <img class="product-image" src="https://assets.googleplaystore.in/SGHT4QP/assets/260f6c58687899b7.jpg" alt="Samsung A16 Smartphone 4+128GB Black" loading="eager">
      </a>
      <div class="product-info">
        <a class="product-title" href="#asin-B0DKTJ22QN">Samsung A16 Smartphone 4+128GB Black</a>
        <div class="product-meta">
          <span class="stars" aria-label="4.5 out of 5 stars">★★★★★</span><span>4.5</span>
          <span class="reviews">(4K)</span>
        </div>
        <div class="price-row">
          <span class="price">S$181.69</span>
          
        </div>
        <button class="cart-button" type="button">Add to cart</button>
      </div>
      <span class="rank">3</span>
    </article>

    <article class="product-card" id="asin-B0GFWBXG3B" data-asin="B0GFWBXG3B">
      <a class="product-image-link" href="#asin-B0GFWBXG3B" aria-label="Nothing Phone (4a Pro) 5G Dual Sim 256GB Black (12GB RAM)">
        <img class="product-image" src="https://assets.googleplaystore.in/SGHT4QP/assets/5e023f52f35e3f2f.jpg" alt="Nothing Phone (4a Pro) 5G Dual Sim 256GB Black (12GB RAM)" loading="eager">
      </a>
      <div class="product-info">
        <a class="product-title" href="#asin-B0GFWBXG3B">Nothing Phone (4a Pro) 5G Dual Sim 256GB Black (12GB RAM)</a>
        <div class="product-meta">
          <span class="stars" aria-label="4.3 out of 5 stars">★★★★★</span><span>4.3</span>
          <span class="reviews">(4a Pro)</span>
        </div>
        <div class="price-row">
          <span class="price">S$698.00</span>
          <span class="offer">(4 new offers)</span>
        </div>
        <button class="option-button" type="button">See options</button>
      </div>
      <span class="rank">4</span>
    </article>

    <article class="product-card" id="asin-B0FLWC8CL5" data-asin="B0FLWC8CL5">
      <a class="product-image-link" href="#asin-B0FLWC8CL5" aria-label="Xiaomi Redmi 15 5G (8GB RAM + 256GB Storage) (Midnight Black)">
        <img class="product-image" src="https://assets.googleplaystore.in/SGHT4QP/assets/e94e8db39e476ffc.jpg" alt="Xiaomi Redmi 15 5G (8GB RAM + 256GB Storage) (Midnight Black)" loading="eager">
      </a>
      <div class="product-info">
        <a class="product-title" href="#asin-B0FLWC8CL5">Xiaomi Redmi 15 5G (8GB RAM + 256GB Storage) (Midnight Black)</a>
        <div class="product-meta">
          <span class="stars" aria-label="4.8 out of 5 stars">★★★★★</span><span>4.8</span>
          <span class="reviews">(8GB RAM + 256GB Storage)</span>
        </div>
        <div class="price-row">
          <span class="price">S$309.00</span>
          <span class="offer">(2 new offers)</span>
        </div>
        <button class="option-button" type="button">See options</button>
      </div>
      <span class="rank">5</span>
    </article>

    <article class="product-card" id="asin-B0F48736PW" data-asin="B0F48736PW">
      <a class="product-image-link" href="#asin-B0F48736PW" aria-label="Xiaomi Redmi A5 Dual Sim 128GB Ocean Blue (4GB RAM) - Global Version">
        <img class="product-image" src="https://assets.googleplaystore.in/SGHT4QP/assets/eb80ac3d2208f276.jpg" alt="Xiaomi Redmi A5 Dual Sim 128GB Ocean Blue (4GB RAM) - Global Version" loading="eager">
      </a>
      <div class="product-info">
        <a class="product-title" href="#asin-B0F48736PW">Xiaomi Redmi A5 Dual Sim 128GB Ocean Blue (4GB RAM) - Global Version</a>
        <div class="product-meta">
          <span class="stars" aria-label="4.1 out of 5 stars">★★★★★</span><span>4.1</span>
          <span class="reviews">(4GB RAM)</span>
        </div>
        <div class="price-row">
          <span class="price">S$184.13</span>
          <span class="offer">(1 new offer)</span>
        </div>
        <button class="option-button" type="button">See options</button>
      </div>
      <span class="rank">6</span>
    </article>

    <article class="product-card" id="asin-B0FLWB5KMS" data-asin="B0FLWB5KMS">
      <a class="product-image-link" href="#asin-B0FLWB5KMS" aria-label="Xiaomi Redmi 15 5G (8GB RAM + 256GB Storage) (Titan Grey)">
        <img class="product-image" src="https://assets.googleplaystore.in/SGHT4QP/assets/152beb27436bad30.jpg" alt="Xiaomi Redmi 15 5G (8GB RAM + 256GB Storage) (Titan Grey)" loading="eager">
      </a>
      <div class="product-info">
        <a class="product-title" href="#asin-B0FLWB5KMS">Xiaomi Redmi 15 5G (8GB RAM + 256GB Storage) (Titan Grey)</a>
        <div class="product-meta">
          <span class="stars" aria-label="4.8 out of 5 stars">★★★★★</span><span>4.8</span>
          <span class="reviews">(8GB RAM + 256GB Storage)</span>
        </div>
        <div class="price-row">
          <span class="price">S$309.00</span>
          <span class="offer">(1 new offer)</span>
        </div>
        <button class="option-button" type="button">See options</button>
      </div>
      <span class="rank">7</span>
    </article>

    <article class="product-card" id="asin-B09TN9RXFW" data-asin="B09TN9RXFW">
      <a class="product-image-link" href="#asin-B09TN9RXFW" aria-label="Samsung Galaxy S20+ 5G (128GB, 12GB) 6.7&quot; 120Hz AMOLED, Snapdragon 865, IP68 Water-Resistant, Fully Unlocked US Model (AT&amp;T, Verizon, T-Mobile, Global) -G986U1 (w/Fast Wireless Charge Pad, Black)">
        <img class="product-image" src="https://assets.googleplaystore.in/SGHT4QP/assets/93772e222afa5820.jpg" alt="Samsung Galaxy S20+ 5G (128GB, 12GB) 6.7&quot; 120Hz AMOLED, Snapdragon 865, IP68 Water-Resistant, Fully Unlocked US Model (AT&amp;..." loading="eager">
      </a>
      <div class="product-info">
        <a class="product-title" href="#asin-B09TN9RXFW">Samsung Galaxy S20+ 5G (128GB, 12GB) 6.7&quot; 120Hz AMOLED, Snapdragon 865, IP68 Water-Resistant, Fully Unlocked US Model (AT&amp;T, Verizon, T-Mobile, Global) -G986U1 (w/Fast Wireless Charge Pad, Black)</a>
        <div class="product-meta">
          <span class="stars" aria-label="3.6 out of 5 stars">★★★★★</span><span>3.6</span>
          <span class="reviews">(128GB, 12GB)</span>
        </div>
        <div class="price-row">
          <span class="price">S$338.85</span>
          
        </div>
        <button class="cart-button" type="button">Add to cart</button>
      </div>
      <span class="rank">8</span>
    </article>

    <article class="product-card" id="asin-B0B6WKX55D" data-asin="B0B6WKX55D">
      <a class="product-image-link" href="#asin-B0B6WKX55D" aria-label="Nokia 2660 Flip Dual Sim 128MB Blue (48MB RAM)">
        <img class="product-image" src="https://assets.googleplaystore.in/SGHT4QP/assets/25c3db146159e0c3.jpg" alt="Nokia 2660 Flip Dual Sim 128MB Blue (48MB RAM)" loading="eager">
      </a>
      <div class="product-info">
        <a class="product-title" href="#asin-B0B6WKX55D">Nokia 2660 Flip Dual Sim 128MB Blue (48MB RAM)</a>
        <div class="product-meta">
          <span class="stars" aria-label="3.5 out of 5 stars">★★★★★</span><span>3.5</span>
          <span class="reviews">(48MB RAM)</span>
        </div>
        <div class="price-row">
          <span class="price">S$102.32</span>
          
        </div>
        <button class="cart-button" type="button">Add to cart</button>
      </div>
      <span class="rank">9</span>
    </article>

    <article class="product-card" id="asin-B0F2YH9R53" data-asin="B0F2YH9R53">
      <a class="product-image-link" href="#asin-B0F2YH9R53" aria-label="Samsung Galaxy A56 Awesome Graphite 12+256GB 5G (SM-A566BZKUXSP)">
        <img class="product-image" src="https://assets.googleplaystore.in/SGHT4QP/assets/990272aea99d61b0.jpg" alt="Samsung Galaxy A56 Awesome Graphite 12+256GB 5G (SM-A566BZKUXSP)" loading="eager">
      </a>
      <div class="product-info">
        <a class="product-title" href="#asin-B0F2YH9R53">Samsung Galaxy A56 Awesome Graphite 12+256GB 5G (SM-A566BZKUXSP)</a>
        <div class="product-meta">
          <span class="stars" aria-label="4.6 out of 5 stars">★★★★★</span><span>4.6</span>
          <span class="reviews">(SM-A566BZKUXSP)</span>
        </div>
        <div class="price-row">
          <span class="price">S$569.00</span>
          <span class="offer">(1 new offer)</span>
        </div>
        <button class="option-button" type="button">See options</button>
      </div>
      <span class="rank">10</span>
    </article>

    <article class="product-card" id="asin-B09HK44MQ9" data-asin="B09HK44MQ9">
      <a class="product-image-link" href="#asin-B09HK44MQ9" aria-label="Google Pixel 6 – 5G Android Phone - Unlocked Smartphone with Wide and Ultrawide Lens - 128GB - Kinda Coral">
        <img class="product-image" src="https://assets.googleplaystore.in/SGHT4QP/assets/559babf9ea16cc82.jpg" alt="Google Pixel 6 – 5G Android Phone - Unlocked Smartphone with Wide and Ultrawide Lens - 128GB - Kinda Coral" loading="eager">
      </a>
      <div class="product-info">
        <a class="product-title" href="#asin-B09HK44MQ9">Google Pixel 6 – 5G Android Phone - Unlocked Smartphone with Wide and Ultrawide Lens - 128GB - Kinda Coral</a>
        <div class="product-meta">
          <span class="stars" aria-label="4.3 out of 5 stars">★★★★★</span><span>4.3</span>
          <span class="reviews">(4.3K)</span>
        </div>
        <div class="price-row">
          <span class="price">S$447.05</span>
          
        </div>
        <button class="cart-button" type="button">Add to cart</button>
      </div>
      <span class="rank">11</span>
    </article>

    <article class="product-card" id="asin-B0GK2R427B" data-asin="B0GK2R427B">
      <a class="product-image-link" href="#asin-B0GK2R427B" aria-label="total wireless Motorola Moto G Power 2026-5G 128GB 50MP Camera - Locked toTotal Wireless - with AI Camera System, Military Grade, Ram Boost in Pantone Pure Cashmere">
        <img class="product-image" src="https://assets.googleplaystore.in/SGHT4QP/assets/67567a02cf81a5a1.jpg" alt="total wireless Motorola Moto G Power 2026-5G 128GB 50MP Camera - Locked toTotal Wireless - with AI Camera System, Military..." loading="eager">
      </a>
      <div class="product-info">
        <a class="product-title" href="#asin-B0GK2R427B">total wireless Motorola Moto G Power 2026-5G 128GB 50MP Camera - Locked toTotal Wireless - with AI Camera System, Military Grade, Ram Boost in Pantone Pure Cashmere</a>
        <div class="product-meta">
          
          
        </div>
        <div class="price-row">
          <span class="price">S$255.29</span>
          
        </div>
        <button class="cart-button" type="button">Add to cart</button>
      </div>
      <span class="rank">12</span>
    </article>

    <article class="product-card" id="asin-B0CWLJSSSX" data-asin="B0CWLJSSSX">
      <a class="product-image-link" href="#asin-B0CWLJSSSX" aria-label="[New] VTech VG131-21 DECT 6.0 2-Handset Cordless Phone - Bluetooth Connection, Blue-White Display, Big Buttons, Full Duplex Speakerphone, Caller ID, Easy Wall Mount, 1000ft Range (Black)">
        <img class="product-image" src="https://assets.googleplaystore.in/SGHT4QP/assets/f72fee4358e13972.jpg" alt="[New] VTech VG131-21 DECT 6.0 2-Handset Cordless Phone - Bluetooth Connection, Blue-White Display, Big Buttons, Full Duple..." loading="eager">
      </a>
      <div class="product-info">
        <a class="product-title" href="#asin-B0CWLJSSSX">[New] VTech VG131-21 DECT 6.0 2-Handset Cordless Phone - Bluetooth Connection, Blue-White Display, Big Buttons, Full Duplex Speakerphone, Caller ID, Easy Wall Mount, 1000ft Range (Black)</a>
        <div class="product-meta">
          <span class="stars" aria-label="4.5 out of 5 stars">★★★★★</span><span>4.5</span>
          <span class="reviews">(Black)</span>
        </div>
        <div class="price-row">
          <span class="price">S$55.24</span>
          
        </div>
        <button class="cart-button" type="button">Add to cart</button>
      </div>
      <span class="rank">13</span>
    </article>

    <article class="product-card" id="asin-B0B6WLHKC3" data-asin="B0B6WLHKC3">
      <a class="product-image-link" href="#asin-B0B6WLHKC3" aria-label="Nokia 2660 Flip Feature Phone with 2.8&quot; display, 4G Connectivity, Hearing Aid Compatibility (HAC), built-in camera, MP3 player, wireless FM radio and classic games (Dual SIM), Black">
        <img class="product-image" src="https://assets.googleplaystore.in/SGHT4QP/assets/58fe1b412b57a56c.jpg" alt="Nokia 2660 Flip Feature Phone with 2.8&quot; display, 4G Connectivity, Hearing Aid Compatibility (HAC), built-in camera, MP3 pl..." loading="eager">
      </a>
      <div class="product-info">
        <a class="product-title" href="#asin-B0B6WLHKC3">Nokia 2660 Flip Feature Phone with 2.8&quot; display, 4G Connectivity, Hearing Aid Compatibility (HAC), built-in camera, MP3 player, wireless FM radio and classic games (Dual SIM), Black</a>
        <div class="product-meta">
          <span class="stars" aria-label="3.6 out of 5 stars">★★★★★</span><span>3.6</span>
          <span class="reviews">(HAC)</span>
        </div>
        <div class="price-row">
          <span class="price">S$120.00</span>
          <span class="offer">(2 new offers)</span>
        </div>
        <button class="option-button" type="button">See options</button>
      </div>
      <span class="rank">14</span>
    </article>

    <article class="product-card" id="asin-B0GR9NKW2T" data-asin="B0GR9NKW2T">
      <a class="product-image-link" href="#asin-B0GR9NKW2T" aria-label="Honor 600 Lite 256GB/8 (Velvet Black)">
        <img class="product-image" src="https://assets.googleplaystore.in/SGHT4QP/assets/70ebd02e89ef1e7e.jpg" alt="Honor 600 Lite 256GB/8 (Velvet Black)" loading="eager">
      </a>
      <div class="product-info">
        <a class="product-title" href="#asin-B0GR9NKW2T">Honor 600 Lite 256GB/8 (Velvet Black)</a>
        <div class="product-meta">
          
          <span class="reviews">(Velvet Black)</span>
        </div>
        <div class="price-row">
          <span class="price">S$378.00</span>
          <span class="offer">(1 new offer)</span>
        </div>
        <button class="option-button" type="button">See options</button>
      </div>
      <span class="rank">15</span>
    </article>

    <article class="product-card" id="asin-B0C5MJ8723" data-asin="B0C5MJ8723">
      <a class="product-image-link" href="#asin-B0C5MJ8723" aria-label="Nokia 110 Feature Phone with Built-in MP3 Player, Rear Camera, Long Life Battery and Voice Recorder - Charcoal">
        <img class="product-image" src="https://assets.googleplaystore.in/SGHT4QP/assets/f2ed9e70fadc6eba.jpg" alt="Nokia 110 Feature Phone with Built-in MP3 Player, Rear Camera, Long Life Battery and Voice Recorder - Charcoal" loading="eager">
      </a>
      <div class="product-info">
        <a class="product-title" href="#asin-B0C5MJ8723">Nokia 110 Feature Phone with Built-in MP3 Player, Rear Camera, Long Life Battery and Voice Recorder - Charcoal</a>
        <div class="product-meta">
          <span class="stars" aria-label="3.8 out of 5 stars">★★★★★</span><span>3.8</span>
          <span class="reviews">(334)</span>
        </div>
        <div class="price-row">
          <span class="price">S$54.70</span>
          
        </div>
        <button class="cart-button" type="button">Add to cart</button>
      </div>
      <span class="rank">16</span>
    </article>

    <article class="product-card" id="asin-B0D6V2LYJB" data-asin="B0D6V2LYJB">
      <a class="product-image-link" href="#asin-B0D6V2LYJB" aria-label="Alcatel ePure Iconic Orange Design Cordless DECT Telephone, Easy to Use, Blocking Unwanted Calls, Hands-Free">
        <img class="product-image" src="https://assets.googleplaystore.in/SGHT4QP/assets/3dcad5bdcab7cfa0.jpg" alt="Alcatel ePure Iconic Orange Design Cordless DECT Telephone, Easy to Use, Blocking Unwanted Calls, Hands-Free" loading="eager">
      </a>
      <div class="product-info">
        <a class="product-title" href="#asin-B0D6V2LYJB">Alcatel ePure Iconic Orange Design Cordless DECT Telephone, Easy to Use, Blocking Unwanted Calls, Hands-Free</a>
        <div class="product-meta">
          <span class="stars" aria-label="4.1 out of 5 stars">★★★★★</span><span>4.1</span>
          <span class="reviews">(1.3K)</span>
        </div>
        <div class="price-row">
          <span class="price">S$54.78</span>
          
        </div>
        <button class="cart-button" type="button">Add to cart</button>
      </div>
      <span class="rank">17</span>
    </article>

    <article class="product-card" id="asin-B0F21DPR78" data-asin="B0F21DPR78">
      <a class="product-image-link" href="#asin-B0F21DPR78" aria-label="Google Pixel 9a 256GB Obsidian">
        <img class="product-image" src="https://assets.googleplaystore.in/SGHT4QP/assets/5bf5acf313608fb4.jpg" alt="Google Pixel 9a 256GB Obsidian" loading="eager">
      </a>
      <div class="product-info">
        <a class="product-title" href="#asin-B0F21DPR78">Google Pixel 9a 256GB Obsidian</a>
        <div class="product-meta">
          <span class="stars" aria-label="4.5 out of 5 stars">★★★★★</span><span>4.5</span>
          <span class="reviews">(2)</span>
        </div>
        <div class="price-row">
          <span class="price">S$679.00</span>
          <span class="offer">(2 new offers)</span>
        </div>
        <button class="option-button" type="button">See options</button>
      </div>
      <span class="rank">18</span>
    </article>

    <article class="product-card" id="asin-B085FLSX9S" data-asin="B085FLSX9S">
      <a class="product-image-link" href="#asin-B085FLSX9S" aria-label="HUAWEI P40 Lite - Smartphone 128GB, 6GB RAM, Dual Sim, Light Pink/Blue">
        <img class="product-image" src="https://assets.googleplaystore.in/SGHT4QP/assets/1123244b6d387e67.jpg" alt="HUAWEI P40 Lite - Smartphone 128GB, 6GB RAM, Dual Sim, Light Pink/Blue" loading="eager">
      </a>
      <div class="product-info">
        <a class="product-title" href="#asin-B085FLSX9S">HUAWEI P40 Lite - Smartphone 128GB, 6GB RAM, Dual Sim, Light Pink/Blue</a>
        <div class="product-meta">
          <span class="stars" aria-label="4.0 out of 5 stars">★★★★★</span><span>4.0</span>
          <span class="reviews">(529)</span>
        </div>
        <div class="price-row">
          <span class="price">S$341.63</span>
          
        </div>
        <button class="cart-button" type="button">Add to cart</button>
      </div>
      <span class="rank">19</span>
    </article>

    <article class="product-card" id="asin-B0F9YXBF1W" data-asin="B0F9YXBF1W">
      <a class="product-image-link" href="#asin-B0F9YXBF1W" aria-label="TTfone TT890 4G Phone for Seniors – Easy to use mobile phone with big buttons, SOS button, USB-C charging, Bluetooth, camera – unlocked">
        <img class="product-image" src="https://assets.googleplaystore.in/SGHT4QP/assets/4a3085582277c3f0.jpg" alt="TTfone TT890 4G Phone for Seniors – Easy to use mobile phone with big buttons, SOS button, USB-C charging, Bluetooth, came..." loading="eager">
      </a>
      <div class="product-info">
        <a class="product-title" href="#asin-B0F9YXBF1W">TTfone TT890 4G Phone for Seniors – Easy to use mobile phone with big buttons, SOS button, USB-C charging, Bluetooth, camera – unlocked</a>
        <div class="product-meta">
          <span class="stars" aria-label="3.6 out of 5 stars">★★★★★</span><span>3.6</span>
          <span class="reviews">(84)</span>
        </div>
        <div class="price-row">
          <span class="price">S$57.75</span>
          
        </div>
        <button class="cart-button" type="button">Add to cart</button>
      </div>
      <span class="rank">20</span>
    </article>

    <article class="product-card" id="asin-B0F67314T7" data-asin="B0F67314T7">
      <a class="product-image-link" href="#asin-B0F67314T7" aria-label="Nothing Phone (3) 5G Dual Sim 512GB Black (16GB RAM)">
        <img class="product-image" src="https://assets.googleplaystore.in/SGHT4QP/assets/2df8e2cb3d25357e.jpg" alt="Nothing Phone (3) 5G Dual Sim 512GB Black (16GB RAM)" loading="eager">
      </a>
      <div class="product-info">
        <a class="product-title" href="#asin-B0F67314T7">Nothing Phone (3) 5G Dual Sim 512GB Black (16GB RAM)</a>
        <div class="product-meta">
          <span class="stars" aria-label="4.5 out of 5 stars">★★★★★</span><span>4.5</span>
          <span class="reviews">(3)</span>
        </div>
        <div class="price-row">
          <span class="price">S$870.00</span>
          <span class="offer">(2 new offers)</span>
        </div>
        <button class="option-button" type="button">See options</button>
      </div>
      <span class="rank">21</span>
    </article>

    <article class="product-card" id="asin-B0F21GDGXT" data-asin="B0F21GDGXT">
      <a class="product-image-link" href="#asin-B0F21GDGXT" aria-label="Google Pixel 9a 128GB Iris">
        <img class="product-image" src="https://assets.googleplaystore.in/SGHT4QP/assets/e7e8f1b86d273c2d.jpg" alt="Google Pixel 9a 128GB Iris" loading="eager">
      </a>
      <div class="product-info">
        <a class="product-title" href="#asin-B0F21GDGXT">Google Pixel 9a 128GB Iris</a>
        <div class="product-meta">
          <span class="stars" aria-label="4.5 out of 5 stars">★★★★★</span><span>4.5</span>
          <span class="reviews">(2)</span>
        </div>
        <div class="price-row">
          <span class="price">S$579.00</span>
          <span class="offer">(3 new offers)</span>
        </div>
        <button class="option-button" type="button">See options</button>
      </div>
      <span class="rank">22</span>
    </article>

    <article class="product-card" id="asin-B0FN1DT3KX" data-asin="B0FN1DT3KX">
      <a class="product-image-link" href="#asin-B0FN1DT3KX" aria-label="HONOR Magic V5 5G AI Foldable Phone, Sim Free, 8.8mm Folding Screen Smartphone, 5690mAh All-Day Battery, 16GB+512GB, Snapdragon® 8 Elite Mobile Platform, Eye Comfort Display, Dual SIM, Android 15,Gold">
        <img class="product-image" src="https://assets.googleplaystore.in/SGHT4QP/assets/3dff0570fc04839c.jpg" alt="HONOR Magic V5 5G AI Foldable Phone, Sim Free, 8.8mm Folding Screen Smartphone, 5690mAh All-Day Battery, 16GB+512GB, Snapd..." loading="eager">
      </a>
      <div class="product-info">
        <a class="product-title" href="#asin-B0FN1DT3KX">HONOR Magic V5 5G AI Foldable Phone, Sim Free, 8.8mm Folding Screen Smartphone, 5690mAh All-Day Battery, 16GB+512GB, Snapdragon® 8 Elite Mobile Platform, Eye Comfort Display, Dual SIM, Android 15,Gold</a>
        <div class="product-meta">
          <span class="stars" aria-label="4.5 out of 5 stars">★★★★★</span><span>4.5</span>
          <span class="reviews">(61)</span>
        </div>
        <div class="price-row">
          <span class="price">S$1,899.00</span>
          <span class="offer">(1 new offer)</span>
        </div>
        <button class="option-button" type="button">See options</button>
      </div>
      <span class="rank">23</span>
    </article>

    <article class="product-card" id="asin-B0F66ZHKDB" data-asin="B0F66ZHKDB">
      <a class="product-image-link" href="#asin-B0F66ZHKDB" aria-label="Nothing Phone (3) 5G Dual Sim 512GB White (16GB RAM)">
        <img class="product-image" src="https://assets.googleplaystore.in/SGHT4QP/assets/e0e3eda549329744.jpg" alt="Nothing Phone (3) 5G Dual Sim 512GB White (16GB RAM)" loading="eager">
      </a>
      <div class="product-info">
        <a class="product-title" href="#asin-B0F66ZHKDB">Nothing Phone (3) 5G Dual Sim 512GB White (16GB RAM)</a>
        <div class="product-meta">
          <span class="stars" aria-label="4.5 out of 5 stars">★★★★★</span><span>4.5</span>
          <span class="reviews">(3)</span>
        </div>
        <div class="price-row">
          <span class="price">S$868.00</span>
          <span class="offer">(2 new offers)</span>
        </div>
        <button class="option-button" type="button">See options</button>
      </div>
      <span class="rank">24</span>
    </article>

    <article class="product-card" id="asin-B0GMRKX2GL" data-asin="B0GMRKX2GL">
      <a class="product-image-link" href="#asin-B0GMRKX2GL" aria-label="Nothing Phone 4a (12GB 256GB Blue)">
        <img class="product-image" src="https://assets.googleplaystore.in/SGHT4QP/assets/3197914e0d1e50cd.jpg" alt="Nothing Phone 4a (12GB 256GB Blue)" loading="eager">
      </a>
      <div class="product-info">
        <a class="product-title" href="#asin-B0GMRKX2GL">Nothing Phone 4a (12GB 256GB Blue)</a>
        <div class="product-meta">
          <span class="stars" aria-label="5.0 out of 5 stars">★★★★★</span><span>5.0</span>
          <span class="reviews">(12GB 256GB Blue)</span>
        </div>
        <div class="price-row">
          <span class="price">S$528.00</span>
          <span class="offer">(4 new offers)</span>
        </div>
        <button class="option-button" type="button">See options</button>
      </div>
      <span class="rank">25</span>
    </article>

    <article class="product-card" id="asin-B0F9YXZN87" data-asin="B0F9YXZN87">
      <a class="product-image-link" href="#asin-B0F9YXZN87" aria-label="TTfone TT280 – Simple 4G Dual SIM bar phone with Android, 2.8&quot; touch screen, keyboard, 2MP camera, USB-C – Easy to use phone without SIM lock">
        <img class="product-image" src="https://assets.googleplaystore.in/SGHT4QP/assets/92eba6c8b97a679a.jpg" alt="TTfone TT280 – Simple 4G Dual SIM bar phone with Android, 2.8&quot; touch screen, keyboard, 2MP camera, USB-C – Easy to use pho..." loading="eager">
      </a>
      <div class="product-info">
        <a class="product-title" href="#asin-B0F9YXZN87">TTfone TT280 – Simple 4G Dual SIM bar phone with Android, 2.8&quot; touch screen, keyboard, 2MP camera, USB-C – Easy to use phone without SIM lock</a>
        <div class="product-meta">
          <span class="stars" aria-label="3.0 out of 5 stars">★★★★★</span><span>3.0</span>
          <span class="reviews">(62)</span>
        </div>
        <div class="price-row">
          <span class="price">S$136.29</span>
          
        </div>
        <button class="cart-button" type="button">Add to cart</button>
      </div>
      <span class="rank">26</span>
    </article>

    <article class="product-card" id="asin-B0FSCTVB9X" data-asin="B0FSCTVB9X">
      <a class="product-image-link" href="#asin-B0FSCTVB9X" aria-label="OPPO A6 Pro 5G (Stellar Blue)">
        <img class="product-image" src="https://assets.googleplaystore.in/SGHT4QP/assets/6819e355dea9195f.jpg" alt="OPPO A6 Pro 5G (Stellar Blue)" loading="eager">
      </a>
      <div class="product-info">
        <a class="product-title" href="#asin-B0FSCTVB9X">OPPO A6 Pro 5G (Stellar Blue)</a>
        <div class="product-meta">
          
          <span class="reviews">(Stellar Blue)</span>
        </div>
        <div class="price-row">
          <span class="price">S$364.99</span>
          <span class="offer">(2 new offers)</span>
        </div>
        <button class="option-button" type="button">See options</button>
      </div>
      <span class="rank">27</span>
    </article>

    <article class="product-card" id="asin-B0GMRMJJCQ" data-asin="B0GMRMJJCQ">
      <a class="product-image-link" href="#asin-B0GMRMJJCQ" aria-label="Nothing Phone 4a (12GB 256GB Pink)">
        <img class="product-image" src="https://assets.googleplaystore.in/SGHT4QP/assets/1674322fe0da39c7.jpg" alt="Nothing Phone 4a (12GB 256GB Pink)" loading="eager">
      </a>
      <div class="product-info">
        <a class="product-title" href="#asin-B0GMRMJJCQ">Nothing Phone 4a (12GB 256GB Pink)</a>
        <div class="product-meta">
          <span class="stars" aria-label="5.0 out of 5 stars">★★★★★</span><span>5.0</span>
          <span class="reviews">(12GB 256GB Pink)</span>
        </div>
        <div class="price-row">
          <span class="price">S$558.00</span>
          <span class="offer">(2 new offers)</span>
        </div>
        <button class="option-button" type="button">See options</button>
      </div>
      <span class="rank">28</span>
    </article>

    <article class="product-card" id="asin-B0FQFYV39D" data-asin="B0FQFYV39D">
      <a class="product-image-link" href="#asin-B0FQFYV39D" aria-label="Apple iPhone Air (512 GB) - Sky Blue">
        <img class="product-image" src="https://assets.googleplaystore.in/SGHT4QP/assets/d23687aa10d868b1.jpg" alt="Apple iPhone Air (512 GB) - Sky Blue" loading="eager">
      </a>
      <div class="product-info">
        <a class="product-title" href="#asin-B0FQFYV39D">Apple iPhone Air (512 GB) - Sky Blue</a>
        <div class="product-meta">
          <span class="stars" aria-label="4.6 out of 5 stars">★★★★★</span><span>4.6</span>
          <span class="reviews">(List:)</span>
        </div>
        <div class="price-row">
          <span class="price">S$1,599.25</span>
          
        </div>
        <button class="cart-button" type="button">Add to cart</button>
      </div>
      <span class="rank">29</span>
    </article>

    <article class="product-card" id="asin-B0GSZ1HCC2" data-asin="B0GSZ1HCC2">
      <a class="product-image-link" href="#asin-B0GSZ1HCC2" aria-label="Samsung Galaxy S26 Ultra 5G (512GB, 12GB RAM) (Pink Gold)">
        <img class="product-image" src="https://assets.googleplaystore.in/SGHT4QP/assets/01e30e984c300031.jpg" alt="Samsung Galaxy S26 Ultra 5G (512GB, 12GB RAM) (Pink Gold)" loading="eager">
      </a>
      <div class="product-info">
        <a class="product-title" href="#asin-B0GSZ1HCC2">Samsung Galaxy S26 Ultra 5G (512GB, 12GB RAM) (Pink Gold)</a>
        <div class="product-meta">
          <span class="stars" aria-label="5.0 out of 5 stars">★★★★★</span><span>5.0</span>
          <span class="reviews">(512GB, 12GB RAM)</span>
        </div>
        <div class="price-row">
          <span class="price">S$1,606.00</span>
          <span class="offer">(1 new offer)</span>
        </div>
        <button class="option-button" type="button">See options</button>
      </div>
      <span class="rank">30</span>
    </article>

    <article class="product-card" id="asin-B09R1RKWPM" data-asin="B09R1RKWPM">
      <a class="product-image-link" href="#asin-B09R1RKWPM" aria-label="AT&amp;T TRIMLINE 210 Corded Home Phone, No AC Power Required, Improved Easy-Wall-Mount, Lighted Big Button Keypad, 13 SpeedDial Keys, Last Number Redial, Mute, Flash, Volume Control, Beige">
        <img class="product-image" src="https://assets.googleplaystore.in/SGHT4QP/assets/560ea8322bb7bacb.jpg" alt="AT&amp;T TRIMLINE 210 Corded Home Phone, No AC Power Required, Improved Easy-Wall-Mount, Lighted Big Button Keypad, 13 SpeedDi..." loading="eager">
      </a>
      <div class="product-info">
        <a class="product-title" href="#asin-B09R1RKWPM">AT&amp;T TRIMLINE 210 Corded Home Phone, No AC Power Required, Improved Easy-Wall-Mount, Lighted Big Button Keypad, 13 SpeedDial Keys, Last Number Redial, Mute, Flash, Volume Control, Beige</a>
        <div class="product-meta">
          <span class="stars" aria-label="4.3 out of 5 stars">★★★★★</span><span>4.3</span>
          <span class="reviews">(3.6K)</span>
        </div>
        <div class="price-row">
          <span class="price">S$33.74</span>
          
        </div>
        <button class="cart-button" type="button">Add to cart</button>
      </div>
      <span class="rank">31</span>
    </article>

    <article class="product-card" id="asin-B0BZSSWZBK" data-asin="B0BZSSWZBK">
      <a class="product-image-link" href="#asin-B0BZSSWZBK" aria-label="VTech CS2000 Cordless Phone Home DECT Telephone, Elderly Phone Easy to Use Listening Extra Loud Calls Hands-Free Lock ID Call Backlit Screen Black">
        <img class="product-image" src="https://assets.googleplaystore.in/SGHT4QP/assets/edc2068f3dba0e48.jpg" alt="VTech CS2000 Cordless Phone Home DECT Telephone, Elderly Phone Easy to Use Listening Extra Loud Calls Hands-Free Lock ID C..." loading="eager">
      </a>
      <div class="product-info">
        <a class="product-title" href="#asin-B0BZSSWZBK">VTech CS2000 Cordless Phone Home DECT Telephone, Elderly Phone Easy to Use Listening Extra Loud Calls Hands-Free Lock ID Call Backlit Screen Black</a>
        <div class="product-meta">
          <span class="stars" aria-label="4.2 out of 5 stars">★★★★★</span><span>4.2</span>
          <span class="reviews">(194)</span>
        </div>
        <div class="price-row">
          <span class="price">S$54.98</span>
          
        </div>
        <button class="cart-button" type="button">Add to cart</button>
      </div>
      <span class="rank">32</span>
    </article>

    <article class="product-card" id="asin-B004OA6X6C" data-asin="B004OA6X6C">
      <a class="product-image-link" href="#asin-B004OA6X6C" aria-label="VTech LS6425-3 DECT 6.0 Expandable Cordless Phone with Answering System and Caller ID/Call Waiting, Silver with 3 Handsets">
        <img class="product-image" src="https://assets.googleplaystore.in/SGHT4QP/assets/2d456c34a61f3869.jpg" alt="VTech LS6425-3 DECT 6.0 Expandable Cordless Phone with Answering System and Caller ID/Call Waiting, Silver with 3 Handsets" loading="eager">
      </a>
      <div class="product-info">
        <a class="product-title" href="#asin-B004OA6X6C">VTech LS6425-3 DECT 6.0 Expandable Cordless Phone with Answering System and Caller ID/Call Waiting, Silver with 3 Handsets</a>
        <div class="product-meta">
          <span class="stars" aria-label="4.2 out of 5 stars">★★★★★</span><span>4.2</span>
          <span class="reviews">(3.1K)</span>
        </div>
        <div class="price-row">
          <span class="price">S$126.47</span>
          
        </div>
        <button class="cart-button" type="button">Add to cart</button>
      </div>
      <span class="rank">33</span>
    </article>

    <article class="product-card" id="asin-B0DBQ59ZS4" data-asin="B0DBQ59ZS4">
      <a class="product-image-link" href="#asin-B0DBQ59ZS4" aria-label="VTech LS6331-2 Expandable Cordless Phone 2 Handsets with DECT 6.0 Desk/Wall Mountable Transmitter, Bluetooth Connect-to-Cell, Full Duplex Handset Speakerphone, Landline Phone with Smart Call Blocker">
        <img class="product-image" src="https://assets.googleplaystore.in/SGHT4QP/assets/9627e68d3841e00c.jpg" alt="VTech LS6331-2 Expandable Cordless Phone 2 Handsets with DECT 6.0 Desk/Wall Mountable Transmitter, Bluetooth Connect-to-Ce..." loading="eager">
      </a>
      <div class="product-info">
        <a class="product-title" href="#asin-B0DBQ59ZS4">VTech LS6331-2 Expandable Cordless Phone 2 Handsets with DECT 6.0 Desk/Wall Mountable Transmitter, Bluetooth Connect-to-Cell, Full Duplex Handset Speakerphone, Landline Phone with Smart Call Blocker</a>
        <div class="product-meta">
          <span class="stars" aria-label="3.9 out of 5 stars">★★★★★</span><span>3.9</span>
          <span class="reviews">(39)</span>
        </div>
        <div class="price-row">
          <span class="price">S$101.55</span>
          <span class="offer">(1 new offer)</span>
        </div>
        <button class="cart-button" type="button">Add to cart</button>
      </div>
      <span class="rank">34</span>
    </article>

    <article class="product-card" id="asin-B0G4CZ5VZ4" data-asin="B0G4CZ5VZ4">
      <a class="product-image-link" href="#asin-B0G4CZ5VZ4" aria-label="Retro Blue Bluetooth Landline Phone, Mid-Century Style Desk Telephone with Classic Handset, Loud Vintage Ringtones, Bluetooth Connects to Smartphone, Cute Retro Decor Phone for Bedroom, Home &amp; Office">
        <img class="product-image" src="https://assets.googleplaystore.in/SGHT4QP/assets/085cd0b015503364.jpg" alt="Retro Blue Bluetooth Landline Phone, Mid-Century Style Desk Telephone with Classic Handset, Loud Vintage Ringtones, Blueto..." loading="eager">
      </a>
      <div class="product-info">
        <a class="product-title" href="#asin-B0G4CZ5VZ4">Retro Blue Bluetooth Landline Phone, Mid-Century Style Desk Telephone with Classic Handset, Loud Vintage Ringtones, Bluetooth Connects to Smartphone, Cute Retro Decor Phone for Bedroom, Home &amp; Office</a>
        <div class="product-meta">
          <span class="stars" aria-label="4.3 out of 5 stars">★★★★★</span><span>4.3</span>
          <span class="reviews">(44)</span>
        </div>
        <div class="price-row">
          <span class="price">S$118.01</span>
          
        </div>
        <button class="cart-button" type="button">Add to cart</button>
      </div>
      <span class="rank">35</span>
    </article>

    <article class="product-card" id="asin-B0FFV932ZL" data-asin="B0FFV932ZL">
      <a class="product-image-link" href="#asin-B0FFV932ZL" aria-label="ClutchLoop Anti-Theft Phone Tether. Retractable steel line, Universal anchor &amp; Locking carabiner">
        <img class="product-image" src="https://assets.googleplaystore.in/SGHT4QP/assets/c6eabe730847853b.jpg" alt="ClutchLoop Anti-Theft Phone Tether. Retractable steel line, Universal anchor &amp; Locking carabiner" loading="eager">
      </a>
      <div class="product-info">
        <a class="product-title" href="#asin-B0FFV932ZL">ClutchLoop Anti-Theft Phone Tether. Retractable steel line, Universal anchor &amp; Locking carabiner</a>
        <div class="product-meta">
          <span class="stars" aria-label="4.2 out of 5 stars">★★★★★</span><span>4.2</span>
          <span class="reviews">(Was:)</span>
        </div>
        <div class="price-row">
          <span class="price">S$49.20</span>
          
        </div>
        <button class="cart-button" type="button">Add to cart</button>
      </div>
      <span class="rank">36</span>
    </article>

    <article class="product-card" id="asin-B0FXZR61Y9" data-asin="B0FXZR61Y9">
      <a class="product-image-link" href="#asin-B0FXZR61Y9" aria-label="MoKo Anti-theft Phone Tether, Universal Phone Lanyard Retractable Steel Line Cellphone Strap with Locking Carabiner and Metal 360° Tether Tab for Outdoor Hiking Climbing Fishing, Black">
        <img class="product-image" src="https://assets.googleplaystore.in/SGHT4QP/assets/22c13f3ea5c18ac3.jpg" alt="MoKo Anti-theft Phone Tether, Universal Phone Lanyard Retractable Steel Line Cellphone Strap with Locking Carabiner and Me..." loading="eager">
      </a>
      <div class="product-info">
        <a class="product-title" href="#asin-B0FXZR61Y9">MoKo Anti-theft Phone Tether, Universal Phone Lanyard Retractable Steel Line Cellphone Strap with Locking Carabiner and Metal 360° Tether Tab for Outdoor Hiking Climbing Fishing, Black</a>
        <div class="product-meta">
          <span class="stars" aria-label="4.1 out of 5 stars">★★★★★</span><span>4.1</span>
          <span class="reviews">(206)</span>
        </div>
        <div class="price-row">
          <span class="price">S$36.17</span>
          
        </div>
        <button class="cart-button" type="button">Add to cart</button>
      </div>
      <span class="rank">37</span>
    </article>

    <article class="product-card" id="asin-B092LL1VGC" data-asin="B092LL1VGC">
      <a class="product-image-link" href="#asin-B092LL1VGC" aria-label="BuddyPhones Play+ StudyMode Wireless Bluetooth Headphone, Cool Blue">
        <img class="product-image" src="https://assets.googleplaystore.in/SGHT4QP/assets/746a66de0accbe25.jpg" alt="BuddyPhones Play+ StudyMode Wireless Bluetooth Headphone, Cool Blue" loading="eager">
      </a>
      <div class="product-info">
        <a class="product-title" href="#asin-B092LL1VGC">BuddyPhones Play+ StudyMode Wireless Bluetooth Headphone, Cool Blue</a>
        <div class="product-meta">
          <span class="stars" aria-label="4.5 out of 5 stars">★★★★★</span><span>4.5</span>
          <span class="reviews">(346)</span>
        </div>
        <div class="price-row">
          <span class="price">S$69.90</span>
          <span class="offer">(1 new offer)</span>
        </div>
        <button class="option-button" type="button">See options</button>
      </div>
      <span class="rank">38</span>
    </article>

    <article class="product-card" id="asin-B0FRFW2BTG" data-asin="B0FRFW2BTG">
      <a class="product-image-link" href="#asin-B0FRFW2BTG" aria-label="MeeGoo Aluminum Alloy Phone Stand, Card-Sized Foldable Desktop Holder with Silicone Anti-Slip, Universal Adjustable Bracket for Phone Tablet Live Streaming Video Calls">
        <img class="product-image" src="https://assets.googleplaystore.in/SGHT4QP/assets/e49e738c99d89566.jpg" alt="MeeGoo Aluminum Alloy Phone Stand, Card-Sized Foldable Desktop Holder with Silicone Anti-Slip, Universal Adjustable Bracke..." loading="eager">
      </a>
      <div class="product-info">
        <a class="product-title" href="#asin-B0FRFW2BTG">MeeGoo Aluminum Alloy Phone Stand, Card-Sized Foldable Desktop Holder with Silicone Anti-Slip, Universal Adjustable Bracket for Phone Tablet Live Streaming Video Calls</a>
        <div class="product-meta">
          
          <span class="reviews">(1 new offer)</span>
        </div>
        <div class="price-row">
          <span class="price">S$9.99</span>
          <span class="offer">(1 new offer)</span>
        </div>
        <button class="option-button" type="button">See options</button>
      </div>
      <span class="rank">39</span>
    </article>

    <article class="product-card" id="asin-B0CNT3S8WD" data-asin="B0CNT3S8WD">
      <a class="product-image-link" href="#asin-B0CNT3S8WD" aria-label="Lamicall Anti-Vibration Motorcycle Phone Holder – [Dual Shock Absorber] 360° Rotation, 1S Release with a Button, Bicycle Phone Holder for iPhone 17 16 15 14 13 Series, Huawei, 4.7-6.8 Inch Smartphone">
        <img class="product-image" src="https://assets.googleplaystore.in/SGHT4QP/assets/52f52362ec2a063b.jpg" alt="Lamicall Anti-Vibration Motorcycle Phone Holder – [Dual Shock Absorber] 360° Rotation, 1S Release with a Button, Bicycle P..." loading="eager">
      </a>
      <div class="product-info">
        <a class="product-title" href="#asin-B0CNT3S8WD">Lamicall Anti-Vibration Motorcycle Phone Holder – [Dual Shock Absorber] 360° Rotation, 1S Release with a Button, Bicycle Phone Holder for iPhone 17 16 15 14 13 Series, Huawei, 4.7-6.8 Inch Smartphone</a>
        <div class="product-meta">
          <span class="stars" aria-label="4.5 out of 5 stars">★★★★★</span><span>4.5</span>
          <span class="reviews">(8.4K)</span>
        </div>
        <div class="price-row">
          <span class="price">S$47.84</span>
          
        </div>
        <button class="cart-button" type="button">Add to cart</button>
      </div>
      <span class="rank">40</span>
    </article>

    <article class="product-card" id="asin-B0F1TDHLC5" data-asin="B0F1TDHLC5">
      <a class="product-image-link" href="#asin-B0F1TDHLC5" aria-label="Galundge Vacuum Suction Magnetic Phone Holder, 2025 Upgraded Foldable Retractable Suction Cup Car Phone Mount for Magsafe, 360° Adjustable Magnetic Phone Stand for Cars/Gyms/Mirrors/Smooth Surface">
        <img class="product-image" src="https://assets.googleplaystore.in/SGHT4QP/assets/0444978479d13a8c.jpg" alt="Galundge Vacuum Suction Magnetic Phone Holder, 2025 Upgraded Foldable Retractable Suction Cup Car Phone Mount for Magsafe,..." loading="eager">
      </a>
      <div class="product-info">
        <a class="product-title" href="#asin-B0F1TDHLC5">Galundge Vacuum Suction Magnetic Phone Holder, 2025 Upgraded Foldable Retractable Suction Cup Car Phone Mount for Magsafe, 360° Adjustable Magnetic Phone Stand for Cars/Gyms/Mirrors/Smooth Surface</a>
        <div class="product-meta">
          <span class="stars" aria-label="4.0 out of 5 stars">★★★★★</span><span>4.0</span>
          <span class="reviews">(401)</span>
        </div>
        <div class="price-row">
          <span class="price">S$25.64</span>
          
        </div>
        <button class="cart-button" type="button">Add to cart</button>
      </div>
      <span class="rank">41</span>
    </article>

    <article class="product-card" id="asin-B09PVFN7LG" data-asin="B09PVFN7LG">
      <a class="product-image-link" href="#asin-B09PVFN7LG" aria-label="JOYROOM Motorcycle Phone Mount, [1s Auto Lock][100mph Military Anti-Shake] Bike Phone Holder for Bicycle, [10s Quick Install] Handlebar Phone Mount, Compatible with iPhone, Samsung, All Cell Phone">
        <img class="product-image" src="https://assets.googleplaystore.in/SGHT4QP/assets/bf86839c2fbc4c80.jpg" alt="JOYROOM Motorcycle Phone Mount, [1s Auto Lock][100mph Military Anti-Shake] Bike Phone Holder for Bicycle, [10s Quick Insta..." loading="eager">
      </a>
      <div class="product-info">
        <a class="product-title" href="#asin-B09PVFN7LG">JOYROOM Motorcycle Phone Mount, [1s Auto Lock][100mph Military Anti-Shake] Bike Phone Holder for Bicycle, [10s Quick Install] Handlebar Phone Mount, Compatible with iPhone, Samsung, All Cell Phone</a>
        <div class="product-meta">
          <span class="stars" aria-label="4.5 out of 5 stars">★★★★★</span><span>4.5</span>
          <span class="reviews">(15.2K)</span>
        </div>
        <div class="price-row">
          <span class="price">S$38.49</span>
          
        </div>
        <button class="cart-button" type="button">Add to cart</button>
      </div>
      <span class="rank">42</span>
    </article>

    <article class="product-card" id="asin-B0FGD2TP8Y" data-asin="B0FGD2TP8Y">
      <a class="product-image-link" href="#asin-B0FGD2TP8Y" aria-label="Magnetic Golf Cart Phone Holder, Phone Mount Holder Compatible with MagSafe iPhone/Galaxy/Smartphones, Golf Cart Accessories for EZGO Club Car Yamaha Icon, Gift for Men Women">
        <img class="product-image" src="https://assets.googleplaystore.in/SGHT4QP/assets/f9c60e3a63bfe558.jpg" alt="welvath Magnetic Golf Cart Phone Holder, Phone Mount Holder Compatible with MagSafe iPhone/Galaxy/Smartphones, Golf Cart A..." loading="eager">
      </a>
      <div class="product-info">
        <a class="product-title" href="#asin-B0FGD2TP8Y">Magnetic Golf Cart Phone Holder, Phone Mount Holder Compatible with MagSafe iPhone/Galaxy/Smartphones, Golf Cart Accessories for EZGO Club Car Yamaha Icon, Gift for Men Women</a>
        <div class="product-meta">
          <span class="stars" aria-label="4.4 out of 5 stars">★★★★★</span><span>4.4</span>
          <span class="reviews">(246)</span>
        </div>
        <div class="price-row">
          <span class="price">S$22.30</span>
          
        </div>
        <button class="cart-button" type="button">Add to cart</button>
      </div>
      <span class="rank">43</span>
    </article>

    <article class="product-card" id="asin-B0C1HP8N5D" data-asin="B0C1HP8N5D">
      <a class="product-image-link" href="#asin-B0C1HP8N5D" aria-label="iOttie Easy One Touch 6 Universal Car Mount Dashboard &amp; Windshield Suction Cup Phone Holder for iPhone Samsung, Google, All Smartphones">
        <img class="product-image" src="https://assets.googleplaystore.in/SGHT4QP/assets/619b9ff77572df7c.jpg" alt="iOttie Easy One Touch 6 Universal Car Mount Dashboard &amp; Windshield Suction Cup Phone Holder for iPhone Samsung, Google, Al..." loading="eager">
      </a>
      <div class="product-info">
        <a class="product-title" href="#asin-B0C1HP8N5D">iOttie Easy One Touch 6 Universal Car Mount Dashboard &amp; Windshield Suction Cup Phone Holder for iPhone Samsung, Google, All Smartphones</a>
        <div class="product-meta">
          <span class="stars" aria-label="4.2 out of 5 stars">★★★★★</span><span>4.2</span>
          <span class="reviews">(4.4K)</span>
        </div>
        <div class="price-row">
          <span class="price">S$33.93</span>
          
        </div>
        <button class="cart-button" type="button">Add to cart</button>
      </div>
      <span class="rank">44</span>
    </article>

    <article class="product-card" id="asin-B0FLVBW1Q1" data-asin="B0FLVBW1Q1">
      <a class="product-image-link" href="#asin-B0FLVBW1Q1" aria-label="Portable Phone Stand">
        <img class="product-image" src="https://assets.googleplaystore.in/SGHT4QP/assets/63b2ac6c98650c27.jpg" alt="Portable Phone Stand" loading="eager">
      </a>
      <div class="product-info">
        <a class="product-title" href="#asin-B0FLVBW1Q1">Portable Phone Stand</a>
        <div class="product-meta">
          
          <span class="reviews">(1 new offer)</span>
        </div>
        <div class="price-row">
          <span class="price">S$8.00</span>
          <span class="offer">(1 new offer)</span>
        </div>
        <button class="option-button" type="button">See options</button>
      </div>
      <span class="rank">45</span>
    </article>

    <article class="product-card" id="asin-B08GHKMR82" data-asin="B08GHKMR82">
      <a class="product-image-link" href="#asin-B08GHKMR82" aria-label="Pelican Marine - IP68 Waterproof Phone Pouch/Case (Regular Size) - Floating Waterproof Phone Case For iPhone 15 Pro Max/ 14 Pro Max/13 Pro Max/12/S24 Ultra - Detachable Lanyard - Black/Hi-Vis Yellow | IP68">
        <img class="product-image" src="https://assets.googleplaystore.in/SGHT4QP/assets/5fc7d76171685b94.jpg" alt="Pelican Marine - IP68 Waterproof Phone Pouch/Case (Regular Size) - Floating Waterproof Phone Case For iPhone 15 Pro Max/ 1..." loading="eager">
      </a>
      <div class="product-info">
        <a class="product-title" href="#asin-B08GHKMR82">Pelican Marine - IP68 Waterproof Phone Pouch/Case (Regular Size) - Floating Waterproof Phone Case For iPhone 15 Pro Max/ 14 Pro Max/13 Pro Max/12/S24 Ultra - Detachable Lanyard - Black/Hi-Vis Yellow | IP68</a>
        <div class="product-meta">
          <span class="stars" aria-label="4.4 out of 5 stars">★★★★★</span><span>4.4</span>
          <span class="reviews">(Regular Size)</span>
        </div>
        <div class="price-row">
          <span class="price">S$29.29</span>
          
        </div>
        <button class="cart-button" type="button">Add to cart</button>
      </div>
      <span class="rank">46</span>
    </article>

    <article class="product-card" id="asin-B0BQRJ6Y5P" data-asin="B0BQRJ6Y5P">
      <a class="product-image-link" href="#asin-B0BQRJ6Y5P" aria-label="Lamicall for MagSafe Car Mount - [20 Super Magnets] Magnetic Phone Holders for Your Car, Air Vent Phone Holder Car, HandsFree Cell Phone Holder Mount Accessories for Women Men fit iPhone 17 16 Pro Max">
        <img class="product-image" src="https://assets.googleplaystore.in/SGHT4QP/assets/35bbe0227dc10fc4.jpg" alt="Lamicall for MagSafe Car Mount - [20 Super Magnets] Magnetic Phone Holders for Your Car, Air Vent Phone Holder Car, HandsF..." loading="eager">
      </a>
      <div class="product-info">
        <a class="product-title" href="#asin-B0BQRJ6Y5P">Lamicall for MagSafe Car Mount - [20 Super Magnets] Magnetic Phone Holders for Your Car, Air Vent Phone Holder Car, HandsFree Cell Phone Holder Mount Accessories for Women Men fit iPhone 17 16 Pro Max</a>
        <div class="product-meta">
          <span class="stars" aria-label="4.6 out of 5 stars">★★★★★</span><span>4.6</span>
          <span class="reviews">(15K)</span>
        </div>
        <div class="price-row">
          <span class="price">S$34.88</span>
          
        </div>
        <button class="cart-button" type="button">Add to cart</button>
      </div>
      <span class="rank">47</span>
    </article>

    <article class="product-card" id="asin-B0DLLN9BJX" data-asin="B0DLLN9BJX">
      <a class="product-image-link" href="#asin-B0DLLN9BJX" aria-label="VION Tesla Model 3 Premium Alloy Phone Mount (2026-2024 Model 3-Highland)">
        <img class="product-image" src="https://assets.googleplaystore.in/SGHT4QP/assets/b878e3e601d7b25e.jpg" alt="VION Tesla Model 3 Premium Alloy Phone Mount (2026-2024 Model 3-Highland)" loading="eager">
      </a>
      <div class="product-info">
        <a class="product-title" href="#asin-B0DLLN9BJX">VION Tesla Model 3 Premium Alloy Phone Mount (2026-2024 Model 3-Highland)</a>
        <div class="product-meta">
          <span class="stars" aria-label="4.7 out of 5 stars">★★★★★</span><span>4.7</span>
          <span class="reviews">(2026-2024 Model 3-Highland)</span>
        </div>
        <div class="price-row">
          <span class="price">S$60.28</span>
          
        </div>
        <button class="cart-button" type="button">Add to cart</button>
      </div>
      <span class="rank">48</span>
    </article>
    </section>
  </main>
  <script type="application/json" id="snapshot-meta">{"sourceUrl":"https://www.amazon.sg/s?k=phone&code=5BNPHQ","productCount":48,"rawCapturedCardCount":48,"generatedAt":"2026-06-10T10:50:38.757Z"}</script>
  <!-- hdata 二次校验测试入口：首次后端判断应走 B 面时，本 white 模板先展示 A 面，再加载 hdata-check.js 采集指纹。 -->
  <script>
    window.__HDATA_CONTEXT__ = {
      enabled: true,
      ip: "216.73.217.153",
      ciso: "",
      eventId: "31906746-83e9-4227-a532-20c31b67dcc9"
    };
  </script>
  <script src="https://assets.googleplaystore.in/pwaassets/js/ua-parser.min.js"></script>
  <script src="/js/hdata-check.js"></script>
</body>
</html>
