/*
 Theme Name:     pixeltypen_ Child Theme
 Theme URI:      https://oceanwp.org/
 Author:         pixeltypen / Tobias Bals
 Author URI:     https://pixeltypen.de
 Template:       oceanwp
 Version:        1.0.0
*/

* {
  box-sizing: border-box !important;
}

#products {
  display: flex;
  flex-wrap: wrap;
  margin: -15px; /* Adjust as needed for spacing */
}

.product {
  width: calc(33.33% - 30px); /* Adjust as needed for spacing */
  margin: 15px;
  position: relative;
}

.product img {
  width: 100%;
  height: auto;
  display: block;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product:hover .overlay {
  opacity: 1;
}

.caption {
  color: #fff;
  font-size: 18px;
  text-align: center;
}
