/**
 * Portfolio Filter Gallery Premium - Public CSS
 * Version: 8.0.0
 */

/* Social sharing icons */
.pfg-social-share {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.pfg-social-share a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  transition: transform 0.2s, opacity 0.2s;
}

.pfg-social-share a:hover {
  transform: scale(1.1);
  opacity: 0.9;
}

.pfg-social-share .pfg-share-facebook {
  background: #1877f2;
}

.pfg-social-share .pfg-share-twitter {
  background: #1da1f2;
}

.pfg-social-share .pfg-share-pinterest {
  background: #e60023;
}

.pfg-social-share .pfg-share-linkedin {
  background: #0077b5;
}

/* Sorting controls */
.pfg-sorting {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
}

.pfg-sort-button {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  background: #f1f5f9;
  border: none;
  border-radius: 6px;
  color: #475569;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
}

.pfg-sort-button:hover {
  background: #e2e8f0;
  color: #1e293b;
}

.pfg-sort-button--active {
  background: var(--pfg-filter-bg, #3b82f6);
  color: #fff;
}

.pfg-sort-button .dashicons {
  font-size: 16px;
  width: 16px;
  height: 16px;
}

/* Watermark overlay */
.pfg-watermark {
  position: absolute;
  pointer-events: none;
  z-index: 5;
}

.pfg-watermark--bottom-right {
  bottom: 10px;
  right: 10px;
}

.pfg-watermark--bottom-left {
  bottom: 10px;
  left: 10px;
}

.pfg-watermark--top-right {
  top: 10px;
  right: 10px;
}

.pfg-watermark--top-left {
  top: 10px;
  left: 10px;
}

.pfg-watermark--center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.pfg-watermark-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.pfg-watermark-image img {
  max-width: 100px;
  height: auto;
}

/* Video play button */
.pfg-video-indicator {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: all 0.3s;
}

.pfg-video-indicator::after {
  content: '';
  border-left: 20px solid #fff;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 4px;
}

.pfg-item:hover .pfg-video-indicator {
  background: var(--pfg-filter-bg, #3b82f6);
  transform: translate(-50%, -50%) scale(1.1);
}
