/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jun 14 2025 | 05:56:49 */
.glass-hover {
  position: relative;
  display: inline-block;
  overflow: hidden;
  border-radius: 15px;
}

.glass-hover img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.3s ease-in-out;
}

.glass-hover::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 80%);
  transform: skewX(-25deg);
  transition: left 0.7s ease;
  z-index: 2;
}

.glass-hover:hover::before {
  left: 120%;
}

/* Removed zoom effect */
/*
.glass-hover:hover img {
  transform: scale(1.03);
}
*/
