
  .store-product {
    gap: 10px;
    font-size: 1.15em;
    position: relative;
  }
  .store-product img {
    transition: 0.3s;
    width: 100%;
    max-width: 300px;
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    background: #fff;
    margin-bottom: 20px;
    
  }
  .store-product:hover img {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  }
  .store-product .hover-image {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
  }
    .store-product:hover .hover-image {
        opacity: 1;
    }
