/*
Theme Name: قالب اختصاصی
Description:  قالب اختصاصی پیشرفته
Version: 0.0.1
Author: پله
*/

/* =========================================
   Gallery Zoom Feature
   ========================================= */

/* Ensure images inside zoom container fill properly */
.swiper-zoom-container > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
}

/* Cursor indicator when zoomed in */
.swiper-slide-zoomed .swiper-zoom-container {
  cursor: zoom-out;
}

.swiper-zoom-container {
  cursor: zoom-in;
}

/* Double-click zoom hint badge */
.gallery-zoom-hint {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;

  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;

  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  white-space: nowrap;
  pointer-events: none;

  opacity: 0;
  transition: opacity 0.5s ease;
}

.gallery-zoom-hint.visible {
  opacity: 1;
}

.gallery-zoom-hint svg {
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  opacity: 0.9;
}
