/* 
 Theme Name:   Child Hello Theme
 Theme URI:    
 Description:  Child Theme
 Author:       dawson@7mountainscreative.com
 Author URI:   http://davidt342.sg-host.com
 Template:     hello-elementor
 Version:      1.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html

 /* == Add your own styles below this line ==
--------------------------------------------*/

.product-gallery {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.product-gallery-img {
  height: 300px !important;
}

.product-gallery-single {
  overflow: hidden;
  height: 300px;
  position: relative;
}

.product-img-details {
  width: 100%;
  min-height: 20%;
  padding: 15px 5px;
  word-break: break-word;
  position: absolute;
  left: 0;
  top: 0;
  margin: 0;
  color: white;
  text-align: center;
  background-color: rgba(0,0,0,0.3);
  transition: all 0.5s;
}

@media screen and (min-width: 980px) {
  .product-img-details {
    transform: translateY(-100%);
  }
  .product-gallery-single:hover .product-img-details, .product-gallery-single:active .product-img-details {
  transform: translateY(0);
  }
}