 Buy now
            
            Buy now
          Shop components
Components that are related to the e-commerce section of the website.
Around component
            Product card
<!-- Product card -->
<div class="card card-product card-hover">
  <span class="badge badge-floating rounded-pill rounded-start-0 bg-danger">Sale</span>
  <a class="card-img-top" href="#">
    <img src="path-to-image" alt="Product thumbnail"/>
  </a>
  <div class="card-body">
    <a class="meta-link fs-xs mb-1" href="#">Electronics</a>
    <h3 class="fs-md fw-medium mb-2">
      <a class="meta-link" href="#">Wireless Headphones</a>
    </h3>
    <del class="fs-sm text-muted me-1">$165.00</del>
    <span class="text-heading fw-semibold">$139.00</span>
  </div>
  <div class="card-footer">
    <div class="star-rating">
      <i class="sr-star ai-star-filled active"></i>
      <i class="sr-star ai-star-filled active"></i>
      <i class="sr-star ai-star-filled active"></i>
      <i class="sr-star ai-star-filled active"></i>
      <i class="sr-star ai-star"></i>
    </div>
    <div class="d-flex align-items-center">
      <a class="btn-wishlist" href="#">
        <i class="ai-heart"></i>
        <span class="btn-tooltip">Wishlist</span>
      </a>
      <span class="btn-divider"></span>
      <a class="btn-addtocart" href="#">
        <i class="ai-shopping-cart"></i>
        <span class="btn-tooltip">To Cart</span>
      </a>
    </div>
  </div>
</div>// Product card
.card.card-product.card-hover
  span.badge.badge-floating.rounded-pill.rounded-start-0.bg-danger Sale
  a(href="#").card-img-top
    img(src="path-to-image", alt="Product thumbnail")
  .card-body
    a(href="#").meta-link.fs-xs.mb-1
      | Electronics
    h3.fs-md.fw-medium.mb-2
      a(href="#").meta-link
        | Wireless Headphones
    del.fs-sm.text-muted.me-1 $165.00
    span.text-heading.fw-semibold $139.00
  .card-footer
    +star-rating(4)
    .d-flex.align-items-center
      a(href="#").btn-wishlist
        i.ai-heart
        span.btn-tooltip Wishlist
      span.btn-divider
      a(href="#").btn-addtocart
        i.ai-shopping-cart
        span.btn-tooltip To Cart
Wishlist item
<!-- Wishlist item -->
<div class="card card-product card-hover">
  <a class="btn-remove" href="#">
    <i class="ai-trash-2"></i>
    <span class="btn-tooltip">Remove</span>
  </a>
  <a class="card-img-top" href="#">
    <img src="path-to-image" alt="Product thumbnail"/>
  </a>
  <div class="card-body">
    <a class="meta-link fs-xs mb-1" href="#">Women's shoes</a>
    <h3 class="fs-md fw-medium mb-2">
      <a class="meta-link" href="#">Women Colorblock Sneakers</a>
    </h3>
    <span class="text-heading fw-semibold">$154.00</span>
  </div>
  <div class="card-footer">
    <div class="star-rating">
      <i class="sr-star ai-star-filled active"></i>
      <i class="sr-star ai-star-filled active"></i>
      <i class="sr-star ai-star-filled active"></i>
      <i class="sr-star ai-star"></i>
      <i class="sr-star ai-star"></i>
    </div>
    <a class="btn-addtocart" href="#">
      <i class="ai-shopping-cart"></i>
      <span class="btn-tooltip">To Cart</span>
    </a>
  </div>
</div>// Wishlist item
.card.card-product.card-hover
  a(href="#").btn-remove
    i.ai-trash-2
    span.btn-tooltip Remove
  a(href="#").card-img-top
    img(src="path-to-image", alt="Product thumbnail")
  .card-body
    a(href="#").meta-link.fs-xs.mb-1
      | Women's shoes
    h3.fs-md.fw-medium.mb-2
      a(href="#").meta-link
        | Women Colorblock Sneakers
    span.text-heading.fw-semibold $154.00
  .card-footer
    +star-rating(3)
    a(href="#").btn-addtocart
      i.ai-shopping-cart
      span.btn-tooltip To Cart
Category card
<!-- Category card -->
<div class="card card-category shadow">
  <span class="badge badge-lg badge-floating badge-floating-end bg-success">
    From $8.99
  </span>
  <img src="path-to-image" class="card-img-top" alt="Clothing"/>
  <div class="card-body">
    <h4 class="card-title">Clothing</h4>
  </div>
</div>// Category card
a(href="#").card.card-category.shadow
  span.badge.badge-lg.badge-floating.badge-floating-end.bg-success
    | From $8.99
  img(src="path-to-image", alt="Clothing").card-img-top
  .card-body
    h4.card-title Clothing
Product gallery
<!-- Product gallery -->
<div class="product-gallery">
  <!-- Preview image -->
  <div class="product-gallery-preview order-sm-2">
    <div class="product-gallery-preview-item active" id="first">
      <img src="path-to-preview-image" alt="Product preview"/>
    </div>
    <div class="product-gallery-preview-item" id="second">
      <img src="path-to-preview-image" alt="Product preview"/>
    </div>
    <div class="product-gallery-preview-item" id="third">
      <img src="path-to-preview-image" alt="Product preview"/>
    </div>
    <div class="product-gallery-preview-item" id="fourth">
      <img src="path-to-preview-image" alt="Product preview"/>
    </div>
  </div>
  <!-- Thumbnails -->
  <div class="product-gallery-thumblist order-sm-1">
    <a class="product-gallery-thumblist-item active" href="#first">
      <img src="path-to-thumbnail" alt="Product thumb"/>
    </a>
    <a class="product-gallery-thumblist-item" href="#second">
      <img src="path-to-thumbnail" alt="Product thumb"/>
    </a>
    <a class="product-gallery-thumblist-item" href="#third">
      <img src="path-to-thumbnail" alt="Product thumb"/>
    </a>
    <a class="product-gallery-thumblist-item" href="#fourth">
      <img src="path-to-thumbnail" alt="Product thumb"/>
    </a>
  </div>
</div>// Product gallery
.product-gallery
  // Preview image
  .product-gallery-preview.order-sm-2
    #first.product-gallery-preview-item.active
      img(src="path-to-preview-image", alt="Product preview")
    #second.product-gallery-preview-item
      img(src="path-to-preview-image", alt="Product preview")
    #third.product-gallery-preview-item
      img(src="path-to-preview-image", alt="Product preview")
    #fourth.product-gallery-preview-item
      img(src="path-to-preview-image", alt="Product preview")
  // Thumbnails
  .product-gallery-thumblist.order-sm-1
    a(href="#first").product-gallery-thumblist-item.active
      img(src="path-to-thumbnail", alt="Product thumb")
    a(href="#second").product-gallery-thumblist-item
      img(src="path-to-thumbnail", alt="Product thumb")
    a(href="#third").product-gallery-thumblist-item
      img(src="path-to-thumbnail", alt="Product thumb")
    a(href="#fourth").product-gallery-thumblist-item
      img(src="path-to-thumbnail", alt="Product thumb")
Promo banner
Virtual Reality
Gadgets from top brands at discounted price
Limited time offer
                          0Days
                            0Hours
                            0Mins
                          
<!-- Promo banner with countdown -->
<div class="bg-secondary rounded-3 pt-5 px-3 ps-sm-5 pe-sm-2">
  <div class="d-sm-flex align-items-end text-center text-sm-start ps-2">
    <div class="me-sm-n6 pb-5">
      <h2 class="h1 text-sm-nowrap">Virtual Reality</h2>
      <p class="pb-2 mx-auto mx-sm-0" style="max-width: 14rem;">
        Gadgets from top brands at discounted price
      </p>
      <div class="d-inline-block bg-faded-danger text-danger fs-sm fw-medium rounded-1 px-3 py-2">
        Limited time offer
      </div>
      <div class="countdown pt-3 h4 justify-content-center justify-content-sm-start" data-countdown="10/01/2021 07:00:00 PM">
        <div class="countdown-days">
          <span class="countdown-value">0</span>
          <span class="countdown-label fs-xs text-muted">Days</span>
        </div>
        <div class="countdown-hours">
          <span class="countdown-value">0</span>
          <span class="countdown-label fs-xs text-muted">Hours</span>
        </div>
        <div class="countdown-minutes">
          <span class="countdown-value">0</span>
          <span class="countdown-label fs-xs text-muted">Mins</span>
        </div>
      </div>
      <a class="btn btn-primary" href="#">Get one now</a>
    </div>
    <div><img src="path-to-image" alt="Promo banner"/>
    </div>
  </div>
</div>// Promo banner with countdown
.bg-secondary.rounded-3.pt-5.px-3.ps-sm-5.pe-sm-2
  .d-sm-flex.align-items-end.text-center.text-sm-start.ps-2
    .me-sm-n6.pb-5
      h2.h1.text-sm-nowrap Virtual Reality
      p.pb-2.mx-auto.mx-sm-0(style="max-width: 14rem;") Gadgets from top brands at discounted price
      .d-inline-block.bg-faded-danger.text-danger.fs-sm.fw-medium.rounded-1.px-3.py-2
        | Limited time offer
      .countdown.pt-3.h4.justify-content-center.justify-content-sm-start(data-countdown="10/01/2021 07:00:00 PM")
        .countdown-days
          span.countdown-value 0
          span.countdown-label.fs-xs.text-muted Days
        .countdown-hours
          span.countdown-value 0
          span.countdown-label.fs-xs.text-muted Hours
        .countdown-minutes
          span.countdown-value 0
          span.countdown-label.fs-xs.text-muted Mins
      a(href="#").btn.btn-primary
        | Get one now
    div
      img(src="path-to-image", alt="Promo banner")
Active filters
<!-- Active filter -->
<a href="#" class="active-filter">
  Active filter
</a>// Active filter
a(href="#").active-filter
  | Active filter
Related products carousel
<!-- Products carousel -->
<div class="tns-carousel-wrapper">
  <div class="tns-carousel-inner" data-carousel-options='{"items": 2, "controls": false, "nav": true, "responsive": {"0":{"items":1, "gutter": 16},"500":{"items":2, "gutter": 16}, "780":{"items":3, "gutter": 16}, "1700":{"items":4, "gutter": 23}}}'>
    
    <!-- Item -->
    <div class="pb-2">
      <div class="card card-product card-hover mx-1">
        <a class="card-img-top" href="#">
          <img src="path-to-image" alt="Product thumbnail"/>
        </a>
        <div class="card-body">
          <a class="meta-link fs-xs mb-1" href="#">Men's clothing</a>
          <h3 class="fs-md fw-medium mb-2">
            <a class="meta-link" href="#">Simple Gray Cotton T-shirt</a>
          </h3>
          <span class="text-heading fw-semibold">$19.00</span>
        </div>
        <div class="card-footer">
          <div class="star-rating">
            <i class="sr-star ai-star-filled active"></i>
            <i class="sr-star ai-star-filled active"></i>
            <i class="sr-star ai-star-filled active"></i>
            <i class="sr-star ai-star"></i>
            <i class="sr-star ai-star"></i>
          </div>
          <div class="d-flex align-items-center">
            <a class="btn-wishlist" href="#">
              <i class="ai-heart"></i>
              <span class="btn-tooltip">Wishlist</span>
            </a>
            <span class="btn-divider"></span>
            <a class="btn-addtocart" href="#">
              <i class="ai-shopping-cart"></i>
              <span class="btn-tooltip">To Cart</span>
            </a>
          </div>
        </div>
      </div>
    </div>
   <!-- Add as many items as you need -->
  </div>
</div>// Products carousel
.tns-carousel-wrapper
  .tns-carousel-inner(data-carousel-options='{"items": 2, "controls": false, "nav": true, "responsive": {"0":{"items":1, "gutter": 16},"500":{"items":2, "gutter": 16}, "780":{"items":3, "gutter": 16}, "1700":{"items":4, "gutter": 23}}}')
    // Item
    .pb-2
      .card.card-product.card-hover.mx-1
        a(href="#").card-img-top
          img(src="path-to-image", alt="Product thumbnail")
        .card-body
          a(href="#").meta-link.fs-xs.mb-1
            | Men"s clothing
          h3.fs-md.fw-medium.mb-2
            a(href="#").meta-link
              | Simple Gray Cotton T-shirt
          span.text-heading.fw-semibold $19.00
        .card-footer
          +star-rating(3)
          .d-flex.align-items-center
            a(href="#").btn-wishlist
              i.ai-heart
              span.btn-tooltip Wishlist
            span.btn-divider
            a(href="#").btn-addtocart
              i.ai-shopping-cart
              span.btn-tooltip To Cart
    
    // Add as many items as you need

 
                      











