/*
* FooGallery Custom CSS
* This file is created by adding custom CSS on FooGallery Settings page in wp-admin
* Created : 11 Sep 2026, 5:38 pm
*/

/* Nastavenie wrapperu */
.foogallery .foogallery-item .foogallery-image {
  position: relative;
  display: block;
}

/* Vytvorenie overlay kontajnera */
.foogallery .foogallery-item .foogallery-image::after {
  content: "Zoom   Buy Print";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,0.7);
  color: #fff;
  padding: 6px 12px;
  border-radius: 5px;
  font-weight: bold;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  text-align: center;
  white-space: nowrap;
}

/* Zobrazenie overlay pri hover */
.foogallery .foogallery-item:hover .foogallery-image::after {
  opacity: 1;
}
