livraison gratuite

Offre spéciale : livraison gratuite

slider-image slider-image

<section style="min-height:100vh;display:flex;align-items:center;justify-content:center;background:linear-gradient(135deg,#f8f8f8,#e8e8e8);perspective:1000px;">

  <div style="display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:40px;width:90%;max-width:1000px;">

    <div class="item">

      <img src="https://cdn-icons-png.flaticon.com/512/3081/3081831.png" alt="Toothbrush">

      <h3>Toothbrush</h3>

    </div>

    <div class="item">

      <img src="https://cdn-icons-png.flaticon.com/512/1046/1046784.png" alt="Coffee">

      <h3>Coffee</h3>

    </div>

    <div class="item">

      <img src="https://cdn-icons-png.flaticon.com/512/415/415733.png" alt="Soap">

      <h3>Soap</h3>

    </div>

    <div class="item">

      <img src="https://cdn-icons-png.flaticon.com/512/3081/3081995.png" alt="Shampoo">

      <h3>Shampoo</h3>

    </div>

  </div>

</section>


<style>

.item {

  background:#fff;

  border-radius:20px;

  padding:20px;

  text-align:center;

  box-shadow:0 10px 20px rgba(0,0,0,0.1);

  transform-style: preserve-3d;

  transition:transform 0.3s, box-shadow 0.3s;

}

.item img {

  width:100px;

  transition:transform 0.3s;

}

.item h3 {

  margin-top:15px;

  font-family:sans-serif;

  color:#333;

}

.item:hover {

  transform:scale(1.2) rotateY(10deg) rotateX(5deg);

  box-shadow:0 20px 40px rgba(0,0,0,0.2);

}

.item:hover img {

  transform:scale(1.2);

}

</style>