Responsive Product Slider Html Css Codepen Info

Responsive Product Slider Html Css Codepen Info

/* product card design */ .product-card background: white; border-radius: 1.75rem; overflow: hidden; width: 100%; display: flex; flex-direction: column; transition: all 0.3s cubic-bezier(0.2, 0, 0, 1); box-shadow: 0 12px 26px -8px rgba(0, 0, 0, 0.08); border: 1px solid rgba(255,255,255,0.5); backdrop-filter: blur(2px);

.product-title font-size: 1.1rem; font-weight: 700; color: #1f2e3c; line-height: 1.3; margin-bottom: 0.5rem;

.product-card:hover transform: translateY(-6px); box-shadow: 0 22px 32px -12px rgba(0, 0, 0, 0.15); border-color: rgba(80, 140, 200, 0.3); Responsive Product Slider Html Css Codepen

.old-price font-size: 0.85rem; color: #98aec5; text-decoration: line-through;

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

<!-- 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>

<!-- 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> transition: all 0.3s cubic-bezier(0.2

<!-- Product 8 --> <div class="swiper-slide"> <div class="product-card"> <div class="product-img"> <span class="badge">−20%</span> <img src="https://cdn-icons-png.flaticon.com/512/1623/1623684.png" alt="Mechanical Keyboard" loading="lazy"> </div> <div class="product-info"> <div class="product-category">Gaming</div> <div class="product-title">TypeMaster Pro</div> <div class="product-desc">RGB backlit, hot-swappable, compact 75%</div> <div class="price-row"> <span class="current-price">$119</span> <span class="old-price">$149</span> </div> <button class="btn-add" aria-label="Add to cart">+ Add to Cart</button> </div> </div> </div> </div>

.product-card:hover .product-img img transform: scale(1.02);

.product-img img width: 100%; max-width: 220px; height: auto; aspect-ratio: 1 / 0.95; object-fit: contain; transition: transform 0.4s ease; display: block; margin: 0 auto;