Responsive Product Slider Html Css Codepen -

/* Swiper custom styling */ .product-swiper width: 100%; padding: 0.5rem 0.2rem 2rem 0.2rem;

<!-- Product 6 --> <div class="swiper-slide"> <div class="product-card"> <div class="product-img"> <span class="badge new">Limited</span> <img src="https://cdn-icons-png.flaticon.com/512/1223/1223324.png" alt="Smart Speaker" loading="lazy"> </div> <div class="product-info"> <div class="product-category">Smart Home</div> <div class="product-title">EchoDot Sphere</div> <div class="product-desc">Voice assistant, rich sound, multi-room sync</div> <div class="price-row"> <span class="current-price">$79</span> <span class="old-price">$109</span> </div> <button class="btn-add" aria-label="Add to cart">+ Add to Cart</button> </div> </div> </div> Responsive Product Slider Html Css Codepen

.swiper-slide height: auto; display: flex; transition: transform 0.2s ease; /* Swiper custom styling */

/* section header */ .section-head text-align: center; margin-bottom: 2rem; padding: 0.5rem 0.2rem 2rem 0.2rem

<!-- Swiper --> <div class="swiper product-swiper"> <div class="swiper-wrapper"> <!-- Product 1 --> <div class="swiper-slide"> <div class="product-card"> <div class="product-img"> <span class="badge">−25%</span> <img src="https://cdn-icons-png.flaticon.com/512/4461/4461320.png" alt="Smart Watch" loading="lazy"> </div> <div class="product-info"> <div class="product-category">Wearables</div> <div class="product-title">AeroSmart Edge</div> <div class="product-desc">Fitness tracker, AMOLED display, 10-day battery life</div> <div class="price-row"> <span class="current-price">$149</span> <span class="old-price">$199</span> </div> <button class="btn-add" aria-label="Add to cart">+ Add to Cart</button> </div> </div> </div>

Responsive Product Slider Html Css Codepen