
✅ 100% Genuine
🔒 Secure Checkout
🚚 Free Delivery $50+
↩ 14-Day Returns
🛡 1-Year Warranty
📦
Ships in 1–2 business days · Arrives in 2–4 days · Free delivery over SGD $50
✅
100% Genuine ProductsSourced from verified authorised suppliers
↩️
14-Day Easy ReturnsChanged your mind? We sort it in 24 hours
🛡️
1-Year Local WarrantyFull warranty on every product we sell
💬
7-Day SupportMon–Sun 9am–9pm SGT · Real humans
🔒 Secured by SSL · PayNow · Visa · Mastercard · GrabPay
/* Show only the active product image — hide the rest */
.product__media-list .product__media-item:not(.is-active) {
display: none !important;
}
/* Show first image before JS activates */
.product__media-list .product__media-item:first-child {
display: flex !important;
}
/* Smooth fade when switching images */
.product__media-item.is-active {
animation: snsFadeIn .25s ease;
}
@keyframes snsFadeIn {
from { opacity: 0; transform: scale(.98); }
to { opacity: 1; transform: scale(1); }
}